app.wxss 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827
  1. page {
  2. background-color: #f2f2f2;
  3. }
  4. /* 隐藏scroll-view滚动条 sh4wmoo 2020-10-17 */
  5. ::-webkit-scrollbar {
  6. display: none;
  7. width: 0;
  8. height: 0;
  9. color: transparent;
  10. }
  11. /* 修改card组件内容元素间距 sh4wmoo 2020-10-19 */
  12. .van-card__desc {
  13. margin-top: 12rpx;
  14. }
  15. .van-card__bottom {
  16. margin-top: 12rpx;
  17. }
  18. .van-card__title {
  19. font-size: 16px;
  20. font-weight: 900;
  21. }
  22. /* 加载更多外部view样式 */
  23. .load-more {
  24. display: flex;
  25. align-items: center;
  26. justify-content: center;
  27. margin-top: 12rpx;
  28. }
  29. /* 加载更多文字 */
  30. .van-loading__text {
  31. color: #d9001b !important;
  32. }
  33. /*
  34. hxd 列表样式
  35. start
  36. */
  37. /* 卡片整体 */
  38. .list_card {
  39. background-color: #fff;
  40. border-radius: 15rpx;
  41. border-left: 3px solid #e5e5e9;
  42. /* border-right: 2px solid #e5e5e9; */
  43. border-bottom: 2px solid #e5e5e9;
  44. border-top: 2px solid #e5e5e9;
  45. width: 96%;
  46. margin-left: 4px;
  47. box-shadow: 3px 5px 10px #7C7C7C;
  48. margin-top: 18rpx;
  49. }
  50. /* 卡片总标题 */
  51. .list_card_title {
  52. font-size: 14px;
  53. margin-left: 4%;
  54. /* height: 60rpx; */
  55. overflow: hidden;
  56. /*不换行*/
  57. white-space: nowrap;
  58. /*添加...*/
  59. text-overflow: ellipsis;
  60. line-height: 2.5;
  61. font-weight: bold;
  62. width: 100%;
  63. }
  64. /* 分割线 */
  65. .list_card_divide_line {
  66. border-bottom: 1px dashed #ccc;
  67. }
  68. /* 一标题 + 一内容 的内容体*/
  69. .list_card_content {
  70. margin-left: 3%;
  71. margin-top: 10rpx;
  72. }
  73. /* 一标题 + 一内容 的标题*/
  74. .list_card_content_title {
  75. font-size: 12px;
  76. color: gray;
  77. margin: 6rpx;
  78. width: 21%;
  79. float: left;
  80. height: 16px;
  81. }
  82. /* 一标题 + 一内容 的内容*/
  83. .list_card_content_content {
  84. font-size: 12px;
  85. color: black;
  86. margin: 6rpx;
  87. width: 70%;
  88. float: left;
  89. min-height: 16px;
  90. /* font-weight:bold; */
  91. }
  92. /* 2标题 + 2内容 的一行*/
  93. .list_card_content_line {
  94. margin-left: 3%;
  95. width: 96%;
  96. font-size: 12px;
  97. margin-bottom: 10rpx;
  98. }
  99. /* 2标题 + 2内容 的左边标题+内容*/
  100. .list_card_content_left {
  101. width: 52%;
  102. float: left;
  103. border-right: 1px solid #ccc;
  104. }
  105. /* 2标题 + 2内容 的右边标题+内容*/
  106. .list_card_content_right {
  107. width: 44%;
  108. float: left;
  109. margin-left: 12rpx;
  110. }
  111. /* 2标题 + 2内容 的左边标题*/
  112. .list_card_content_left_title {
  113. font-size: 12px;
  114. margin: 6rpx;
  115. width: 42%;
  116. float: left;
  117. color: gray;
  118. }
  119. /* 2标题 + 2内容 的左边内容*/
  120. .list_card_content_left_content {
  121. margin: 6rpx;
  122. /* width: 46%;
  123. float: left; */
  124. color: black;
  125. /* font-weight:bold; */
  126. }
  127. /* 2标题 + 2内容 的右边标题*/
  128. .list_card_content_right_title {
  129. font-size: 12px;
  130. margin: 6rpx;
  131. width: 40%;
  132. float: left;
  133. color: gray;
  134. }
  135. /* 2标题 + 2内容 的右边内容*/
  136. .list_card_content_right_content {
  137. margin: 6rpx;
  138. /* width: 30%;
  139. float: left; */
  140. color: black;
  141. /* font-weight:bold; */
  142. }
  143. /*
  144. hxd 列表样式
  145. end
  146. */
  147. .red-label,
  148. .red-label>view {
  149. color: #E4002B !important;
  150. font-style: normal;
  151. font-weight: bold;
  152. font-size: 14px;
  153. }
  154. .black-label,
  155. .black-label>view {
  156. color: black !important;
  157. }
  158. .van-cell__value{
  159. overflow:none !important;
  160. }
  161. .cell-group-label {
  162. display: flex;
  163. justify-content: space-between;
  164. width: 91%;
  165. font-size: 14px;
  166. color: #969799;
  167. padding: 2vw 3vw;
  168. margin-left: 5px;
  169. }
  170. /** 以下为一览界面 start**/
  171. .main-class {
  172. margin: 10px 32rpx 10px 32rpx;
  173. margin-top: 10px;
  174. border-radius: 15rpx;
  175. box-shadow:2px 2px 5px #e5e5e6;
  176. }
  177. .main-foot {
  178. background: #fff;
  179. width: 100%;
  180. border-radius: 15rpx 15rpx 0px 0px;
  181. background: linear-gradient(180deg, #E2ECFF 0%, #FAFCFF 100%), #fff;
  182. background-repeat: no-repeat;
  183. background-size: 100% 46px;
  184. }
  185. .main-foot-1 {
  186. background: #fff;
  187. width: 100%;
  188. border-radius: 15rpx 15rpx 0px 0px;
  189. background: linear-gradient(180deg, #6A9DFB 0%, #FAFCFF 100%),#fff;
  190. background-repeat: no-repeat;
  191. background-size: 100% 46px;
  192. }
  193. .main-foot-2 {
  194. background: #fff;
  195. width: 100%;
  196. border-radius: 15rpx 15rpx 0px 0px;
  197. /* background: linear-gradient(180deg, #6A9DFB 0%, #FAFCFF 100%),#fff; */
  198. background-repeat: no-repeat;
  199. background-size: 100% 46px;
  200. background: linear-gradient(90.12deg, #9BCBEB 0.13%, #D9F0FF 99.92%);
  201. }
  202. .table {
  203. width: 94%;
  204. padding: 10px 3% 10px 3%;
  205. }
  206. .table-row {
  207. display: flex;
  208. width: 100%;
  209. flex-direction: row;
  210. margin-top: 6px;
  211. }
  212. .table-row-center {
  213. padding: 8px 5px 8px 5px;
  214. font-size: 12px;
  215. width: 100%;
  216. flex-direction: row;
  217. margin-top: 6px;
  218. }
  219. .table-row-item:nth-child(1) {
  220. background: #fff;
  221. width: 50%;
  222. /* line-height: 60rpx; */
  223. /* border-left: 1px #dedede solid; */
  224. /* border-top: 1px #dedede solid;
  225. border-bottom: 1px #dedede solid; */
  226. padding: 8px 5px 8px 5px;
  227. font-size: 12px;
  228. /* font-weight: 600; */
  229. }
  230. .item-red {
  231. color: #fe6627;
  232. }
  233. .telephone-image {
  234. color: #fe6627;
  235. font-size: 19px;
  236. transform: translateY(1vw) rotate(180deg);
  237. float: right;
  238. margin-top: -5px;
  239. }
  240. .telephone-image-small {
  241. color: #d5d8e0;
  242. font-size: 13px;
  243. transform: rotate(180deg);
  244. }
  245. .address-image-small {
  246. color: #d5d8e0;
  247. font-size: 13px;
  248. }
  249. .table-row-item:nth-child(2) {
  250. display: flex;
  251. justify-content: flex-start;
  252. background: #fff;
  253. width: 50%;
  254. word-break: break-all;
  255. /* line-height: 60rpx; */
  256. padding: 8px 5px 8px 5px;
  257. /* border: 1px #dedede solid; */
  258. /* border-top: 1px #dedede solid;
  259. border-bottom: 1px #dedede solid; */
  260. font-size: 12px;
  261. /* font-weight: 600; */
  262. }
  263. .table-row-item-detail:nth-child(1) {
  264. background: #fff;
  265. width: 40%;
  266. /* line-height: 60rpx; */
  267. border-top: 1px #dedede solid;
  268. /* border-left: 1px #dedede solid; */
  269. /* border-bottom: 1px #dedede solid; */
  270. padding: 10px 5px 10px 5px;
  271. font-size: 13px;
  272. /* font-weight: 600; */
  273. }
  274. .table-row-item-detail:nth-child(2) {
  275. display: flex;
  276. justify-content: flex-end;
  277. background: #fff;
  278. width: 60%;
  279. /* line-height: 60rpx; */
  280. padding: 10px 5px 10px 5px;
  281. /* border: 1px #dedede solid; */
  282. border-top: 1px #dedede solid;
  283. /* border-bottom: 1px #dedede solid; */
  284. font-size: 13px;
  285. /* font-weight: 600; */
  286. }
  287. .no-top-border {
  288. border-top: 0px !important;
  289. }
  290. .no-bottom-border {
  291. border-bottom: 0px !important;
  292. }
  293. .first-font-size {
  294. font-size: 13px !important;
  295. font-weight: bold
  296. }
  297. .oas-no {
  298. width: 50%;
  299. font-size: 13px;
  300. color: #3b3b3b;
  301. text-align: left;
  302. font-weight: bold
  303. }
  304. .oas-status {
  305. width: 50%;
  306. font-size: 26rpx;
  307. color: #1989fa;
  308. text-align: right;
  309. }
  310. .oas-status1 {
  311. color: #e97e04;
  312. }
  313. .oas-copy {
  314. width: 5vw;
  315. height: 5vw;
  316. /* margin-left: 20rpx;
  317. transform: translateY(5rpx); */
  318. }
  319. .oas-title {
  320. width: 87%;
  321. font-size: 13px;
  322. color: #3b3b3b;
  323. text-align: left;
  324. font-weight: bold
  325. }
  326. .oas-longtitle {
  327. width: 80%;
  328. font-size: 13px;
  329. color: #3b3b3b;
  330. text-align: left;
  331. font-weight: bold
  332. }
  333. .oas-shortstatus {
  334. width: 19%;
  335. font-size: 13px;
  336. color: #1989fa;
  337. text-align: right;
  338. }
  339. .oas-all {
  340. background: #fff;
  341. width: 100%;
  342. padding: 8px 5px 8px 5px;
  343. font-size: 12px;
  344. }
  345. .header-no {
  346. padding-left: 10rpx;
  347. font-size: 13px !important;
  348. }
  349. .header-status {
  350. position: absolute;
  351. right: 10px;
  352. color: #1989fa;
  353. }
  354. .table-row-whole {
  355. background: #fff;
  356. width: 100%;
  357. padding: 8px 5px 8px 5px;
  358. font-size: 12px;
  359. }
  360. .footer-info {
  361. width: 100%;
  362. text-align: right;
  363. color: #e97e04;
  364. padding-right: 20rpx;
  365. font-size: 12px;
  366. margin-top: 12px;
  367. margin-bottom: 11px;
  368. }
  369. /** 以下为一览界面 end**/
  370. /** 抽屉 start**/
  371. .popup {
  372. position: relative;
  373. }
  374. .popup-button {
  375. position: fixed;
  376. width: 100%;
  377. bottom: 0;
  378. display: flex;
  379. align-items: center;
  380. justify-content: space-around;
  381. padding-bottom: 15rpx;
  382. padding-top: 15rpx;
  383. background: #fff;
  384. height: 100rpx;
  385. }
  386. .pop-button-class{
  387. border: none !important;
  388. font-size: 16px !important;
  389. font-weight: 500 !important;
  390. color: #1B365D !important;
  391. }
  392. .van-swipe-cell__right {
  393. background: #d9001b;
  394. color: #fff;
  395. width: 65px;
  396. text-align: center;
  397. display: flex;
  398. justify-content: center;
  399. align-items: center;
  400. }
  401. .button-class{
  402. height: 85rpx !important;
  403. background: #F8F9FD !important;
  404. color: #95A8CB !important;
  405. border: 2rpx solid #95A8CB;
  406. border-radius: 10rpx !important;
  407. text-align: left !important;
  408. margin-bottom: 10rpx;
  409. z-index: 999 !important;
  410. }
  411. .button-selected-class{
  412. height: 85rpx !important;
  413. background: #606EB2 !important;
  414. color: #fff !important;
  415. border: 2rpx solid #606EB2;
  416. border-radius: 10rpx !important;
  417. text-align: left !important;
  418. margin-bottom: 10rpx;
  419. z-index: 999 !important;
  420. /* overflow: hidden !important;
  421. text-overflow: ellipsis !important;
  422. white-space: nowrap !important; */
  423. }
  424. .blue-blue {
  425. color: #1989fa
  426. }
  427. .popup-scroll-view {
  428. height: calc(100% - 220rpx);
  429. }
  430. .pop-header {
  431. width: 100%;
  432. height: 80rpx;
  433. background: #d9001b;
  434. }
  435. .pop-header-custom {
  436. width: 100%;
  437. height: 20rpx;
  438. background: white;
  439. }
  440. .pop-header-x {
  441. color: #fff;
  442. font-size: 25px;
  443. font-weight: 600;
  444. line-height: 80rpx;
  445. margin-top: 15rpx;
  446. float: right;
  447. margin-right: 15rpx;
  448. }
  449. .pop-header-x-custom {
  450. color: black;
  451. font-size: 25px;
  452. font-weight: 600;
  453. line-height: 20rpx;
  454. margin-top: 15rpx;
  455. float: right;
  456. margin-right: 15rpx;
  457. }
  458. .cell-group {
  459. margin-top: 30rpx;
  460. }
  461. .label-class {
  462. max-width: 4rem !important;
  463. min-width: 4rem !important;
  464. }
  465. .pop-footer {
  466. width: 100%;
  467. position: fixed;
  468. bottom: 0;
  469. }
  470. /** 抽屉 end**/
  471. /** 字体 start20220509 **/
  472. .font-size16 {
  473. font-size: 16px !important;
  474. }
  475. .font-size15 {
  476. font-size: 15px !important;
  477. }
  478. .font-size14{
  479. font-size: 14px !important;
  480. }
  481. .font-size13 {
  482. font-size: 13px !important;
  483. }
  484. .font-size12 {
  485. font-size: 12px !important;
  486. }
  487. .font-size11 {
  488. font-size: 11px !important;
  489. }
  490. .app-font-weight-bold{
  491. font-weight: bold !important;
  492. }
  493. /** 字体 end**/
  494. /* 于继渤2022/07/25 列表样式 */
  495. .table-content{
  496. width: 100%;
  497. }
  498. .table-content-row{
  499. padding: 10px 32rpx 10px 32rpx;
  500. }
  501. .table-content-row-font{
  502. font-size: 14px;
  503. color: #95A8CB;
  504. padding-right: 32rpx;
  505. white-space:nowrap;
  506. }
  507. .table-content-class{
  508. font-size: 13px;
  509. font-weight:500;
  510. color: #1B365D;
  511. word-break: break-all;
  512. }
  513. /**数量计数器 start**/
  514. .van-stepper__input{
  515. background: transparent !important;
  516. }
  517. .van-stepper__plus{
  518. background: #1B365D !important;
  519. border-radius: 5rpx !important;
  520. width: 34.87rpx !important;
  521. height: 34.04rpx !important;
  522. color: #fff !important;
  523. background-color: #1B365D !important;
  524. }
  525. .van-stepper__minus{
  526. width: 34.87rpx !important;
  527. height: 34.04rpx !important;
  528. background: #fff !important;
  529. border: 1px solid #1B365D !important;
  530. border-radius: 5rpx !important;
  531. }
  532. /**数量计数器 end**/
  533. .van-checkbox__icon--checked{
  534. background-color: #1B365D !important;
  535. border: none !important;
  536. }
  537. /**红色label**/
  538. .red-label {
  539. color: red;
  540. font-size: 14px;
  541. font-weight: bold;
  542. }
  543. /**普通label*/
  544. .nomal-label .van-field__label{
  545. color: #95A8CB !important;
  546. font-size: 14px !important;
  547. }
  548. /**普通label*/
  549. .nomal-label{
  550. color: #95A8CB !important;
  551. font-size: 14px !important;
  552. }
  553. /**弹出pop样式*/
  554. .dk-popup {
  555. background-color: transparent !important;
  556. overflow-x: hidden;
  557. }
  558. /**pop弹出框的表头样式*/
  559. .special-topic {
  560. width: 96%;
  561. height: 223rpx;
  562. display: flex;
  563. padding-left: 4%;
  564. /* 从最下面开始布局 */
  565. align-items: center;
  566. background: #F8F9FD;
  567. border-radius: 30rpx 30rpx 0px 0px !important;
  568. }
  569. /**pop弹出框的表头内容样式*/
  570. .special-topic-content {
  571. width:170rpx;
  572. }
  573. /**pop弹出框的表头图片样式*/
  574. .goods-pop-image{
  575. width: 163rpx;
  576. height: 163rpx;
  577. display: flex;
  578. align-items: center;
  579. text-align: center;
  580. border: 1px solid #606EB2;
  581. border-radius: 15rpx !important;
  582. margin-bottom: 127rpx;
  583. }
  584. /**pop弹出框的表头标题样式*/
  585. .special-topic-title{
  586. width: 90%;
  587. height: 165rpx;
  588. padding: 1rpx 0 0 20rpx !important;
  589. }
  590. /**pop弹出框的内容样式*/
  591. .pop-content-class{
  592. padding: 2rpx 28rpx 52rpx 28rpx;
  593. background: #FFFFFF;
  594. z-index: 99;
  595. }
  596. /**cell值颜色**/
  597. .dk-cell-value-class {
  598. text-align: left !important;
  599. font-size: 13px !important;
  600. color: #1B365D !important;
  601. font-weight: normal;
  602. }
  603. /**cell空值颜色**/
  604. .dk-cell-value-empty-class{
  605. text-align: left !important;
  606. font-size: 13px !important;
  607. color: #95A8CB !important;
  608. }
  609. /**cell值颜色**/
  610. .dk-cell-value-pop-class {
  611. text-align: right !important;
  612. font-size: 13px !important;
  613. color: #1B365D !important;
  614. font-weight: normal;
  615. }
  616. /**查询框的演示*/
  617. .van-search__content {
  618. background: #F8F9FD;
  619. border: 1px solid #D6E4FF;
  620. border-radius: 15rpx !important;
  621. }
  622. .van-field__placeholder{
  623. color: #95A8CB !important;
  624. }
  625. .tag-text{
  626. overflow: hidden !important;
  627. text-overflow: ellipsis !important;
  628. white-space: nowrap;
  629. word-wrap: break-all;
  630. width: 100%;
  631. height: 44rpx;
  632. margin-top: -10rpx;
  633. margin-bottom: -10rpx;
  634. }
  635. .selected-sku-text{
  636. overflow: hidden !important;
  637. text-overflow: ellipsis !important;
  638. white-space: nowrap;
  639. word-wrap: break-all;
  640. width: 100%;
  641. height: 50rpx;
  642. margin-top: -2rpx;
  643. margin-bottom: -2rpx;
  644. }
  645. /**card的外部样式*/
  646. .dk-card-outer-class{
  647. margin: 10px 32rpx 10px 32rpx;
  648. margin-top: 10px;
  649. border-radius: 15rpx;
  650. box-shadow:2px 2px 5px #e5e5e6;
  651. }
  652. /**card的样式*/
  653. .dk-card-class{
  654. background: #FFFFFF;
  655. box-shadow: 0rpx 10rpx 20rpx rgba(225, 229, 238, 0.6);
  656. border-radius: 15rpx !important;
  657. padding: 5rpx;
  658. }
  659. /**提示信息的样式*/
  660. .van-field__placeholder{
  661. color: #95A8CB !important;
  662. font-weight: normal;
  663. }
  664. /**功能pop*/
  665. .function-pop-class{
  666. /* height:40% !important; */
  667. padding-bottom:130rpx !important;
  668. width:100%;
  669. z-index:10;
  670. border-radius: 30rpx 30rpx 0rpx 0rpx !important;
  671. padding-top: 20rpx;
  672. }
  673. /**功能pop文字样式*/
  674. .function-pop-text-class{
  675. font-size: 12px !important;
  676. font-weight: 400 !important;
  677. color: #1B365D !important;
  678. }
  679. /**功能菜单的图标样式*/
  680. .function-pop-image{
  681. width: 80rpx;
  682. height: 80rpx;
  683. display: flex;
  684. align-items: center;
  685. text-align: center;
  686. margin-bottom: 27rpx;
  687. }
  688. .function-cell-group {
  689. margin-top: 10rpx;
  690. width: 94%;
  691. margin-left: 3%;
  692. }
  693. .cell-value-class{
  694. font-style: normal;
  695. font-weight: 400;
  696. font-size: 14px;
  697. color: #1B365D !important;
  698. }
  699. .cell-value-class-no-select{
  700. font-style: normal;
  701. font-weight: 400;
  702. font-size: 14px;
  703. color: #95A8CB !important;
  704. }
  705. /*修改van-grid-item样式*/
  706. .van-grid-item__content{
  707. padding-left: 0 !important;
  708. padding-right: 0 !important;
  709. }
  710. .van-swipe-cell__right {
  711. background: #1B365D !important;
  712. }
  713. .van-button{
  714. z-index: 999 !important;
  715. }