app.wxss 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817
  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. .table {
  186. width: 94%;
  187. padding: 10px 3% 10px 3%;
  188. }
  189. .table-row {
  190. display: flex;
  191. width: 100%;
  192. flex-direction: row;
  193. margin-top: 6px;
  194. }
  195. .table-row-center {
  196. padding: 8px 5px 8px 5px;
  197. font-size: 12px;
  198. width: 100%;
  199. flex-direction: row;
  200. margin-top: 6px;
  201. }
  202. .table-row-item:nth-child(1) {
  203. background: #fff;
  204. width: 50%;
  205. /* line-height: 60rpx; */
  206. /* border-left: 1px #dedede solid; */
  207. /* border-top: 1px #dedede solid;
  208. border-bottom: 1px #dedede solid; */
  209. padding: 8px 5px 8px 5px;
  210. font-size: 12px;
  211. /* font-weight: 600; */
  212. }
  213. .item-red {
  214. color: #fe6627;
  215. }
  216. .telephone-image {
  217. color: #fe6627;
  218. font-size: 19px;
  219. transform: translateY(1vw) rotate(180deg);
  220. float: right;
  221. margin-top: -5px;
  222. }
  223. .telephone-image-small {
  224. color: #d5d8e0;
  225. font-size: 13px;
  226. transform: rotate(180deg);
  227. }
  228. .address-image-small {
  229. color: #d5d8e0;
  230. font-size: 13px;
  231. }
  232. .table-row-item:nth-child(2) {
  233. display: flex;
  234. justify-content: flex-start;
  235. background: #fff;
  236. width: 50%;
  237. word-break: break-all;
  238. /* line-height: 60rpx; */
  239. padding: 8px 5px 8px 5px;
  240. /* border: 1px #dedede solid; */
  241. /* border-top: 1px #dedede solid;
  242. border-bottom: 1px #dedede solid; */
  243. font-size: 12px;
  244. /* font-weight: 600; */
  245. }
  246. .table-row-item-detail:nth-child(1) {
  247. background: #fff;
  248. width: 40%;
  249. /* line-height: 60rpx; */
  250. border-top: 1px #dedede solid;
  251. /* border-left: 1px #dedede solid; */
  252. /* border-bottom: 1px #dedede solid; */
  253. padding: 10px 5px 10px 5px;
  254. font-size: 13px;
  255. /* font-weight: 600; */
  256. }
  257. .table-row-item-detail:nth-child(2) {
  258. display: flex;
  259. justify-content: flex-end;
  260. background: #fff;
  261. width: 60%;
  262. /* line-height: 60rpx; */
  263. padding: 10px 5px 10px 5px;
  264. /* border: 1px #dedede solid; */
  265. border-top: 1px #dedede solid;
  266. /* border-bottom: 1px #dedede solid; */
  267. font-size: 13px;
  268. /* font-weight: 600; */
  269. }
  270. .no-top-border {
  271. border-top: 0px !important;
  272. }
  273. .no-bottom-border {
  274. border-bottom: 0px !important;
  275. }
  276. .first-font-size {
  277. font-size: 13px !important;
  278. font-weight: bold
  279. }
  280. .oas-no {
  281. width: 50%;
  282. font-size: 13px;
  283. color: #3b3b3b;
  284. text-align: left;
  285. font-weight: bold
  286. }
  287. .oas-status {
  288. width: 50%;
  289. font-size: 26rpx;
  290. color: #1989fa;
  291. text-align: right;
  292. }
  293. .oas-status1 {
  294. color: #e97e04;
  295. }
  296. .oas-copy {
  297. width: 5vw;
  298. height: 5vw;
  299. /* margin-left: 20rpx;
  300. transform: translateY(5rpx); */
  301. }
  302. .oas-title {
  303. width: 87%;
  304. font-size: 13px;
  305. color: #3b3b3b;
  306. text-align: left;
  307. font-weight: bold
  308. }
  309. .oas-longtitle {
  310. width: 80%;
  311. font-size: 13px;
  312. color: #3b3b3b;
  313. text-align: left;
  314. font-weight: bold
  315. }
  316. .oas-shortstatus {
  317. width: 19%;
  318. font-size: 13px;
  319. color: #1989fa;
  320. text-align: right;
  321. }
  322. .oas-all {
  323. background: #fff;
  324. width: 100%;
  325. padding: 8px 5px 8px 5px;
  326. font-size: 12px;
  327. }
  328. .header-no {
  329. padding-left: 10rpx;
  330. font-size: 13px !important;
  331. }
  332. .header-status {
  333. position: absolute;
  334. right: 10px;
  335. color: #1989fa;
  336. }
  337. .table-row-whole {
  338. background: #fff;
  339. width: 100%;
  340. padding: 8px 5px 8px 5px;
  341. font-size: 12px;
  342. }
  343. .footer-info {
  344. width: 100%;
  345. text-align: right;
  346. color: #e97e04;
  347. padding-right: 20rpx;
  348. font-size: 12px;
  349. margin-top: 12px;
  350. margin-bottom: 11px;
  351. }
  352. /** 以下为一览界面 end**/
  353. /** 抽屉 start**/
  354. .popup {
  355. position: relative;
  356. }
  357. .popup-button {
  358. position: fixed;
  359. width: 100%;
  360. bottom: 0;
  361. display: flex;
  362. align-items: center;
  363. justify-content: space-around;
  364. padding-bottom: 15rpx;
  365. padding-top: 15rpx;
  366. background: #fff;
  367. height: 100rpx;
  368. }
  369. .pop-button-class{
  370. border: none !important;
  371. font-size: 16px !important;
  372. font-weight: 500 !important;
  373. color: #1B365D !important;
  374. }
  375. .van-swipe-cell__right {
  376. background: #d9001b;
  377. color: #fff;
  378. width: 65px;
  379. text-align: center;
  380. display: flex;
  381. justify-content: center;
  382. align-items: center;
  383. }
  384. .button-class{
  385. height: 85rpx !important;
  386. background: #F8F9FD !important;
  387. color: #95A8CB !important;
  388. border: 2rpx solid #95A8CB;
  389. border-radius: 10rpx !important;
  390. text-align: left !important;
  391. margin-bottom: 10rpx;
  392. z-index: 999 !important;
  393. }
  394. .button-selected-class{
  395. height: 85rpx !important;
  396. background: #606EB2 !important;
  397. color: #fff !important;
  398. border: 2rpx solid #606EB2;
  399. border-radius: 10rpx !important;
  400. text-align: left !important;
  401. margin-bottom: 10rpx;
  402. z-index: 999 !important;
  403. /* overflow: hidden !important;
  404. text-overflow: ellipsis !important;
  405. white-space: nowrap !important; */
  406. }
  407. .blue-blue {
  408. color: #1989fa
  409. }
  410. .popup-button-item {
  411. /* width: 50%; */
  412. }
  413. .popup-scroll-view {
  414. height: calc(100% - 220rpx);
  415. }
  416. .pop-header {
  417. width: 100%;
  418. height: 80rpx;
  419. background: #d9001b;
  420. }
  421. .pop-header-custom {
  422. width: 100%;
  423. height: 20rpx;
  424. background: white;
  425. }
  426. .pop-header-x {
  427. color: #fff;
  428. font-size: 25px;
  429. font-weight: 600;
  430. line-height: 80rpx;
  431. margin-top: 15rpx;
  432. float: right;
  433. margin-right: 15rpx;
  434. }
  435. .pop-header-x-custom {
  436. color: black;
  437. font-size: 25px;
  438. font-weight: 600;
  439. line-height: 20rpx;
  440. margin-top: 15rpx;
  441. float: right;
  442. margin-right: 15rpx;
  443. }
  444. .cell-group {
  445. margin-top: 30rpx;
  446. }
  447. .label-class {
  448. max-width: 4rem !important;
  449. min-width: 4rem !important;
  450. }
  451. .pop-footer {
  452. width: 100%;
  453. position: fixed;
  454. bottom: 0;
  455. }
  456. /** 抽屉 end**/
  457. /** 查询**/
  458. .van-search {
  459. /* padding-left: 0 !important; */
  460. /* border: 1rpx solid #D6E4FF;
  461. border-radius: 15rpx; */
  462. }
  463. /** 字体 start20220509 **/
  464. .font-size16 {
  465. font-size: 16px !important;
  466. }
  467. .font-size15 {
  468. font-size: 15px !important;
  469. }
  470. .font-size14{
  471. font-size: 14px !important;
  472. }
  473. .font-size13 {
  474. font-size: 13px !important;
  475. }
  476. .font-size12 {
  477. font-size: 12px !important;
  478. }
  479. .font-size11 {
  480. font-size: 11px !important;
  481. }
  482. .app-font-weight-bold{
  483. font-weight: bold !important;
  484. }
  485. /** 字体 end**/
  486. /* 于继渤2022/07/25 列表样式 */
  487. .table-content{
  488. width: 100%;
  489. }
  490. .table-content-row{
  491. padding: 10px 32rpx 10px 32rpx;
  492. }
  493. .table-content-row-font{
  494. font-size: 14px;
  495. color: #95A8CB;
  496. padding-right: 32rpx;
  497. white-space:nowrap;
  498. }
  499. .table-content-class{
  500. font-size: 13px;
  501. font-weight:500;
  502. color: #1B365D;
  503. word-break: break-all;
  504. }
  505. /**数量计数器 start**/
  506. .van-stepper__input{
  507. background: transparent !important;
  508. }
  509. .van-stepper__plus{
  510. background: #1B365D !important;
  511. border-radius: 5rpx !important;
  512. width: 34.87rpx !important;
  513. height: 34.04rpx !important;
  514. color: #fff !important;
  515. background-color: #1B365D !important;
  516. }
  517. .van-stepper__minus{
  518. width: 34.87rpx !important;
  519. height: 34.04rpx !important;
  520. background: #fff !important;
  521. border: 1px solid #1B365D !important;
  522. border-radius: 5rpx !important;
  523. }
  524. /**数量计数器 end**/
  525. .van-checkbox__icon--checked{
  526. background-color: #1B365D !important;
  527. border: none !important;
  528. }
  529. /**红色label**/
  530. .red-label {
  531. color: red;
  532. font-size: 14px;
  533. font-weight: bold;
  534. }
  535. /**普通label*/
  536. .nomal-label .van-field__label{
  537. color: #95A8CB !important;
  538. font-size: 14px !important;
  539. }
  540. /**普通label*/
  541. .nomal-label{
  542. color: #95A8CB !important;
  543. font-size: 14px !important;
  544. }
  545. /**弹出pop样式*/
  546. .dk-popup {
  547. background-color: transparent !important;
  548. overflow-x: hidden;
  549. }
  550. /**pop弹出框的表头样式*/
  551. .special-topic {
  552. width: 96%;
  553. height: 223rpx;
  554. display: flex;
  555. padding-left: 4%;
  556. /* 从最下面开始布局 */
  557. align-items: center;
  558. background: #F8F9FD;
  559. border-radius: 30rpx 30rpx 0px 0px !important;
  560. }
  561. /**pop弹出框的表头内容样式*/
  562. .special-topic-content {
  563. width:170rpx;
  564. }
  565. /**pop弹出框的表头图片样式*/
  566. .goods-pop-image{
  567. width: 163rpx;
  568. height: 163rpx;
  569. display: flex;
  570. align-items: center;
  571. text-align: center;
  572. border: 1px solid #606EB2;
  573. border-radius: 15rpx !important;
  574. margin-bottom: 127rpx;
  575. }
  576. /**pop弹出框的表头标题样式*/
  577. .special-topic-title{
  578. width: 90%;
  579. height: 165rpx;
  580. padding: 1rpx 0 0 20rpx !important;
  581. }
  582. /**pop弹出框的内容样式*/
  583. .pop-content-class{
  584. padding: 2rpx 28rpx 52rpx 28rpx;
  585. background: #FFFFFF;
  586. z-index: 99;
  587. }
  588. /**cell值颜色**/
  589. .dk-cell-value-class {
  590. text-align: left !important;
  591. font-size: 13px !important;
  592. color: #1B365D !important;
  593. font-weight: normal;
  594. }
  595. /**cell空值颜色**/
  596. .dk-cell-value-empty-class{
  597. text-align: left !important;
  598. font-size: 13px !important;
  599. color: #95A8CB !important;
  600. }
  601. /**cell值颜色**/
  602. .dk-cell-value-pop-class {
  603. text-align: right !important;
  604. font-size: 13px !important;
  605. color: #1B365D !important;
  606. font-weight: normal;
  607. }
  608. /**查询框的演示*/
  609. .van-search__content {
  610. background: #F8F9FD;
  611. border: 1px solid #D6E4FF;
  612. border-radius: 15rpx !important;
  613. }
  614. .van-field__placeholder{
  615. color: #95A8CB !important;
  616. }
  617. .tag-text{
  618. overflow: hidden !important;
  619. text-overflow: ellipsis !important;
  620. white-space: nowrap;
  621. word-wrap: break-all;
  622. width: 100%;
  623. height: 44rpx;
  624. margin-top: -10rpx;
  625. margin-bottom: -10rpx;
  626. }
  627. .selected-sku-text{
  628. overflow: hidden !important;
  629. text-overflow: ellipsis !important;
  630. white-space: nowrap;
  631. word-wrap: break-all;
  632. width: 100%;
  633. height: 50rpx;
  634. margin-top: -2rpx;
  635. margin-bottom: -2rpx;
  636. }
  637. /**card的外部样式*/
  638. .dk-card-outer-class{
  639. margin: 10px 32rpx 10px 32rpx;
  640. margin-top: 10px;
  641. border-radius: 15rpx;
  642. box-shadow:2px 2px 5px #e5e5e6;
  643. }
  644. /**card的样式*/
  645. .dk-card-class{
  646. background: #FFFFFF;
  647. box-shadow: 0rpx 10rpx 20rpx rgba(225, 229, 238, 0.6);
  648. border-radius: 15rpx !important;
  649. padding: 5rpx;
  650. }
  651. /**提示信息的样式*/
  652. .van-field__placeholder{
  653. color: #95A8CB !important;
  654. font-weight: normal;
  655. }
  656. /**功能pop*/
  657. .function-pop-class{
  658. /* height:40% !important; */
  659. padding-bottom:130rpx !important;
  660. width:100%;
  661. z-index:10;
  662. border-radius: 30rpx 30rpx 0rpx 0rpx !important;
  663. padding-top: 20rpx;
  664. }
  665. /**功能pop文字样式*/
  666. .function-pop-text-class{
  667. font-size: 12px !important;
  668. font-weight: 400 !important;
  669. color: #1B365D !important;
  670. }
  671. /**功能菜单的图标样式*/
  672. .function-pop-image{
  673. width: 80rpx;
  674. height: 80rpx;
  675. display: flex;
  676. align-items: center;
  677. text-align: center;
  678. margin-bottom: 27rpx;
  679. }
  680. .function-cell-group {
  681. margin-top: 10rpx;
  682. width: 94%;
  683. margin-left: 3%;
  684. }
  685. .cell-value-class{
  686. font-style: normal;
  687. font-weight: 400;
  688. font-size: 14px;
  689. color: #1B365D !important;
  690. }
  691. .cell-value-class-no-select{
  692. font-style: normal;
  693. font-weight: 400;
  694. font-size: 14px;
  695. color: #95A8CB !important;
  696. }
  697. /*修改van-grid-item样式*/
  698. .van-grid-item__content{
  699. padding-left: 0 !important;
  700. padding-right: 0 !important;
  701. }
  702. .van-swipe-cell__right {
  703. background: #1B365D !important;
  704. }
  705. .van-button{
  706. z-index: 999 !important;
  707. }