main.wxss 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. @charset "UTF-8";
  2. /*每个页面公共css */
  3. .text-flex {
  4. display: flex;
  5. justify-content: space-between;
  6. align-items: center;
  7. }
  8. .color-primary {
  9. color: #3c9cff;
  10. }
  11. .color-success {
  12. color: #5ac725;
  13. }
  14. .color-warning {
  15. color: #f9ae3d;
  16. }
  17. .color-error {
  18. color: #f56c6c;
  19. }
  20. .status-tag {
  21. height: 52rpx;
  22. border-radius: 52rpx;
  23. line-height: 52rpx;
  24. padding: 0 30rpx;
  25. font-size: 24rpx;
  26. color: #fff;
  27. }
  28. .status-tag.success {
  29. background-color: #5ac725;
  30. }
  31. .status-tag.primary {
  32. background-color: #3c9cff;
  33. }
  34. .status-tag.info {
  35. background-color: #909399;
  36. }
  37. .status-tag.warning {
  38. background-color: #f9ae3d;
  39. }
  40. .status-tag.error {
  41. background-color: #f56c6c;
  42. }
  43. .common-list {
  44. padding: 30rpx;
  45. box-sizing: border-box;
  46. }
  47. .common-list .common-item {
  48. background-color: #ffffff;
  49. border-radius: 16rpx;
  50. box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
  51. padding: 30rpx;
  52. position: relative;
  53. margin-bottom: 30rpx;
  54. }
  55. .common-list .common-item .icon {
  56. position: absolute;
  57. top: 30rpx;
  58. right: 30rpx;
  59. }
  60. .common-list .common-item .title {
  61. font-size: 32rpx;
  62. font-weight: 600;
  63. }
  64. .common-list .common-item .date {
  65. font-size: 24rpx;
  66. color: #606266;
  67. margin: 10rpx 0;
  68. }
  69. .common-list .common-item .space {
  70. font-size: 24rpx;
  71. }
  72. .common-list .common-item .other {
  73. margin-top: 20rpx;
  74. }
  75. .common-list .common-item .other .item {
  76. margin-top: 16rpx;
  77. }
  78. .common-list .common-item .other .label {
  79. color: #606266;
  80. font-size: 24rpx;
  81. }
  82. .common-list .common-item .other .value {
  83. margin-top: 6rpx;
  84. font-weight: 400;
  85. }
  86. .common-list .common-item .state {
  87. margin-top: 20rpx;
  88. display: flex;
  89. justify-content: space-between;
  90. }
  91. .common-list .common-item .state .create {
  92. height: 48rpx;
  93. border-radius: 48rpx;
  94. border: 1px solid #3c9cff;
  95. display: flex;
  96. align-items: center;
  97. color: #3c9cff;
  98. padding: 0 10rpx;
  99. }
  100. .common-list .common-item .state .create .name {
  101. font-size: 24rpx;
  102. flex: 1;
  103. max-width: 150rpx;
  104. min-width: 70rpx;
  105. overflow: hidden;
  106. margin-left: 10rpx;
  107. line-height: 36rpx;
  108. padding-right: 10rpx;
  109. }
  110. .hui-button-box {
  111. background-color: #ffffff;
  112. box-shadow: 0px 2px 10px rgba(3, 3, 3, 0.1);
  113. position: fixed;
  114. bottom: 0;
  115. left: 0;
  116. right: 0;
  117. height: 100rpx;
  118. display: flex;
  119. align-items: center;
  120. justify-content: flex-end;
  121. padding-bottom: 0;
  122. padding-bottom: constant(safe-area-inset-bottom);
  123. padding-bottom: env(safe-area-inset-bottom);
  124. padding-right: 40rpx;
  125. padding-left: 40rpx;
  126. }
  127. .hui-button-box .hui-button-view {
  128. height: 100rpx;
  129. display: flex;
  130. align-items: center;
  131. }
  132. .hui-button-box .hui-button {
  133. height: 68rpx;
  134. border-radius: 68rpx;
  135. color: #ffffff;
  136. background: #3c9cff;
  137. border: 1px solid #3c9cff;
  138. flex: 1;
  139. display: flex;
  140. align-items: center;
  141. justify-content: center;
  142. margin: 0 30rpx;
  143. }
  144. .hui-button-box .hui-button.hui-button-light {
  145. color: #3c9cff;
  146. background: #fff;
  147. }
  148. .hui-button-box .hui-button-icon {
  149. margin-right: 10rpx;
  150. }
  151. .hui-detail {
  152. padding: 30rpx;
  153. }
  154. .hui-detail .detail-box {
  155. background-color: #ffffff;
  156. border-radius: 16rpx;
  157. box-shadow: 0px 1px 12px rgba(3, 3, 3, 0.08);
  158. padding: 30rpx;
  159. position: relative;
  160. margin-bottom: 30rpx;
  161. }
  162. .hui-detail .detail-box.file-box {
  163. padding-bottom: 20rpx;
  164. }
  165. .hui-detail .sub-title {
  166. display: flex;
  167. align-items: center;
  168. margin-left: -8rpx;
  169. }
  170. .hui-detail .sub-title .sub-label {
  171. font-size: 32rpx;
  172. font-weight: 600;
  173. margin-left: 14rpx;
  174. }
  175. .hui-detail .title-box {
  176. padding-left: 90rpx;
  177. position: relative;
  178. min-height: 88rpx;
  179. }
  180. .hui-detail .title-box .title-icon {
  181. width: 70rpx;
  182. height: 70rpx;
  183. text-align: center;
  184. line-height: 70rpx;
  185. background: #3c9cff;
  186. border-radius: 70rpx;
  187. position: absolute;
  188. left: 0;
  189. top: 50%;
  190. margin-top: -35rpx;
  191. }
  192. .hui-detail .title-box .title {
  193. font-size: 32rpx;
  194. font-weight: 600;
  195. margin-bottom: 8rpx;
  196. }
  197. .hui-detail .title-box .date {
  198. font-size: 24rpx;
  199. color: #606266;
  200. }
  201. .hui-detail .other {
  202. margin-top: 20rpx;
  203. }
  204. .hui-detail .other .item {
  205. margin-top: 16rpx;
  206. }
  207. .hui-detail .other .label {
  208. color: #606266;
  209. font-size: 24rpx;
  210. }
  211. .hui-detail .other .value {
  212. margin-top: 10rpx;
  213. font-weight: 400;
  214. }
  215. .hui-detail .other .file-item {
  216. background-color: #ededed;
  217. height: 80rpx;
  218. display: flex;
  219. align-items: center;
  220. border-radius: 12rpx;
  221. padding: 0 14rpx;
  222. }
  223. .hui-detail .other .file-name {
  224. flex: 1;
  225. width: 0;
  226. margin-left: 10rpx;
  227. }
  228. .hui-detail .other .contarct-item {
  229. background-color: #ededed;
  230. border-radius: 12rpx;
  231. padding: 20rpx;
  232. margin-bottom: 20rpx;
  233. }
  234. .hui-detail .other .contarct-content {
  235. display: flex;
  236. justify-content: space-between;
  237. align-items: center;
  238. margin-bottom: 16rpx;
  239. }
  240. .hui-detail .other .contarct-content.last {
  241. margin-bottom: 0rpx;
  242. }
  243. .hui-detail .other .contarct-content.last .content-item {
  244. flex: 1;
  245. width: 0;
  246. }
  247. .hui-detail .other .contarct-content .content-title {
  248. font-size: 32rpx;
  249. font-weight: 500;
  250. }
  251. .hui-detail .other .contarct-content .content-label {
  252. color: #606266;
  253. font-size: 24rpx;
  254. }
  255. .hui-detail .other .contarct-content .content-value {
  256. font-weight: 400;
  257. margin-left: 6rpx;
  258. flex: 1;
  259. width: 0;
  260. }
  261. .hui-detail .other .contarct-content .content-item {
  262. overflow: hidden;
  263. display: flex;
  264. align-items: center;
  265. }
  266. .hui-detail .other .contarct-content .content-item.content-title {
  267. flex: 1;
  268. width: 0;
  269. }
  270. .hui-detail .state {
  271. margin-top: 20rpx;
  272. display: flex;
  273. justify-content: space-between;
  274. }
  275. .hui-detail .state .create {
  276. height: 48rpx;
  277. border-radius: 48rpx;
  278. border: 1px solid #3c9cff;
  279. display: flex;
  280. align-items: center;
  281. color: #3c9cff;
  282. padding: 0 10rpx;
  283. }
  284. .hui-detail .state .create .name {
  285. font-size: 24rpx;
  286. flex: 1;
  287. max-width: 150rpx;
  288. min-width: 70rpx;
  289. overflow: hidden;
  290. margin-left: 10rpx;
  291. line-height: 36rpx;
  292. padding-right: 10rpx;
  293. }
  294. .process-box .process-set-item {
  295. padding-left: 80rpx;
  296. position: relative;
  297. }
  298. .process-box .process-item-title {
  299. padding: 10rpx 0;
  300. display: flex;
  301. align-items: center;
  302. }
  303. .process-box .process-item-title .label {
  304. font-weight: bold;
  305. }
  306. .process-box .process-item-content {
  307. padding: 5px 0;
  308. }
  309. .process-box .process-set-state {
  310. width: 20px;
  311. height: 20px;
  312. border-radius: 50%;
  313. position: absolute;
  314. left: 7px;
  315. top: 6px;
  316. display: flex;
  317. align-items: center;
  318. justify-content: center;
  319. }
  320. .process-box .process-set-state .el-icon-success {
  321. font-size: 20px;
  322. }
  323. .process-box .process-set-state.info {
  324. background: rgba(144, 157, 143, 0.4);
  325. }
  326. .process-box .process-set-state.info .process-set-state-1 {
  327. background: #909d8f;
  328. }
  329. .process-box .process-set-state.info .process-set-state-2 {
  330. background: rgba(144, 157, 143, 0.6);
  331. }
  332. .process-box .process-set-state.waiting {
  333. background: rgba(255, 125, 0, 0.4);
  334. }
  335. .process-box .process-set-state.waiting .process-set-state-1 {
  336. background: #ff7d00;
  337. }
  338. .process-box .process-set-state.waiting .process-set-state-2 {
  339. background: rgba(255, 125, 0, 0.6);
  340. }
  341. .process-box .process-set-state.waiting .el-icon-success {
  342. color: #ff7d00;
  343. }
  344. .process-box .process-set-state.success {
  345. background: rgba(0, 180, 42, 0.4);
  346. }
  347. .process-box .process-set-state.success .process-set-state-1 {
  348. background: #00b42a;
  349. }
  350. .process-box .process-set-state.success .process-set-state-2 {
  351. background: rgba(0, 180, 42, 0.6);
  352. }
  353. .process-box .process-set-state.error {
  354. background: rgba(245, 63, 63, 0.4);
  355. }
  356. .process-box .process-set-state.error .process-set-state-1 {
  357. background: #f53f3f;
  358. }
  359. .process-box .process-set-state.error .process-set-state-2 {
  360. background: rgba(245, 63, 63, 0.6);
  361. }
  362. .process-box .process-set-state.state-last {
  363. background: #fff;
  364. }
  365. .process-box .process-set-state-1 {
  366. width: 8px;
  367. height: 8px;
  368. border-radius: 50%;
  369. }
  370. .process-box .process-set-state-2 {
  371. width: 14px;
  372. height: 14px;
  373. border-radius: 50%;
  374. display: flex;
  375. align-items: center;
  376. justify-content: center;
  377. }
  378. .process-box .line {
  379. position: absolute;
  380. left: 16px;
  381. width: 2px;
  382. }
  383. .process-box .line.info {
  384. background: rgba(144, 157, 143, 0.4);
  385. }
  386. .process-box .line.waiting {
  387. background: rgba(255, 125, 0, 0.4);
  388. }
  389. .process-box .line.success {
  390. background: rgba(0, 180, 42, 0.4);
  391. }
  392. .process-box .line.error {
  393. background: rgba(245, 63, 63, 0.4);
  394. }
  395. .process-box .line-top {
  396. top: 0;
  397. height: 6px;
  398. }
  399. .process-box .line-bottom {
  400. top: 26px;
  401. bottom: 0;
  402. }
  403. page {
  404. background-color: #f3f4f6;
  405. font-size: 28rpx;
  406. }