index.scss 1.1 KB

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