found.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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: 101;
  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. }
  50. .fx-nav:first-child{
  51. margin-left: 30rpx;
  52. }
  53. .fx-nav-active{
  54. font-size: 32rpx;
  55. font-weight: bold;
  56. position: relative;
  57. color: #333333;
  58. }
  59. .fx-nav-active::after{
  60. content: '';
  61. position: absolute;
  62. bottom:-10rpx;
  63. left:50%;
  64. transform: translateX(-50%);
  65. width: 40rpx;
  66. height: 9rpx;
  67. background: #009B62;
  68. border-radius: 5rpx 5rpx 5rpx 5rpx;
  69. opacity: 1;
  70. }
  71. .list{padding: 30rpx 30rpx;overflow: hidden;}
  72. .image-nav{
  73. padding: 10rpx 30rpx;
  74. justify-content: space-between;
  75. }
  76. .image-nav image{
  77. width: 220rpx;
  78. height: 141rpx;
  79. border-radius: 15rpx 15rpx 15rpx 15rpx;
  80. display: inline-block;
  81. margin-right: 14rpx;
  82. }
  83. .image-nav image:last-child{
  84. margin-right: 0rpx;
  85. }
  86. ::-webkit-scrollbar {
  87. width: 0;
  88. height: 0;
  89. color: transparent;
  90. }
  91. /* 视频中心 */
  92. .video-box{
  93. display: flex;
  94. flex-wrap: wrap;
  95. justify-content: space-between;
  96. }
  97. .video-card{
  98. width: 330rpx;
  99. margin-bottom: 30rpx;
  100. }
  101. .video-cover{
  102. width: 330rpx;
  103. height: 250rpx;
  104. background: #E6E6E6;
  105. border-radius: 12rpx 12rpx 0rpx 0rpx;
  106. overflow: hidden;
  107. position: relative;
  108. }
  109. .video-play{
  110. width: 48rpx;
  111. height: 48rpx;
  112. position: absolute;
  113. top:20rpx;
  114. right: 20rpx;
  115. }
  116. .video-info{
  117. padding: 24rpx 20rpx;
  118. background: #FFFFFF;
  119. border-radius: 0rpx 0rpx 12rpx 12rpx;
  120. }
  121. .video-name{
  122. font-weight: bold;
  123. color: #333333;
  124. line-height: 44rpx;
  125. height: 132rpx;
  126. font-size: 28rpx;
  127. margin-bottom: 10rpx;
  128. }
  129. .video-info-desc{
  130. font-size: 24rpx;
  131. color: #999;
  132. display: flex;
  133. display: -webkit-flex;
  134. justify-content: space-between;
  135. align-items: center;
  136. margin-top: 23rpx;
  137. }
  138. .ellipsis{
  139. overflow: hidden;
  140. text-overflow: ellipsis;
  141. white-space: nowrap;
  142. }
  143. .video{position: relative;width: 100%;height: 100%;}
  144. .video video{width: 100%;height: 100%;border-radius: 15rpx;display: block;}