style.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687
  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. }
  173. .page {
  174. margin-top: 22px;
  175. }
  176. .vxe-table--loading {
  177. background-color: rgba(255, 255, 255, 0.9) !important;
  178. }
  179. .vxe-table--loading .vxe-table--spinner:after,
  180. .vxe-table--loading .vxe-table--spinner:before {
  181. width: 50% !important;
  182. height: 50% !important;
  183. }
  184. /*表格公共样式*/
  185. .ivu-table-header table {
  186. border-top: 1px #e8eaec dashed !important;
  187. }
  188. .ivu-form .ivu-form-item-label,
  189. .ivu-radio-group-button .ivu-radio-wrapper,
  190. .ivu-table {
  191. font-size: 12px !important;
  192. }
  193. .ivu-table-cell {
  194. padding: 6px 18px !important;
  195. }
  196. .ivu-table th {
  197. background: #fff !important;
  198. }
  199. .ivu-btn {
  200. font-size: 12px !important;
  201. }
  202. .ivu-icon-ios-refresh {
  203. color: #1890ff !important;
  204. }
  205. .product_tabs .ivu-tabs-bar {
  206. margin-bottom: 0 !important;
  207. }
  208. .product_tabs .ivu-page-header {
  209. border-bottom: 0;
  210. }
  211. .product_tabs .ivu-page-header-content {
  212. margin-bottom: 0 !important;
  213. }
  214. .ivu-radio {
  215. padding: 8px 0;
  216. }
  217. .ivu-radio-wrapper {
  218. font-size: 12px !important;
  219. }
  220. .ivu-input {
  221. font-size: 12px !important;
  222. }
  223. .ivu-notice-desc {
  224. word-break: normal;
  225. text-align: left !important;
  226. }
  227. .modalBody .ivu-modal-body {
  228. padding: 27px !important;
  229. }
  230. .Modals .ivu-mt,
  231. .ivu-mt-16 {
  232. margin-top: 0 !important;
  233. }
  234. /*.Modals .ivu-table-border th, .ivu-table-border td{border-right:0!important;}*/
  235. .Modals .ivu-form-item-content {
  236. line-height: unset;
  237. }
  238. .Modals .label .ivu-input {
  239. border: 1px solid #f5f5f5;
  240. }
  241. .Modals .ivu-table table {
  242. width: 100% !important;
  243. }
  244. /*距离样式*/
  245. .mr {
  246. margin-right: 15px;
  247. }
  248. .mr10 {
  249. margin-right: 10px;
  250. }
  251. .ml20 {
  252. margin-left: 20px;
  253. }
  254. .ml10 {
  255. margin-left: 10px;
  256. }
  257. .ml15 {
  258. margin-left: 15px;
  259. }
  260. .ml40 {
  261. margin-left: 40px !important;
  262. }
  263. .ml95 {
  264. margin-left: 95px !important;
  265. }
  266. .pt5 {
  267. padding: 5px 0 !important;
  268. box-sizing: border-box;
  269. }
  270. .mr50 {
  271. margin-right: 50px;
  272. }
  273. .mr20 {
  274. margin-right: 20px !important;
  275. }
  276. .mr15 {
  277. margin-right: 15px !important;
  278. }
  279. .mr5 {
  280. margin-right: 5px !important;
  281. }
  282. .mb20 {
  283. margin-bottom: 20px !important;
  284. }
  285. .mb5 {
  286. margin-bottom: 5px !important;
  287. }
  288. .mb15 {
  289. margin-bottom: 15px !important;
  290. }
  291. .mb30 {
  292. margin-bottom: 30px !important;
  293. }
  294. .mt3 {
  295. margin-top: 3px;
  296. }
  297. .mt35 {
  298. margin-top: 35px;
  299. }
  300. .mb50 {
  301. margin-bottom: 50px !important;
  302. }
  303. .mt30 {
  304. margin-top: 30px;
  305. }
  306. .mt25 {
  307. margin-top: 25px;
  308. }
  309. .mt20 {
  310. margin-top: 20px;
  311. }
  312. .mt50 {
  313. margin-top: 50px;
  314. }
  315. .mt10 {
  316. margin-top: 10px;
  317. }
  318. .mb10 {
  319. margin-bottom: 10px !important;
  320. }
  321. .spBlock {
  322. display: block;
  323. }
  324. .mb5 {
  325. margin-bottom: 5px !important;
  326. }
  327. .pl25 {
  328. padding-left: 25px;
  329. box-sizing: border-box;
  330. }
  331. .index_bg {
  332. width: 100%;
  333. /*height: 100vh;*/
  334. background: rgba(0, 0, 0, 0.6) !important;
  335. z-index: 0 !important;
  336. }
  337. .fl_header {
  338. display: flex;
  339. align-items: center;
  340. }
  341. .header_top {
  342. padding-bottom: 16px !important;
  343. padding-left: 10px !important;
  344. }
  345. .ivu-divider-horizontal {
  346. /*margin-bottom: 0 !important;*/
  347. /*margin: 0 !important;*/
  348. }
  349. /*设置导航菜单*/
  350. .i-layout-menu-side-title-icon-single .ivu-icon {
  351. font-size: 20px;
  352. }
  353. .ivu-layout-content {
  354. position: relative;
  355. }
  356. .ivu-form-item-content {
  357. font-size: 12px !important;
  358. }
  359. /*添加商品页面*/
  360. #shopp-manager .ivu-form-item-content {
  361. line-height: 23px !important;
  362. }
  363. #shopp-manager .ivu-tag {
  364. background-color: unset !important;
  365. height: 28px !important;
  366. line-height: 28px !important;
  367. padding: 0 10px !important;
  368. }
  369. #shopp-manager .ivu-tag .ivu-icon-ios-close {
  370. top: 0;
  371. }
  372. /*字体上移变蓝色*/
  373. .font-blue:hover {
  374. color: #2d8cf0;
  375. cursor: pointer;
  376. }
  377. /*作用于运费模板组件*/
  378. .Modals .ivu-table .ivu-table-header table {
  379. border-top: 0 !important;
  380. }
  381. .ivu-table-cell {
  382. padding: 10px 5px !important;
  383. }
  384. .ivu-table-cell-with-expand {
  385. line-height: 31px !important;
  386. }
  387. /*tab标签栏*/
  388. .i-layout-tabs-fix {
  389. z-index: 5 !important;
  390. }
  391. /*全局表格加padding*/
  392. /*.ivu-table th, .ivu-table td{*/
  393. /*padding: 0 5px;*/
  394. /*}*/
  395. /*全局表格设置浮动样式*/
  396. .ivu-table-fixed-right th,
  397. .ivu-table-fixed-right td {
  398. text-align: center !important;
  399. }
  400. .ivu-table-fixed-right {
  401. box-shadow: -2px 0 6px -2px rgba(0, 0, 0, 0.1) !important;
  402. top: 1px !important;
  403. }
  404. .ivu-table-fixed-right tr:last-child(1) td {
  405. border-bottom: 0;
  406. }
  407. .ivu-table-fixed::before,
  408. .ivu-table-fixed-right::before {
  409. background-color: unset !important;
  410. }
  411. .ivu-table:before {
  412. background-color: unset !important;
  413. }
  414. .ivu-table-fixed-body {
  415. background-color: #fff;
  416. overflow: unset !important;
  417. }
  418. /*.ivu-table-header thead tr th:nth-of-type(1){*/
  419. /*padding-left: 16px;*/
  420. /*}*/
  421. /*.ivu-table td:nth-of-type(1){*/
  422. /*padding-left: 16px;*/
  423. /*}*/
  424. /*.ivu-table-cell-expand{*/
  425. /*text-align: left;*/
  426. /*}*/
  427. .vxe-header--row th:nth-of-type(1) {
  428. padding-left: 10px !important;
  429. }
  430. .vxe-table--body td:nth-of-type(1) {
  431. padding-left: 10px !important;
  432. }
  433. .ivu-modal-header {
  434. background: #fafafa;
  435. }
  436. .ivu-mb,
  437. .ivu-mb-16 {
  438. margin-bottom: 16px !important;
  439. }
  440. .ivu-mt,
  441. .ivu-mt-16 {
  442. margin-top: 16px !important;
  443. }
  444. .ivu-table-wrapper {
  445. border: 0;
  446. }
  447. .i-layout-page-header {
  448. margin: 0 -18px;
  449. /* display: none; */
  450. background-color: #fff;
  451. padding: 7px 32px 0 32px;
  452. }
  453. .ivu-page-header-title {
  454. display: inline-block;
  455. color: #17233d;
  456. font-weight: 500;
  457. font-size: 20px;
  458. padding-bottom: 16px;
  459. margin-left: 10px;
  460. }
  461. .main .content-wrapper {
  462. padding-top: 0;
  463. }
  464. .ivu-tabs-bar {
  465. margin-bottom: 0;
  466. }
  467. .perW100 {
  468. width: 100%;
  469. }
  470. .perW90 {
  471. width: 90%;
  472. }
  473. .perW50 {
  474. width: 50%;
  475. }
  476. .perW20 {
  477. width: 20%;
  478. }
  479. .perW35 {
  480. width: 35%;
  481. }
  482. .perW30 {
  483. width: 30%;
  484. }
  485. .font14 {
  486. font-size: 14px !important;
  487. }
  488. .ivu-table:after {
  489. width: 0;
  490. }
  491. /*复制pro*/
  492. .ivu-text-left {
  493. text-align: left;
  494. }
  495. .ivu-text-right {
  496. text-align: right;
  497. }
  498. .ivu-block {
  499. display: block;
  500. }
  501. .ivu-pl-8 {
  502. padding-left: 8px !important;
  503. }
  504. .tabBox_img {
  505. width: 36px;
  506. height: 36px;
  507. border-radius: 4px;
  508. cursor: pointer;
  509. }
  510. .tabBox_img img {
  511. width: 100%;
  512. height: 100%;
  513. }
  514. .content img {
  515. display: block;
  516. max-width: 100%;
  517. }
  518. /*客服*/
  519. .mask-footer {
  520. display: flex;
  521. justify-content: flex-end;
  522. padding-top: 20px;
  523. border-top: 1px solid #e8eaec;
  524. }
  525. .mask-footer button {
  526. margin-left: 10px;
  527. }
  528. .goods-mask .ivu-modal-body {
  529. padding: 0;
  530. }
  531. .content img {
  532. display: block;
  533. max-width: 100%;
  534. object-fit: contain;
  535. }
  536. .none-radius .ivu-modal-content {
  537. border-radius: 0;
  538. }
  539. .transfer-mask .ivu-modal-wrap {
  540. width: 1200px;
  541. margin: 0 auto;
  542. }
  543. .transfer-mask .ivu-modal {
  544. position: absolute;
  545. right: 279px;
  546. top: auto;
  547. bottom: 271px;
  548. }
  549. .maskModel {
  550. position: fixed;
  551. top: 0;
  552. left: 0;
  553. right: 0;
  554. bottom: 0;
  555. z-index: 55;
  556. background-color: rgba(0, 0, 0, 0.5);
  557. }
  558. .input-input {
  559. display: block;
  560. height: 100%;
  561. background: none;
  562. color: inherit;
  563. opacity: 1;
  564. -webkit-text-fill-color: currentcolor;
  565. font: inherit;
  566. line-height: inherit;
  567. letter-spacing: inherit;
  568. text-align: inherit;
  569. text-indent: inherit;
  570. text-transform: inherit;
  571. text-shadow: inherit;
  572. border: none;
  573. }
  574. .kf_mobile .textarea-box textarea {
  575. resize: none !important;
  576. height: 148px;
  577. border-color: transparent;
  578. font-size: 14px !important;
  579. }
  580. .kf_mobile .textarea-box textarea:focus {
  581. box-shadow: none;
  582. }
  583. .line1 {
  584. overflow: hidden;
  585. text-overflow: ellipsis;
  586. white-space: nowrap;
  587. }
  588. .line2 {
  589. overflow: hidden;
  590. text-overflow: ellipsis;
  591. display: -webkit-box;
  592. -webkit-line-clamp: 2;
  593. -webkit-box-orient: vertical;
  594. }
  595. .none-radius .ivu-modal-mask,
  596. .label-box .ivu-modal-mask {
  597. background-color: transparent;
  598. }
  599. .empty-box {
  600. width: 100%;
  601. height: 100%;
  602. display: flex;
  603. align-items: center;
  604. justify-content: center;
  605. background: #f3f5f7;
  606. border-radius: 6px;
  607. }
  608. .empty-box.on {
  609. border-radius: 0px;
  610. }
  611. .empty-box .iconfont-diy {
  612. color: #bbbfc8;
  613. font-size: 30px;
  614. }
  615. .paddingBox {
  616. padding: 0 10px 10px;
  617. }
  618. /* form-create tips 样式 */
  619. .tips-info {
  620. line-height: 18px;
  621. margin-top: 8px;
  622. color: rgb(153, 153, 153);
  623. }