html, body {
    font: 14px -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    background-color: #f2f2f2;
    color: #333;
    padding: 0;
    margin: 0;
    --white: #ffffff;
    --black: #1e212a;
    --blue: #1E9FFF;
    --green: #009e3c;
    --red: #FF5722;
    --orange: #ff9900;
    --yellow: #ffb800;
    --gray: #fafafa;
    --grey: #999999;
    --theme: #ff6000;
}
.inline{
    display: inline-block;
}
button:focus, input:focus, select:focus, textarea:focus {
    outline: unset;
}

blockquote, body, button, dd, div, dl, dt, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button, input, optgroup, option, select, textarea {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    outline: 0;
    background-image: none;
    background-color: transparent;
    padding: 0;
    line-height: inherit;
    color: inherit;
    border: 0;
}

input[type=checkbox], input[type=radio], select {
    display: none;
}

input, select, textarea {
    line-height: 1.3;
    border-width: 0;
    border-style: solid;
    background-color: #fff;
    color: rgba(0, 0, 0, .85);
    border-radius: 2px;
    border-color: #e6e6e6;
    box-sizing: border-box;
}

input, textarea {
    display: block;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

textarea {
    padding-top: 10px;
    padding-bottom: 10px;
}

h1, h2, h3 {
    font-weight: 400;
    font-size: inherit;
}

ul, ol, li {
    list-style-type: none;
}

p {
    margin: 0;
    padding: 0;
    line-height: 24px;
}

cite {
    font-style: normal;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}


.form-box .form-label {
    width: 80px;
    line-height: 38px;
}

.form-box .form-item {
    margin-bottom: 20px;
}

.form-box .form-item-block {
    display: block;
    flex: 1;
}

.form-box .form-item-inline {
    display: inline-block;
}

.form-box .form-item .form-input {
    display: inline-block;
    width: 100%;
    padding-left: 10px;
    box-sizing: border-box;
}


.form-input, .form-select {
    height: 38px;
}

.form-input, .form-select, .form-textarea {
    line-height: 1.3;
    background-color: #fff;
    border-radius: 2px;
    border-width: 1px;
    border-style: solid;
    border-color: #e6e6e6;
}

.i-edge {
    width: 0;
    height: 0;
    vertical-align: middle;
    border-style: dashed;
    border-color: transparent;
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -3px;
    cursor: pointer;
    border-width: 6px;
    border-top-color: #c2c2c2;
    border-top-style: solid;
    transition: all .3s;
    -webkit-transition: all .3s;
}

a:hover {
    color: var(--theme);
}

.text-theme {
    color: var(--theme);
}

.bg-theme {
    background-color: var(--theme);
    color: var(--white);
}

.bg-white {
    background-color: var(--white);
}

.bg-gray {
    background-color: var(--gray);
}

.bg-black {
    color: var(--white);
    background-color: var(--black);
}

.re {
    position: relative;
}

.text-break {
    word-break: break-all;
}

.text-white {
    color: var(--white);
}

.text-black {
    color: #333;
}

.text-grey {
    color: var(--grey);
}

.text-blue {
    color: var(--blue);
}

.text-success {
    color: var(--green);
}

.text-warning {
    color: var(--yellow);
}

.text-red, .text-danger {
    color: var(--red);
}

.text-xs {
    font-size: 12px;
}

.text-sm {
    font-size: 14px;
}

.text-df {
    font-size: 16px;
}

.text-lg {
    font-size: 18px;
}

.text-xl {
    font-size: 20px;
}

.text-2xl {
    font-size: 22px;
}

.text-3xl {
    font-size: 26px;
}

.text-sl {
    font-size: 32px;
}

.text-xsl {
    font-size: 48px;
}

.text-Abc {
    text-transform: Capitalize;
}

.text-ABC {
    text-transform: Uppercase;
}

.text-abc {
    text-transform: Lowercase;
}

.text-price::before {
    content: "¥";
    font-size: 80%;
    margin-right: 8px;
}

.text-cut {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.text-bold {
    font-weight: bold;
}

.text-center {
    text-align: center;
}

.text-content {
    line-height: 1.6;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.padding-xs {
    padding: 5px;
}

.padding-sm {
    padding: 10px;
}

.padding {
    padding: 20px;
}

.padding-tb {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding-lr {
    padding-left: 20px;
    padding-right: 20px;
}

.padding-left {
    padding-left: 20px;
}

.padding-left-sm {
    padding-left: 10px;
}

.padding-left-xs {
    padding-left: 5px;
}

.padding-right {
    padding-right: 20px;
}

.padding-top {
    padding-top: 20px;
}

.padding-top-sm {
    padding-top: 10px;
}

.padding-bottom {
    padding-bottom: 20px;
}

.padding-df {
    padding: 30px;
}

.padding-tb-df {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padding-lr-df {
    padding-left: 30px;
    padding-right: 30px;
}

.padding-lg {
    padding: 50px;
}

.padding-tb-lg {
    padding-top: 50px;
    padding-bottom: 50px;
}

.padding-lr-lg {
    padding-left: 50px;
    padding-right: 50px;
}

.margin {
    margin: 20px;
}

.margin-tb {
    margin-top: 20px;
    margin-bottom: 20px;
}

.margin-lr {
    margin-left: 20px;
    margin-right: 20px;
}

.margin-left {
    margin-left: 20px;
}

.margin-right {
    margin-right: 20px;
}

.margin-top {
    margin-top: 20px;
}

.margin-bottom {
    margin-bottom: 20px;
}

.margin-bottom-xl {
    margin-bottom: 22px;
}

.radius-large {
    border-radius: 8px;
    overflow: hidden;
}

.radius {
    border-radius: 4px;
    overflow: hidden;
}

.radius-sm {
    border-radius: 2px;
    overflow: hidden;
}

.solid,
.solid-top,
.solid-right,
.solid-bottom,
.solid-left {
    position: relative;
    border: unset;
}

.solid::after,
.solid-top::after,
.solid-right::after,
.solid-bottom::after,
.solid-left::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: inherit;
    pointer-events: none;
    box-sizing: border-box;
}

.solid::after {
    border: 1px solid #e6e6e6;
}

.solid-top::after {
    border-top: 1px solid #e6e6e6;
}

.solid-right::after {
    border-right: 1px solid #e6e6e6;
}

.solid-bottom::after {
    border-bottom: 1px solid #e6e6e6;
}

.solid-left::after {
    border-left: 1px solid #e6e6e6;
}

.shadow {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.flex {
    display: flex;
    display: -webkit-flex;
}

.basis-5 {
    flex-basis: 20%;
}

.basis-4 {
    flex-basis: 25%;
}

.basis-3 {
    flex-basis: 33.33%;
}

.basis-2 {
    flex-basis: 50%;
}

.basis-1 {
    flex-basis: 100%;
}

.basis-xs {
    flex-basis: 20%;
}

.basis-sm {
    flex-basis: 40%;
}

.basis-df {
    flex-basis: 50%;
}

.basis-lg {
    flex-basis: 60%;
}

.basis-xl {
    flex-basis: 80%;
}

.flex-sub {
    flex: 1;
}

.flex-twice {
    flex: 2;
}

.flex-treble {
    flex: 3;
}

.flex-direction {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.align-center {
    align-items: center;
}

.align-stretch {
    align-items: stretch;
}

.self-start {
    align-self: flex-start;
}

.self-end {
    align-self: flex-end;
}

.self-stretch {
    align-self: stretch;
}

.align-stretch {
    align-items: stretch;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.container-wrap {
    width: 1280px;
    margin: 0 auto;
}

.list-item {
    position: relative;
    display: block;
}

.inline-block {
    display: inline-block;
    vertical-align: middle
}

.group-inline .list-item {
    position: relative;
    display: inline-block;
}

.page-dialog {
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-dialog span {
    padding: 10px 16px;
    border-radius: 2px;
    background-color: #232323;
    color: #ffffff;
    display: inline-block;
    position: relative;
}


.fixed-dialog {
    position: fixed;
    z-index: 9999999;
    top: 0;
    left: 0;
    background-color: #232323;
    color: #ffffff;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
}

.fixed-dialog span {
    padding: 0 16px;
    display: inline-block;
    position: relative;
}

.fixed-dialog:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.fixed-dialog-bottom:before {
    border-left: 10px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 14px solid #232323;
    top: -10px;
    left: 10px;
}

.fixed-dialog-right:before {
    border-right: 16px solid #232323;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    left: -10px;
    top: 50%;
    margin-top: -8px;
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

.iconfont {
    font-size: inherit;
}

.nav-box {
    position: relative;
}

.nav-box .list-item {
    display: inline-block;
    font-size: 16px;
}

.nav-box li {
    float: left;
    font-size: 16px;
}

.nav-box li a {
    padding: 0 16px;
    display: block;
}

.nav-box::after {
    clear: both;
}

.nav-box::after, .nav-box::before {
    display: table;
    content: "";
}

input::-webkit-input-placeholder {
    color: #999999;
}

input::-ms-input-placeholder {
    color: #999999;
}

/*--------------------栅格start--------------------------*/
.row:after, .row:before {
    content: "";
    display: block;
    clear: both
}

.col-lg1, .col-lg2, .col-lg3, .col-lg4, .col-lg5, .col-lg6, .col-lg7, .col-lg8, .col-lg9, .col-lg10, .col-lg11, .col-lg12, .col-md1, .col-md2, .col-md3, .col-md4, .col-md5, .col-md6, .col-md7, .col-md8, .col-md9, .col-md10, .col-md11, .col-md12, .col-sm1, .col-sm2, .col-sm3, .col-sm4, .col-sm5, .col-sm6, .col-sm7, .col-sm8, .col-sm9, .col-sm10, .col-sm11, .col-sm12, .col-xs1, .col-xs2, .col-xs3, .col-xs4, .col-xs5, .col-xs6, .col-xs7, .col-xs8, .col-xs9, .col-xs10, .col-xs11, .col-xs12 {
    position: relative;
    display: block;
    box-sizing: border-box
}

.col-xs1, .col-xs2, .col-xs3, .col-xs4, .col-xs5, .col-xs6, .col-xs7, .col-xs8, .col-xs9, .col-xs10, .col-xs11, .col-xs12 {
    float: left
}

.col-xs1 {
    width: 8.33333333%
}

.col-xs2 {
    width: 16.66666667%
}

.col-xs3 {
    width: 25%
}

.col-xs4 {
    width: 33.33333333%
}

.col-xs5 {
    width: 41.66666667%
}

.col-xs6 {
    width: 50%
}

.col-xs7 {
    width: 58.33333333%
}

.col-xs8 {
    width: 66.66666667%
}

.col-xs9 {
    width: 75%
}

.col-xs10 {
    width: 83.33333333%
}

.col-xs11 {
    width: 91.66666667%
}

.col-xs12 {
    width: 100%
}

.col-xs-offset1 {
    margin-left: 8.33333333%
}

.col-xs-offset2 {
    margin-left: 16.66666667%
}

.col-xs-offset3 {
    margin-left: 25%
}

.col-xs-offset4 {
    margin-left: 33.33333333%
}

.col-xs-offset5 {
    margin-left: 41.66666667%
}

.col-xs-offset6 {
    margin-left: 50%
}

.col-xs-offset7 {
    margin-left: 58.33333333%
}

.col-xs-offset8 {
    margin-left: 66.66666667%
}

.col-xs-offset9 {
    margin-left: 75%
}

.col-xs-offset10 {
    margin-left: 83.33333333%
}

.col-xs-offset11 {
    margin-left: 91.66666667%
}

.col-xs-offset12 {
    margin-left: 100%
}

@media screen and (max-width: 768px) {
    .hide-xs {
        display: none !important
    }

    .show-xs-block {
        display: block !important
    }

    .show-xs-inline {
        display: inline !important
    }

    .show-xs-inline-block {
        display: inline-block !important
    }
}

@media screen and (min-width: 768px) {
    .container {
        width: 750px
    }

    .hide-sm {
        display: none !important
    }

    .show-sm-block {
        display: block !important
    }

    .show-sm-inline {
        display: inline !important
    }

    .show-sm-inline-block {
        display: inline-block !important
    }

    .col-sm1, .col-sm2, .col-sm3, .col-sm4, .col-sm5, .col-sm6, .col-sm7, .col-sm8, .col-sm9, .col-sm10, .col-sm11, .col-sm12 {
        float: left
    }

    .col-sm1 {
        width: 8.33333333%
    }

    .col-sm2 {
        width: 16.66666667%
    }

    .col-sm3 {
        width: 25%
    }

    .col-sm4 {
        width: 33.33333333%
    }

    .col-sm5 {
        width: 41.66666667%
    }

    .col-sm6 {
        width: 50%
    }

    .col-sm7 {
        width: 58.33333333%
    }

    .col-sm8 {
        width: 66.66666667%
    }

    .col-sm9 {
        width: 75%
    }

    .col-sm10 {
        width: 83.33333333%
    }

    .col-sm11 {
        width: 91.66666667%
    }

    .col-sm12 {
        width: 100%
    }

    .col-sm-offset1 {
        margin-left: 8.33333333%
    }

    .col-sm-offset2 {
        margin-left: 16.66666667%
    }

    .col-sm-offset3 {
        margin-left: 25%
    }

    .col-sm-offset4 {
        margin-left: 33.33333333%
    }

    .col-sm-offset5 {
        margin-left: 41.66666667%
    }

    .col-sm-offset6 {
        margin-left: 50%
    }

    .col-sm-offset7 {
        margin-left: 58.33333333%
    }

    .col-sm-offset8 {
        margin-left: 66.66666667%
    }

    .col-sm-offset9 {
        margin-left: 75%
    }

    .col-sm-offset10 {
        margin-left: 83.33333333%
    }

    .col-sm-offset11 {
        margin-left: 91.66666667%
    }

    .col-sm-offset12 {
        margin-left: 100%
    }
}

@media screen and (min-width: 992px) {
    .container {
        width: 970px
    }

    .hide-md {
        display: none !important
    }

    .show-md-block {
        display: block !important
    }

    .show-md-inline {
        display: inline !important
    }

    .show-md-inline-block {
        display: inline-block !important
    }

    .col-md1, .col-md2, .col-md3, .col-md4, .col-md5, .col-md6, .col-md7, .col-md8, .col-md9, .col-md10, .col-md11, .col-md12 {
        float: left
    }

    .col-md1 {
        width: 8.33333333%
    }

    .col-md2 {
        width: 16.66666667%
    }

    .col-md3 {
        width: 25%
    }

    .col-md4 {
        width: 33.33333333%
    }

    .col-md5 {
        width: 41.66666667%
    }

    .col-md6 {
        width: 50%
    }

    .col-md7 {
        width: 58.33333333%
    }

    .col-md8 {
        width: 66.66666667%
    }

    .col-md9 {
        width: 75%
    }

    .col-md10 {
        width: 83.33333333%
    }

    .col-md11 {
        width: 91.66666667%
    }

    .col-md12 {
        width: 100%
    }

    .col-md-offset1 {
        margin-left: 8.33333333%
    }

    .col-md-offset2 {
        margin-left: 16.66666667%
    }

    .col-md-offset3 {
        margin-left: 25%
    }

    .col-md-offset4 {
        margin-left: 33.33333333%
    }

    .col-md-offset5 {
        margin-left: 41.66666667%
    }

    .col-md-offset6 {
        margin-left: 50%
    }

    .col-md-offset7 {
        margin-left: 58.33333333%
    }

    .col-md-offset8 {
        margin-left: 66.66666667%
    }

    .col-md-offset9 {
        margin-left: 75%
    }

    .col-md-offset10 {
        margin-left: 83.33333333%
    }

    .col-md-offset11 {
        margin-left: 91.66666667%
    }

    .col-md-offset12 {
        margin-left: 100%
    }
}

@media screen and (min-width: 1200px) {
    .container {
        width: 1170px
    }

    .hide-lg {
        display: none !important
    }

    .show-lg-block {
        display: block !important
    }

    .show-lg-inline {
        display: inline !important
    }

    .show-lg-inline-block {
        display: inline-block !important
    }

    .col-lg1, .col-lg2, .col-lg3, .col-lg4, .col-lg5, .col-lg6, .col-lg7, .col-lg8, .col-lg9, .col-lg10, .col-lg11, .col-lg12 {
        float: left
    }

    .col-lg1 {
        width: 8.33333333%
    }

    .col-lg2 {
        width: 16.66666667%
    }

    .col-lg3 {
        width: 25%
    }

    .col-lg4 {
        width: 33.33333333%
    }

    .col-lg5 {
        width: 41.66666667%
    }

    .col-lg6 {
        width: 50%
    }

    .col-lg7 {
        width: 58.33333333%
    }

    .col-lg8 {
        width: 66.66666667%
    }

    .col-lg9 {
        width: 75%
    }

    .col-lg10 {
        width: 83.33333333%
    }

    .col-lg11 {
        width: 91.66666667%
    }

    .col-lg12 {
        width: 100%
    }

    .col-lg-offset1 {
        margin-left: 8.33333333%
    }

    .col-lg-offset2 {
        margin-left: 16.66666667%
    }

    .col-lg-offset3 {
        margin-left: 25%
    }

    .col-lg-offset4 {
        margin-left: 33.33333333%
    }

    .col-lg-offset5 {
        margin-left: 41.66666667%
    }

    .col-lg-offset6 {
        margin-left: 50%
    }

    .col-lg-offset7 {
        margin-left: 58.33333333%
    }

    .col-lg-offset8 {
        margin-left: 66.66666667%
    }

    .col-lg-offset9 {
        margin-left: 75%
    }

    .col-lg-offset10 {
        margin-left: 83.33333333%
    }

    .col-lg-offset11 {
        margin-left: 91.66666667%
    }

    .col-lg-offset12 {
        margin-left: 100%
    }
}

.col-space1 {
    margin: -.5px
}

.col-space1 > * {
    padding: .5px
}

.col-space2 {
    margin: -1px
}

.col-space2 > * {
    padding: 1px
}

.col-space4 {
    margin: -2px
}

.col-space4 > * {
    padding: 2px
}

.col-space5 {
    margin: -2.5px
}

.col-space5 > * {
    padding: 2.5px
}

.col-space6 {
    margin: -3px
}

.col-space6 > * {
    padding: 3px
}

.col-space8 {
    margin: -4px
}

.col-space8 > * {
    padding: 4px
}

.col-space10 {
    margin: -5px
}

.col-space10 > * {
    padding: 5px
}

.col-space12 {
    margin: -6px
}

.col-space12 > * {
    padding: 6px
}

.col-space14 {
    margin: -7px
}

.col-space14 > * {
    padding: 7px
}

.col-space15 {
    margin: -7.5px
}

.col-space15 > * {
    padding: 7.5px
}

.col-space16 {
    margin: -8px
}

.col-space16 > * {
    padding: 8px
}

.col-space18 {
    margin: -9px
}

.col-space18 > * {
    padding: 9px
}

.col-space20 {
    margin: -10px
}

.col-space20 > * {
    padding: 10px
}

.col-space22 {
    margin: -11px
}

.col-space22 > * {
    padding: 11px
}

.col-space24 {
    margin: -12px
}

.col-space24 > * {
    padding: 12px
}

.col-space25 {
    margin: -12.5px
}

.col-space25 > * {
    padding: 12.5px
}

.col-space26 {
    margin: -13px
}

.col-space26 > * {
    padding: 13px
}

.col-space28 {
    margin: -14px
}

.col-space28 > * {
    padding: 14px
}

.col-space30 {
    margin: -15px
}

.col-space30 > * {
    padding: 15px
}

/*--------------------栅格end--------------------------*/
