found.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /* pages/live/live.wxss */
  2. .top-fixed{
  3. position: fixed;
  4. top: 0;
  5. right: 0;
  6. left: 0;
  7. background-color: #fff;
  8. z-index: 98;
  9. }
  10. .search-box{
  11. padding: 30rpx;
  12. background-color: #fff;
  13. }
  14. .search-text{
  15. color: #999999;
  16. }
  17. .search-input{
  18. height: 76rpx;
  19. line-height: 76rpx;;
  20. background: #F5F5F5;
  21. border-radius: 60rpx;
  22. padding: 0 26rpx;
  23. font-size: 24rpx;
  24. }
  25. .search-input input{
  26. font-size: 24rpx;
  27. }
  28. .search-input image{
  29. width: 34rpx;
  30. height: 34rpx;
  31. margin-right: 26rpx;
  32. }
  33. .search-all{
  34. color: #2a82fd;
  35. font-size: 30rpx;
  36. margin-left: 46rpx;
  37. }
  38. .map-ac{overflow: hidden;margin-top: 30rpx;}
  39. .map-acs{white-space: nowrap;height: 312rpx;}
  40. .fx-nav{
  41. height: 40rpx;
  42. line-height: 40rpx;
  43. font-size: 28rpx;
  44. font-family: PingFang SC-Medium, PingFang SC;
  45. font-weight: 500;
  46. color: #7A7B7F;
  47. display: inline-block;
  48. margin-right: 50rpx;
  49. position: relative;
  50. }
  51. .fx-nav:first-child{
  52. margin-left: 30rpx;
  53. }
  54. .fx-nav-active{
  55. font-size: 32rpx;
  56. font-weight: bold;
  57. position: relative;
  58. color: #333333;
  59. }
  60. .fx-nav-active::after{
  61. content: '';
  62. position: absolute;
  63. bottom:-10rpx;
  64. left:50%;
  65. transform: translateX(-50%);
  66. width: 40rpx;
  67. height: 9rpx;
  68. background: #009B62;
  69. border-radius: 5rpx 5rpx 5rpx 5rpx;
  70. opacity: 1;
  71. }
  72. .fx-dot{
  73. width: 20rpx;
  74. height: 20rpx;
  75. border-radius: 100%;
  76. background-color: red;
  77. position: absolute;
  78. right: -6rpx;
  79. top: 0;
  80. }
  81. .list{padding: 30rpx 30rpx;overflow: hidden;}
  82. .image-nav{
  83. padding: 10rpx 30rpx;
  84. justify-content: space-between;
  85. }
  86. .image-nav image{
  87. width: 220rpx;
  88. height: 141rpx;
  89. border-radius: 15rpx 15rpx 15rpx 15rpx;
  90. display: inline-block;
  91. margin-right: 14rpx;
  92. }
  93. .image-nav image:last-child{
  94. margin-right: 0rpx;
  95. }
  96. ::-webkit-scrollbar {
  97. width: 0;
  98. height: 0;
  99. color: transparent;
  100. }
  101. /* 视频中心 */
  102. .video-box{
  103. display: flex;
  104. flex-wrap: wrap;
  105. justify-content: space-between;
  106. }
  107. .video-card{
  108. width: 330rpx;
  109. margin-bottom: 30rpx;
  110. }
  111. .video-cover{
  112. width: 330rpx;
  113. height: 250rpx;
  114. background: #E6E6E6;
  115. border-radius: 12rpx 12rpx 0rpx 0rpx;
  116. overflow: hidden;
  117. position: relative;
  118. }
  119. .video-play{
  120. width: 48rpx;
  121. height: 48rpx;
  122. position: absolute;
  123. top:20rpx;
  124. right: 20rpx;
  125. }
  126. .video-info{
  127. padding: 24rpx 20rpx;
  128. background: #FFFFFF;
  129. border-radius: 0rpx 0rpx 12rpx 12rpx;
  130. }
  131. .video-name{
  132. font-weight: bold;
  133. color: #333333;
  134. line-height: 44rpx;
  135. height: 132rpx;
  136. font-size: 28rpx;
  137. margin-bottom: 10rpx;
  138. }
  139. .video-info-desc{
  140. font-size: 24rpx;
  141. color: #999;
  142. display: flex;
  143. display: -webkit-flex;
  144. justify-content: space-between;
  145. align-items: center;
  146. margin-top: 23rpx;
  147. }
  148. .ellipsis{
  149. overflow: hidden;
  150. text-overflow: ellipsis;
  151. white-space: nowrap;
  152. }
  153. .video{position: relative;width: 100%;height: 100%;}
  154. .video video{width: 100%;height: 100%;border-radius: 15rpx;display: block;}