style.css 12 KB

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