index.wxss 691 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .video .myvideo {
  2. width: 100%;
  3. height: 100%;
  4. }
  5. .video .title {
  6. padding: 0 20rpx;
  7. font-weight: 700;
  8. }
  9. .video .desc {
  10. overflow: hidden;
  11. text-overflow: ellipsis;
  12. white-space: nowrap;
  13. font-weight: 500;
  14. color: #a8a7a7;
  15. }
  16. .video_two {
  17. display: flex;
  18. flex-wrap: wrap;
  19. justify-content: space-between;
  20. }
  21. .video_two .myvideo {
  22. width: 100%;
  23. height: 100%;
  24. }
  25. .video_two .title {
  26. padding: 0 20rpx;
  27. font-weight: 700;
  28. }
  29. .video_two .desc {
  30. overflow: hidden;
  31. text-overflow: ellipsis;
  32. white-space: nowrap;
  33. font-weight: 500;
  34. color: #a8a7a7;
  35. }
  36. .playImg {
  37. position: fixed;
  38. top: 50%;
  39. left: 50%;
  40. transform: translate(-50%, -50%);
  41. width: 94rpx;
  42. height: 94rpx;
  43. }