index.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .photo-wrap {
  2. position: relative;
  3. left: 0;
  4. top: 0;
  5. width: 100%;
  6. height: 194rpx;
  7. overflow: hidden;
  8. .photo {
  9. display: block;
  10. width: 100%;
  11. height: 100%;
  12. }
  13. .play {
  14. position: absolute;
  15. left: 50%;
  16. top: 50%;
  17. z-index: 1;
  18. width: 54rpx;
  19. height: 54rpx;
  20. transform: translate(-50%, -50%);
  21. }
  22. .pv {
  23. position: absolute;
  24. left: 14rpx;
  25. top: 12rpx;
  26. z-index: 1;
  27. font-size: 24rpx;
  28. line-height: 34rpx;
  29. color: rgba(255, 255, 255, 1);
  30. }
  31. }
  32. .video-name {
  33. width: 100%;
  34. padding: 0 12rpx;
  35. margin-top: 12rpx;
  36. font-size: 24rpx;
  37. line-height: 34rpx;
  38. color: rgba(24, 26, 43, 1);
  39. white-space: nowrap;
  40. overflow: hidden;
  41. text-overflow: ellipsis;
  42. }
  43. .data-detail {
  44. display: flex;
  45. align-items: center;
  46. width: 100%;
  47. padding: 12rpx 18rpx 20rpx;
  48. margin-top: 12rpx;
  49. border-top: 2rpx solid rgba(245, 245, 245, 1);
  50. .box {
  51. display: flex;
  52. align-items: center;
  53. flex: 1;
  54. }
  55. .icon-praise,
  56. .icon-message,
  57. .icon-share {
  58. width: 28rpx;
  59. height: 28rpx;
  60. }
  61. .data {
  62. font-size: 24rpx;
  63. line-height: 28rpx;
  64. color: rgba(153, 153, 153, 1);
  65. }
  66. }