123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355 |
- @import "~antd/lib/style/themes/default.less";
- @import '../src/themeColor.less';
- html,
- body,
- #root {
- height: 100%;
- overflow-x: hidden;
- }
- .ant-layout {
- min-height: 100vh;
- }
- canvas {
- display: block;
- }
- body {
- text-rendering: optimizeLegibility;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- .globalSpin {
- width: 100%;
- margin: 40px 0 !important;
- }
- ul,
- ol {
- list-style: none;
- }
- .common_page {
- padding: 10px;
- background-color: #fff;
- width: 100%;
- }
- .about_wrap .display-none{
- display: none;
- }
- .common_page_20 {
- padding: 20px;
- background: #fff;
- width: 100%;
- }
- .operate_bg {
- height: 40px;
- width: 100%;
- background: #F5F5F5;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- margin-bottom: 10px;
- :global {
- .ant-input-search > .ant-input-suffix > .ant-input-search-button {
- height: 29px !important;
- }
- .ant-input-search.ant-input-search-enter-button > .ant-input {
- height: 29px !important;
- }
- }
- }
- .tableListForm {
- margin-top: 10px;
- margin-bottom: 5px;
- position: relative;
- :global {
- .ant-form {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- padding-right: 180px;
- }
- }
- }
- :global {
- .ant-modal-header {
- color: #fff !important;
- padding: 12px 24px !important;
- border-radius: 4px 4px 0 0 !important;
- background: @theme-linear !important;
- }
- .ant-modal-title {
- color: #fff !important;
- font-size: 14px !important;
- line-height: 18px !important;
- }
- .ant-modal-close-x {
- height: 46px !important;
- line-height: 46px !important;
- color: #fff !important;
- }
- .ant-modal-content {
- border-radius: 5px !important;
- box-shadow: none;
- }
- textarea.ant-input{
- resize: none;
- }
- .ant-upload{
- font-size: 13px !important;
- }
- .ant-modal-content{
- box-shadow:none !important;
- }
- .ant-tabs{
- overflow: inherit !important;
- }
- .antd-pro-layouts-basic-layout-content {
- width: calc(100% - 20px) !important;
- }
- .slick-dots li button:before {
- font-size: 0 !important;
- }
- .ant-radio-button-wrapper:not(:first-child)::before {
- background-color: #f2f2f2 !important;
- }
- .ant-radio-button-wrapper, .ant-select-selection {
- border-color: #f2f2f2 !important;
- }
- .ant-radio-button-wrapper-checked {
- border-color: @theme-color !important;
- }
- .ant-upload-list-picture-card .ant-upload-list-item-info::before {
- left: 0;
- }
- .ant-spin-nested-loading {
- width: 100%;
- }
- .ant-layout-sider {
- background: #333 !important;
- }
- .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-nav-container {
- height: 34px !important;
- }
- .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab {
- line-height: 32px !important;
- }
- .ant-tabs-bar {
- margin: 0 !important;
- }
- .ant-table-body {
- width: 100%;
- overflow: hidden;
- }
- .ant-table {
- font-size: 12px !important;
- color: #000 !important;
- }
- }
- div[class$=basic-trade_stat], div[class$=basic-saling_stat], div[class$=basic-real_stat] {
- .ant-table {
- border-color: @theme-lightColor !important;
- border-top: none !important;
- }
- div {
- .ant-table-bordered .ant-table-content {
- border-right: 1px solid @theme-lightColor !important;
- border-color: @theme-lightColor !important;
- }
- }
- }
- body {
- /* 售后单标记-start */
- .color_wrap {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- span {
- width: 20px;
- height: 20px;
- display: inline-block;
- margin-right: 10px;
- }
- }
- .tableListForm {
- margin-bottom: 5px;
- :global {
- .common_bottom_wrap {
- .ant-btn {
- line-height: 45px !important;
- height: 45px !important;
- }
- }
- .ant-select-selection--single {
- height: 28px !important;
- }
- .ant-select-selection__rendered {
- line-height: 27px !important;
- }
- .ant-btn {
- line-height: 29px !important;
- height: 29px !important;
- }
- .ant-form-item {
- margin-bottom: 5px !important;
- margin-right: 0;
- display: flex !important;
- > .ant-form-item-label {
- width: auto;
- line-height: 28px;
- padding-right: 8px;
- flex: 1;
- }
- .ant-form-item-control {
- line-height: 27px;
- }
- }
- .ant-form-item-control-wrapper {
- flex: 1;
- }
- .ant-form-item-label {
- padding-right: 0 !important;
- }
- .ant-form-item-label > label {
- font-size: 13px !important;
- color: #555;
- }
- .ant-form-item-label > label:after {
- content: '' !important;
- }
- .ant-form input, .ant-input-number {
- height: 28px !important;
- }
- .ant-form input.ant-input-number-input {
- line-height: 28px !important;
- }
- .ant-btn span {
- font-size: 13px;
- }
- form textarea.ant-input {
- height: 28px !important;
- min-height: 28px !important;
- }
- .ant-calendar-picker span.ant-calendar-picker-input {
- padding-top: 0 !important;
- }
- .ant-calendar-picker .ant-calendar-range-picker-separator {
- padding-top: 4px;
- }
- }
- }
- :global {
- .ant-form-explain {
- margin-top: 0;
- min-height: 12px !important;
- }
- .ant-form-explain, .ant-form-extra {
- font-size: 12px;
- line-height: 14px;
- }
- .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
- padding: 10px 8px !important;
- }
- .ant-calendar-picker-input.ant-input {
- height: 28px !important;
- }
- .ant-menu-dark .ant-menu-submenu-title:hover {
- // background-color: @theme-color;
- }
- :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 {
- font-size: 15px !important;
- }
- .ant-table-body {
- width: 100%;
- overflow: hidden;
- }
- .ant-radio-group {
- font-size: 13px !important;
- display: flex;
- }
- .ant-radio-group-small .ant-radio-button-wrapper {
- padding: 0 10px !important;
- height: 27px !important;
- line-height: 26px !important;
- @media screen and (max-width: 1380px) {
- padding: 0 3px !important;
- }
- @media screen and (max-width: 1236px) {
- padding: 0 1px !important;
- }
- }
- .ant-pagination.mini .ant-pagination-item {
- margin: 0;
- min-width: 22px !important;
- height: 22px !important;
- line-height: 20px !important;
- }
- .ant-select {
- font-size: 12px !important;
- }
- .ant-table-thead .react-resizable {
- position: relative;
- }
- .ant-table-thead .react-resizable-handle {
- position: absolute;
- width: 10px;
- height: 100%;
- bottom: 0;
- right: -5px;
- cursor: col-resize;
- background-color: @theme-light4Color;
- }
- .ant-layout {
- height: 100% !important;
- overflow: hidden;
- }
- .screen-xl {
- height: 100%;
- }
- .screen-xxl {
- height: 100%;
- }
- .screen-lg {
- height: 100%;
- }
- .ant-timeline-item-head-custom {
- padding: 0 !important;
- }
- .ant-table {
- font-size: 12px !important;
- color: #000 !important;
- }
- .ant-table-tbody > tr > td {
- padding: 8px 8px !important;
- }
- .ant-table-pagination.ant-pagination {
- margin: 10px 0 !important;
- }
- .ant-pagination {
- font-size: 12px !important;
- }
- }
- .disableOperate {
- color: #999 !important;
- }
- .editable {
- td {
- padding-top: 13px !important;
- padding-bottom: 12.5px !important;
- }
- }
- .table_row_title {
- background: #E8F2FF !important;
- color: #101010;
- font-size: 13px;
- font-weight: bold
- }
- .weight_w_left_span {
- width: 130px;
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- }
- .weight_w_right_span {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- flex: 1
- }
- .weight_r_span_wrap {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- width: 100%;
- height: 45px;
- line-height: 45px;
- color: #999999
- }
- .weight_r_span_wrap_betweent {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- width: 100%;
- height: 45px;
- line-height: 45px;
- color: #555555
- }
- .title {
- flex-direction: row;
- color: #555;
- font-size: 18px;
- justify-content: flex-end;
- .left_border {
- display: inline-block;
- width: 5px;
- height: 15px;
- margin-right: 10px;
- vertical-align: text-top;
- }
- }
- .title_add_goods {
- display: flex;
- color: #101010;
- font-size: 14px;
- font-weight: 700;
- justify-content: flex-start;
- align-items: center;
- height: 20px;
- span {
- display: inline-block;
- vertical-align: middle;
- line-height: 0;
- }
- .left_border {
- display: inline-block;
- width: 4px;
- height: 16px;
- margin-right: 7px;
- }
- .title {
- color: #333;
- font-size: 14px;
- font-weight: 700;
- }
- .sub_title{
- color: @theme-color;
- font-size: 12px;
- font-weight: 400;
- margin-left: 9px;
- }
- }
- .icon_text_width {
- width: 120px;
- display: flex;
- flex-direction: row;
- justify-content: center;
- .icon_text {
- flex-direction: column;
- align-items: center;
- display: flex;
- min-height: 120px;
- span {
- display: block;
- margin-top: 20px;
- color: #555;
- font-size: 14px;
- }
- }
- }
- .sld_common_btn {
- height: 28px;
- background: #fff;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- padding-left: 7px;
- padding-right: 7px;
- border-radius: 3px;
- cursor: pointer;
- span {
- display: inline-block;
- }
- }
- .sld_common_btn_not_allowed {
- cursor: not-allowed;
- svg {
- opacity: .3;
- }
- }
- :global {
- .ant-modal-content {
- .ant-form-item-children {
- font-size: 14px !important;
- color: #333;
- }
- .ant-form-item-label label {
- color: #666;
- }
- }
- .ant-table-fixed-left, .ant-table-fixed-right {
- z-index: 2 !important;
- }
- .ant-form label {
- font-size: 13px !important;
- }
- .ant-input-disabled {
- color: #666;
- }
- body {
- color: #555;
- }
- .ant-table-bordered .ant-table-thead > tr > th, .ant-table-bordered .ant-table-tbody > tr > td {
- border-right: 1px solid #f2f2f2 !important;
- }
- .ant-tabs-bar {
- border-bottom: 1px solid #f2f2f2;
- }
- .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 {
- border-right: 1px solid #f2f2f2;
- }
- .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
- border: 1px solid #f2f2f2;
- }
- .ant-input-affix-wrapper {
- width: 300px;
- }
- .ant-input {
- font-size: 13px;
- }
- .ant-btn {
- font-size: 13px;
- }
- .ant-form-inline .ant-form-item-with-help {
- margin-bottom: 10px !important;
- }
- .ant-form-item {
- font-size: 12px !important;
- color: #999 !important;
- }
- .ant-row .ant-form-item {
- height: 28px !important;
- }
- .has-error .ant-form-explain, .has-error .ant-form-split {
- position: absolute;
- right: 8px;
- top: -6px;
- background: #fff;
- }
- .ant-table-thead > tr > th.ant-table-selection-column, .ant-table-tbody > tr > td.ant-table-selection-column {
- width: 35px !important;
- min-width: 35px !important;
- }
- .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th {
- background-color: @theme-light4Color !important;
- padding: 10px 8px !important;
- }
- .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
- background-color: @theme-light4Color !important;
- }
- .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
- background-color: @theme-light4Color !important;
- }
- .ant-table-scroll > .ant-table-body {
- overflow: scroll;
- }
- }
- .common_bottom_wrap {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- height: 73px;
- border: 0;
- border-top: 1px;
- border-color: #D8E6F4;
- border-style: solid;
- background-color: #D8E6F4;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- z-index: 2
- }
- .goods_sku_tab {
- :global {
- .ant-tabs {
- flex: 1;
- }
- .ant-tabs-bar {
- margin-bottom: 10px !important;
- }
- .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-nav-container {
- height: 35px !important;
- }
- .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
- line-height: 35px !important;
- padding: 0 15px !important;
- }
- .ant-form-item, .ant-form-inline .ant-form-item-with-help {
- margin-bottom: 0 !important;
- }
- }
- }
- color: #555;
- }
- :global {
- .ant-radio-wrapper {
- display: flex !important;
- align-items: center;
- }
- form .ant-input-number-handler-wrap {
- z-index: 0 !important;
- }
- .ant-form {
- color: #333 !important;
- }
- .ant-upload-list-picture .ant-upload-list-item, .ant-upload-list-picture-card .ant-upload-list-item {
- border-color: #f2f2f2 !important;
- }
- .ant-layout-content {
- display: flex;
- }
- .ant-table-fixed-left, .ant-table-fixed-right {
- z-index: 2 !important;
- }
- .ant-form label {
- font-size: 13px !important;
- }
- .ant-input-disabled {
- color: #666;
- }
- .ant-checkbox-inner {
- border: 1px solid #f2f2f2;
- }
- .ant-input-group-addon {
- border: 1px solid #f2f2f2;
- }
- .ant-table-bordered .ant-table-thead > tr > th, .ant-table-bordered .ant-table-tbody > tr > td {
- border-right: 1px solid #f2f2f2 !important;
- }
- .ant-tabs-bar {
- border-bottom: 1px solid #f2f2f2;
- }
- .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 {
- border-right: 1px solid #f2f2f2;
- }
- .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
- border: 1px solid #f2f2f2;
- }
- .ant-input-affix-wrapper {
- width: 300px;
- }
- .ant-input {
- font-size: 13px;
- border-color: #f2f2f2 !important;
- }
- .ant-btn {
- font-size: 13px;
- }
- .ant-form-inline .ant-form-item-with-help {
- margin-bottom: 10px !important;
- }
- .ant-form-item {
- font-size: 12px !important;
- color: #999 !important;
- }
- .ant-row .ant-form-item {
- height: 28px !important;
- }
- .has-error .ant-form-explain, .has-error .ant-form-split {
- position: absolute;
- right: 8px;
- top: -6px;
- background: #fff;
- }
- .ant-table-thead > tr > th.ant-table-selection-column, .ant-table-tbody > tr > td.ant-table-selection-column {
- width: 35px !important;
- min-width: 35px !important;
- }
- .ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th {
- background-color: #f2f2f2 !important;
- padding: 10px 8px !important;
- }
- .ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
- background-color: #f2f2f2 !important;
- }
- .ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
- background-color: #f2f2f2 !important;
- }
- .ant-table-scroll > .ant-table-body {
- overflow: scroll;
- }
- }
- .common_bottom_wrap {
- position: absolute;
- bottom: 0;
- left: 10px;
- right: 10px;
- height: 73px;
- border: 0;
- border-top: 1px;
- border-color: #F0F2F5;
- border-style: solid;
- background-color: #eee;
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- align-items: center;
- z-index: 2
- }
- .goods_sku_tab {
- :global {
- .ant-tabs {
- flex: 1;
- }
- .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-nav-container {
- height: 35px !important;
- }
- .ant-tabs.ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
- line-height: 35px !important;
- padding: 0 15px !important;
- }
- .ant-form-item, .ant-form-inline .ant-form-item-with-help {
- margin-bottom: 0 !important;
- }
- }
- }
- .sld_com_bottom {
- position: fixed;
- bottom: 0;
- }
- .operate_bg {
- :global {
- .ant-input {
- height: 28px !important;
- }
- .ant-btn {
- height: 28px !important;
- }
- }
- }
- .show_editor_con {
- padding: 20px;
- width: 100%;
- display: flex;
- justify-content: center
- }
- .tableListFormEdit {
- margin-top: 25px;
- width: 600px;
- }
- .show_img {
- max-width: 100%;
- max-height: 100%;
- }
- .flex_row_common {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- }
- .diy_tip_div {
- background: @theme-light4Color;
- border-radius: 4px;
- padding: 10px 15px;
- width: 100%;
- span {
- color: @theme-color;
- font-size: 16px;
- }
- ul {
- margin-bottom: 0 !important;
- li {
- color: @theme-color;
- font-size: 12px;
- padding: 2px 0;
- }
- }
- }
- .diy_modal_tip_div {
- padding: 10px 15px;
- ul {
- padding-left: 0 !important;
- margin-bottom: 0 !important;
- li {
- color: @theme-color;
- font-size: 12px;
- padding: 2px 0;
- }
- }
- }
- .sele_tpl_type {
- height: 300px;
- margin-top: 20px;
- :global {
- .ant-tabs-vertical {
- height: auto !important;
- }
- }
- .right {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: flex-start;
- flex-wrap: wrap;
- .item:nth-child(2n) {
- margin-left: 25px;
- }
- .item {
- position: relative;
- width: 340px;
- height: 260px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- background: #fff;
- border: 1px solid #fff;
- .img_wrap {
- width: 288px;
- height: 134px;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- img {
- max-width: 100%;
- max-height: 100%;
- }
- }
- .title {
- color: #333;
- line-height: 20px;
- font-size: 14px;
- }
- .desc {
- padding: 0 10px;
- color: #666;
- font-size: 12px;
- margin-top: 5px;
- line-height: 14px;
- height: 28px;
- overflow: hidden;
- }
- .sele_flag {
- display: none;
- position: absolute;
- top: 10px;
- right: 10px;
- z-index: 2;
- }
- }
- .item_select {
- background: #FBFAFA;
- border-color: #E6E6E6;
- .sele_flag {
- display: inline-block;
- }
- }
- }
- .right_instance {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- .item {
- position: relative;
- width: 850px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- background: #fff;
- border: 1px solid #fff;
- .sele_flag {
- display: none;
- position: absolute;
- top: 10px;
- right: 10px;
- z-index: 2;
- }
- }
- .item_select {
- background: #FBFAFA;
- border-color: #E6E6E6;
- .sele_flag {
- display: inline-block;
- }
- }
- }
- }
- .flex_com_row {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: flex-start;
- }
- .flex_com_row_start_start {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .flex_com_row_start_center {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- }
- .flex_com_row_center {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- .flex_com_column {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- }
- .flex_com_column_center_flex_start {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-start;
- }
- .flex_com_column_space_betweent_center {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- }
- .flex_com_column_flex_end {
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: flex-end;
- }
- .flex_com_column_center_center {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .flex_com_column_start_start {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .flex_com_space_between {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- }
- .flex_com_row_space_around_center {
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- align-items: center;
- }
- .comm_line_sperator {
- margin-top: 15px;
- margin-bottom: 15px;
- border-top: 1px solid #eee;
- }
- .full_width {
- width: 100%;
- }
- .tableListFormAdd {
- :global {
- .ant-form {
- margin-top: 20px;
- }
- .ant-form-inline .ant-form-item > .ant-form-item-label {
- width: 90px !important;
- }
- }
- }
- .right_instance {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- }
- .com_zoom {
- zoom: 0.8;
- }
- .instance_pre_a {
- display: inline-block;
- height: 36px;
- }
- .com_zoom_2 {
- zoom: 0.1;
- }
- .flex_com_row_wrap {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: flex-start;
- flex-wrap: wrap;
- }
- .seller_logo {
- width: 130px;
- height: 40px;
- margin: 0 auto;
- img {
- max-width: 100%;
- max-height: 100%;
- }
- }
- .goods_modal_img {
- width: 30px;
- height: 30px;
- margin: 0 auto;
- img {
- max-height: 100%;
- max-width: 100%;
- }
- }
- .sld_top_tab_wrap {
- .title_add_goods {
- position: absolute;
- z-index: 2;
- }
- }
- .sld_tab_pl_150 {
- :global {
- .ant-tabs-nav-container {
- padding-left: 150px;
- }
- }
- }
- .sld_tab_pl_0 {
- :global {
- .ant-tabs-nav-container {
- padding-left: 0;
- }
- }
- }
- .goods_img_wrap_30 {
- width: 30px;
- height: 30px;
- }
- .goods_img_wrap_160 {
- width: 160px;
- height: 160px;
- }
- .goods_img_wrap_30 img, .goods_img_wrap_160 img {
- max-width: 100%;
- max-height: 100%;
- }
- .input_after_wrap {
- cursor: pointer;
- }
- .goods_img_wrap_80 {
- width: 80px;
- height: 80px;
- border-radius: 3px;
- overflow: hidden;
- }
- .goods_img_wrap_200 {
- width: 200px;
- height: 200px;
- }
- .goods_img_wrap_200 img, .goods_img_wrap_80 img {
- max-width: 100%;
- max-height: 100%;
- }
- .com_img_wrap img {
- max-width: 100%;
- max-height: 100%;
- }
- .btn_fixed_bottom {
- width: 135px;
- height: 44px;
- font-size: 13px !important;
- margin-left: 50px;
- }
- .com_line {
- width: 100%;
- background: #f2f2f2;
- }
- .clearfix {
- clear: both;
- overflow: hidden;
- }
- .com_flex_row_flex_start {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- }
- .com_flex_column {
- display: flex;
- flex-direction: column;
- justify-content: flex-start
- }
- .com_flex_column_space_between {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: flex-start;
- }
- .com_flex_column_center {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- /*发布商品样式-start*/
- .sele_goods_cat {
- width: 100%;
- .sele_cat_info {
- background: rgba(@theme-light-rgba-Color, .1);
- width: 100%;
- height: 40px;
- line-height: 40px;
- border: 1px dotted @theme-color;
- padding-left: 20px;
- margin-bottom: 15px;
- span {
- color: @theme-color;
- font-size: 12px;
- display: inline-block;
- }
- .tip {
- color: #FF3710;
- }
- }
- .sele_cat_info.tip_bg {
- background: #FFFADF;
- border-color: @theme-color;
- }
- }
- .catOwnShopTip {
- width: 100%;
- height: 300px;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- .add_goods_step1 {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .add_goods_step1_btn {
- background: @theme-color;
- border-radius: 2px;
- cursor: pointer;
- .text {
- display: inline-block;
- padding: 12px 40px;
- color: #fff;
- font-size: 14px;
- font-weight: 600;
- }
- }
- .goods_cat_wrap {
- width: 100%;
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- align-items: center;
- padding-top: 8px;
- padding-bottom: 8px;
- .wrap {
- flex: 1;
- height: 100%;
- background: #fff;
- border: 1px dotted #E6E9EE;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- // padding: 10px 0;
- .goods_cat_item {
- display: flex;
- font-size: 13px;
- line-height: 35px;
- color: #666;
- height: 35px;
- margin: 0 20px;
- overflow: hidden;
- border: 1px solid #fff;
- padding: 0 20px;
- cursor: pointer;
- }
- .select {
- background: rgba(@theme-light-rgba-Color, .1);
- color: @theme-light2Color;
- }
- }
- }
- .disableUploadBtn {
- display: flex;
- width: 104px;
- height: 104px;
- padding: 10px;
- margin-right: 8px;
- margin-bottom: 8px;
- background-color: #fafafa;
- border: 1px dashed #d9d9d9;
- border-radius: 4px;
- cursor: not-allowed;
- transition: border-color .3s ease;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- .text {
- color: #666;
- font-size: 12px;
- }
- }
- /*发布商品样式-end*/
- .splitLine {
- background: #ddd;
- display: inline-block;
- margin: -3px 4px -2px 1px;
- width: 1px;
- height: 12px;
- }
- //flex 常用布局
- .flex_row_center_center {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .flex_row_center_between {
- display: flex;
- justify-content: center;
- align-items: space-between;
- }
- .flex_row_center_around {
- display: flex;
- justify-content: center;
- align-items: space-around;
- }
- .flex_row_center_start {
- display: flex;
- justify-content: center;
- align-items: flex-start;
- }
- .flex_row_center_end {
- display: flex;
- justify-content: center;
- align-items: flex-end;
- }
- .flex_row_between_center {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .flex_row_between_between {
- display: flex;
- justify-content: space-between;
- align-items: space-between;
- }
- .flex_row_between_around {
- display: flex;
- justify-content: space-between;
- align-items: space-around;
- }
- .flex_row_between_start {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- }
- .flex_row_between_end {
- display: flex;
- justify-content: space-between;
- align-items: flex-end;
- }
- .flex_row_around_center {
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
- .flex_row_around_between {
- display: flex;
- justify-content: space-around;
- align-items: space-between;
- }
- .flex_row_around_around {
- display: flex;
- justify-content: space-around;
- align-items: space-around;
- }
- .flex_row_around_start {
- display: flex;
- justify-content: space-around;
- align-items: flex-start;
- }
- .flex_row_around_end {
- display: flex;
- justify-content: space-around;
- align-items: flex-end;
- }
- .flex_row_start_center {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- .flex_row_start_between {
- display: flex;
- justify-content: flex-start;
- align-items: space-between;
- }
- .flex_row_start_around {
- display: flex;
- justify-content: flex-start;
- align-items: space-around;
- }
- .flex_row_start_start {
- display: flex;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .flex_row_start_end {
- display: flex;
- justify-content: flex-start;
- align-items: flex-end;
- }
- .flex_row_end_center {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- .flex_row_end_between {
- display: flex;
- justify-content: flex-end;
- align-items: space-between;
- }
- .flex_row_end_around {
- display: flex;
- justify-content: flex-end;
- align-items: space-around;
- }
- .flex_row_end_start {
- display: flex;
- justify-content: flex-end;
- align-items: flex-start;
- }
- .flex_row_end_end {
- display: flex;
- justify-content: flex-end;
- align-items: flex-end;
- }
- .flex_column_center_center {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .flex_column_center_between {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: space-between;
- }
- .flex_column_center_around {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: space-around;
- }
- .flex_column_center_start {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-start;
- }
- .flex_column_center_end {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-end;
- }
- .flex_column_between_center {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- }
- .flex_column_between_between {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: space-between;
- }
- .flex_column_between_around {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: space-around;
- }
- .flex_column_between_start {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: flex-start;
- }
- .flex_column_between_end {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: flex-end;
- }
- .flex_column_around_center {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: center;
- }
- .flex_column_around_between {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: space-between;
- }
- .flex_column_around_around {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: space-around;
- }
- .flex_column_around_start {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: flex-start;
- }
- .flex_column_around_end {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: flex-end;
- }
- .flex_column_start_center {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- }
- .flex_column_start_between {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: space-between;
- }
- .flex_column_start_around {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: space-around;
- }
- .flex_column_start_start {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .flex_column_start_end {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-end;
- }
- .flex_column_end_center {
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: center;
- }
- .flex_column_end_between {
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: space-between;
- }
- .flex_column_end_around {
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: space-around;
- }
- .flex_column_end_start {
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: flex-start;
- }
- .flex_column_end_end {
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: flex-end;
- }
- .add_goods_title {
- border-bottom: 1px solid #E1E5F5;
- padding-bottom: 7px;
- }
- .add_goods_top_nav {
- width: 100%;
- height: 48px;
- line-height: 48px;
- overflow: hidden;
- margin-bottom: 10px;
- margin-top: 10px;
- flex-shrink: 0;
- .top_nav_item {
- width: 50%;
- padding: 0 8px;
- box-sizing: border-box;
- position: relative;
- display: inline-block;
- vertical-align: top;
- overflow: visible;
- -ms-flex: 1;
- flex: 1;
- cursor: pointer;
- .step {
- color: #323233;
- background-color: #f7f8fa;
- height: 48px;
- line-height: 48px;
- font-size: 14px;
- text-align: center;
- padding: 0 10px;
- position: relative;
- font-weight: 600;
- }
- }
- .top_nav_item:first-child .step:after {
- content: " ";
- display: block;
- width: 0;
- height: 0;
- border-top: 24px solid transparent;
- border-bottom: 24px solid transparent;
- border-left: 12px solid #f7f8fa;
- position: absolute;
- top: 50%;
- margin-top: -24px;
- right: -12px;
- }
- .top_nav_item:last-child .step:before {
- content: " ";
- display: block;
- width: 0;
- height: 0;
- border-top: 24px solid #f7f8fa;
- border-bottom: 24px solid #f7f8fa;
- border-left: 12px solid transparent;
- position: absolute;
- top: 50%;
- margin-top: -24px;
- left: -12px;
- }
- .top_nav_item.finished .step {
- background: #5382F5;
- border-radius: 3px 0 0 3px;
- color: #fff;
- border-bottom-left-radius: ;
- border-bottom-right-radius: ;
- border-top-left-radius: ;
- }
- .top_nav_item.finished .step:after {
- border-left-color: #5382F5;
- }
- .top_nav_item.finished .step:before {
- border-top-color: #5382F5;
- border-bottom-color: #5382F5;
- }
- .top_nav_item:first-child {
- padding-left: 0;
- }
- .top_nav_item:last-child {
- padding-right: 0;
- }
- }
- .m_diy_bottom_wrap {
- position: absolute;
- bottom: 0;
- left: 0;
- right: 10px;
- height: 60px;
- background: rgba(255, 255, 255, 1);
- box-shadow: 0 0 20px 0 rgba(187, 187, 187, 0.15);
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- z-index: 999
- }
- .modalsty {
- :global {
- .ant-modal {
- top: 200px !important;
- }
- }
- }
- .add_goods_bottom_btn {
- font-size: 13px;
- color: @theme-color;
- line-height: 30px;
- width: 80px;
- text-align: center;
- border: 1px solid @theme-color;
- border-radius: 2px;
- margin-right: 20px;
- box-sizing: border-box;
- cursor: pointer;
- }
- .add_goods_bottom_btn_sel {
- background: @theme-color;
- color: #fff;
- margin-right: 0;
- }
- .add_goods_bottom_btn_forbidden {
- background: #ddd;
- color: #fff;
- margin-right: 0;
- border-color: #ddd;
- }
- .add_goods_sku_list {
- :global {
- .ant-table-body, .ant-table-empty .ant-table-body {
- overflow: auto !important;
- }
- }
- }
- .tableOperateText {
- white-space: nowrap;
- color: #333;
- }
- .tableOperateText:hover {
- color: @theme-color;
- }
- .common_title_bg {
- height: 36px;
- line-height: 36px;
- background: @theme-light4Color;
- border-radius: 2px;
- width: 100%;
- .title {
- color: #333;
- font-size: 13px;
- padding-left: 10px;
- }
- }
- .goods_info {
- position: relative;
- .virtual_goods_flag{
- position: absolute;
- left: 1px;
- top: 1px;
- font-size: 12px;
- color: #fff;
- background: linear-gradient(90deg, @theme-light2Color 0%, @theme-light2Color 100%);
- border-radius: 3px 0 3px 0;
- padding: 0 3px;
- }
- .goods_detail {
- height: 80px;
- margin-left: 10px;
- flex: 1;
- width: 169px;
- }
- .goods_img {
- width: 80px;
- height: 80px;
- background: rgba(248, 248, 248, 1);
- border: 1px solid rgba(226, 229, 246, 1);
- border-radius: 3px;
- overflow: hidden;
- display: inline-block;
- }
- .goods_name {
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- /*! autoprefixer: off */
- -webkit-box-orient: vertical;
- word-break: break-word;
- color: #333;
- font-size: 13px;
- line-height: 17px;
- text-align: left;
- height: 34px;
- flex-shrink: 0;
- }
- .goods_brief {
- color: #666;
- font-size: 12px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- text-align: left;
- width: 100%;
- display: inline-block;
- }
- }
- //统计时间选择器样式-start
- .layui-laydate {
- border: none !important;
- box-shadow: none !important;
- }
- .layui-laydate-content {
- border: none !important;
- }
- .layui-laydate-header {
- background-color: #fff !important;
- }
- .layui-laydate-header span {
- color: rgba(0, 0, 0, 0.85) !important;
- font-size: 14px !important;
- 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';
- font-weight: 600;
- }
- .layui-laydate-header i {
- color: #969799 !important;
- font-size: 12px !important;
- }
- .laydate-set-ym span {
- padding: 0 4px !important;
- }
- #layui-laydate1 .layui-this {
- font-weight: bold;
- }
- .layui-laydate-content td {
- width: 24px !important;
- height: 24px !important;
- padding: 5px !important;
- line-height: 24px !important;
- border-radius: 2px !important;
- }
- .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 {
- border: none !important;
- }
- .layui-laydate-footer .laydate-btns-confirm {
- width: 56px !important;
- height: 26px !important;
- background: @theme-color !important;
- border-radius: 2px !important;
- border: none !important;
- color: #fff !important;
- font-family: PingFangSC-Regular, PingFang SC;
- font-size: 14px !important;
- margin-left: 6px !important;
- text-align: center !important;
- }
- .layui-laydate-footer .laydate-btns-cancle {
- width: 56px !important;
- height: 26px !important;
- background: #FFF !important;
- border-radius: 2px !important;
- border: 1px solid #D9D9D9 !important;
- color: #999 !important;
- text-align: center !important;
- font-size: 14px !important;
- }
- .layui-laydate-footer {
- padding-top: 0 !important;
- margin-top: -9px !important;
- }
- //统计时间选择器样式-end
- .statNumVal {
- font-size: 28px;
- font-weight: 500;
- font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,PingFang SC,Hiragino Sans GB,Helvetica Neue,Helvetica,Arial,sans-serif;
- }
- .statNumUnit {
- vertical-align: 1px;
- font-size: 14px !important;
- color: #333;
- font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,PingFang SC,Hiragino Sans GB,Helvetica Neue,Helvetica,Arial,sans-serif;
- }
- .rank_sync_icon{
- cursor: pointer;
- &:hover {
- :global{
- .anticon{
- color: @theme-color !important;
- }
- }
- }
- }
- .web_tpl_list_item {
- flex-wrap: wrap;
- overflow: hidden;
- border: 1px solid @theme-light2Color;
- box-sizing: border-box;
- margin-top: 10px;
- position: relative;
- border-radius: 13px 13px 13px 13px;
- box-shadow: 2px 3px 9px 0px rgba(33, 17, 14, 0.26);
- &:first-child{
- margin-top: 0;
- }
- .operation {
- background-color: rgba(@theme-light-rgba-Color, 0.05);
- height: 38px;
- border-radius: 13px 13px 0 0;
- padding: 0 20px;
- .tpl_name {
- font-size: 14px;
- color: #252525;
- }
- .opt_icon {
- width: 16px;
- height: 16px;
- margin-left: 15px;
- cursor: pointer;
- }
- }
- }
- .add_goods_top_nav {
- width: 100%;
- height: 70px;
- line-height: 70px;
- overflow: hidden;
- margin-bottom: 10px;
- margin-top: 10px;
- flex-shrink: 0;
- .step2 {
- .step {
- border-radius: 0 !important;
- }
- }
- .top_nav_item {
- width: 30%;
- padding: 0 11px;
- box-sizing: border-box;
- position: relative;
- display: inline-block;
- vertical-align: top;
- overflow: visible;
- -ms-flex: 1;
- flex: 1;
- cursor: pointer;
- .step {
- color: #323233;
- background-color: #eee;
- height: 70px;
- line-height: 70px;
- font-size: 14px;
- text-align: center;
- padding: 0 10px;
- position: relative;
- font-weight: 600;
- .left {
- margin-left: 3px;
- width: 50px;
- height: 50px;
- border: 2px solid #666;
- border-radius: 50%;
- color: #333;
- margin-right: 10px;
- font-size: 34px;
- flex-shrink: 0;
- }
- .right {
- height: 70px;
- .title {
- font-size: 18px;
- color: #333;
- line-height: 30px;
- font-weight: 500;
- }
- .sub_title {
- font-size: 13px;
- color: #999;
- line-height: 20px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- width: 100%;
- display: inline-block;
- font-weight: 500;
- }
- }
- }
- }
- .top_nav_item.right_row .step:after {
- content: " ";
- display: block;
- width: 0;
- height: 0;
- border-top: 35px solid transparent;
- border-bottom: 35px solid transparent;
- border-left: 14px solid #eee;
- position: absolute;
- top: 50%;
- margin-top: -35px;
- right: -14px;
- }
- .top_nav_item.left_row .step:before {
- content: " ";
- display: block;
- width: 0;
- height: 0;
- border-top: 35px solid #eee;
- border-bottom: 35px solid #eee;
- border-left: 14px solid transparent;
- position: absolute;
- top: 50%;
- margin-top: -35px;
- left: -14px;
- }
- .top_nav_item.finished .step {
- background: @theme-color;
- border-radius: 3px 0 0 3px;
- color: #fff;
- .left {
- color: #fff;
- border-color: #fff;
- }
- .right {
- .title {
- color: #fff;
- }
- .sub_title {
- color: #fff;
- }
- }
- }
- .top_nav_item.finished .step:after {
- border-left-color: @theme-color;
- }
- .top_nav_item.finished .step:before {
- border-top-color: @theme-color;
- border-bottom-color: @theme-color;
- }
- .top_nav_item:first-child {
- padding-left: 0;
- }
- .top_nav_item:last-child {
- padding-right: 0;
- }
- }
- @media screen and (max-width:1400px) {
- .self_enquiry_list_wrap{
- .ant-pagination.ant-table-pagination{
- position: fixed;
- right: 0;
- bottom: 0;
- background: #fff;
- display: block;
- width: 100%;
- text-align: right;
- padding-right: 20px;
- }
- }
- }
- .site_list {
- display: flex;
- align-items: center;
- width: 100%;
- height: 50px;
- margin-top: 10px;
- // overflow-x: auto;
- .site_item {
- width: 120px;
- height: 35px;
- text-align: center;
- line-height: 35px;
- border: 1px solid #d9d9d9;
- border-radius: 5px;
- margin-right: 10px;
- color: #AAAAAA;
- font-weight: bold;
- cursor: pointer;
- }
- .site_active {
- border-color: @theme-color;
- background-color: @theme-color;
- color: #fff;
- }
-
- }
- .site_info_list {
- .site_info_item {
- display: none;
- }
- .site_info_active {
- display: block;
- }
- }
|