zmt.wxss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. background: #f7f8f7;
  13. }
  14. .navbar {
  15. display: flex;
  16. height: 40px;
  17. padding: 0 5px;
  18. background: #fff;
  19. box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  20. position: relative;
  21. z-index: 10;
  22. }
  23. .navbar .nav-item {
  24. flex: 1;
  25. display: flex;
  26. justify-content: center;
  27. align-items: center;
  28. height: 100%;
  29. font-size: 15px;
  30. color: #303133;
  31. position: relative;
  32. }
  33. .navbar .nav-item.current {
  34. color: #000;
  35. font-weight: bold;
  36. }
  37. .navbar .nav-item.current:after {
  38. content: '';
  39. position: absolute;
  40. left: 50%;
  41. bottom: 0;
  42. -webkit-transform: translateX(-50%);
  43. transform: translateX(-50%);
  44. width: 44px;
  45. height: 0;
  46. border-bottom: 2px solid #E60012;
  47. }
  48. .nav-swiper {
  49. background-color: #fff;
  50. }
  51. .top-swiper {
  52. position: relative;
  53. }
  54. .top-swiper .banner-swiper {
  55. width: 750rpx;
  56. height: 390rpx;
  57. }
  58. .top-swiper .banner-swiper .swiper-img {
  59. display: block;
  60. width: 750rpx;
  61. height: 390rpx;
  62. }
  63. .top-swiper .banner-swiper swiper-item {
  64. width: 750rpx;
  65. height: 390rpx;
  66. }
  67. .class-box {
  68. white-space: nowrap;
  69. height: 40px;
  70. position: relative;
  71. background-color: #fff;
  72. }
  73. .class-box .item {
  74. text-align: center;
  75. display: inline-block;
  76. color: #606266;
  77. height: 100%;
  78. background-color: #ffffff;
  79. line-height: 1;
  80. }
  81. .class-box .item .status {
  82. font-size: 30rpx;
  83. margin: 0 auto;
  84. width: 60px;
  85. height: 100%;
  86. line-height: 40px;
  87. }
  88. .class-box .item .status.action {
  89. color: #000;
  90. font-weight: bold;
  91. position: relative;
  92. }
  93. .class-box .item .status.action:after {
  94. content: '';
  95. position: absolute;
  96. left: 50%;
  97. bottom: 5px;
  98. -webkit-transform: translateX(-50%);
  99. transform: translateX(-50%);
  100. width: 33px;
  101. height: 0;
  102. border-bottom: 2px solid #E60012;
  103. }
  104. .dy-wrap {
  105. width: 707rpx;
  106. background: #fff;
  107. margin: auto;
  108. border-bottom: #E9E9E9 solid 1px;
  109. padding: 20rpx 0;
  110. }
  111. .dy-wrap .user-logo {
  112. flex-shrink: 0;
  113. height: 100rpx;
  114. width: 100rpx;
  115. border-radius: 50%;
  116. }
  117. .dy-wrap .user-logo image {
  118. width: 100%;
  119. height: 100%;
  120. border-radius: 50%;
  121. }
  122. .dy-wrap .user-num {
  123. flex-grow: 1;
  124. padding-left: 10rpx;
  125. font-size: 24rpx;
  126. font-weight: 500;
  127. color: #999999;
  128. }
  129. .dy-wrap .user-num .user-name {
  130. font-size: 34rpx;
  131. font-weight: 600;
  132. color: #333333;
  133. padding-right: 20rpx;
  134. padding: 0 20rpx 20rpx 0;
  135. }
  136. .dy-wrap .dy-btn {
  137. flex-shrink: 0;
  138. text-align: center;
  139. width: 136rpx;
  140. line-height: 66rpx;
  141. border-radius: 10rpx;
  142. font-size: 28rpx;
  143. font-weight: 500;
  144. background: #E6645F;
  145. color: #fff;
  146. }
  147. .dy-wrap .jr-btn {
  148. flex-shrink: 0;
  149. text-align: center;
  150. width: 136rpx;
  151. line-height: 66rpx;
  152. border-radius: 10rpx;
  153. font-size: 28rpx;
  154. font-weight: 500;
  155. margin-top: 20rpx;
  156. background: #E6645F;
  157. color: #fff;
  158. }
  159. .dy-wrap .flex_direction {
  160. flex-direction: column;
  161. justify-content: center;
  162. }
  163. .dy-wrap .dying {
  164. color: #999999;
  165. background: #E9E9E9;
  166. }
  167. .input-box {
  168. width: 100%;
  169. padding: 25rpx;
  170. z-index: 999;
  171. height: 44px;
  172. }
  173. .input-box .iconsearch {
  174. font-size: 50rpx;
  175. }
  176. .input-box .input-content {
  177. border-radius: 99rpx;
  178. flex-grow: 1;
  179. padding: 10rpx 30rpx;
  180. background-color: rgba(255, 255, 255, 0.7);
  181. border: 1px solid #000000;
  182. }
  183. .input-box .input-content .input {
  184. flex-grow: 1;
  185. }
  186. .input-box .input-content .input input {
  187. font-size: 32rpx;
  188. }
  189. .input-box .input-button {
  190. padding-left: 20rpx;
  191. font-size: 32rpx;
  192. height: 100%;
  193. }
  194. .Search-box {
  195. padding-left: 20rpx;
  196. padding-right: 20rpx;
  197. height: 100rpx;
  198. background: #ffffff;
  199. display: flex;
  200. justify-content: center;
  201. align-items: center;
  202. }
  203. .Search-box .Search-box-sort {
  204. font-size: 30rpx;
  205. font-weight: 500;
  206. color: #666666;
  207. }
  208. .Search-box .Search-box-sort .sort-text {
  209. width: 57rpx;
  210. height: 29rpx;
  211. font-size: 30rpx;
  212. font-weight: 500;
  213. color: #333333;
  214. line-height: 58rpx;
  215. margin-right: 19rpx;
  216. }
  217. .Search-box .Search-box-sort .sort-img {
  218. width: 21rpx;
  219. height: 11rpx;
  220. margin-bottom: 4rpx;
  221. }
  222. .Search-box .Search-box-size {
  223. width: 700rpx;
  224. height: 65rpx;
  225. border-radius: 32rpx;
  226. background-color: #f1f1f1;
  227. padding-left: 36rpx;
  228. display: flex;
  229. align-items: center;
  230. }
  231. .Search-box .Search-box-size .box-img {
  232. height: 32rpx;
  233. width: 32rpx;
  234. margin-right: 16rpx;
  235. }
  236. .Search-box .Search-box-size .box-word {
  237. width: 100%;
  238. font-size: 22rpx;
  239. font-weight: 500;
  240. color: #cdcbcb;
  241. line-height: 55rpx;
  242. }