style.css 12 KB

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