style.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725
  1. @charset "UTF-8";
  2. .ivu-select .ivu-select-dropdown,
  3. .ivu-date-picker .ivu-select-dropdown {
  4. /* top: 33px!important; */
  5. }
  6. .vxe-tree-cell,
  7. .vxe-cell {
  8. font-size: 12px;
  9. }
  10. .plusColor {
  11. color: #e83323;
  12. }
  13. .reduceColor {
  14. color: #16ac57;
  15. }
  16. .c_label {
  17. font-size: 14px;
  18. color: #999999;
  19. }
  20. .c_label span {
  21. margin-left: 10px;
  22. color: #333;
  23. }
  24. .c_row-item {
  25. display: flex;
  26. justify-content: space-between;
  27. align-items: center;
  28. }
  29. .acea-row {
  30. display: -webkit-box;
  31. display: -moz-box;
  32. display: -webkit-flex;
  33. display: -ms-flexbox;
  34. display: flex;
  35. -webkit-box-lines: multiple;
  36. -moz-box-lines: multiple;
  37. -o-box-lines: multiple;
  38. -webkit-flex-wrap: wrap;
  39. -ms-flex-wrap: wrap;
  40. flex-wrap: wrap;
  41. /* 辅助类 */
  42. }
  43. .acea-row.row-middle {
  44. -webkit-box-align: center;
  45. -moz-box-align: center;
  46. -o-box-align: center;
  47. -ms-flex-align: center;
  48. -webkit-align-items: center;
  49. align-items: center;
  50. }
  51. .acea-row.row-top {
  52. -webkit-box-align: start;
  53. -moz-box-align: start;
  54. -o-box-align: start;
  55. -ms-flex-align: start;
  56. -webkit-align-items: flex-start;
  57. align-items: flex-start;
  58. }
  59. .acea-row.row-bottom {
  60. -webkit-box-align: end;
  61. -moz-box-align: end;
  62. -o-box-align: end;
  63. -ms-flex-align: end;
  64. -webkit-align-items: flex-end;
  65. align-items: flex-end;
  66. }
  67. .acea-row.row-center {
  68. -webkit-box-pack: center;
  69. -moz-box-pack: center;
  70. -o-box-pack: center;
  71. -ms-flex-pack: center;
  72. -webkit-justify-content: center;
  73. justify-content: center;
  74. }
  75. .acea-row.row-right {
  76. -webkit-box-pack: end;
  77. -moz-box-pack: end;
  78. -o-box-pack: end;
  79. -ms-flex-pack: end;
  80. -webkit-justify-content: flex-end;
  81. justify-content: flex-end;
  82. }
  83. .acea-row.row-left {
  84. -webkit-box-pack: start;
  85. -moz-box-pack: start;
  86. -o-box-pack: start;
  87. -ms-flex-pack: start;
  88. -webkit-justify-content: flex-start;
  89. justify-content: flex-start;
  90. }
  91. .acea-row.row-between {
  92. -webkit-box-pack: justify;
  93. -moz-box-pack: justify;
  94. -o-box-pack: justify;
  95. -ms-flex-pack: justify;
  96. -webkit-justify-content: space-between;
  97. justify-content: space-between;
  98. }
  99. .acea-row.row-around {
  100. justify-content: space-around;
  101. -webkit-justify-content: space-around;
  102. }
  103. .acea-row.row-column-around {
  104. -webkit-flex-direction: column;
  105. -ms-flex-direction: column;
  106. flex-direction: column;
  107. justify-content: space-around;
  108. -webkit-justify-content: space-around;
  109. }
  110. .acea-row.row-column {
  111. -webkit-box-orient: vertical;
  112. -moz-box-orient: vertical;
  113. -o-box-orient: vertical;
  114. -webkit-flex-direction: column;
  115. -ms-flex-direction: column;
  116. flex-direction: column;
  117. }
  118. .acea-row.row-column-between {
  119. -webkit-box-orient: vertical;
  120. -moz-box-orient: vertical;
  121. -o-box-orient: vertical;
  122. -webkit-flex-direction: column;
  123. -ms-flex-direction: column;
  124. flex-direction: column;
  125. -webkit-box-pack: justify;
  126. -moz-box-pack: justify;
  127. -o-box-pack: justify;
  128. -ms-flex-pack: justify;
  129. -webkit-justify-content: space-between;
  130. justify-content: space-between;
  131. }
  132. /* 上下左右垂直居中 */
  133. .acea-row.row-center-wrapper {
  134. -webkit-box-align: center;
  135. -moz-box-align: center;
  136. -o-box-align: center;
  137. -ms-flex-align: center;
  138. -webkit-align-items: center;
  139. align-items: center;
  140. -webkit-box-pack: center;
  141. -moz-box-pack: center;
  142. -o-box-pack: center;
  143. -ms-flex-pack: center;
  144. -webkit-justify-content: center;
  145. justify-content: center;
  146. }
  147. /* 上下两边居中对齐 */
  148. .acea-row.row-between-wrapper {
  149. -webkit-box-align: center;
  150. -moz-box-align: center;
  151. -o-box-align: center;
  152. -ms-flex-align: center;
  153. -webkit-align-items: center;
  154. align-items: center;
  155. -webkit-box-pack: justify;
  156. -moz-box-pack: justify;
  157. -o-box-pack: justify;
  158. -ms-flex-pack: justify;
  159. -webkit-justify-content: space-between;
  160. justify-content: space-between;
  161. }
  162. .mobile-config {
  163. width: 100%;
  164. padding: 15px;
  165. }
  166. /*表单公共样式*/
  167. html,
  168. body {
  169. font-size: 12px;
  170. }
  171. .ivu-table-wrapper {
  172. overflow: unset !important;
  173. }
  174. .ivu-layout-content {
  175. overflow-x: hidden !important;
  176. height: 100%;
  177. }
  178. .page {
  179. margin-top: 22px;
  180. }
  181. .vxe-table--loading {
  182. background-color: rgba(255, 255, 255, 0.9) !important;
  183. }
  184. .vxe-table--loading .vxe-table--spinner:after,
  185. .vxe-table--loading .vxe-table--spinner:before {
  186. width: 50% !important;
  187. height: 50% !important;
  188. }
  189. /*表格公共样式*/
  190. .ivu-table-header .ivu-table-cell {
  191. color: #999;
  192. font-size: 13px;
  193. padding: 10px 5px !important;
  194. }
  195. .ivu-form .ivu-form-item-label,
  196. .ivu-radio-group-button .ivu-radio-wrapper,
  197. .ivu-table {
  198. font-size: 12px !important;
  199. }
  200. .ivu-table-cell {
  201. padding: 10px 5px !important;
  202. }
  203. .ivu-table th {
  204. background: #fff !important;
  205. }
  206. .ivu-btn {
  207. font-size: 12px !important;
  208. }
  209. .ivu-icon-ios-refresh {
  210. color: #1890ff;
  211. }
  212. .product_tabs .ivu-tabs-bar {
  213. margin-bottom: 0 !important;
  214. }
  215. .product_tabs .ivu-page-header {
  216. border-bottom: 0;
  217. }
  218. .product_tabs .ivu-page-header-content {
  219. margin-bottom: 0 !important;
  220. }
  221. .ivu-radio {
  222. padding: 8px 0;
  223. }
  224. .ivu-radio-wrapper {
  225. font-size: 12px !important;
  226. }
  227. .ivu-input {
  228. font-size: 12px !important;
  229. }
  230. .ivu-notice-desc {
  231. word-break: normal;
  232. text-align: left !important;
  233. }
  234. .modalBody .ivu-modal-body {
  235. padding: 27px !important;
  236. }
  237. .Modals .ivu-mt,
  238. .ivu-mt-16 {
  239. margin-top: 0 !important;
  240. }
  241. /*.Modals .ivu-table-border th, .ivu-table-border td{border-right:0!important;}*/
  242. .Modals .ivu-form-item-content {
  243. line-height: unset;
  244. }
  245. .Modals .label .ivu-input {
  246. border: 1px solid #f5f5f5;
  247. }
  248. .Modals .ivu-table table {
  249. width: 100% !important;
  250. }
  251. /*距离样式*/
  252. .mr {
  253. margin-right: 15px;
  254. }
  255. .mr10 {
  256. margin-right: 10px;
  257. }
  258. .ml20 {
  259. margin-left: 20px;
  260. }
  261. .ml10 {
  262. margin-left: 10px;
  263. }
  264. .ml15 {
  265. margin-left: 15px;
  266. }
  267. .ml40 {
  268. margin-left: 40px !important;
  269. }
  270. .ml95 {
  271. margin-left: 95px !important;
  272. }
  273. .pt5 {
  274. padding: 5px 0 !important;
  275. box-sizing: border-box;
  276. }
  277. .mr50 {
  278. margin-right: 50px;
  279. }
  280. .mr20 {
  281. margin-right: 20px !important;
  282. }
  283. .mr15 {
  284. margin-right: 15px !important;
  285. }
  286. .mr5 {
  287. margin-right: 5px !important;
  288. }
  289. .mb20 {
  290. margin-bottom: 20px !important;
  291. }
  292. .mb5 {
  293. margin-bottom: 5px !important;
  294. }
  295. .mb15 {
  296. margin-bottom: 15px !important;
  297. }
  298. .mb30 {
  299. margin-bottom: 30px !important;
  300. }
  301. .mt3 {
  302. margin-top: 3px;
  303. }
  304. .mt35 {
  305. margin-top: 35px;
  306. }
  307. .mb50 {
  308. margin-bottom: 50px !important;
  309. }
  310. .mt30 {
  311. margin-top: 30px;
  312. }
  313. .mt25 {
  314. margin-top: 25px;
  315. }
  316. .mt20 {
  317. margin-top: 20px;
  318. }
  319. .mt50 {
  320. margin-top: 50px;
  321. }
  322. .mt10 {
  323. margin-top: 10px;
  324. }
  325. .mb10 {
  326. margin-bottom: 10px !important;
  327. }
  328. .spBlock {
  329. display: block;
  330. }
  331. .mb5 {
  332. margin-bottom: 5px !important;
  333. }
  334. .pl25 {
  335. padding-left: 25px;
  336. box-sizing: border-box;
  337. }
  338. .index_bg {
  339. width: 100%;
  340. /*height: 100vh;*/
  341. background: rgba(0, 0, 0, 0.6) !important;
  342. z-index: 0 !important;
  343. }
  344. .fl_header {
  345. display: flex;
  346. align-items: center;
  347. padding-left: 0px !important;
  348. }
  349. .header_top {
  350. padding-bottom: 16px !important;
  351. padding-left: 10px !important;
  352. }
  353. .ivu-divider-horizontal {
  354. /*margin-bottom: 0 !important;*/
  355. /*margin: 0 !important;*/
  356. }
  357. /*设置导航菜单*/
  358. .i-layout-menu-side-title-icon-single .ivu-icon {
  359. font-size: 20px;
  360. }
  361. .ivu-layout-content {
  362. position: relative;
  363. }
  364. .ivu-form-item-content {
  365. font-size: 12px !important;
  366. }
  367. /*添加商品页面*/
  368. #shopp-manager .ivu-form-item-content {
  369. line-height: 23px !important;
  370. }
  371. #shopp-manager .ivu-tag {
  372. background-color: unset !important;
  373. height: 28px !important;
  374. line-height: 28px !important;
  375. padding: 0 10px !important;
  376. }
  377. #shopp-manager .ivu-tag .ivu-icon-ios-close {
  378. top: 0;
  379. }
  380. /*字体上移变蓝色*/
  381. .font-blue:hover {
  382. color: #2d8cf0;
  383. cursor: pointer;
  384. }
  385. /*作用于运费模板组件*/
  386. .Modals .ivu-table .ivu-table-header table {
  387. border-top: 0 !important;
  388. box-shadow: -2px 2px 6px -2px rgba(0, 0, 0, 0.1) !important;
  389. }
  390. .ivu-table-cell-with-expand {
  391. line-height: 31px !important;
  392. }
  393. /*tab标签栏*/
  394. .i-layout-tabs-fix {
  395. z-index: 5 !important;
  396. }
  397. /*全局表格加padding*/
  398. /*.ivu-table th, .ivu-table td{*/
  399. /*padding: 0 5px;*/
  400. /*}*/
  401. /*全局表格设置浮动样式*/
  402. .ivu-table-fixed-right th,
  403. .ivu-table-fixed-right td {
  404. text-align: center !important;
  405. }
  406. .ivu-table-fixed-right {
  407. margin-top: 1px;
  408. color: #999;
  409. box-shadow: -2px 2px 6px -2px rgba(0, 0, 0, 0.1) !important;
  410. }
  411. .ivu-table-fixed-right tr:last-child(1) td {
  412. border-bottom: 0;
  413. }
  414. .ivu-table-fixed::before,
  415. .ivu-table-fixed-right::before {
  416. background-color: unset !important;
  417. }
  418. .ivu-table:before {
  419. background-color: unset !important;
  420. }
  421. .ivu-table-fixed-body {
  422. background-color: #fff;
  423. overflow: unset !important;
  424. }
  425. /*.ivu-table-header thead tr th:nth-of-type(1){*/
  426. /*padding-left: 16px;*/
  427. /*}*/
  428. /*.ivu-table td:nth-of-type(1){*/
  429. /*padding-left: 16px;*/
  430. /*}*/
  431. /*.ivu-table-cell-expand{*/
  432. /*text-align: left;*/
  433. /*}*/
  434. .vxe-header--row th:nth-of-type(1) {
  435. padding-left: 10px !important;
  436. }
  437. .vxe-table--body td:nth-of-type(1) {
  438. padding-left: 10px !important;
  439. }
  440. .ivu-modal-header {
  441. background: #fafafa;
  442. }
  443. .ivu-mb,
  444. .ivu-mb-16 {
  445. margin-bottom: 16px !important;
  446. }
  447. .ivu-mt-16 {
  448. margin-top: 16px !important;
  449. }
  450. .ivu-table-wrapper {
  451. border: 0;
  452. }
  453. .i-layout-page-header {
  454. margin: 0;
  455. /* display: none; */
  456. background-color: #fff;
  457. padding: 7px 32px 0 32px;
  458. }
  459. .header-title {
  460. padding: 10px 20px;
  461. border-bottom: 1px solid #f2f2f2;
  462. margin-bottom: 10px;
  463. border-radius: 5px;
  464. display: -webkit-box;
  465. display: -ms-flexbox;
  466. display: flex;
  467. -webkit-box-align: center;
  468. -ms-flex-align: center;
  469. align-items: center;
  470. -webkit-box-pack: justify;
  471. -ms-flex-pack: justify;
  472. justify-content: space-between;
  473. }
  474. .ivu-page-header-title {
  475. display: inline-block;
  476. color: #17233d;
  477. font-weight: 500;
  478. font-size: 20px;
  479. }
  480. .main .content-wrapper {
  481. padding: 16px;
  482. height: calc(100% - 80px);
  483. overflow: auto;
  484. background-color: #f5f7f9;
  485. }
  486. .left-wrapper {
  487. height: calc(100vh - 120px);
  488. background: #fff;
  489. border-right: 1px solid #f2f2f2;
  490. }
  491. .ivu-tabs-bar {
  492. margin-bottom: 0;
  493. }
  494. .perW100 {
  495. width: 100%;
  496. }
  497. .perW90 {
  498. width: 90%;
  499. }
  500. .perW50 {
  501. width: 50%;
  502. }
  503. .perW20 {
  504. width: 20%;
  505. }
  506. .perW35 {
  507. width: 35%;
  508. }
  509. .perW30 {
  510. width: 30%;
  511. }
  512. .font14 {
  513. font-size: 14px !important;
  514. }
  515. .ivu-table:after {
  516. width: 0;
  517. }
  518. /*复制pro*/
  519. .ivu-text-left {
  520. text-align: left;
  521. }
  522. .ivu-text-right {
  523. text-align: right;
  524. }
  525. .ivu-block {
  526. display: block;
  527. }
  528. .ivu-pl-8 {
  529. padding-left: 8px !important;
  530. }
  531. .tabBox_img {
  532. width: 36px;
  533. height: 36px;
  534. border-radius: 4px;
  535. cursor: pointer;
  536. }
  537. .tabBox_img img {
  538. width: 100%;
  539. height: 100%;
  540. }
  541. .content img {
  542. display: block;
  543. max-width: 100%;
  544. }
  545. /*客服*/
  546. .mask-footer {
  547. display: flex;
  548. justify-content: flex-end;
  549. padding-top: 20px;
  550. border-top: 1px solid #e8eaec;
  551. }
  552. .mask-footer button {
  553. margin-left: 10px;
  554. }
  555. .goods-mask .ivu-modal-body {
  556. padding: 0;
  557. }
  558. .content img {
  559. display: block;
  560. max-width: 100%;
  561. object-fit: contain;
  562. }
  563. .none-radius .ivu-modal-content {
  564. border-radius: 0;
  565. }
  566. .transfer-mask .ivu-modal-wrap {
  567. width: 1200px;
  568. margin: 0 auto;
  569. }
  570. .transfer-mask .ivu-modal {
  571. position: absolute;
  572. right: 279px;
  573. top: auto;
  574. bottom: 271px;
  575. }
  576. .maskModel {
  577. position: fixed;
  578. top: 0;
  579. left: 0;
  580. right: 0;
  581. bottom: 0;
  582. z-index: 55;
  583. background-color: rgba(0, 0, 0, 0.5);
  584. }
  585. .input-input {
  586. display: block;
  587. height: 100%;
  588. background: none;
  589. color: inherit;
  590. opacity: 1;
  591. -webkit-text-fill-color: currentcolor;
  592. font: inherit;
  593. line-height: inherit;
  594. letter-spacing: inherit;
  595. text-align: inherit;
  596. text-indent: inherit;
  597. text-transform: inherit;
  598. text-shadow: inherit;
  599. border: none;
  600. }
  601. .kf_mobile .textarea-box textarea {
  602. resize: none !important;
  603. height: 148px;
  604. border-color: transparent;
  605. font-size: 14px !important;
  606. }
  607. .kf_mobile .textarea-box textarea:focus {
  608. box-shadow: none;
  609. }
  610. .line1 {
  611. overflow: hidden;
  612. text-overflow: ellipsis;
  613. white-space: nowrap;
  614. }
  615. .line2 {
  616. overflow: hidden;
  617. text-overflow: ellipsis;
  618. display: -webkit-box;
  619. -webkit-line-clamp: 2;
  620. -webkit-box-orient: vertical;
  621. }
  622. .none-radius .ivu-modal-mask,
  623. .label-box .ivu-modal-mask {
  624. background-color: transparent;
  625. }
  626. .empty-box {
  627. width: 100%;
  628. height: 100%;
  629. display: flex;
  630. align-items: center;
  631. justify-content: center;
  632. background: #f3f5f7;
  633. border-radius: 6px;
  634. }
  635. .empty-box.on {
  636. border-radius: 0px;
  637. }
  638. .empty-box .iconfont-diy {
  639. color: #bbbfc8;
  640. font-size: 30px;
  641. }
  642. .paddingBox {
  643. padding: 0 10px 10px;
  644. }
  645. /* form-create tips 样式 */
  646. .tips-info {
  647. line-height: 18px;
  648. margin-top: 3px;
  649. color: rgb(153, 153, 153);
  650. }
  651. .pt10 {
  652. padding-top: 10px;
  653. }
  654. .common-form-create-footer{
  655. display: flex;
  656. justify-content: right;
  657. }
  658. .common-form-button{
  659. margin-right: 10px;
  660. }