index.wxss 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. /**index.wxss**/
  2. .iconPanel {
  3. display: flex;
  4. padding: 40rpx 0;
  5. background: #007dff;
  6. }
  7. .iconPanel .item {
  8. flex: 1;
  9. width: 0;
  10. }
  11. .iconPanel .item .iconfont {
  12. display: block;
  13. margin: 0 auto;
  14. width: 64rpx;
  15. height: 64rpx;
  16. font-size: 64rpx;
  17. color: #fff;
  18. }
  19. .iconPanel .item .text {
  20. display: block;
  21. margin-top: 34rpx;
  22. height: 30rpx;
  23. line-height: 30rpx;
  24. font-size: 30rpx;
  25. color: #fefefe;
  26. text-align: center;
  27. }
  28. .topWrapper {
  29. padding: 0 24rpx;
  30. background: #fff;
  31. box-shadow: 0 0 10rpx rgba(215, 217, 227, .35);
  32. }
  33. .companySwitch {
  34. display: flex;
  35. align-items: center;
  36. justify-content: space-between;
  37. padding: 40rpx 0;
  38. font-size: 30rpx;
  39. }
  40. .companySwitch .name {
  41. flex: 1;
  42. width: 0;
  43. font-weight: 450;
  44. }
  45. .companySwitch .switch {
  46. display: flex;
  47. align-items: center;
  48. }
  49. .companySwitch .switch .text {
  50. height: 30rpx;
  51. line-height: 30rpx;
  52. color: #b3b6c3;
  53. }
  54. .companySwitch .switch .iconfont {
  55. margin-bottom: 4rpx;
  56. margin-left: 18rpx;
  57. height: 32rpx;
  58. line-height: 32rpx;
  59. font-size: 32rpx;
  60. color: #007dff;
  61. }
  62. .swiper {
  63. width: 100%;
  64. height: 330rpx;
  65. }
  66. .swiper .pic {
  67. width: 100%;
  68. height: 330rpx;
  69. border-radius: 20rpx;
  70. box-shadow: 0 0 20rpx rgba(0, 125, 255, .3);
  71. }
  72. .iconList {
  73. padding: 23rpx 0;
  74. overflow: hidden;
  75. }
  76. .iconList .item {
  77. padding: 17rpx 0;
  78. float: left;
  79. width: 25%;
  80. text-align: center;
  81. }
  82. .iconList .item .icon {
  83. display: block;
  84. margin: 0 auto;
  85. width: 70rpx;
  86. height: 70rpx;
  87. }
  88. .iconList .item .text {
  89. margin-top: 16rpx;
  90. display: block;
  91. height: 26rpx;
  92. line-height: 26rpx;
  93. font-weight: 400;
  94. }
  95. .bottomWrapper {
  96. padding: 24rpx 24rpx 60rpx;
  97. }
  98. .notice {
  99. display: flex;
  100. align-items: center;
  101. height: 70rpx;
  102. background: #fff;
  103. border-radius: 35rpx;
  104. box-shadow: 0 0 10rpx rgba(215, 217, 227, .35);
  105. }
  106. .notice .label {
  107. padding-left: 24rpx;
  108. display: flex;
  109. align-items: center;
  110. }
  111. .notice .label .text {
  112. display: block;
  113. height: 70rpx;
  114. line-height: 70rpx;
  115. color: #383838;
  116. }
  117. .notice .label .icon {
  118. margin-left: 4rpx;
  119. width: 57rpx;
  120. height: 28rpx;
  121. }
  122. .notice .content {
  123. padding: 0 36rpx 0 16rpx;
  124. flex: 1;
  125. width: 0;
  126. height: 70rpx;
  127. overflow: hidden;
  128. }
  129. .notice .content .text {
  130. display: block;
  131. height: 70rpx;
  132. line-height: 70rpx;
  133. font-size: 24rpx;
  134. white-space: nowrap;
  135. overflow: hidden;
  136. text-overflow: ellipsis;
  137. }
  138. .notice .detail {
  139. position: relative;
  140. height: 70rpx;
  141. line-height: 70rpx;
  142. padding: 0 24rpx;
  143. font-size: 24rpx;
  144. color: #fc5260;
  145. }
  146. .notice .detail:before {
  147. content: "";
  148. position: absolute;
  149. top: 50%;
  150. transform: translateY(-50%);
  151. left: 0;
  152. background: #d2d2d2;
  153. height: 30rpx;
  154. width: 2rpx;
  155. }
  156. .lineGroup {
  157. margin-top: 24rpx;
  158. display: flex;
  159. align-items: center;
  160. border-radius: 16rpx;
  161. background: #fff;
  162. box-shadow: 0 0 10rpx rgba(215, 217, 227, .35);
  163. }
  164. .lineGroup .item {
  165. position: relative;
  166. flex: 1;
  167. width: 0;
  168. height: 88rpx;
  169. display: flex;
  170. align-items: center;
  171. justify-content: center;
  172. }
  173. .lineGroup .item+.item:before {
  174. content: "";
  175. content: "";
  176. position: absolute;
  177. top: 50%;
  178. transform: translateY(-50%);
  179. left: 0;
  180. background: #dbdce2;
  181. height: 48rpx;
  182. width: 2rpx;
  183. }
  184. .lineGroup .item .label {
  185. display: block;
  186. height: 88rpx;
  187. line-height: 88rpx;
  188. color: #b3b6c3;
  189. }
  190. .lineGroup .item .content {
  191. display: flex;
  192. align-items: center;
  193. }
  194. .lineGroup .item .content .text {
  195. display: block;
  196. height: 88rpx;
  197. line-height: 88rpx;
  198. }
  199. .blue {
  200. color: #007bff;
  201. }
  202. .green {
  203. color: #3ccbc7;
  204. }
  205. .warning {
  206. color: #ff8c42;
  207. }
  208. .danger {
  209. color: #fd2d61;
  210. }
  211. .lineGroup .item .content .iconfont {
  212. margin-left: 30rpx;
  213. width: 36rpx;
  214. height: 88rpx;
  215. line-height: 88rpx;
  216. font-size: 36rpx;
  217. color: #007dff;
  218. }
  219. .lineGroup .item .content .icon-fail {
  220. color: #d81e06;
  221. }
  222. .totalHead {
  223. padding: 40rpx 0;
  224. line-height: 30rpx;
  225. font-size: 30rpx;
  226. font-weight: 450;
  227. }
  228. .lineGroup2 {
  229. display: flex;
  230. align-items: center;
  231. border-radius: 16rpx;
  232. background: #fff;
  233. box-shadow: 0 0 10rpx rgba(215, 217, 227, .35);
  234. }
  235. .lineGroup2+.lineGroup2 {
  236. margin-top: 24rpx;
  237. }
  238. .lineGroup2 .item {
  239. position: relative;
  240. padding: 40rpx 0;
  241. flex: 1;
  242. width: 0;
  243. text-align: center;
  244. }
  245. .lineGroup2 .item+.item:before {
  246. content: "";
  247. content: "";
  248. position: absolute;
  249. top: 50%;
  250. transform: translateY(-50%);
  251. left: 0;
  252. background: #dbdce2;
  253. height: 88rpx;
  254. width: 2rpx;
  255. }
  256. .lineGroup2 .item .content {
  257. display: block;
  258. height: 48rpx;
  259. line-height: 48rpx;
  260. font-size: 48rpx;
  261. font-weight: 450;
  262. color: #383838;
  263. }
  264. .lineGroup2 .item .content .unit{
  265. font-size:26rpx;
  266. }
  267. .lineGroup2 .item .label {
  268. margin-top: 26rpx;
  269. display: block;
  270. height: 26rpx;
  271. line-height: 26rpx;
  272. color: #b3b6c3;
  273. }
  274. .tabWrapper {
  275. margin-top: 24rpx;
  276. padding: 30rpx 30rpx 40rpx;
  277. border-radius: 16rpx;
  278. background: #fff;
  279. box-shadow: 0 0 10rpx rgba(215, 217, 227, .35);
  280. }
  281. .tabBar {
  282. display: flex;
  283. align-items: center;
  284. justify-content: center;
  285. margin-bottom: 48rpx;
  286. }
  287. .tabBar .item {
  288. width: 126rpx;
  289. height: 46rpx;
  290. line-height: 46rpx;
  291. text-align: center;
  292. color: #007dff;
  293. background: #fff;
  294. transition: all .3s ease;
  295. border: solid #eee 1rpx;
  296. box-sizing: content-box;
  297. }
  298. .tabBar .item+.item {
  299. border-left: none;
  300. }
  301. .tabBar .item.active {
  302. color: #b3b6c3;
  303. background: #f8f9fb;
  304. }
  305. .tabWrapper .lineItem {
  306. display: flex;
  307. align-items: center;
  308. height: 30rpx;
  309. font-size: 30rpx;
  310. }
  311. .tabWrapper .lineItem+.lineItem {
  312. margin-top: 40rpx;
  313. }
  314. .tabWrapper .lineItem .label {
  315. padding-left: 78rpx;
  316. flex: 1;
  317. width: 0;
  318. color: #767b89;
  319. }
  320. .tabWrapper .lineItem .content {
  321. padding-left: 78rpx;
  322. flex: 1;
  323. width: 0;
  324. text-align: left;
  325. font-weight: 450;
  326. }