add.wxss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  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. .input-item-box textarea {
  181. min-height: 300rpx !important;
  182. }
  183. .form-box {
  184. background: #fff;
  185. padding: 12rpx 0;
  186. }
  187. .form-box .van-cell {
  188. padding: 0;
  189. }
  190. .form-box .item-box {
  191. display: flex;
  192. padding: 0rpx 30rpx;
  193. }
  194. .form-box .item-box .input-tit {
  195. width: 130rpx;
  196. margin-right: 10rpx;
  197. }
  198. .form-box .item-box .input-tit .tit {
  199. font-size: 28rpx;
  200. line-height: 96rpx;
  201. font-weight: bold;
  202. color: #000000;
  203. }
  204. .form-box .item-box .input-tit .tit.title-warp {
  205. line-height: 56rpx;
  206. }
  207. .form-box .item-box .input-item-box {
  208. flex: 1;
  209. }
  210. .form-box .item-box .input-item-box .n-input-box {
  211. padding: 12rpx 0;
  212. }
  213. .form-box .item-box .input-item-box .n-input-box input {
  214. font-size: 28rpx;
  215. font-weight: 500;
  216. width: 100%;
  217. height: 72rpx;
  218. border: transparent;
  219. padding: 0 24rpx;
  220. color: #000;
  221. box-sizing: border-box;
  222. border-radius: 6rpx;
  223. }
  224. .form-box .item-box .input-item-box .n-input-box.inp-x-box {
  225. position: relative;
  226. }
  227. .form-box .item-box .input-item-box .n-input-box.inp-x-box input {
  228. padding: 0 54rpx 0 24rpx;
  229. }
  230. .form-box .item-box .input-item-box .n-input-box.inp-x-box svg {
  231. position: absolute;
  232. top: 39%;
  233. right: 4%;
  234. width: 24rpx;
  235. height: 24rpx;
  236. color: #868686;
  237. }
  238. .form-box .item-box .input-item-box .n-input-box.inp-txt-box {
  239. position: relative;
  240. }
  241. .form-box .item-box .input-item-box .n-input-box.inp-txt-box input {
  242. padding: 0 88rpx 0 24rpx;
  243. }
  244. .form-box .item-box .input-item-box .n-input-box.inp-txt-box ._span {
  245. position: absolute;
  246. top: 36%;
  247. right: 4%;
  248. font-weight: 500;
  249. font-size: 28rpx;
  250. color: #3b7aff;
  251. }
  252. .form-box .item-box .input-item-box .dis-select-box {
  253. padding: 12rpx 0;
  254. position: relative;
  255. }
  256. .form-box .item-box .input-item-box .dis-select-box .select-left {
  257. font-size: 28rpx;
  258. font-weight: 500;
  259. width: 248rpx;
  260. height: 72rpx;
  261. border: transparent;
  262. padding: 0 24rpx;
  263. box-sizing: border-box;
  264. border-radius: 6rpx;
  265. }
  266. .form-box .item-box .input-item-box .dis-select-box .select-right {
  267. font-size: 28rpx;
  268. font-weight: 500;
  269. width: 280rpx;
  270. height: 72rpx;
  271. color: #000;
  272. border: transparent;
  273. padding: 0 48rpx 0 24rpx;
  274. box-sizing: border-box;
  275. border-radius: 6rpx;
  276. }
  277. .form-box .item-box .input-item-box .dis-select-box .icon-down {
  278. position: absolute;
  279. top: 36rpx;
  280. right: 22rpx;
  281. color: #767676;
  282. font-size: 24rpx;
  283. }
  284. .form-box .item-box .input-item-box .two-inp-box {
  285. width: 100%;
  286. box-sizing: border-box;
  287. padding: 12rpx 0;
  288. }
  289. .form-box .item-box .input-item-box .two-inp-box input {
  290. width: 256rpx;
  291. font-size: 28rpx;
  292. font-weight: 500;
  293. height: 72rpx;
  294. border: transparent;
  295. padding: 0 24rpx;
  296. box-sizing: border-box;
  297. border-radius: 6rpx;
  298. }
  299. .form-box .item-box .input-item-box .two-inp-box input:first-child {
  300. margin-right: 16rpx;
  301. }
  302. .form-box .item-box .input-item-box .one-selcet-box {
  303. padding: 12rpx 0;
  304. position: relative;
  305. }
  306. .form-box .item-box .input-item-box .one-selcet-box input {
  307. font-size: 28rpx;
  308. font-weight: 500;
  309. width: 100%;
  310. height: 72rpx;
  311. color: #000;
  312. border: transparent;
  313. padding: 0 48rpx 0 24rpx;
  314. box-sizing: border-box;
  315. border-radius: 6rpx;
  316. }
  317. .form-box .item-box .input-item-box .one-selcet-box .icon-down {
  318. position: absolute;
  319. top: 36rpx;
  320. right: 22rpx;
  321. color: #767676;
  322. font-size: 24rpx;
  323. }
  324. .form-box .item-box .input-item-box textarea {
  325. margin: 12rpx 0;
  326. padding: 14rpx 24rpx;
  327. border-radius: 6rpx;
  328. font-size: 28rpx;
  329. font-weight: 500;
  330. line-height: 1.6;
  331. color: #000;
  332. }
  333. .form-box .item-box .input-item-box textarea::-webkit-input-placeholder {
  334. /* WebKit browsers */
  335. color: #999;
  336. }
  337. .form-box .item-box .input-item-box .xj-box {
  338. padding: 36rpx 0 28rpx;
  339. }
  340. .form-box .item-box .input-item-box .img-d-box {
  341. width: 266rpx;
  342. }
  343. .form-box .item-box .input-item-box .date-selcet-box {
  344. padding: 12rpx 0;
  345. position: relative;
  346. }
  347. .form-box .item-box .input-item-box .date-selcet-box input {
  348. font-size: 28rpx;
  349. font-weight: 500;
  350. width: 100%;
  351. height: 72rpx;
  352. color: #000;
  353. border: transparent;
  354. padding: 0 24rpx 0 74rpx;
  355. box-sizing: border-box;
  356. border-radius: 6rpx;
  357. }
  358. .form-box .item-box .input-item-box .date-selcet-box ._img {
  359. position: absolute;
  360. top: 32%;
  361. left: 4%;
  362. width: 30rpx;
  363. }
  364. .form-box .item-box .input-item-box .img-show-box {
  365. width: 100%;
  366. padding: 20rpx;
  367. box-sizing: border-box;
  368. }
  369. .form-box .item-box .input-item-box .img-show-box ._img {
  370. width: 100%;
  371. }
  372. .form-box .item-box .input-item-box .radio-box {
  373. display: flex;
  374. align-items: center;
  375. height: 100%;
  376. }
  377. .form-box .item-box .input-item-box .radio-box .van-radio {
  378. flex: 1;
  379. }
  380. .form-box .item-box .input-item-box .radio-box .van-radio__label {
  381. font-size: 24rpx;
  382. font-weight: 500;
  383. color: #999999;
  384. }
  385. .form-box .item-box .input-item-box .file-box {
  386. position: relative;
  387. top: 20%;
  388. padding: 0 50rpx;
  389. display: inline-block;
  390. height: 60rpx;
  391. background: #3b7aff;
  392. border-radius: 40rpx;
  393. font-size: 28rpx;
  394. font-weight: 500;
  395. line-height: 60rpx;
  396. color: #ffffff;
  397. }
  398. .form-box .item-box .input-item-box input {
  399. color: #000;
  400. }
  401. .form-box .item-box .input-item-box input::-webkit-input-placeholder {
  402. /* WebKit browsers */
  403. color: #999;
  404. }
  405. .form-box .item-box .input-item-box.gray .n-input-box input {
  406. background: #f8f8f8 !important;
  407. }
  408. .form-box .item-box .input-item-box.gray .dis-select-box .select-left {
  409. background: #f8f8f8;
  410. }
  411. .form-box .item-box .input-item-box.gray .dis-select-box .select-right {
  412. background: #f8f8f8;
  413. }
  414. .form-box .item-box .input-item-box.gray .one-selcet-box input {
  415. background: #f8f8f8;
  416. }
  417. .form-box .item-box .input-item-box.gray textarea {
  418. background: #f8f8f8;
  419. }
  420. .form-box .item-box .input-item-box.gray .date-selcet-box input {
  421. background: #f8f8f8;
  422. }
  423. .form-box .item-box .input-item-box.blue .n-input-box input {
  424. background: #f3f7ff;
  425. }
  426. .form-box .item-box .input-item-box.blue .dis-select-box .select-left {
  427. background: #f3f7ff;
  428. }
  429. .form-box .item-box .input-item-box.blue .dis-select-box .select-right {
  430. background: #f3f7ff;
  431. }
  432. .form-box .item-box .input-item-box.blue .one-selcet-box input {
  433. background: #f3f7ff;
  434. }
  435. .form-box .item-box .input-item-box.blue textarea {
  436. background: #f3f7ff;
  437. }
  438. .form-box .item-box .input-item-box.blue .date-selcet-box input {
  439. background: #f3f7ff;
  440. }
  441. .form-box .item-box .input-item-box.blue .two-inp-box input {
  442. background: #f3f7ff;
  443. }
  444. .form-box .item-box .input-item-box.green .n-input-box input {
  445. background: #dcffec;
  446. }
  447. .form-box .item-box .input-item-box.green .dis-select-box .select-left {
  448. background: #dcffec;
  449. }
  450. .form-box .item-box .input-item-box.green .dis-select-box .select-right {
  451. background: #dcffec;
  452. }
  453. .form-box .item-box .input-item-box.green .one-selcet-box input {
  454. background: #dcffec;
  455. }
  456. .form-box .item-box .input-item-box.green textarea {
  457. background: #dcffec;
  458. }
  459. .form-box .item-box .input-item-box.red .img-show-box {
  460. background: #fff1f1;
  461. }
  462. .form-box .item-box .input-item-box.red textarea {
  463. background: #fff1f1;
  464. }
  465. .form-box .detail-title-box {
  466. margin: 0 30rpx;
  467. padding: 30rpx 0;
  468. border-bottom: 1rpx solid #e7e7e7;
  469. }
  470. .button-group {
  471. display: flex;
  472. justify-content: space-around;
  473. align-items: center;
  474. padding: 4vw 0 !important;
  475. }
  476. .upload-group {
  477. padding: 0.5rem 0.9rem;
  478. }
  479. .video-name {
  480. white-space: nowrap;
  481. text-overflow: ellipsis;
  482. overflow: hidden;
  483. word-break: break-all;
  484. width: 17em;
  485. font-weight: 700;
  486. font-size: 0.8rem;
  487. }
  488. .upload-group {
  489. padding: 0.5rem 0.9rem;
  490. }