global.less 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355
  1. @import "~antd/lib/style/themes/default.less";
  2. @import '../src/themeColor.less';
  3. html,
  4. body,
  5. #root {
  6. height: 100%;
  7. overflow-x: hidden;
  8. }
  9. .ant-layout {
  10. min-height: 100vh;
  11. }
  12. canvas {
  13. display: block;
  14. }
  15. body {
  16. text-rendering: optimizeLegibility;
  17. -webkit-font-smoothing: antialiased;
  18. -moz-osx-font-smoothing: grayscale;
  19. }
  20. .globalSpin {
  21. width: 100%;
  22. margin: 40px 0 !important;
  23. }
  24. ul,
  25. ol {
  26. list-style: none;
  27. }
  28. .common_page {
  29. padding: 10px;
  30. background-color: #fff;
  31. width: 100%;
  32. }
  33. .about_wrap .display-none{
  34. display: none;
  35. }
  36. .common_page_20 {
  37. padding: 20px;
  38. background: #fff;
  39. width: 100%;
  40. }
  41. .operate_bg {
  42. height: 40px;
  43. width: 100%;
  44. background: #F5F5F5;
  45. display: flex;
  46. flex-direction: row;
  47. justify-content: flex-start;
  48. align-items: center;
  49. margin-bottom: 10px;
  50. :global {
  51. .ant-input-search > .ant-input-suffix > .ant-input-search-button {
  52. height: 29px !important;
  53. }
  54. .ant-input-search.ant-input-search-enter-button > .ant-input {
  55. height: 29px !important;
  56. }
  57. }
  58. }
  59. .tableListForm {
  60. margin-top: 10px;
  61. margin-bottom: 5px;
  62. position: relative;
  63. :global {
  64. .ant-form {
  65. display: flex;
  66. flex-direction: row;
  67. flex-wrap: wrap;
  68. padding-right: 180px;
  69. }
  70. }
  71. }
  72. :global {
  73. .ant-modal-header {
  74. color: #fff !important;
  75. padding: 12px 24px !important;
  76. border-radius: 4px 4px 0 0 !important;
  77. background: @theme-linear !important;
  78. }
  79. .ant-modal-title {
  80. color: #fff !important;
  81. font-size: 14px !important;
  82. line-height: 18px !important;
  83. }
  84. .ant-modal-close-x {
  85. height: 46px !important;
  86. line-height: 46px !important;
  87. color: #fff !important;
  88. }
  89. .ant-modal-content {
  90. border-radius: 5px !important;
  91. box-shadow: none;
  92. }
  93. textarea.ant-input{
  94. resize: none;
  95. }
  96. .ant-upload{
  97. font-size: 13px !important;
  98. }
  99. .ant-modal-content{
  100. box-shadow:none !important;
  101. }
  102. .ant-tabs{
  103. overflow: inherit !important;
  104. }
  105. .antd-pro-layouts-basic-layout-content {
  106. width: calc(100% - 20px) !important;
  107. }
  108. .slick-dots li button:before {
  109. font-size: 0 !important;
  110. }
  111. .ant-radio-button-wrapper:not(:first-child)::before {
  112. background-color: #f2f2f2 !important;
  113. }
  114. .ant-radio-button-wrapper, .ant-select-selection {
  115. border-color: #f2f2f2 !important;
  116. }
  117. .ant-radio-button-wrapper-checked {
  118. border-color: @theme-color !important;
  119. }
  120. .ant-upload-list-picture-card .ant-upload-list-item-info::before {
  121. left: 0;
  122. }
  123. .ant-spin-nested-loading {
  124. width: 100%;
  125. }
  126. .ant-layout-sider {
  127. background: #333 !important;
  128. }
  129. .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-nav-container {
  130. height: 34px !important;
  131. }
  132. .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab {
  133. line-height: 32px !important;
  134. }
  135. .ant-tabs-bar {
  136. margin: 0 !important;
  137. }
  138. .ant-table-body {
  139. width: 100%;
  140. overflow: hidden;
  141. }
  142. .ant-table {
  143. font-size: 12px !important;
  144. color: #000 !important;
  145. }
  146. }
  147. div[class$=basic-trade_stat], div[class$=basic-saling_stat], div[class$=basic-real_stat] {
  148. .ant-table {
  149. border-color: @theme-lightColor !important;
  150. border-top: none !important;
  151. }
  152. div {
  153. .ant-table-bordered .ant-table-content {
  154. border-right: 1px solid @theme-lightColor !important;
  155. border-color: @theme-lightColor !important;
  156. }
  157. }
  158. }
  159. body {
  160. /* 售后单标记-start */
  161. .color_wrap {
  162. display: flex;
  163. flex-direction: row;
  164. justify-content: flex-start;
  165. align-items: center;
  166. span {
  167. width: 20px;
  168. height: 20px;
  169. display: inline-block;
  170. margin-right: 10px;
  171. }
  172. }
  173. .tableListForm {
  174. margin-bottom: 5px;
  175. :global {
  176. .common_bottom_wrap {
  177. .ant-btn {
  178. line-height: 45px !important;
  179. height: 45px !important;
  180. }
  181. }
  182. .ant-select-selection--single {
  183. height: 28px !important;
  184. }
  185. .ant-select-selection__rendered {
  186. line-height: 27px !important;
  187. }
  188. .ant-btn {
  189. line-height: 29px !important;
  190. height: 29px !important;
  191. }
  192. .ant-form-item {
  193. margin-bottom: 5px !important;
  194. margin-right: 0;
  195. display: flex !important;
  196. > .ant-form-item-label {
  197. width: auto;
  198. line-height: 28px;
  199. padding-right: 8px;
  200. flex: 1;
  201. }
  202. .ant-form-item-control {
  203. line-height: 27px;
  204. }
  205. }
  206. .ant-form-item-control-wrapper {
  207. flex: 1;
  208. }
  209. .ant-form-item-label {
  210. padding-right: 0 !important;
  211. }
  212. .ant-form-item-label > label {
  213. font-size: 13px !important;
  214. color: #555;
  215. }
  216. .ant-form-item-label > label:after {
  217. content: '' !important;
  218. }
  219. .ant-form input, .ant-input-number {
  220. height: 28px !important;
  221. }
  222. .ant-form input.ant-input-number-input {
  223. line-height: 28px !important;
  224. }
  225. .ant-btn span {
  226. font-size: 13px;
  227. }
  228. form textarea.ant-input {
  229. height: 28px !important;
  230. min-height: 28px !important;
  231. }
  232. .ant-calendar-picker span.ant-calendar-picker-input {
  233. padding-top: 0 !important;
  234. }
  235. .ant-calendar-picker .ant-calendar-range-picker-separator {
  236. padding-top: 4px;
  237. }
  238. }
  239. }
  240. :global {
  241. .ant-form-explain {
  242. margin-top: 0;
  243. min-height: 12px !important;
  244. }
  245. .ant-form-explain, .ant-form-extra {
  246. font-size: 12px;
  247. line-height: 14px;
  248. }
  249. .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
  250. padding: 10px 8px !important;
  251. }
  252. .ant-calendar-picker-input.ant-input {
  253. height: 28px !important;
  254. }
  255. .ant-menu-dark .ant-menu-submenu-title:hover {
  256. // background-color: @theme-color;
  257. }
  258. :root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon, :root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-icon {
  259. font-size: 15px !important;
  260. }
  261. .ant-table-body {
  262. width: 100%;
  263. overflow: hidden;
  264. }
  265. .ant-radio-group {
  266. font-size: 13px !important;
  267. display: flex;
  268. }
  269. .ant-radio-group-small .ant-radio-button-wrapper {
  270. padding: 0 10px !important;
  271. height: 27px !important;
  272. line-height: 26px !important;
  273. @media screen and (max-width: 1380px) {
  274. padding: 0 3px !important;
  275. }
  276. @media screen and (max-width: 1236px) {
  277. padding: 0 1px !important;
  278. }
  279. }
  280. .ant-pagination.mini .ant-pagination-item {
  281. margin: 0;
  282. min-width: 22px !important;
  283. height: 22px !important;
  284. line-height: 20px !important;
  285. }
  286. .ant-select {
  287. font-size: 12px !important;
  288. }
  289. .ant-table-thead .react-resizable {
  290. position: relative;
  291. }
  292. .ant-table-thead .react-resizable-handle {
  293. position: absolute;
  294. width: 10px;
  295. height: 100%;
  296. bottom: 0;
  297. right: -5px;
  298. cursor: col-resize;
  299. background-color: @theme-light4Color;
  300. }
  301. .ant-layout {
  302. height: 100% !important;
  303. overflow: hidden;
  304. }
  305. .screen-xl {
  306. height: 100%;
  307. }
  308. .screen-xxl {
  309. height: 100%;
  310. }
  311. .screen-lg {
  312. height: 100%;
  313. }
  314. .ant-timeline-item-head-custom {
  315. padding: 0 !important;
  316. }
  317. .ant-table {
  318. font-size: 12px !important;
  319. color: #000 !important;
  320. }
  321. .ant-table-tbody > tr > td {
  322. padding: 8px 8px !important;
  323. }
  324. .ant-table-pagination.ant-pagination {
  325. margin: 10px 0 !important;
  326. }
  327. .ant-pagination {
  328. font-size: 12px !important;
  329. }
  330. }
  331. .disableOperate {
  332. color: #999 !important;
  333. }
  334. .editable {
  335. td {
  336. padding-top: 13px !important;
  337. padding-bottom: 12.5px !important;
  338. }
  339. }
  340. .table_row_title {
  341. background: #E8F2FF !important;
  342. color: #101010;
  343. font-size: 13px;
  344. font-weight: bold
  345. }
  346. .weight_w_left_span {
  347. width: 130px;
  348. display: flex;
  349. flex-direction: row;
  350. justify-content: flex-end;
  351. }
  352. .weight_w_right_span {
  353. display: flex;
  354. flex-direction: row;
  355. justify-content: flex-start;
  356. flex: 1
  357. }
  358. .weight_r_span_wrap {
  359. display: flex;
  360. flex-direction: row;
  361. justify-content: flex-start;
  362. width: 100%;
  363. height: 45px;
  364. line-height: 45px;
  365. color: #999999
  366. }
  367. .weight_r_span_wrap_betweent {
  368. display: flex;
  369. flex-direction: row;
  370. justify-content: space-between;
  371. width: 100%;
  372. height: 45px;
  373. line-height: 45px;
  374. color: #555555
  375. }
  376. .title {
  377. flex-direction: row;
  378. color: #555;
  379. font-size: 18px;
  380. justify-content: flex-end;
  381. .left_border {
  382. display: inline-block;
  383. width: 5px;
  384. height: 15px;
  385. margin-right: 10px;
  386. vertical-align: text-top;
  387. }
  388. }
  389. .title_add_goods {
  390. display: flex;
  391. color: #101010;
  392. font-size: 14px;
  393. font-weight: 700;
  394. justify-content: flex-start;
  395. align-items: center;
  396. height: 20px;
  397. span {
  398. display: inline-block;
  399. vertical-align: middle;
  400. line-height: 0;
  401. }
  402. .left_border {
  403. display: inline-block;
  404. width: 4px;
  405. height: 16px;
  406. margin-right: 7px;
  407. }
  408. .title {
  409. color: #333;
  410. font-size: 14px;
  411. font-weight: 700;
  412. }
  413. .sub_title{
  414. color: @theme-color;
  415. font-size: 12px;
  416. font-weight: 400;
  417. margin-left: 9px;
  418. }
  419. }
  420. .icon_text_width {
  421. width: 120px;
  422. display: flex;
  423. flex-direction: row;
  424. justify-content: center;
  425. .icon_text {
  426. flex-direction: column;
  427. align-items: center;
  428. display: flex;
  429. min-height: 120px;
  430. span {
  431. display: block;
  432. margin-top: 20px;
  433. color: #555;
  434. font-size: 14px;
  435. }
  436. }
  437. }
  438. .sld_common_btn {
  439. height: 28px;
  440. background: #fff;
  441. display: flex;
  442. flex-direction: row;
  443. justify-content: center;
  444. align-items: center;
  445. padding-left: 7px;
  446. padding-right: 7px;
  447. border-radius: 3px;
  448. cursor: pointer;
  449. span {
  450. display: inline-block;
  451. }
  452. }
  453. .sld_common_btn_not_allowed {
  454. cursor: not-allowed;
  455. svg {
  456. opacity: .3;
  457. }
  458. }
  459. :global {
  460. .ant-modal-content {
  461. .ant-form-item-children {
  462. font-size: 14px !important;
  463. color: #333;
  464. }
  465. .ant-form-item-label label {
  466. color: #666;
  467. }
  468. }
  469. .ant-table-fixed-left, .ant-table-fixed-right {
  470. z-index: 2 !important;
  471. }
  472. .ant-form label {
  473. font-size: 13px !important;
  474. }
  475. .ant-input-disabled {
  476. color: #666;
  477. }
  478. body {
  479. color: #555;
  480. }
  481. .ant-table-bordered .ant-table-thead > tr > th, .ant-table-bordered .ant-table-tbody > tr > td {
  482. border-right: 1px solid #f2f2f2 !important;
  483. }
  484. .ant-tabs-bar {
  485. border-bottom: 1px solid #f2f2f2;
  486. }
  487. .ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-thead > tr > th:last-child, .ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-tbody > tr > td:last-child {
  488. border-right: 1px solid #f2f2f2;
  489. }
  490. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
  491. border: 1px solid #f2f2f2;
  492. }
  493. .ant-input-affix-wrapper {
  494. width: 300px;
  495. }
  496. .ant-input {
  497. font-size: 13px;
  498. }
  499. .ant-btn {
  500. font-size: 13px;
  501. }
  502. .ant-form-inline .ant-form-item-with-help {
  503. margin-bottom: 10px !important;
  504. }
  505. .ant-form-item {
  506. font-size: 12px !important;
  507. color: #999 !important;
  508. }
  509. .ant-row .ant-form-item {
  510. height: 28px !important;
  511. }
  512. .has-error .ant-form-explain, .has-error .ant-form-split {
  513. position: absolute;
  514. right: 8px;
  515. top: -6px;
  516. background: #fff;
  517. }
  518. .ant-table-thead > tr > th.ant-table-selection-column, .ant-table-tbody > tr > td.ant-table-selection-column {
  519. width: 35px !important;
  520. min-width: 35px !important;
  521. }
  522. .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th {
  523. background-color: @theme-light4Color !important;
  524. padding: 10px 8px !important;
  525. }
  526. .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
  527. background-color: @theme-light4Color !important;
  528. }
  529. .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
  530. background-color: @theme-light4Color !important;
  531. }
  532. .ant-table-scroll > .ant-table-body {
  533. overflow: scroll;
  534. }
  535. }
  536. .common_bottom_wrap {
  537. position: fixed;
  538. bottom: 0;
  539. left: 0;
  540. right: 0;
  541. height: 73px;
  542. border: 0;
  543. border-top: 1px;
  544. border-color: #D8E6F4;
  545. border-style: solid;
  546. background-color: #D8E6F4;
  547. display: flex;
  548. flex-direction: row;
  549. justify-content: center;
  550. align-items: center;
  551. z-index: 2
  552. }
  553. .goods_sku_tab {
  554. :global {
  555. .ant-tabs {
  556. flex: 1;
  557. }
  558. .ant-tabs-bar {
  559. margin-bottom: 10px !important;
  560. }
  561. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-nav-container {
  562. height: 35px !important;
  563. }
  564. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
  565. line-height: 35px !important;
  566. padding: 0 15px !important;
  567. }
  568. .ant-form-item, .ant-form-inline .ant-form-item-with-help {
  569. margin-bottom: 0 !important;
  570. }
  571. }
  572. }
  573. color: #555;
  574. }
  575. :global {
  576. .ant-radio-wrapper {
  577. display: flex !important;
  578. align-items: center;
  579. }
  580. form .ant-input-number-handler-wrap {
  581. z-index: 0 !important;
  582. }
  583. .ant-form {
  584. color: #333 !important;
  585. }
  586. .ant-upload-list-picture .ant-upload-list-item, .ant-upload-list-picture-card .ant-upload-list-item {
  587. border-color: #f2f2f2 !important;
  588. }
  589. .ant-layout-content {
  590. display: flex;
  591. }
  592. .ant-table-fixed-left, .ant-table-fixed-right {
  593. z-index: 2 !important;
  594. }
  595. .ant-form label {
  596. font-size: 13px !important;
  597. }
  598. .ant-input-disabled {
  599. color: #666;
  600. }
  601. .ant-checkbox-inner {
  602. border: 1px solid #f2f2f2;
  603. }
  604. .ant-input-group-addon {
  605. border: 1px solid #f2f2f2;
  606. }
  607. .ant-table-bordered .ant-table-thead > tr > th, .ant-table-bordered .ant-table-tbody > tr > td {
  608. border-right: 1px solid #f2f2f2 !important;
  609. }
  610. .ant-tabs-bar {
  611. border-bottom: 1px solid #f2f2f2;
  612. }
  613. .ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-thead > tr > th:last-child, .ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-tbody > tr > td:last-child {
  614. border-right: 1px solid #f2f2f2;
  615. }
  616. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
  617. border: 1px solid #f2f2f2;
  618. }
  619. .ant-input-affix-wrapper {
  620. width: 300px;
  621. }
  622. .ant-input {
  623. font-size: 13px;
  624. border-color: #f2f2f2 !important;
  625. }
  626. .ant-btn {
  627. font-size: 13px;
  628. }
  629. .ant-form-inline .ant-form-item-with-help {
  630. margin-bottom: 10px !important;
  631. }
  632. .ant-form-item {
  633. font-size: 12px !important;
  634. color: #999 !important;
  635. }
  636. .ant-row .ant-form-item {
  637. height: 28px !important;
  638. }
  639. .has-error .ant-form-explain, .has-error .ant-form-split {
  640. position: absolute;
  641. right: 8px;
  642. top: -6px;
  643. background: #fff;
  644. }
  645. .ant-table-thead > tr > th.ant-table-selection-column, .ant-table-tbody > tr > td.ant-table-selection-column {
  646. width: 35px !important;
  647. min-width: 35px !important;
  648. }
  649. .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th {
  650. background-color: #f2f2f2 !important;
  651. padding: 10px 8px !important;
  652. }
  653. .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
  654. background-color: #f2f2f2 !important;
  655. }
  656. .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
  657. background-color: #f2f2f2 !important;
  658. }
  659. .ant-table-scroll > .ant-table-body {
  660. overflow: scroll;
  661. }
  662. }
  663. .common_bottom_wrap {
  664. position: absolute;
  665. bottom: 0;
  666. left: 10px;
  667. right: 10px;
  668. height: 73px;
  669. border: 0;
  670. border-top: 1px;
  671. border-color: #F0F2F5;
  672. border-style: solid;
  673. background-color: #eee;
  674. display: flex;
  675. flex-direction: row;
  676. justify-content: flex-end;
  677. align-items: center;
  678. z-index: 2
  679. }
  680. .goods_sku_tab {
  681. :global {
  682. .ant-tabs {
  683. flex: 1;
  684. }
  685. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-nav-container {
  686. height: 35px !important;
  687. }
  688. .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
  689. line-height: 35px !important;
  690. padding: 0 15px !important;
  691. }
  692. .ant-form-item, .ant-form-inline .ant-form-item-with-help {
  693. margin-bottom: 0 !important;
  694. }
  695. }
  696. }
  697. .sld_com_bottom {
  698. position: fixed;
  699. bottom: 0;
  700. }
  701. .operate_bg {
  702. :global {
  703. .ant-input {
  704. height: 28px !important;
  705. }
  706. .ant-btn {
  707. height: 28px !important;
  708. }
  709. }
  710. }
  711. .show_editor_con {
  712. padding: 20px;
  713. width: 100%;
  714. display: flex;
  715. justify-content: center
  716. }
  717. .tableListFormEdit {
  718. margin-top: 25px;
  719. width: 600px;
  720. }
  721. .show_img {
  722. max-width: 100%;
  723. max-height: 100%;
  724. }
  725. .flex_row_common {
  726. display: flex;
  727. flex-direction: row;
  728. align-items: center;
  729. justify-content: center;
  730. }
  731. .diy_tip_div {
  732. background: @theme-light4Color;
  733. border-radius: 4px;
  734. padding: 10px 15px;
  735. width: 100%;
  736. span {
  737. color: @theme-color;
  738. font-size: 16px;
  739. }
  740. ul {
  741. margin-bottom: 0 !important;
  742. li {
  743. color: @theme-color;
  744. font-size: 12px;
  745. padding: 2px 0;
  746. }
  747. }
  748. }
  749. .diy_modal_tip_div {
  750. padding: 10px 15px;
  751. ul {
  752. padding-left: 0 !important;
  753. margin-bottom: 0 !important;
  754. li {
  755. color: @theme-color;
  756. font-size: 12px;
  757. padding: 2px 0;
  758. }
  759. }
  760. }
  761. .sele_tpl_type {
  762. height: 300px;
  763. margin-top: 20px;
  764. :global {
  765. .ant-tabs-vertical {
  766. height: auto !important;
  767. }
  768. }
  769. .right {
  770. display: flex;
  771. flex-direction: row;
  772. justify-content: flex-start;
  773. align-items: flex-start;
  774. flex-wrap: wrap;
  775. .item:nth-child(2n) {
  776. margin-left: 25px;
  777. }
  778. .item {
  779. position: relative;
  780. width: 340px;
  781. height: 260px;
  782. display: flex;
  783. flex-direction: column;
  784. justify-content: center;
  785. align-items: center;
  786. background: #fff;
  787. border: 1px solid #fff;
  788. .img_wrap {
  789. width: 288px;
  790. height: 134px;
  791. display: flex;
  792. flex-direction: row;
  793. justify-content: center;
  794. align-items: center;
  795. img {
  796. max-width: 100%;
  797. max-height: 100%;
  798. }
  799. }
  800. .title {
  801. color: #333;
  802. line-height: 20px;
  803. font-size: 14px;
  804. }
  805. .desc {
  806. padding: 0 10px;
  807. color: #666;
  808. font-size: 12px;
  809. margin-top: 5px;
  810. line-height: 14px;
  811. height: 28px;
  812. overflow: hidden;
  813. }
  814. .sele_flag {
  815. display: none;
  816. position: absolute;
  817. top: 10px;
  818. right: 10px;
  819. z-index: 2;
  820. }
  821. }
  822. .item_select {
  823. background: #FBFAFA;
  824. border-color: #E6E6E6;
  825. .sele_flag {
  826. display: inline-block;
  827. }
  828. }
  829. }
  830. .right_instance {
  831. display: flex;
  832. flex-direction: column;
  833. justify-content: flex-start;
  834. align-items: center;
  835. .item {
  836. position: relative;
  837. width: 850px;
  838. display: flex;
  839. flex-direction: column;
  840. justify-content: center;
  841. align-items: center;
  842. background: #fff;
  843. border: 1px solid #fff;
  844. .sele_flag {
  845. display: none;
  846. position: absolute;
  847. top: 10px;
  848. right: 10px;
  849. z-index: 2;
  850. }
  851. }
  852. .item_select {
  853. background: #FBFAFA;
  854. border-color: #E6E6E6;
  855. .sele_flag {
  856. display: inline-block;
  857. }
  858. }
  859. }
  860. }
  861. .flex_com_row {
  862. display: flex;
  863. flex-direction: row;
  864. justify-content: center;
  865. align-items: flex-start;
  866. }
  867. .flex_com_row_start_start {
  868. display: flex;
  869. flex-direction: row;
  870. justify-content: flex-start;
  871. align-items: flex-start;
  872. }
  873. .flex_com_row_start_center {
  874. display: flex;
  875. flex-direction: row;
  876. justify-content: flex-start;
  877. align-items: center;
  878. }
  879. .flex_com_row_center {
  880. display: flex;
  881. flex-direction: row;
  882. justify-content: center;
  883. align-items: center;
  884. }
  885. .flex_com_column {
  886. display: flex;
  887. flex-direction: column;
  888. justify-content: flex-start;
  889. align-items: center;
  890. }
  891. .flex_com_column_center_flex_start {
  892. display: flex;
  893. flex-direction: column;
  894. justify-content: center;
  895. align-items: flex-start;
  896. }
  897. .flex_com_column_space_betweent_center {
  898. display: flex;
  899. flex-direction: column;
  900. justify-content: space-between;
  901. align-items: center;
  902. }
  903. .flex_com_column_flex_end {
  904. display: flex;
  905. flex-direction: column;
  906. justify-content: flex-end;
  907. align-items: flex-end;
  908. }
  909. .flex_com_column_center_center {
  910. display: flex;
  911. flex-direction: column;
  912. justify-content: center;
  913. align-items: center;
  914. }
  915. .flex_com_column_start_start {
  916. display: flex;
  917. flex-direction: column;
  918. justify-content: flex-start;
  919. align-items: flex-start;
  920. }
  921. .flex_com_space_between {
  922. display: flex;
  923. flex-direction: row;
  924. justify-content: space-between;
  925. align-items: center;
  926. }
  927. .flex_com_row_space_around_center {
  928. display: flex;
  929. flex-direction: row;
  930. justify-content: space-around;
  931. align-items: center;
  932. }
  933. .comm_line_sperator {
  934. margin-top: 15px;
  935. margin-bottom: 15px;
  936. border-top: 1px solid #eee;
  937. }
  938. .full_width {
  939. width: 100%;
  940. }
  941. .tableListFormAdd {
  942. :global {
  943. .ant-form {
  944. margin-top: 20px;
  945. }
  946. .ant-form-inline .ant-form-item > .ant-form-item-label {
  947. width: 90px !important;
  948. }
  949. }
  950. }
  951. .right_instance {
  952. display: flex;
  953. flex-direction: column;
  954. justify-content: flex-start;
  955. align-items: center;
  956. }
  957. .com_zoom {
  958. zoom: 0.8;
  959. }
  960. .instance_pre_a {
  961. display: inline-block;
  962. height: 36px;
  963. }
  964. .com_zoom_2 {
  965. zoom: 0.1;
  966. }
  967. .flex_com_row_wrap {
  968. display: flex;
  969. flex-direction: row;
  970. justify-content: flex-start;
  971. align-items: flex-start;
  972. flex-wrap: wrap;
  973. }
  974. .seller_logo {
  975. width: 130px;
  976. height: 40px;
  977. margin: 0 auto;
  978. img {
  979. max-width: 100%;
  980. max-height: 100%;
  981. }
  982. }
  983. .goods_modal_img {
  984. width: 30px;
  985. height: 30px;
  986. margin: 0 auto;
  987. img {
  988. max-height: 100%;
  989. max-width: 100%;
  990. }
  991. }
  992. .sld_top_tab_wrap {
  993. .title_add_goods {
  994. position: absolute;
  995. z-index: 2;
  996. }
  997. }
  998. .sld_tab_pl_150 {
  999. :global {
  1000. .ant-tabs-nav-container {
  1001. padding-left: 150px;
  1002. }
  1003. }
  1004. }
  1005. .sld_tab_pl_0 {
  1006. :global {
  1007. .ant-tabs-nav-container {
  1008. padding-left: 0;
  1009. }
  1010. }
  1011. }
  1012. .goods_img_wrap_30 {
  1013. width: 30px;
  1014. height: 30px;
  1015. }
  1016. .goods_img_wrap_160 {
  1017. width: 160px;
  1018. height: 160px;
  1019. }
  1020. .goods_img_wrap_30 img, .goods_img_wrap_160 img {
  1021. max-width: 100%;
  1022. max-height: 100%;
  1023. }
  1024. .input_after_wrap {
  1025. cursor: pointer;
  1026. }
  1027. .goods_img_wrap_80 {
  1028. width: 80px;
  1029. height: 80px;
  1030. border-radius: 3px;
  1031. overflow: hidden;
  1032. }
  1033. .goods_img_wrap_200 {
  1034. width: 200px;
  1035. height: 200px;
  1036. }
  1037. .goods_img_wrap_200 img, .goods_img_wrap_80 img {
  1038. max-width: 100%;
  1039. max-height: 100%;
  1040. }
  1041. .com_img_wrap img {
  1042. max-width: 100%;
  1043. max-height: 100%;
  1044. }
  1045. .btn_fixed_bottom {
  1046. width: 135px;
  1047. height: 44px;
  1048. font-size: 13px !important;
  1049. margin-left: 50px;
  1050. }
  1051. .com_line {
  1052. width: 100%;
  1053. background: #f2f2f2;
  1054. }
  1055. .clearfix {
  1056. clear: both;
  1057. overflow: hidden;
  1058. }
  1059. .com_flex_row_flex_start {
  1060. display: flex;
  1061. flex-direction: row;
  1062. justify-content: flex-start;
  1063. align-items: center;
  1064. }
  1065. .com_flex_column {
  1066. display: flex;
  1067. flex-direction: column;
  1068. justify-content: flex-start
  1069. }
  1070. .com_flex_column_space_between {
  1071. display: flex;
  1072. flex-direction: column;
  1073. justify-content: space-between;
  1074. align-items: flex-start;
  1075. }
  1076. .com_flex_column_center {
  1077. display: flex;
  1078. flex-direction: column;
  1079. justify-content: center;
  1080. align-items: center;
  1081. }
  1082. /*发布商品样式-start*/
  1083. .sele_goods_cat {
  1084. width: 100%;
  1085. .sele_cat_info {
  1086. background: rgba(@theme-light-rgba-Color, .1);
  1087. width: 100%;
  1088. height: 40px;
  1089. line-height: 40px;
  1090. border: 1px dotted @theme-color;
  1091. padding-left: 20px;
  1092. margin-bottom: 15px;
  1093. span {
  1094. color: @theme-color;
  1095. font-size: 12px;
  1096. display: inline-block;
  1097. }
  1098. .tip {
  1099. color: #FF3710;
  1100. }
  1101. }
  1102. .sele_cat_info.tip_bg {
  1103. background: #FFFADF;
  1104. border-color: @theme-color;
  1105. }
  1106. }
  1107. .catOwnShopTip {
  1108. width: 100%;
  1109. height: 300px;
  1110. display: flex;
  1111. flex-direction: row;
  1112. justify-content: center;
  1113. align-items: center;
  1114. }
  1115. .add_goods_step1 {
  1116. display: flex;
  1117. flex-direction: column;
  1118. justify-content: center;
  1119. align-items: center;
  1120. }
  1121. .add_goods_step1_btn {
  1122. background: @theme-color;
  1123. border-radius: 2px;
  1124. cursor: pointer;
  1125. .text {
  1126. display: inline-block;
  1127. padding: 12px 40px;
  1128. color: #fff;
  1129. font-size: 14px;
  1130. font-weight: 600;
  1131. }
  1132. }
  1133. .goods_cat_wrap {
  1134. width: 100%;
  1135. display: flex;
  1136. flex-direction: row;
  1137. justify-content: space-around;
  1138. align-items: center;
  1139. padding-top: 8px;
  1140. padding-bottom: 8px;
  1141. .wrap {
  1142. flex: 1;
  1143. height: 100%;
  1144. background: #fff;
  1145. border: 1px dotted #E6E9EE;
  1146. display: flex;
  1147. flex-direction: column;
  1148. justify-content: flex-start;
  1149. align-items: flex-start;
  1150. // padding: 10px 0;
  1151. .goods_cat_item {
  1152. display: flex;
  1153. font-size: 13px;
  1154. line-height: 35px;
  1155. color: #666;
  1156. height: 35px;
  1157. margin: 0 20px;
  1158. overflow: hidden;
  1159. border: 1px solid #fff;
  1160. padding: 0 20px;
  1161. cursor: pointer;
  1162. }
  1163. .select {
  1164. background: rgba(@theme-light-rgba-Color, .1);
  1165. color: @theme-light2Color;
  1166. }
  1167. }
  1168. }
  1169. .disableUploadBtn {
  1170. display: flex;
  1171. width: 104px;
  1172. height: 104px;
  1173. padding: 10px;
  1174. margin-right: 8px;
  1175. margin-bottom: 8px;
  1176. background-color: #fafafa;
  1177. border: 1px dashed #d9d9d9;
  1178. border-radius: 4px;
  1179. cursor: not-allowed;
  1180. transition: border-color .3s ease;
  1181. flex-direction: row;
  1182. justify-content: center;
  1183. align-items: center;
  1184. .text {
  1185. color: #666;
  1186. font-size: 12px;
  1187. }
  1188. }
  1189. /*发布商品样式-end*/
  1190. .splitLine {
  1191. background: #ddd;
  1192. display: inline-block;
  1193. margin: -3px 4px -2px 1px;
  1194. width: 1px;
  1195. height: 12px;
  1196. }
  1197. //flex 常用布局
  1198. .flex_row_center_center {
  1199. display: flex;
  1200. justify-content: center;
  1201. align-items: center;
  1202. }
  1203. .flex_row_center_between {
  1204. display: flex;
  1205. justify-content: center;
  1206. align-items: space-between;
  1207. }
  1208. .flex_row_center_around {
  1209. display: flex;
  1210. justify-content: center;
  1211. align-items: space-around;
  1212. }
  1213. .flex_row_center_start {
  1214. display: flex;
  1215. justify-content: center;
  1216. align-items: flex-start;
  1217. }
  1218. .flex_row_center_end {
  1219. display: flex;
  1220. justify-content: center;
  1221. align-items: flex-end;
  1222. }
  1223. .flex_row_between_center {
  1224. display: flex;
  1225. justify-content: space-between;
  1226. align-items: center;
  1227. }
  1228. .flex_row_between_between {
  1229. display: flex;
  1230. justify-content: space-between;
  1231. align-items: space-between;
  1232. }
  1233. .flex_row_between_around {
  1234. display: flex;
  1235. justify-content: space-between;
  1236. align-items: space-around;
  1237. }
  1238. .flex_row_between_start {
  1239. display: flex;
  1240. justify-content: space-between;
  1241. align-items: flex-start;
  1242. }
  1243. .flex_row_between_end {
  1244. display: flex;
  1245. justify-content: space-between;
  1246. align-items: flex-end;
  1247. }
  1248. .flex_row_around_center {
  1249. display: flex;
  1250. justify-content: space-around;
  1251. align-items: center;
  1252. }
  1253. .flex_row_around_between {
  1254. display: flex;
  1255. justify-content: space-around;
  1256. align-items: space-between;
  1257. }
  1258. .flex_row_around_around {
  1259. display: flex;
  1260. justify-content: space-around;
  1261. align-items: space-around;
  1262. }
  1263. .flex_row_around_start {
  1264. display: flex;
  1265. justify-content: space-around;
  1266. align-items: flex-start;
  1267. }
  1268. .flex_row_around_end {
  1269. display: flex;
  1270. justify-content: space-around;
  1271. align-items: flex-end;
  1272. }
  1273. .flex_row_start_center {
  1274. display: flex;
  1275. justify-content: flex-start;
  1276. align-items: center;
  1277. }
  1278. .flex_row_start_between {
  1279. display: flex;
  1280. justify-content: flex-start;
  1281. align-items: space-between;
  1282. }
  1283. .flex_row_start_around {
  1284. display: flex;
  1285. justify-content: flex-start;
  1286. align-items: space-around;
  1287. }
  1288. .flex_row_start_start {
  1289. display: flex;
  1290. justify-content: flex-start;
  1291. align-items: flex-start;
  1292. }
  1293. .flex_row_start_end {
  1294. display: flex;
  1295. justify-content: flex-start;
  1296. align-items: flex-end;
  1297. }
  1298. .flex_row_end_center {
  1299. display: flex;
  1300. justify-content: flex-end;
  1301. align-items: center;
  1302. }
  1303. .flex_row_end_between {
  1304. display: flex;
  1305. justify-content: flex-end;
  1306. align-items: space-between;
  1307. }
  1308. .flex_row_end_around {
  1309. display: flex;
  1310. justify-content: flex-end;
  1311. align-items: space-around;
  1312. }
  1313. .flex_row_end_start {
  1314. display: flex;
  1315. justify-content: flex-end;
  1316. align-items: flex-start;
  1317. }
  1318. .flex_row_end_end {
  1319. display: flex;
  1320. justify-content: flex-end;
  1321. align-items: flex-end;
  1322. }
  1323. .flex_column_center_center {
  1324. display: flex;
  1325. flex-direction: column;
  1326. justify-content: center;
  1327. align-items: center;
  1328. }
  1329. .flex_column_center_between {
  1330. display: flex;
  1331. flex-direction: column;
  1332. justify-content: center;
  1333. align-items: space-between;
  1334. }
  1335. .flex_column_center_around {
  1336. display: flex;
  1337. flex-direction: column;
  1338. justify-content: center;
  1339. align-items: space-around;
  1340. }
  1341. .flex_column_center_start {
  1342. display: flex;
  1343. flex-direction: column;
  1344. justify-content: center;
  1345. align-items: flex-start;
  1346. }
  1347. .flex_column_center_end {
  1348. display: flex;
  1349. flex-direction: column;
  1350. justify-content: center;
  1351. align-items: flex-end;
  1352. }
  1353. .flex_column_between_center {
  1354. display: flex;
  1355. flex-direction: column;
  1356. justify-content: space-between;
  1357. align-items: center;
  1358. }
  1359. .flex_column_between_between {
  1360. display: flex;
  1361. flex-direction: column;
  1362. justify-content: space-between;
  1363. align-items: space-between;
  1364. }
  1365. .flex_column_between_around {
  1366. display: flex;
  1367. flex-direction: column;
  1368. justify-content: space-between;
  1369. align-items: space-around;
  1370. }
  1371. .flex_column_between_start {
  1372. display: flex;
  1373. flex-direction: column;
  1374. justify-content: space-between;
  1375. align-items: flex-start;
  1376. }
  1377. .flex_column_between_end {
  1378. display: flex;
  1379. flex-direction: column;
  1380. justify-content: space-between;
  1381. align-items: flex-end;
  1382. }
  1383. .flex_column_around_center {
  1384. display: flex;
  1385. flex-direction: column;
  1386. justify-content: space-around;
  1387. align-items: center;
  1388. }
  1389. .flex_column_around_between {
  1390. display: flex;
  1391. flex-direction: column;
  1392. justify-content: space-around;
  1393. align-items: space-between;
  1394. }
  1395. .flex_column_around_around {
  1396. display: flex;
  1397. flex-direction: column;
  1398. justify-content: space-around;
  1399. align-items: space-around;
  1400. }
  1401. .flex_column_around_start {
  1402. display: flex;
  1403. flex-direction: column;
  1404. justify-content: space-around;
  1405. align-items: flex-start;
  1406. }
  1407. .flex_column_around_end {
  1408. display: flex;
  1409. flex-direction: column;
  1410. justify-content: space-around;
  1411. align-items: flex-end;
  1412. }
  1413. .flex_column_start_center {
  1414. display: flex;
  1415. flex-direction: column;
  1416. justify-content: flex-start;
  1417. align-items: center;
  1418. }
  1419. .flex_column_start_between {
  1420. display: flex;
  1421. flex-direction: column;
  1422. justify-content: flex-start;
  1423. align-items: space-between;
  1424. }
  1425. .flex_column_start_around {
  1426. display: flex;
  1427. flex-direction: column;
  1428. justify-content: flex-start;
  1429. align-items: space-around;
  1430. }
  1431. .flex_column_start_start {
  1432. display: flex;
  1433. flex-direction: column;
  1434. justify-content: flex-start;
  1435. align-items: flex-start;
  1436. }
  1437. .flex_column_start_end {
  1438. display: flex;
  1439. flex-direction: column;
  1440. justify-content: flex-start;
  1441. align-items: flex-end;
  1442. }
  1443. .flex_column_end_center {
  1444. display: flex;
  1445. flex-direction: column;
  1446. justify-content: flex-end;
  1447. align-items: center;
  1448. }
  1449. .flex_column_end_between {
  1450. display: flex;
  1451. flex-direction: column;
  1452. justify-content: flex-end;
  1453. align-items: space-between;
  1454. }
  1455. .flex_column_end_around {
  1456. display: flex;
  1457. flex-direction: column;
  1458. justify-content: flex-end;
  1459. align-items: space-around;
  1460. }
  1461. .flex_column_end_start {
  1462. display: flex;
  1463. flex-direction: column;
  1464. justify-content: flex-end;
  1465. align-items: flex-start;
  1466. }
  1467. .flex_column_end_end {
  1468. display: flex;
  1469. flex-direction: column;
  1470. justify-content: flex-end;
  1471. align-items: flex-end;
  1472. }
  1473. .add_goods_title {
  1474. border-bottom: 1px solid #E1E5F5;
  1475. padding-bottom: 7px;
  1476. }
  1477. .add_goods_top_nav {
  1478. width: 100%;
  1479. height: 48px;
  1480. line-height: 48px;
  1481. overflow: hidden;
  1482. margin-bottom: 10px;
  1483. margin-top: 10px;
  1484. flex-shrink: 0;
  1485. .top_nav_item {
  1486. width: 50%;
  1487. padding: 0 8px;
  1488. box-sizing: border-box;
  1489. position: relative;
  1490. display: inline-block;
  1491. vertical-align: top;
  1492. overflow: visible;
  1493. -ms-flex: 1;
  1494. flex: 1;
  1495. cursor: pointer;
  1496. .step {
  1497. color: #323233;
  1498. background-color: #f7f8fa;
  1499. height: 48px;
  1500. line-height: 48px;
  1501. font-size: 14px;
  1502. text-align: center;
  1503. padding: 0 10px;
  1504. position: relative;
  1505. font-weight: 600;
  1506. }
  1507. }
  1508. .top_nav_item:first-child .step:after {
  1509. content: " ";
  1510. display: block;
  1511. width: 0;
  1512. height: 0;
  1513. border-top: 24px solid transparent;
  1514. border-bottom: 24px solid transparent;
  1515. border-left: 12px solid #f7f8fa;
  1516. position: absolute;
  1517. top: 50%;
  1518. margin-top: -24px;
  1519. right: -12px;
  1520. }
  1521. .top_nav_item:last-child .step:before {
  1522. content: " ";
  1523. display: block;
  1524. width: 0;
  1525. height: 0;
  1526. border-top: 24px solid #f7f8fa;
  1527. border-bottom: 24px solid #f7f8fa;
  1528. border-left: 12px solid transparent;
  1529. position: absolute;
  1530. top: 50%;
  1531. margin-top: -24px;
  1532. left: -12px;
  1533. }
  1534. .top_nav_item.finished .step {
  1535. background: #5382F5;
  1536. border-radius: 3px 0 0 3px;
  1537. color: #fff;
  1538. border-bottom-left-radius: ;
  1539. border-bottom-right-radius: ;
  1540. border-top-left-radius: ;
  1541. }
  1542. .top_nav_item.finished .step:after {
  1543. border-left-color: #5382F5;
  1544. }
  1545. .top_nav_item.finished .step:before {
  1546. border-top-color: #5382F5;
  1547. border-bottom-color: #5382F5;
  1548. }
  1549. .top_nav_item:first-child {
  1550. padding-left: 0;
  1551. }
  1552. .top_nav_item:last-child {
  1553. padding-right: 0;
  1554. }
  1555. }
  1556. .m_diy_bottom_wrap {
  1557. position: absolute;
  1558. bottom: 0;
  1559. left: 0;
  1560. right: 10px;
  1561. height: 60px;
  1562. background: rgba(255, 255, 255, 1);
  1563. box-shadow: 0 0 20px 0 rgba(187, 187, 187, 0.15);
  1564. display: flex;
  1565. flex-direction: row;
  1566. justify-content: center;
  1567. align-items: center;
  1568. z-index: 999
  1569. }
  1570. .modalsty {
  1571. :global {
  1572. .ant-modal {
  1573. top: 200px !important;
  1574. }
  1575. }
  1576. }
  1577. .add_goods_bottom_btn {
  1578. font-size: 13px;
  1579. color: @theme-color;
  1580. line-height: 30px;
  1581. width: 80px;
  1582. text-align: center;
  1583. border: 1px solid @theme-color;
  1584. border-radius: 2px;
  1585. margin-right: 20px;
  1586. box-sizing: border-box;
  1587. cursor: pointer;
  1588. }
  1589. .add_goods_bottom_btn_sel {
  1590. background: @theme-color;
  1591. color: #fff;
  1592. margin-right: 0;
  1593. }
  1594. .add_goods_bottom_btn_forbidden {
  1595. background: #ddd;
  1596. color: #fff;
  1597. margin-right: 0;
  1598. border-color: #ddd;
  1599. }
  1600. .add_goods_sku_list {
  1601. :global {
  1602. .ant-table-body, .ant-table-empty .ant-table-body {
  1603. overflow: auto !important;
  1604. }
  1605. }
  1606. }
  1607. .tableOperateText {
  1608. white-space: nowrap;
  1609. color: #333;
  1610. }
  1611. .tableOperateText:hover {
  1612. color: @theme-color;
  1613. }
  1614. .common_title_bg {
  1615. height: 36px;
  1616. line-height: 36px;
  1617. background: @theme-light4Color;
  1618. border-radius: 2px;
  1619. width: 100%;
  1620. .title {
  1621. color: #333;
  1622. font-size: 13px;
  1623. padding-left: 10px;
  1624. }
  1625. }
  1626. .goods_info {
  1627. position: relative;
  1628. .virtual_goods_flag{
  1629. position: absolute;
  1630. left: 1px;
  1631. top: 1px;
  1632. font-size: 12px;
  1633. color: #fff;
  1634. background: linear-gradient(90deg, @theme-light2Color 0%, @theme-light2Color 100%);
  1635. border-radius: 3px 0 3px 0;
  1636. padding: 0 3px;
  1637. }
  1638. .goods_detail {
  1639. height: 80px;
  1640. margin-left: 10px;
  1641. flex: 1;
  1642. width: 169px;
  1643. }
  1644. .goods_img {
  1645. width: 80px;
  1646. height: 80px;
  1647. background: rgba(248, 248, 248, 1);
  1648. border: 1px solid rgba(226, 229, 246, 1);
  1649. border-radius: 3px;
  1650. overflow: hidden;
  1651. display: inline-block;
  1652. }
  1653. .goods_name {
  1654. overflow: hidden;
  1655. text-overflow: ellipsis;
  1656. display: -webkit-box;
  1657. -webkit-line-clamp: 2;
  1658. /*! autoprefixer: off */
  1659. -webkit-box-orient: vertical;
  1660. word-break: break-word;
  1661. color: #333;
  1662. font-size: 13px;
  1663. line-height: 17px;
  1664. text-align: left;
  1665. height: 34px;
  1666. flex-shrink: 0;
  1667. }
  1668. .goods_brief {
  1669. color: #666;
  1670. font-size: 12px;
  1671. overflow: hidden;
  1672. text-overflow: ellipsis;
  1673. white-space: nowrap;
  1674. text-align: left;
  1675. width: 100%;
  1676. display: inline-block;
  1677. }
  1678. }
  1679. //统计时间选择器样式-start
  1680. .layui-laydate {
  1681. border: none !important;
  1682. box-shadow: none !important;
  1683. }
  1684. .layui-laydate-content {
  1685. border: none !important;
  1686. }
  1687. .layui-laydate-header {
  1688. background-color: #fff !important;
  1689. }
  1690. .layui-laydate-header span {
  1691. color: rgba(0, 0, 0, 0.85) !important;
  1692. font-size: 14px !important;
  1693. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  1694. font-weight: 600;
  1695. }
  1696. .layui-laydate-header i {
  1697. color: #969799 !important;
  1698. font-size: 12px !important;
  1699. }
  1700. .laydate-set-ym span {
  1701. padding: 0 4px !important;
  1702. }
  1703. #layui-laydate1 .layui-this {
  1704. font-weight: bold;
  1705. }
  1706. .layui-laydate-content td {
  1707. width: 24px !important;
  1708. height: 24px !important;
  1709. padding: 5px !important;
  1710. line-height: 24px !important;
  1711. border-radius: 2px !important;
  1712. }
  1713. .laydate-theme-grid .laydate-month-list > li, .laydate-theme-grid .laydate-year-list > li, .laydate-theme-grid .layui-laydate-content td, .laydate-theme-grid .layui-laydate-content thead, .laydate-theme-molv .layui-laydate-footer {
  1714. border: none !important;
  1715. }
  1716. .layui-laydate-footer .laydate-btns-confirm {
  1717. width: 56px !important;
  1718. height: 26px !important;
  1719. background: @theme-color !important;
  1720. border-radius: 2px !important;
  1721. border: none !important;
  1722. color: #fff !important;
  1723. font-family: PingFangSC-Regular, PingFang SC;
  1724. font-size: 14px !important;
  1725. margin-left: 6px !important;
  1726. text-align: center !important;
  1727. }
  1728. .layui-laydate-footer .laydate-btns-cancle {
  1729. width: 56px !important;
  1730. height: 26px !important;
  1731. background: #FFF !important;
  1732. border-radius: 2px !important;
  1733. border: 1px solid #D9D9D9 !important;
  1734. color: #999 !important;
  1735. text-align: center !important;
  1736. font-size: 14px !important;
  1737. }
  1738. .layui-laydate-footer {
  1739. padding-top: 0 !important;
  1740. margin-top: -9px !important;
  1741. }
  1742. //统计时间选择器样式-end
  1743. .statNumVal {
  1744. font-size: 28px;
  1745. font-weight: 500;
  1746. font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,PingFang SC,Hiragino Sans GB,Helvetica Neue,Helvetica,Arial,sans-serif;
  1747. }
  1748. .statNumUnit {
  1749. vertical-align: 1px;
  1750. font-size: 14px !important;
  1751. color: #333;
  1752. font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,PingFang SC,Hiragino Sans GB,Helvetica Neue,Helvetica,Arial,sans-serif;
  1753. }
  1754. .rank_sync_icon{
  1755. cursor: pointer;
  1756. &:hover {
  1757. :global{
  1758. .anticon{
  1759. color: @theme-color !important;
  1760. }
  1761. }
  1762. }
  1763. }
  1764. .web_tpl_list_item {
  1765. flex-wrap: wrap;
  1766. overflow: hidden;
  1767. border: 1px solid @theme-light2Color;
  1768. box-sizing: border-box;
  1769. margin-top: 10px;
  1770. position: relative;
  1771. border-radius: 13px 13px 13px 13px;
  1772. box-shadow: 2px 3px 9px 0px rgba(33, 17, 14, 0.26);
  1773. &:first-child{
  1774. margin-top: 0;
  1775. }
  1776. .operation {
  1777. background-color: rgba(@theme-light-rgba-Color, 0.05);
  1778. height: 38px;
  1779. border-radius: 13px 13px 0 0;
  1780. padding: 0 20px;
  1781. .tpl_name {
  1782. font-size: 14px;
  1783. color: #252525;
  1784. }
  1785. .opt_icon {
  1786. width: 16px;
  1787. height: 16px;
  1788. margin-left: 15px;
  1789. cursor: pointer;
  1790. }
  1791. }
  1792. }
  1793. .add_goods_top_nav {
  1794. width: 100%;
  1795. height: 70px;
  1796. line-height: 70px;
  1797. overflow: hidden;
  1798. margin-bottom: 10px;
  1799. margin-top: 10px;
  1800. flex-shrink: 0;
  1801. .step2 {
  1802. .step {
  1803. border-radius: 0 !important;
  1804. }
  1805. }
  1806. .top_nav_item {
  1807. width: 30%;
  1808. padding: 0 11px;
  1809. box-sizing: border-box;
  1810. position: relative;
  1811. display: inline-block;
  1812. vertical-align: top;
  1813. overflow: visible;
  1814. -ms-flex: 1;
  1815. flex: 1;
  1816. cursor: pointer;
  1817. .step {
  1818. color: #323233;
  1819. background-color: #eee;
  1820. height: 70px;
  1821. line-height: 70px;
  1822. font-size: 14px;
  1823. text-align: center;
  1824. padding: 0 10px;
  1825. position: relative;
  1826. font-weight: 600;
  1827. .left {
  1828. margin-left: 3px;
  1829. width: 50px;
  1830. height: 50px;
  1831. border: 2px solid #666;
  1832. border-radius: 50%;
  1833. color: #333;
  1834. margin-right: 10px;
  1835. font-size: 34px;
  1836. flex-shrink: 0;
  1837. }
  1838. .right {
  1839. height: 70px;
  1840. .title {
  1841. font-size: 18px;
  1842. color: #333;
  1843. line-height: 30px;
  1844. font-weight: 500;
  1845. }
  1846. .sub_title {
  1847. font-size: 13px;
  1848. color: #999;
  1849. line-height: 20px;
  1850. white-space: nowrap;
  1851. overflow: hidden;
  1852. text-overflow: ellipsis;
  1853. width: 100%;
  1854. display: inline-block;
  1855. font-weight: 500;
  1856. }
  1857. }
  1858. }
  1859. }
  1860. .top_nav_item.right_row .step:after {
  1861. content: " ";
  1862. display: block;
  1863. width: 0;
  1864. height: 0;
  1865. border-top: 35px solid transparent;
  1866. border-bottom: 35px solid transparent;
  1867. border-left: 14px solid #eee;
  1868. position: absolute;
  1869. top: 50%;
  1870. margin-top: -35px;
  1871. right: -14px;
  1872. }
  1873. .top_nav_item.left_row .step:before {
  1874. content: " ";
  1875. display: block;
  1876. width: 0;
  1877. height: 0;
  1878. border-top: 35px solid #eee;
  1879. border-bottom: 35px solid #eee;
  1880. border-left: 14px solid transparent;
  1881. position: absolute;
  1882. top: 50%;
  1883. margin-top: -35px;
  1884. left: -14px;
  1885. }
  1886. .top_nav_item.finished .step {
  1887. background: @theme-color;
  1888. border-radius: 3px 0 0 3px;
  1889. color: #fff;
  1890. .left {
  1891. color: #fff;
  1892. border-color: #fff;
  1893. }
  1894. .right {
  1895. .title {
  1896. color: #fff;
  1897. }
  1898. .sub_title {
  1899. color: #fff;
  1900. }
  1901. }
  1902. }
  1903. .top_nav_item.finished .step:after {
  1904. border-left-color: @theme-color;
  1905. }
  1906. .top_nav_item.finished .step:before {
  1907. border-top-color: @theme-color;
  1908. border-bottom-color: @theme-color;
  1909. }
  1910. .top_nav_item:first-child {
  1911. padding-left: 0;
  1912. }
  1913. .top_nav_item:last-child {
  1914. padding-right: 0;
  1915. }
  1916. }
  1917. @media screen and (max-width:1400px) {
  1918. .self_enquiry_list_wrap{
  1919. .ant-pagination.ant-table-pagination{
  1920. position: fixed;
  1921. right: 0;
  1922. bottom: 0;
  1923. background: #fff;
  1924. display: block;
  1925. width: 100%;
  1926. text-align: right;
  1927. padding-right: 20px;
  1928. }
  1929. }
  1930. }
  1931. .site_list {
  1932. display: flex;
  1933. align-items: center;
  1934. width: 100%;
  1935. height: 50px;
  1936. margin-top: 10px;
  1937. // overflow-x: auto;
  1938. .site_item {
  1939. width: 120px;
  1940. height: 35px;
  1941. text-align: center;
  1942. line-height: 35px;
  1943. border: 1px solid #d9d9d9;
  1944. border-radius: 5px;
  1945. margin-right: 10px;
  1946. color: #AAAAAA;
  1947. font-weight: bold;
  1948. cursor: pointer;
  1949. }
  1950. .site_active {
  1951. border-color: @theme-color;
  1952. background-color: @theme-color;
  1953. color: #fff;
  1954. }
  1955. }
  1956. .site_info_list {
  1957. .site_info_item {
  1958. display: none;
  1959. }
  1960. .site_info_active {
  1961. display: block;
  1962. }
  1963. }