detail.wxss 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517
  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. .z-br {
  171. background: #fff;
  172. border: 1px solid #6600ff;
  173. color: #6600ff;
  174. }
  175. .chaochuyincang {
  176. white-space: nowrap;
  177. overflow: hidden;
  178. text-overflow: ellipsis;
  179. }
  180. .bottom-button {
  181. position: fixed;
  182. bottom: 0;
  183. left: 0;
  184. width: 100%;
  185. z-index: 100;
  186. height: 160rpx;
  187. padding: 35rpx 30rpx;
  188. background-color: #fff;
  189. display: flex;
  190. align-items: center;
  191. justify-content: center;
  192. box-sizing: border-box;
  193. }
  194. .bottom-button .btn {
  195. height: 100%;
  196. line-height: 80rpx;
  197. width: 100%;
  198. color: #fff;
  199. background-color: #6600ff;
  200. font-size: 34rpx;
  201. border-radius: 10rpx;
  202. }
  203. .repair-detail-box {
  204. width: 100%;
  205. height: 100%;
  206. }
  207. .repair-detail-box .page-4 .evaluate-box {
  208. padding: 20rpx 30rpx;
  209. background: #f8f8f8;
  210. border: 1rpx solid #ebedf0;
  211. border-radius: 100rpx;
  212. display: flex;
  213. align-items: center;
  214. justify-content: space-between;
  215. box-sizing: border-box;
  216. }
  217. .repair-detail-box .page-1 .textarea {
  218. padding: 20rpx;
  219. border-radius: 10rpx;
  220. background: #f8f8f8;
  221. box-sizing: border-box;
  222. }
  223. .repair-detail-box .page-3 {
  224. padding-bottom: 100rpx;
  225. }
  226. .repair-detail-box .page-3 .input-item {
  227. padding: 0;
  228. }
  229. .repair-detail-box .page-3 .custom-item-tit {
  230. height: 13.333vw;
  231. font-size: 4.267vw;
  232. color: #333;
  233. padding: 2.667vw 0;
  234. position: relative;
  235. display: flex;
  236. justify-content: space-between;
  237. align-items: center;
  238. box-sizing: border-box;
  239. }
  240. .repair-detail-box .page-3 .custom-item-tit .tit::after {
  241. content: "";
  242. width: 0.8vw;
  243. height: 90%;
  244. background-color: #976dec;
  245. border-radius: 0.4vw;
  246. position: absolute;
  247. left: 0;
  248. top: 50%;
  249. -webkit-transform: translateY(-50%);
  250. transform: translateY(-50%);
  251. }
  252. .repair-detail-box .page-3 .tit {
  253. padding-left: 2.667vw;
  254. position: relative;
  255. }
  256. .repair-detail-box .page-4 .custom-item-tit {
  257. height: 13.333vw;
  258. font-size: 4.267vw;
  259. color: #333;
  260. padding: 2.667vw 0;
  261. position: relative;
  262. display: flex;
  263. justify-content: space-between;
  264. align-items: center;
  265. box-sizing: border-box;
  266. }
  267. .repair-detail-box .page-4 .custom-item-tit .tit::after {
  268. content: "";
  269. width: 0.8vw;
  270. height: 90%;
  271. background-color: #976dec;
  272. border-radius: 0.4vw;
  273. position: absolute;
  274. left: 0;
  275. top: 50%;
  276. -webkit-transform: translateY(-50%);
  277. transform: translateY(-50%);
  278. }
  279. .repair-detail-box .page-4 .tit {
  280. padding-left: 2.667vw;
  281. position: relative;
  282. }
  283. .repair-detail-box .page-4 ._s .evaluate-box {
  284. padding: 20px 30px;
  285. background: #f8f8f8;
  286. border: 1px solid #ebedf0;
  287. border-radius: 100px;
  288. display: flex;
  289. align-items: center;
  290. justify-content: space-between;
  291. box-sizing: border-box;
  292. }
  293. .repair-detail-box .annex-list-box {
  294. display: flex;
  295. }
  296. .repair-detail-box .annex-list-box::after {
  297. display: block;
  298. content: "";
  299. width: 30%;
  300. height: 0px;
  301. }
  302. .repair-detail-box .annex-list-box .annex-item {
  303. width: 240rpx;
  304. height: 240rpx;
  305. border: 1px solid #CCCCCC;
  306. margin-bottom: 20px;
  307. position: relative;
  308. overflow: hidden;
  309. }
  310. .repair-detail-box .annex-list-box .annex-item > ._img {
  311. width: 240rpx;
  312. height: 240rpx;
  313. position: absolute;
  314. top: 0;
  315. left: 0;
  316. right: 0;
  317. bottom: 0;
  318. margin: auto;
  319. display: block;
  320. }
  321. .repair-detail-box .annex-list-box .annex-item video {
  322. width: 100%;
  323. height: 100%;
  324. }
  325. .repair-detail-box .tel-box {
  326. display: flex;
  327. align-items: center;
  328. }
  329. .repair-detail-box .tel-box .custom-tel-component {
  330. margin-left: 20px;
  331. }
  332. @charset "UTF-8";
  333. /* 文字尺寸 */
  334. /*文字颜色*/
  335. /* 边框颜色 */
  336. /* 图片加载中颜色 */
  337. /* 行为相关颜色 */
  338. .normal-tip {
  339. font-size: 24rpx;
  340. line-height: 40rpx;
  341. padding: 4rpx 10rpx;
  342. }
  343. .normal-tip.by {
  344. border-radius: 20rpx;
  345. }
  346. .normal-tip.yd {
  347. border-radius: 5rspx;
  348. }
  349. .fixed-page-content {
  350. width: 100%;
  351. height: 100%;
  352. padding-bottom: 120rpx;
  353. box-sizing: border-box;
  354. }
  355. .page-content {
  356. width: 100%;
  357. height: 100%;
  358. }
  359. .white-box {
  360. width: 100%;
  361. font-size: 28rpx;
  362. padding: 0 40rpx;
  363. background-color: #ffffff;
  364. box-sizing: border-box;
  365. }
  366. .white-box:not(:last-child) {
  367. margin-bottom: 30rpx;
  368. }
  369. .white-box .flex-item {
  370. align-items: center;
  371. }
  372. .white-box .flex-item .tel-box {
  373. display: flex;
  374. align-items: center;
  375. justify-content: flex-end;
  376. }
  377. .white-box .flex-item .tel-box .custom-tel-component {
  378. margin-left: 20rpx;
  379. }
  380. .white-box .cell-item {
  381. color: var(--Black);
  382. padding: 30rpx 0;
  383. display: flex;
  384. justify-content: space-between;
  385. position: relative;
  386. }
  387. .white-box .cell-item::after {
  388. position: absolute;
  389. box-sizing: border-box;
  390. content: ' ';
  391. pointer-events: none;
  392. right: 0;
  393. bottom: 0;
  394. left: 0;
  395. border-bottom: 2rpx solid #ebedf0;
  396. -webkit-transform: scaleY(0.5);
  397. transform: scaleY(0.5);
  398. }
  399. .white-box .cell-item > .label {
  400. flex: 1;
  401. width: 30%;
  402. }
  403. .white-box .cell-item > .label .tips {
  404. font-size: 22rpx;
  405. color: var(--greyColor);
  406. }
  407. .white-box .cell-item > .label.required {
  408. position: relative;
  409. }
  410. .white-box .cell-item > .label.required::after {
  411. content: '*';
  412. color: var(--Red);
  413. position: absolute;
  414. font-size: 30rpx;
  415. top: -15rpx;
  416. left: -15rpx;
  417. }
  418. .white-box .cell-item > .tit {
  419. color: var(--Black);
  420. flex: 1;
  421. width: 70%;
  422. text-align: right;
  423. }
  424. .white-box .cell-item > .tit .van-radio-group {
  425. display: flex;
  426. justify-content: flex-end;
  427. }
  428. .white-box .cell-item > .tit .van-radio-group .van-radio:not(:first-child) {
  429. margin-left: 30rpx;
  430. }
  431. .white-box .block-cell-item {
  432. color: var(--Black);
  433. padding: 30rpx 0;
  434. position: relative;
  435. }
  436. .white-box .block-cell-item::after {
  437. position: absolute;
  438. box-sizing: border-box;
  439. content: " ";
  440. pointer-events: none;
  441. right: 16rpx;
  442. bottom: 0;
  443. left: 16rpx;
  444. border-bottom: 2rpx solid #ebedf0;
  445. -webkit-transform: scaleY(0.5);
  446. transform: scaleY(0.5);
  447. }
  448. .white-box .block-cell-item .label {
  449. width: 100%;
  450. padding-bottom: 30rpx;
  451. }
  452. .white-box .block-cell-item .label.required {
  453. position: relative;
  454. }
  455. .white-box .block-cell-item .label.required::after {
  456. content: '*';
  457. color: var(--Red);
  458. position: absolute;
  459. font-size: 30rpx;
  460. top: -15rpx;
  461. left: -15rpx;
  462. }
  463. .white-box .block-cell-item .label .tips {
  464. font-size: 22rpx;
  465. color: var(--greyColor);
  466. }
  467. .white-box .block-cell-item .tit {
  468. width: 100%;
  469. color: var(--Black);
  470. }
  471. .white-box .block-cell-item .tit .van-radio-group {
  472. display: flex;
  473. justify-content: flex-end;
  474. }
  475. .white-box .block-cell-item .tit .van-radio-group .van-radio:not(:first-child) {
  476. margin-left: 30rpx;
  477. }
  478. .white-box .block-cell-item .tit .textarea {
  479. background-color: #F8F8F8;
  480. font-size: 30rpx;
  481. color: #B7B7B7;
  482. border-radius: 10rpx;
  483. padding: 30rpx;
  484. word-break: break-all;
  485. }
  486. .white-box .custom-white-box-content {
  487. padding-bottom: 30rpx;
  488. }
  489. .z-bg {
  490. background: #6600ff;
  491. color: #fff;
  492. }
  493. .l-bg {
  494. background: #0000FF;
  495. color: #fff;
  496. }
  497. .h-bg {
  498. background: #F87A7A;
  499. color: #fff;
  500. }
  501. .z-br {
  502. background: #fff;
  503. border: 1px solid #6600ff;
  504. color: #6600ff;
  505. }
  506. .chaochuyincang {
  507. white-space: nowrap;
  508. overflow: hidden;
  509. text-overflow: ellipsis;
  510. }
  511. .image-repairDispatch-box .van-image-preview__close-icon {
  512. color: #fff;
  513. font-size: 64px;
  514. }