detail.wxss 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  1. @charset "UTF-8";
  2. /* 文字尺寸 */
  3. /*文字颜色*/
  4. /* 边框颜色 */
  5. /* 图片加载中颜色 */
  6. /* 行为相关颜色 */
  7. .normal-tip {
  8. font-size: 24rpx;
  9. line-height: 40rpx;
  10. padding: 4rpx 10rpx;
  11. }
  12. .normal-tip.by {
  13. border-radius: 20rpx;
  14. }
  15. .normal-tip.yd {
  16. border-radius: 5rspx;
  17. }
  18. .fixed-page-content {
  19. width: 100%;
  20. height: 100%;
  21. padding-bottom: 120rpx;
  22. box-sizing: border-box;
  23. }
  24. .page-content {
  25. width: 100%;
  26. height: 100%;
  27. }
  28. .white-box {
  29. width: 100%;
  30. font-size: 28rpx;
  31. padding: 0 40rpx;
  32. background-color: #ffffff;
  33. box-sizing: border-box;
  34. }
  35. .white-box:not(:last-child) {
  36. margin-bottom: 30rpx;
  37. }
  38. .white-box .flex-item {
  39. align-items: center;
  40. }
  41. .white-box .flex-item .tel-box {
  42. display: flex;
  43. align-items: center;
  44. justify-content: flex-end;
  45. }
  46. .white-box .flex-item .tel-box .custom-tel-component {
  47. margin-left: 20rpx;
  48. }
  49. .white-box .cell-item {
  50. color: var(--Black);
  51. padding: 30rpx 0;
  52. display: flex;
  53. justify-content: space-between;
  54. position: relative;
  55. }
  56. .white-box .cell-item::after {
  57. position: absolute;
  58. box-sizing: border-box;
  59. content: ' ';
  60. pointer-events: none;
  61. right: 0;
  62. bottom: 0;
  63. left: 0;
  64. border-bottom: 2rpx solid #ebedf0;
  65. -webkit-transform: scaleY(0.5);
  66. transform: scaleY(0.5);
  67. }
  68. .white-box .cell-item > .label {
  69. flex: 1;
  70. width: 30%;
  71. }
  72. .white-box .cell-item > .label .tips {
  73. font-size: 22rpx;
  74. color: var(--greyColor);
  75. }
  76. .white-box .cell-item > .label.required {
  77. position: relative;
  78. }
  79. .white-box .cell-item > .label.required::after {
  80. content: '*';
  81. color: var(--Red);
  82. position: absolute;
  83. font-size: 30rpx;
  84. top: -15rpx;
  85. left: -15rpx;
  86. }
  87. .white-box .cell-item > .tit {
  88. color: var(--Black);
  89. flex: 1;
  90. width: 70%;
  91. text-align: right;
  92. }
  93. .white-box .cell-item > .tit .van-radio-group {
  94. display: flex;
  95. justify-content: flex-end;
  96. }
  97. .white-box .cell-item > .tit .van-radio-group .van-radio:not(:first-child) {
  98. margin-left: 30rpx;
  99. }
  100. .white-box .block-cell-item {
  101. color: var(--Black);
  102. padding: 30rpx 0;
  103. position: relative;
  104. }
  105. .white-box .block-cell-item::after {
  106. position: absolute;
  107. box-sizing: border-box;
  108. content: " ";
  109. pointer-events: none;
  110. right: 16rpx;
  111. bottom: 0;
  112. left: 16rpx;
  113. border-bottom: 2rpx solid #ebedf0;
  114. -webkit-transform: scaleY(0.5);
  115. transform: scaleY(0.5);
  116. }
  117. .white-box .block-cell-item .label {
  118. width: 100%;
  119. padding-bottom: 30rpx;
  120. }
  121. .white-box .block-cell-item .label.required {
  122. position: relative;
  123. }
  124. .white-box .block-cell-item .label.required::after {
  125. content: '*';
  126. color: var(--Red);
  127. position: absolute;
  128. font-size: 30rpx;
  129. top: -15rpx;
  130. left: -15rpx;
  131. }
  132. .white-box .block-cell-item .label .tips {
  133. font-size: 22rpx;
  134. color: var(--greyColor);
  135. }
  136. .white-box .block-cell-item .tit {
  137. width: 100%;
  138. color: var(--Black);
  139. }
  140. .white-box .block-cell-item .tit .van-radio-group {
  141. display: flex;
  142. justify-content: flex-end;
  143. }
  144. .white-box .block-cell-item .tit .van-radio-group .van-radio:not(:first-child) {
  145. margin-left: 30rpx;
  146. }
  147. .white-box .block-cell-item .tit .textarea {
  148. background-color: #F8F8F8;
  149. font-size: 30rpx;
  150. color: #B7B7B7;
  151. border-radius: 10rpx;
  152. padding: 30rpx;
  153. word-break: break-all;
  154. }
  155. .white-box .custom-white-box-content {
  156. padding-bottom: 30rpx;
  157. }
  158. .z-bg {
  159. background: #6600ff;
  160. color: #fff;
  161. }
  162. .l-bg {
  163. background: #0000FF;
  164. color: #fff;
  165. }
  166. .h-bg {
  167. background: #F87A7A;
  168. color: #fff;
  169. }
  170. .y-bg {
  171. background: #e4ce6b;
  172. color: #fff;
  173. }
  174. .z-br {
  175. background: #fff;
  176. border: 1px solid #6600ff;
  177. color: #6600ff;
  178. }
  179. .chaochuyincang {
  180. white-space: nowrap;
  181. overflow: hidden;
  182. text-overflow: ellipsis;
  183. }
  184. .bottom-button {
  185. position: fixed;
  186. bottom: 0;
  187. left: 0;
  188. width: 100%;
  189. z-index: 100;
  190. height: 160rpx;
  191. padding: 35rpx 30rpx;
  192. background-color: #fff;
  193. display: flex;
  194. align-items: center;
  195. justify-content: center;
  196. box-sizing: border-box;
  197. }
  198. .bottom-button .btn {
  199. height: 100%;
  200. line-height: 80rpx;
  201. width: 100%;
  202. color: #fff;
  203. background-color: #6600ff;
  204. font-size: 34rpx;
  205. border-radius: 10rpx;
  206. }
  207. .repair-detail-box {
  208. width: 100%;
  209. height: 100%;
  210. }
  211. .repair-detail-box .page-4 .evaluate-box {
  212. padding: 20rpx 30rpx;
  213. background: #f8f8f8;
  214. border: 1rpx solid #ebedf0;
  215. border-radius: 100rpx;
  216. display: flex;
  217. align-items: center;
  218. justify-content: space-between;
  219. box-sizing: border-box;
  220. }
  221. .repair-detail-box .page-1 .textarea {
  222. padding: 20rpx;
  223. border-radius: 10rpx;
  224. background: #f8f8f8;
  225. box-sizing: border-box;
  226. }
  227. .repair-detail-box .page-3 {
  228. padding-bottom: 100rpx;
  229. }
  230. .repair-detail-box .page-3 .input-item {
  231. padding: 0;
  232. }
  233. .repair-detail-box .page-3 .custom-item-tit {
  234. height: 13.333vw;
  235. font-size: 4.267vw;
  236. color: #333;
  237. padding: 2.667vw 0;
  238. position: relative;
  239. display: flex;
  240. justify-content: space-between;
  241. align-items: center;
  242. box-sizing: border-box;
  243. }
  244. .repair-detail-box .page-3 .custom-item-tit .tit::after {
  245. content: "";
  246. width: 0.8vw;
  247. height: 90%;
  248. background-color: #976dec;
  249. border-radius: 0.4vw;
  250. position: absolute;
  251. left: 0;
  252. top: 50%;
  253. -webkit-transform: translateY(-50%);
  254. transform: translateY(-50%);
  255. }
  256. .repair-detail-box .page-3 .tit {
  257. padding-left: 2.667vw;
  258. position: relative;
  259. }
  260. .repair-detail-box .page-4 .custom-item-tit {
  261. height: 13.333vw;
  262. font-size: 4.267vw;
  263. color: #333;
  264. padding: 2.667vw 0;
  265. position: relative;
  266. display: flex;
  267. justify-content: space-between;
  268. align-items: center;
  269. box-sizing: border-box;
  270. }
  271. .repair-detail-box .page-4 .custom-item-tit .tit::after {
  272. content: "";
  273. width: 0.8vw;
  274. height: 90%;
  275. background-color: #976dec;
  276. border-radius: 0.4vw;
  277. position: absolute;
  278. left: 0;
  279. top: 50%;
  280. -webkit-transform: translateY(-50%);
  281. transform: translateY(-50%);
  282. }
  283. .repair-detail-box .page-4 .tit {
  284. padding-left: 2.667vw;
  285. position: relative;
  286. }
  287. .repair-detail-box .page-4 ._s .evaluate-box {
  288. padding: 20px 30px;
  289. background: #f8f8f8;
  290. border: 1px solid #ebedf0;
  291. border-radius: 100px;
  292. display: flex;
  293. align-items: center;
  294. justify-content: space-between;
  295. box-sizing: border-box;
  296. }
  297. .repair-detail-box .annex-list-box {
  298. display: flex;
  299. }
  300. .repair-detail-box .annex-list-box::after {
  301. display: block;
  302. content: "";
  303. width: 30%;
  304. height: 0px;
  305. }
  306. .repair-detail-box .annex-list-box .annex-item {
  307. width: 240rpx;
  308. height: 240rpx;
  309. border: 1px solid #CCCCCC;
  310. margin-bottom: 20px;
  311. position: relative;
  312. overflow: hidden;
  313. }
  314. .repair-detail-box .annex-list-box .annex-item > ._img {
  315. width: 240rpx;
  316. height: 240rpx;
  317. position: absolute;
  318. top: 0;
  319. left: 0;
  320. right: 0;
  321. bottom: 0;
  322. margin: auto;
  323. display: block;
  324. }
  325. .repair-detail-box .annex-list-box .annex-item video {
  326. width: 100%;
  327. height: 100%;
  328. }
  329. .repair-detail-box .tel-box {
  330. display: flex;
  331. align-items: center;
  332. }
  333. .repair-detail-box .tel-box .custom-tel-component {
  334. margin-left: 20px;
  335. }
  336. @charset "UTF-8";
  337. /* 文字尺寸 */
  338. /*文字颜色*/
  339. /* 边框颜色 */
  340. /* 图片加载中颜色 */
  341. /* 行为相关颜色 */
  342. .normal-tip {
  343. font-size: 24rpx;
  344. line-height: 40rpx;
  345. padding: 4rpx 10rpx;
  346. }
  347. .normal-tip.by {
  348. border-radius: 20rpx;
  349. }
  350. .normal-tip.yd {
  351. border-radius: 5rspx;
  352. }
  353. .fixed-page-content {
  354. width: 100%;
  355. height: 100%;
  356. padding-bottom: 120rpx;
  357. box-sizing: border-box;
  358. }
  359. .page-content {
  360. width: 100%;
  361. height: 100%;
  362. }
  363. .white-box {
  364. width: 100%;
  365. font-size: 28rpx;
  366. padding: 0 40rpx;
  367. background-color: #ffffff;
  368. box-sizing: border-box;
  369. }
  370. .white-box:not(:last-child) {
  371. margin-bottom: 30rpx;
  372. }
  373. .white-box .flex-item {
  374. align-items: center;
  375. }
  376. .white-box .flex-item .tel-box {
  377. display: flex;
  378. align-items: center;
  379. justify-content: flex-end;
  380. }
  381. .white-box .flex-item .tel-box .custom-tel-component {
  382. margin-left: 20rpx;
  383. }
  384. .white-box .cell-item {
  385. color: var(--Black);
  386. padding: 30rpx 0;
  387. display: flex;
  388. justify-content: space-between;
  389. position: relative;
  390. }
  391. .white-box .cell-item::after {
  392. position: absolute;
  393. box-sizing: border-box;
  394. content: ' ';
  395. pointer-events: none;
  396. right: 0;
  397. bottom: 0;
  398. left: 0;
  399. border-bottom: 2rpx solid #ebedf0;
  400. -webkit-transform: scaleY(0.5);
  401. transform: scaleY(0.5);
  402. }
  403. .white-box .cell-item > .label {
  404. flex: 1;
  405. width: 30%;
  406. }
  407. .white-box .cell-item > .label .tips {
  408. font-size: 22rpx;
  409. color: var(--greyColor);
  410. }
  411. .white-box .cell-item > .label.required {
  412. position: relative;
  413. }
  414. .white-box .cell-item > .label.required::after {
  415. content: '*';
  416. color: var(--Red);
  417. position: absolute;
  418. font-size: 30rpx;
  419. top: -15rpx;
  420. left: -15rpx;
  421. }
  422. .white-box .cell-item > .tit {
  423. color: var(--Black);
  424. flex: 1;
  425. width: 70%;
  426. text-align: right;
  427. }
  428. .white-box .cell-item > .tit .van-radio-group {
  429. display: flex;
  430. justify-content: flex-end;
  431. }
  432. .white-box .cell-item > .tit .van-radio-group .van-radio:not(:first-child) {
  433. margin-left: 30rpx;
  434. }
  435. .white-box .block-cell-item {
  436. color: var(--Black);
  437. padding: 30rpx 0;
  438. position: relative;
  439. }
  440. .white-box .block-cell-item::after {
  441. position: absolute;
  442. box-sizing: border-box;
  443. content: " ";
  444. pointer-events: none;
  445. right: 16rpx;
  446. bottom: 0;
  447. left: 16rpx;
  448. border-bottom: 2rpx solid #ebedf0;
  449. -webkit-transform: scaleY(0.5);
  450. transform: scaleY(0.5);
  451. }
  452. .white-box .block-cell-item .label {
  453. width: 100%;
  454. padding-bottom: 30rpx;
  455. }
  456. .white-box .block-cell-item .label.required {
  457. position: relative;
  458. }
  459. .white-box .block-cell-item .label.required::after {
  460. content: '*';
  461. color: var(--Red);
  462. position: absolute;
  463. font-size: 30rpx;
  464. top: -15rpx;
  465. left: -15rpx;
  466. }
  467. .white-box .block-cell-item .label .tips {
  468. font-size: 22rpx;
  469. color: var(--greyColor);
  470. }
  471. .white-box .block-cell-item .tit {
  472. width: 100%;
  473. color: var(--Black);
  474. }
  475. .white-box .block-cell-item .tit .van-radio-group {
  476. display: flex;
  477. justify-content: flex-end;
  478. }
  479. .white-box .block-cell-item .tit .van-radio-group .van-radio:not(:first-child) {
  480. margin-left: 30rpx;
  481. }
  482. .white-box .block-cell-item .tit .textarea {
  483. background-color: #F8F8F8;
  484. font-size: 30rpx;
  485. color: #B7B7B7;
  486. border-radius: 10rpx;
  487. padding: 30rpx;
  488. word-break: break-all;
  489. }
  490. .white-box .custom-white-box-content {
  491. padding-bottom: 30rpx;
  492. }
  493. .z-bg {
  494. background: #6600ff;
  495. color: #fff;
  496. }
  497. .l-bg {
  498. background: #0000FF;
  499. color: #fff;
  500. }
  501. .h-bg {
  502. background: #F87A7A;
  503. color: #fff;
  504. }
  505. .y-bg {
  506. background: #e4ce6b;
  507. color: #fff;
  508. }
  509. .z-br {
  510. background: #fff;
  511. border: 1px solid #6600ff;
  512. color: #6600ff;
  513. }
  514. .chaochuyincang {
  515. white-space: nowrap;
  516. overflow: hidden;
  517. text-overflow: ellipsis;
  518. }
  519. .image-repairDispatch-box .van-image-preview__close-icon {
  520. color: #fff;
  521. font-size: 64px;
  522. }