found.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. }
  81. /* 视频中心 */
  82. .video-box{
  83. display: flex;
  84. flex-wrap: wrap;
  85. justify-content: space-between;
  86. }
  87. .video-card{
  88. width: 330rpx;
  89. margin-bottom: 30rpx;
  90. }
  91. .video-cover{
  92. width: 330rpx;
  93. height: 250rpx;
  94. background: #E6E6E6;
  95. border-radius: 12rpx 12rpx 0rpx 0rpx;
  96. overflow: hidden;
  97. position: relative;
  98. }
  99. .video-play{
  100. width: 48rpx;
  101. height: 48rpx;
  102. position: absolute;
  103. top:20rpx;
  104. right: 20rpx;
  105. }
  106. .video-info{
  107. padding: 24rpx 20rpx;
  108. background: #FFFFFF;
  109. border-radius: 0rpx 0rpx 12rpx 12rpx;
  110. }
  111. .video-name{
  112. font-weight: bold;
  113. color: #333333;
  114. line-height: 44rpx;
  115. height: 132rpx;
  116. font-size: 28rpx;
  117. margin-bottom: 10rpx;
  118. }
  119. .video-info-desc{
  120. font-size: 24rpx;
  121. color: #999;
  122. display: flex;
  123. display: -webkit-flex;
  124. justify-content: space-between;
  125. align-items: center;
  126. margin-top: 23rpx;
  127. }
  128. .ellipsis{
  129. overflow: hidden;
  130. text-overflow: ellipsis;
  131. white-space: nowrap;
  132. }
  133. .video{position: relative;width: 100%;height: 100%;}
  134. .video video{width: 100%;height: 100%;border-radius: 15rpx;display: block;}