* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

[v-cloak] {
    display: none;
}

::selection,
::-moz-selection {
    background: #0D7AFF;
    color: #ffffff;
}


body {
    font-size: 16px;
    color: #40424D;
}

a {
    text-decoration: none;
}

.container {
    width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.empty-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty-wrapper.mg {
    margin-top: 40px;
}

.empty-wrapper .img {
    width: 400px;
    height: 268px;
}

.empty-wrapper p {
    font-size: 16px;
    margin-top: 20px;
}

.empty-link {
    color: #0D7AFF;
    margin-top: 20px;
}

.both-stretch {
    display: flex;
    align-items: stretch;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.themeColor {
    color: #0D7AFF;
}

input::placeholder {
    color: #B6B6BE;
}

/*--------------   页眉   --------------*/
.top-nav {
    width: 100%;
    min-width: 1280px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 98;
    background-color: #ffffff;
}

.top-nav-content {
    width: 100%;
    height: 112px;
    font-size: 16px;
    color: #90909F;
    border-bottom: 1px solid #DDDDDD;
}

.top-nav-content .container {
    height: 112px;
}

.top-nav-content .pull-left,
.top-nav-content .pull-right {
    height: 111px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.top-nav-content .pull-left a,
.top-nav-content .pull-right a {
    padding: 4px 0;
    transition: all 0.3s;
    color: #90909F;
    box-sizing: border-box;
}

.top-nav-content .pull-left a:hover,
.top-nav-content .pull-right a:hover {
    color: #0D7AFF;
}

.top-nav-content .pull-left a {
    margin-right: 56px;
}

.top-nav-content .pull-right a {
    margin-left: 30px;
    font-size: 14px;
}

.top-nav-content .pull-left a.active {
    color: #0D7AFF;
    border-bottom: 2px solid #0D7AFF;
}

.head-logo {
    width: 298px;
    height: 64px;
}

.top-nav-content .pull-left .themeColor {
    margin: 0 16px 0 26px;
    color: #0D7AFF;
}

.top-nav-content .pull-left .themeColor:hover {
    text-shadow: -1px -1px 4px rgba(0, 0, 0, 0.1);
}

.location {
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 14px;
}

.location img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.location-name {
    width: auto;
    max-width: 64px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.nav-btn {
    width: 72px;
    height: 22px;
    font-size: 14px;
    text-align: center;
    background: rgba(244, 246, 250, 0.39);
    border: 1px solid #DDDDDD;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
    padding: 0 !important;
    margin: 0 !important;
}

.nav-btn.active {
    color: #0D7AFF;
    border-color: #0D7AFF;
}

.nav-btn:hover {
    color: #fff !important;
    border-color: #0D7AFF;
    background-color: #0D7AFF;
}

.head-user-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 40px;
}

.head-avatar {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50%;
    overflow: hidden;
}

.head-avatar.active {
    box-shadow: 0 0 2px 2px #0D7AFF;
}

.head-user-info span {
    font-size: 14px;
    color: #0D7AFF;
    margin-left: 8px;
}

.head-search {
    width: 650px;
    height: 56px;
    padding: 8px;
    border-radius: 28px;
    border: 1px solid #0D7AFF;
}

.search-dropdown {
    border: none;
    color: #ffffff;
    width: 120px;
    height: 40px;
    display: block;
    border-radius: 20px;
    background-color: #0D7AFF;
    position: relative;
    float: left;
}

.search-dropdown .current {
    width: 120px;
    line-height: 40px;
    padding-right: 16px;
    display: block;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 16px;
    background: none;
    background-color: none;
    text-align: center;
    color: #fff;
    transition: all .3s ease;
    position: relative;
}

.search-dropdown .current:before,
.search-dropdown .current:after {
    content: '';
    display: block;
    position: absolute;
    width: 12px;
    height: 2px;
    border-radius: 1px;
    top: calc(50% - 1px);
    right: 26px;
    z-index: 2;
    background: #fff;
    transition: all .3s ease;
}

.search-dropdown .current:before {
    margin-right: 6px;
    -webkit-transform: scale(0.96, 0.8) rotate(50deg);
    transform: scale(0.96, 0.8) rotate(50deg);
}

.search-dropdown .current:after {
    -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
    transform: scale(0.96, 0.8) rotate(-50deg);
}

.search-dropdown.open .current:before {
    -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
    transform: scale(0.96, 0.8) rotate(-50deg);
}

.search-dropdown.open .current:after {
    -webkit-transform: scale(0.96, 0.8) rotate(50deg);
    transform: scale(0.96, 0.8) rotate(50deg);
}

.search-dropdown ul {
    width: 120px;
    height: 120px;
    list-style: none;
    visibility: hidden;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
    border-radius: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}

.search-dropdown ul li {
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #1A1311;
    cursor: pointer;
}

.search-dropdown ul li:hover {
    background-color: #DDEEFF;
}

.search-dropdown ul li.active {
    color: #fff;
    background-color: #0D7AFF;
}

.search-dropdown.open ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1) translate(0, 9px);
    transform: scale(1) translate(0, 9px);
}

.head-search .search-input {
    width: 480px;
    line-height: 40px;
    border: none;
    outline: none;
    float: left;
    padding: 0 24px;
    font-size: 16px;
    box-sizing: border-box;
}

.head-search .search-input::placeholder {
    color: #B6B6BE;
}

.head-search .search-icon {
    width: 16px;
    height: 16px;
    margin: 12px 0;
    cursor: pointer;
}

/*--------------   页脚   --------------*/

.footer {
    width: 100%;
    height: 176px;
    min-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #F5F5F5;
    font-size: 16px;
    color: #40424D;
}
.footer p{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.footer p a {
    color: #40424D;
    cursor: pointer;
    margin-left: 10px;
}

.footer p a:hover {
    color: #0D7AFF;
}

.footer p:nth-child(1) {
    margin-bottom: 24px;
}

.filings-img {
    margin-left: 10px;
    margin-right: -10px;
}

/*--------------   图片   --------------*/

.loading-img {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    position: relative;
}

.loading-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loading-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f8fa;
}

/*-- 加载图标 --*/

.loading-spinner {
    position: relative;
    box-sizing: border-box;
    max-width: 100%;
    max-height: 100%;
    -webkit-animation: loading-rotate .8s linear infinite;
    animation: loading-rotate .8s linear infinite;
    -webkit-animation-timing-function: steps(12);
    animation-timing-function: steps(12)
}

.loading-dot {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%
}

.loading-dot:before {
    display: block;
    width: 4%;
    height: 25%;
    margin: 0 auto;
    background-color: currentColor;
    border-radius: 40%;
    content: " "
}

.loading-dot:first-of-type {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    opacity: 1
}

.loading-dot:nth-of-type(2) {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    opacity: .9375
}

.loading-dot:nth-of-type(3) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: .875
}

.loading-dot:nth-of-type(4) {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
    opacity: .8125
}

.loading-dot:nth-of-type(5) {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    opacity: .75
}

.loading-dot:nth-of-type(6) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: .6875
}

.loading-dot:nth-of-type(7) {
    -webkit-transform: rotate(210deg);
    transform: rotate(210deg);
    opacity: .625
}

.loading-dot:nth-of-type(8) {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg);
    opacity: .5625
}

.loading-dot:nth-of-type(9) {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    opacity: .5
}

.loading-dot:nth-of-type(10) {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
    opacity: .4375
}

.loading-dot:nth-of-type(11) {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg);
    opacity: .375
}

.loading-dot:nth-of-type(12) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    opacity: .3125
}

@-webkit-keyframes loading-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes loading-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.loading-img-null {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f8fa;
}

.loading-img-null img {
    width: 100%;
    height: 100%;
}


/*--------------   下拉选择器  --------------*/

.dropdown {
    width: 228px;
    height: auto;
    display: block;
    position: relative;
    border-radius: 8px;
    border: 1px solid #DDDDDD;
}

.dropdown .current {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: all .3s ease;
}

.dropdown .current:before,
.dropdown .current:after {
    content: '';
    display: block;
    position: absolute;
    width: 12px;
    height: 2px;
    border-radius: 1px;
    top: calc(50% - 1px);
    right: 24px;
    z-index: 1;
    background: #40424D;
    transition: all .3s ease;
}

.dropdown .current:before {
    margin-right: 6px;
    -webkit-transform: scale(0.96, 0.8) rotate(50deg);
    transform: scale(0.96, 0.8) rotate(50deg);
}

.dropdown .current:after {
    -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
    transform: scale(0.96, 0.8) rotate(-50deg);
}

.dropdown.open .current:before {
    -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
    transform: scale(0.96, 0.8) rotate(-50deg);
}

.dropdown.open .current:after {
    -webkit-transform: scale(0.96, 0.8) rotate(50deg);
    transform: scale(0.96, 0.8) rotate(50deg);
}

.dropdown .current input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 0 42px 0 24px;
    font-size: 14px;
    line-height: 40px;
    border-radius: 8px;
    box-sizing: border-box;
    color: #40424D;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: transparent;
}

.dropdown-menu-cover {
    width: 100%;
    height: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}

.dropdown.open .dropdown-menu-cover {
    height: 100%;
}

.dropdown-menu-wrapper {
    width: 100%;
    height: auto;
    max-height: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: -99;
    opacity: 0;
    visibility: hidden;
    transition: all .3s cubic-bezier(0.4, 0.6, 0.5, 2.12);
}

.dropdown.open .dropdown-menu-wrapper {
    height: auto;
    max-height: auto;
    z-index: 97;
    opacity: 1;
    visibility: visible;
    padding-top: 5px;
}

.dropdown-menu {
    width: 100%;
    height: auto;
    max-height: 200px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 8px #00000026;
}

.dropdown ul {
    width: 100%;
    height: auto;
    list-style: none;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.dropdown ul li {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #1A1311;
    cursor: pointer;
    position: relative;
}

.dropdown ul li .brand-initial {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    color: #0D7AFF;
}

.dropdown ul li.active {
    color: #3485E0;
}

.dropdown ul li:hover {
    background-color: #F5F5F5;
}

/*--------------   省市区选择器  --------------*/

.area-dropdown {
    width: 500px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #DDDDDD;
}

.area-dropdown .dropdown {
    width: 100%;
    border: none;
    border-radius: none;
    margin: 0 !important;
}

.area-value {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.area-value input {
    font-size: 14px !important;
}

.dropdown-menu-list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px #00000026;
}

.dropdown-menu-list .dropdown-menu {
    flex: 1;
    box-shadow: none;
}

.dropdown-menu-list .dropdown-menu ul li {
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*--------------   日期选择器   --------------*/
.date-dropdown {
    width: 300px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 8px;
}

.date-dropdown .dropdown {
    width: 100%;
    border-radius: none;
}

.date-dropdown .dropdown .current:before {
    width: 18px;
    height: 18px;
    border: none;
    top: calc(50% - 9px);
    right: 24px;
    margin: 0 !important;
    -webkit-transform: none !important;
    transform: none !important;
    border-radius: none !important;
    background-color: #ffffff !important;
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjY3ODkxNDA5MDE3IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjI1OTIiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCI+PHBhdGggZD0iTTUzMy4zMzMzMzMgOTZjMjI5Ljc2IDAgNDE2IDE4Ni4yNCA0MTYgNDE2Uzc2My4wOTMzMzMgOTI4IDUzMy4zMzMzMzMgOTI4IDExNy4zMzMzMzMgNzQxLjc2IDExNy4zMzMzMzMgNTEyIDMwMy41NzMzMzMgOTYgNTMzLjMzMzMzMyA5NnogbTAgNjRDMzM4LjkyMjY2NyAxNjAgMTgxLjMzMzMzMyAzMTcuNTg5MzMzIDE4MS4zMzMzMzMgNTEyUzMzOC45MjI2NjcgODY0IDUzMy4zMzMzMzMgODY0IDg4NS4zMzMzMzMgNzA2LjQxMDY2NyA4ODUuMzMzMzMzIDUxMiA3MjcuNzQ0IDE2MCA1MzMuMzMzMzMzIDE2MHogbTMyIDExNi42MDh2MjIwLjk5MmwxNjMuMiAxNDQuNTU0NjY3LTQyLjQxMDY2NiA0Ny44OTMzMzMtMTg0Ljc4OTMzNC0xNjMuNjI2NjY3di0yNDkuODEzMzMzaDY0eiIgZmlsbD0iIzQwNDI0RCIgcC1pZD0iMjU5MyI+PC9wYXRoPjwvc3ZnPg==");
    background-size: 100%;
}

.date-dropdown .dropdown .current::after {
    display: none;
}

.date-value {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.date-value input {
    font-size: 14px !important;
}

/*--------------   按钮   --------------*/

button {
    border: none;
    outline: none;
    border: none;
    background-color: transparent;
    position: relative;
    transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
    cursor: pointer;
    user-select: none;
}

button.clickable::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    content: "";
    border: inherit;
    border-color: #000;
    border-radius: inherit;
    background-color: #000;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    opacity: 0;
}

button.clickable:active:before {
    opacity: 0.1;
}

.collect-btn {
    width: 116px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #40424D;
}

.collect-btn img {
    width: 14px;
    height: 14px;
}

.collect-btn span {
    color: #40424D;
    font-size: 16px;
}

.collect-btn.checked {
    background-color: #0D7AFF;
    border-color: #0D7AFF;
}

.collect-btn.checked span {
    color: #ffffff;
}

.set-btn {
    width: 116px;
    height: 40px;
    border-radius: 8px;
    color: #E61C43;
    border: 1px solid #E61C43;
}

.theme-btn {
    padding: 16px 56px;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 8px;
    background-color: #0D7AFF;
}

.theme-btn.plain {
    background-color: #fff;
    color: #0D7AFF;
    border: 1px solid #0D7AFF;
    box-sizing: border-box;
    transition: all 0.3s;
}

.disable-btn {
    padding: 16px 56px;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 8px;
    background-color: #AAAAAA;
}

.getMore-btn {
    padding: 16px 47px 16px 27px;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 1px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    background-color: #F4F6FA;
}

.getMore-btn em {
    position: relative;
    height: 100%;
}

.getMore-btn em:before,
.getMore-btn em:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    z-index: 99;
    background: #40424D;
    transition: all .3s ease;
}

.getMore-btn em:before {
    right: -13.5px;
    width: 12px;
    height: 2px;
    border-top-left-radius: 1px;
    border-bottom-left-radius: 1px;
    -webkit-transform: scale(0.96, 0.8) rotate(50deg);
    transform: scale(0.96, 0.8) rotate(50deg);
}

.getMore-btn em:after {
    right: -20px;
    width: 12px;
    height: 2px;
    border-top-right-radius: 1px;
    border-bottom-right-radius: 1px;
    -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
    transform: scale(0.96, 0.8) rotate(-50deg);
}

/*--------------   步进器   --------------*/

.stepper {
    display: flex;
    flex-direction: row;
}

.stepper-minus,
.stepper-plus {
    width: 32px;
    height: 32px;
    background-color: #F4F6FA;
    position: relative;
    cursor: pointer;
}

.stepper-minus::before,
.stepper-plus::before,
.stepper-plus::after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    content: " ";
    background-color: #000000;
    transform: translate(-50%, -50%);
}

.stepper-minus::before,
.stepper-plus::before {
    width: 50%;
    height: 1px;
}

.stepper-plus::after {
    width: 1px;
    height: 50%;
}

.stepper-minus:active,
.stepper-plus:active {
    opacity: 0.5;
}

.stepper-minus.disabled,
.stepper-plus.disabled {
    opacity: 0.5;
    cursor: no-drop;
}

.stepper-input {
    width: 90px;
    height: 32px;
    font-size: 16px;
    line-height: 32px;
    margin: 0 9px;
    border: 1px solid #ffffff;
    outline: none;
    text-align: center;
}

.stepper-input:focus {
    border-color: #4797fa;
}

/*--------------   商品   --------------*/

.product-list {
    width: 100%;
    min-height: 960px;
    padding-bottom: 97px;
}

.product {
    width: 286px;
    height: auto;
    float: left;
    margin: 32px 32px 0 0;
    cursor: pointer;
}

.product-list .product:nth-child(4n) {
    margin-right: 0;
}

.product-img {
    width: 286px;
    height: 286px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    overflow: hidden;
}

.product-img img {
    object-fit: cover;
}

.product-info {
    width: 100%;
    height: 142px;
    padding: 23px 24px 24px 24px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    background-color: #F4F6FA;
}

.product-name {
    width: 100%;
    height: 21px;
    font-size: 20px;
    line-height: 21px;
    color: #40424D;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product-data {
    width: 100%;
    height: 14px;
    font-size: 14px;
    line-height: 14px;
    color: #40424D;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 16px 0 24px 0;
}

.product-operate {
    width: 100%;
}

.product-price {
    color: #E61C43;
    font-size: 20px;
    line-height: 20px;
    float: left;
}

.product-collect,
.product-collect img {
    width: 20px;
    height: 20px;
    float: right;
    cursor: pointer;
}

/*--------------   侧边菜单   --------------*/

.sideMenu {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    width: 150px;
    height: auto;
    min-height: calc(100vh - 354px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    float: left;
    border-right: 1px solid #DDDDDD;
}

.side-menu-list {
    padding-top: 25px;
    width: 100%;
    height: auto;
    position: sticky;
    top: 112px;
    left: 0;
    z-index: 98;
}

.side-menu-item {
    width: 150px;
    height: 50px;
    font-size: 20px;
}

.side-menu-item a {
    color: #40424D;
}

.side-menu-item a:hover,
.side-menu-item.active a {
    color: #0D7AFF;
}

.side-menu-item:hover a {
    text-shadow: -1px -1px 4px rgba(0, 0, 0, 0.1);
}

.core-contetn {
    width: 1090px;
    height: auto;
    float: right;
    min-height: calc(100vh - 354px);
    padding-left: 40px;
    padding-bottom: 89px;
}

.core-contetn.empty {
    min-height: calc(100vh - 288px);
}

/*--------------   选项   --------------*/

input[type=checkbox] {
    box-sizing: border-box;
    padding: 0;
}

.checkbox-wrapper {
    cursor: pointer;
    user-select: none;
}

.checkbox-wrapper.checkbox-checked {
    color: #3485E0;
}

.checkbox {
    box-sizing: border-box;
    color: #000000d9;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    font-feature-settings: tnum;
    position: relative;
    top: -2px;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    vertical-align: middle;
    outline: none;
}

.checkbox-input {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.checkbox-inner {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    transition: all .3s;
}

.checkbox.round-checkbox .checkbox-inner {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.checkbox.round .checkbox-inner {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
}

.checkbox-checked .checkbox-inner {
    background-color: #3485E0;
    border-color: #3485E0;
}

.checkbox-checked .checkbox.round-checkbox .checkbox-inner {
    background-color: #fff;
    border-color: #3485E0;
}

.checkbox-inner:after {
    position: absolute;
    top: 50%;
    left: 2px;
    display: table;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    opacity: 0;
    transform: rotate(45deg) scale(0) translate(-50%, -50%);
    transition: all .1s cubic-bezier(.71, -.46, .88, .6), opacity .1s;
    content: " ";
}

.checkbox.round .checkbox-inner:after {
    left: 4px;
}

.checkbox-checked .checkbox-inner:after {
    position: absolute;
    display: table;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg) scale(1) translate(-50%, -50%);
    opacity: 1;
    transition: all .2s cubic-bezier(.12, .4, .29, 1.46) .1s;
    content: " ";
}

.checkbox.round-checkbox .checkbox-inner:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border: none;
    background-color: #3485E0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/*--------------   滑块开关   --------------*/

.switch {
    width: 60px;
    height: 30px;
    outline: none;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    cursor: pointer;
    border-radius: 20px;
    background: #BFBFBF;
    transition: background .3s ease, border-color .3s ease;
}

.switch:checked {
    background: #3485E0;
    border-color: #3485E0;
}

.switch:after {
    content: '';
    display: block;
    top: 2px;
    left: 3px;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    background: #ffffff;
    position: absolute;
    transition: opacity 0.3s ease, -webkit-filter 0.3s ease, -webkit-transform 0.6s cubic-bezier(0.175, 0.88, 0.32, 1.2);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.6s cubic-bezier(0.175, 0.88, 0.32, 1.2);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.6s cubic-bezier(0.175, 0.88, 0.32, 1.2), -webkit-filter 0.3s ease, -webkit-transform 0.6s cubic-bezier(0.175, 0.88, 0.32, 1.2);
}

.switch:checked:after {
    border-color: #ffffff;
    -webkit-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-filter: drop-shadow(0 1px 2px rgba(18, 22, 33, .1));
    filter: drop-shadow(0 1px 2px rgba(18, 22, 33, .1));
}

.switch:disabled {
    cursor: not-allowed;
    opacity: .9;
    background: #F5F9FF;
}

.switch:disabled:checked {
    opacity: .5;
    background: #3485E0;
}

.switch:hover:not(:checked):not(:disabled) {
    box-shadow: 0 0 0 2px #1890ff33;
}

.switch:disabled:not(:checked):after {
    opacity: .6;
}

/*--------------   分页   --------------*/

.pagination {
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.pagination ul {
    margin: 0;
}

.pagination ul li {
    list-style: none;
    float: left;
    width: 32px;
    height: 32px;
    font-size: 14px;
    line-height: 32px;
    text-align: center;
    color: #4B515A;
    border: 1px solid #D1D4DD;
    margin-right: 18px;
    border-radius: 2px;
}

.pagination ul a.disabled {
    pointer-events: none;
    cursor: not-allowed;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

.pagination ul li:hover,
.pagination ul li.current {
    color: #2895CA;
    border: 1px solid #2895CA;
}

.pagination ul li a {
    line-height: 32px;
    text-align: center;
    color: #4B515A;
}

.pagination-item {
    list-style: none;
    float: left;
    width: 32px;
    height: 32px;
    font-size: 14px;
    line-height: 32px;
    text-align: center;
    color: #4B515A;
    border: 1px solid #D1D4DD;
    margin-right: 10px;
    border-radius: 2px;
}

.pagination-item:hover {
    color: #2895CA;
    border: 1px solid #2895CA;
}

.pagination-item:hover>svg {
    color: #2895CA;
}

.pagination-item svg {
    width: 14px;
    height: 14px;
    text-align: center;
    margin-top: 9px;
}


/*--------------   文本提示框   --------------*/

.tooltip-open {
    position: relative;
}

.tooltip-open:hover::after,
.tooltip-open:hover::before {
    opacity: 1;
}

.tooltip-open::before {
    position: absolute;
    left: 50%;
    bottom: 100%;
    padding: 4px 8px;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    content: attr(tooltip);
    white-space: nowrap;
    border-radius: 4px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.tooltip-open::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.8);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.tooltip-open.bottom::before {
    bottom: -38px;
}

.tooltip-open.bottom::after {
    bottom: -4px;
    border-top-color: transparent;
    border-bottom-color: rgba(0, 0, 0, 0.8);
}

/*--------------   弹出层   --------------*/

.popup-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity .3s linear, height 0s ease .3s;
}

.popup-mask.show {
    height: 100%;
    opacity: 1;
    transition: none;
    animation: antdDrawerFadeIn .3s cubic-bezier(.7, .3, .1, 1);
}

@keyframes antdDrawerFadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.popup {
    position: fixed;
    top: 0;
    right: 0;
    width: auto;
    z-index: 1001;
    height: 100vh;
    box-shadow: -2px 0 8px #00000026;
    background-color: #ffffff;
    transition: transform .3s cubic-bezier(.7, .3, .1, 1), box-shadow .3s cubic-bezier(.7, .3, .1, 1);
    transform: translateX(100%);
}

.popup.show {
    transform: translateX(0);
}

/*--------------   图片上传   --------------*/

.upload-list {
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: -20px;
}

.upload-preview {
    width: 120px;
    height: 120px;
    position: relative;
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 16px;
}

.upload-preview-img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

/* 上传中 */
.upload-preview.load .upload-preview-img {
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

.upload-load {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 101;
    width: 100%;
    height: 100%;
    color: #ffffff;
    font-size: 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
}

.upload-preview.load .upload-load {
    display: flex;
}

.upload-load span {
    user-select: none;
}

.upload-load .anticon-spin {
    display: inline-block;
    overflow: hidden;
    line-height: 1;
    box-sizing: border-box;
    animation: loadingCircle 1s infinite linear;
}

@keyframes loadingCircle {
    to {
        transform: rotate(360deg)
    }
}

/* 加载中 */
.upload-preview.loading .upload-preview-img {
    display: none;
}

.upload-preview.loading .upload-load {
    display: flex;
    color: var(--common-color);
    background-color: #ffffff;
    border: 1px solid #DDDDDD;
}

/* 上传成功 */
.upload-success {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    font-size: 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: all 0.3s;
}

.upload-preview.success::before,
.upload-preview.error::before,
.upload-preview.fail::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    opacity: 0;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.3);
}

.upload-preview.success {
    border: 1px solid #DDDDDD;
}

.upload-preview.error::before,
.upload-preview.fail::before {
    border-radius: 14px;
}

.upload-preview.success:hover .upload-success,
.upload-preview.success:hover::before {
    opacity: 1;
}

.upload-success svg {
    cursor: pointer;
}

.upload-success a,
.upload-abnormal a {
    width: 20px;
    height: 20px;
    color: #ffffff;
    margin-right: 8px;
    cursor: pointer;
}

/* 地址错误或上传失败 */
.upload-preview.error,
.upload-preview.fail {
    border: 2px solid #ED5555;
}

.upload-error {
    width: 100%;
    height: 100%;
    font-size: 14px;
    border-radius: 16px;
    color: #ED5555;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
}

.upload-preview.error .upload-preview-img {
    display: none;
}

.upload-preview.error .upload-error {
    display: flex;
}

.upload-abnormal {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    font-size: 16px;
    border-radius: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
}

.upload-preview.error:hover::before,
.upload-preview.fail:hover::before,
.upload-preview.error:hover .upload-abnormal,
.upload-preview.fail:hover .upload-abnormal {
    opacity: 1;
}

.upload-abnormal svg {
    margin-right: 8px;
}

.upload-preview.error .see,
.upload-preview.fail .see {
    display: none;
}

.upload-abnormal svg:last-child {
    margin: 0;
}

.disableSvg {
    color: #CCCCCC;
    cursor: not-allowed !important;
}

/* 上传按钮 */
.upload-entrance {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    cursor: pointer;
    color: #DDDDDD;
    margin-bottom: 20px;
    background-color: transparent;
    border: 2px dashed #DDDDDD;
}

/*--------------   上传文件  --------------*/
.upload-input {
    width: 100%;
    height: 44px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.upload-file-name {
    width: calc(100% - 106px);
    height: 44px;
    padding: 0 24px;
    outline: none;
    border: none;
    font-size: 14px;
    line-height: 14px;
    display: flex;
    align-items: center;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border: 1px solid #DDDDDD;
}

.upload-file-name input {
    width: 100%;
    border: none;
    outline: none;
}

.upload-file-name .upload-err {
    color: #ED5555;
}

.upload-file-name a {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #0D7AFF;
    cursor: pointer;
}

.upload-input button {
    width: 106px;
    height: 44px;
    padding: 14px 24px;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    outline: none;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 1px solid #3485E0;
    background-color: #3485E0;
}

/* 弹窗 */
.hideContent {
    position: fixed;
    left: -100vw;
    top: 0;
    z-index: -2;
}

.mgDialog_content .hideContent {
    position: unset;
}

/* 多行输入框 */

.textarea-simple {
    font-size: 16px;
    line-height: 1.5;
    min-height: 48px;
    padding: 0;
    margin: 0;
    resize: none;
    border: none;
    outline: none;
    font-family: unset;
}

/* 验证码 */
.identify {
    cursor: pointer;
}