index.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. .container {
  2. width: 100%;
  3. height: 100%;
  4. padding-top: 20rpx;
  5. }
  6. .container .video-swiper {
  7. width: 100%;
  8. height: 100%;
  9. display: block;
  10. background: #ffffff;
  11. margin-top: 64rpx;
  12. }
  13. .container .video-swiper .swiper_item {
  14. width: 100%;
  15. height: 100%;
  16. }
  17. .container .video-swiper .swiper_item .head_box {
  18. width: 100%;
  19. height: 120rpx;
  20. display: flex;
  21. justify-content: space-between;
  22. padding-left: 20rpx;
  23. }
  24. .container .video-swiper .swiper_item .head_box .user_box {
  25. width: 400rpx;
  26. height: 100%;
  27. display: flex;
  28. align-items: center;
  29. }
  30. .container .video-swiper .swiper_item .head_box .user_box .avatar {
  31. width: 80rpx;
  32. height: 80rpx;
  33. border: 2rpx solid green;
  34. border-radius: 50%;
  35. }
  36. .container .video-swiper .swiper_item .head_box .user_box .user_right {
  37. margin-left: 16rpx;
  38. }
  39. .container .video-swiper .swiper_item .head_box .user_box .user_right .nickname {
  40. font-size: 30rpx;
  41. color: rgba(0, 0, 0, 0.6);
  42. }
  43. .container .video-swiper .swiper_item .head_box .time {
  44. font-size: 26rpx;
  45. color: rgba(0, 0, 0, 0.6);
  46. }
  47. .container .video-swiper .swiper_item .video_item {
  48. width: 100%;
  49. height: 422rpx;
  50. }
  51. .container .video-swiper .swiper_item .video_title {
  52. width: 100%;
  53. height: 62rpx;
  54. font-size: 30rpx;
  55. color: #373737;
  56. display: flex;
  57. align-items: center;
  58. }
  59. .container .video-swiper .swiper_item .foot_box {
  60. width: 100%;
  61. height: 120rpx;
  62. display: flex;
  63. justify-content: space-between;
  64. padding-left: 20rpx;
  65. }
  66. .container .video-swiper .swiper_item .foot_box .foot_left,
  67. .container .video-swiper .swiper_item .foot_box .foot_right {
  68. display: flex;
  69. align-items: center;
  70. }
  71. .container .video-swiper .swiper_item .foot_box .btn {
  72. margin-right: 42rpx;
  73. font-size: 28rpx;
  74. color: rgba(0, 0, 0, 0.6);
  75. display: flex;
  76. flex-direction: row;
  77. align-items: center;
  78. }
  79. .container .video-swiper .swiper_item .foot_box .btn .collect_btn_icon {
  80. width: 48rpx;
  81. height: 46rpx;
  82. margin-right: 14rpx;
  83. }
  84. .container .video-swiper .swiper_item .foot_box .btn .share_btn_icon {
  85. width: 46rpx;
  86. height: 46rpx;
  87. margin-right: 14rpx;
  88. }
  89. .container .video-swiper .swiper_item .foot_box .btn .flower_btn_icon {
  90. width: 46rpx;
  91. height: 46rpx;
  92. margin-right: 14rpx;
  93. }
  94. .container .video-swiper .swiper_item .foot_box .btn .comment_btn_icon {
  95. width: 49rpx;
  96. height: 47rpx;
  97. margin-right: 14rpx;
  98. }
  99. .container .video-swiper .swiper_item .btn_wrapper {
  100. width: 100%;
  101. height: 110rpx;
  102. display: flex;
  103. align-items: center;
  104. justify-content: center;
  105. }
  106. .container .video-swiper .swiper_item .btn_wrapper .reading_btn {
  107. width: 271rpx;
  108. height: 80rpx;
  109. background: #14c962;
  110. border-radius: 100rpx;
  111. display: flex;
  112. align-items: center;
  113. justify-content: center;
  114. }
  115. .container .video-swiper .swiper_item .btn_wrapper .reading_btn image {
  116. width: 39rpx;
  117. height: 50rpx;
  118. margin-right: 20rpx;
  119. }
  120. .container .video-swiper .swiper_item .btn_wrapper .reading_btn text {
  121. color: #fff;
  122. font-size: 30rpx;
  123. }