index.scss 1.2 KB

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