@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary: #476DFF;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    color: #333;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

body.lock {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.address_input {
    height: 30px;
    border: 1px solid #DEDEDE;
    outline: none;
    padding: 0 5px;
    border-radius: 5px;
    transition: border 0.3s ease;
}

.address_input:focus {
    border-color: #476DFF;
}

.paytitle {
    color: #000;
    font-size: 18px;
    margin: 20px 0;
}

.paybox {
    margin-bottom: 50px;
}

.paybox>li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 10px;
}

.paybox>li.active {
    color: #1641ff;
}

.paybox>li label {
    cursor: pointer;
}

.text-info {
    color: var(--primary);
}

.text-green {
    color: #16AA68;
}

.text-red {
    color: #EB2606;
}

.text-orange {
    color: #ff7728;
}

.text-grey {
    color: #cececd
}

.text-gray {
    color: #666;
}


/* confirm确认框start */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.dialog {
    min-width: 220px;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.dialog h4 {
    margin-top: 0;
    text-align: left;
    color: #555;
}

.dialog .d-head {
    display: flex;
    border-bottom: 1px #e9e9e9 dashed;
    padding: 10px;
}

.d-head h4 {
    margin-left: 5px;
}

.dialog .d-content {
    padding: 0 10px;
    margin: 10px 8px;
    min-height: 30px;

}

.dialog p {
    margin-bottom: 20px;
}

.btn-container {
    display: flex;
    justify-content: center;
}

.d-footer {
    padding: 8px 10px;
}

.btn-container button {
    margin: 0 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-confirm {
    background-color: #476DFF;
    color: #fff;
}

.btn-cancel {
    background-color: #d3d3d3;
    color: #fff;
}

icon-font[name="loading"] {
    display: inline-flex;
    animation: rotating 2s linear infinite;
    vertical-align: middle;
}

/* 确认框结束*/

select {
    appearance: none;
    -webkit-appearance: none;
    background: url("../images/drop.svg") no-repeat 98% center / 15px 15px;
}

.inner {
    width: 100%;
    height: 100%;
    max-width: 1500px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
}

.adaptor {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.adaptor img,
.adaptor video,
.adaptor iframe {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

icon-font[name="loading"] {
    display: inline-flex;
    animation: rotating 2s linear infinite;
    vertical-align: middle;
}

@keyframes rotating {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

main {
    flex: 1;
}

header {
    padding-top: 12px;
    padding-bottom: 13px;
    position: sticky;
    top: 0;
    z-index: 3;
    background-color: #000;
}

#header {
    position: sticky;
    top: 0;
    z-index: 3;
}

header>.inner {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    color: #fff;
    display: flex;
    align-items: center;
}

.header-logo__link {
    width: 100px;
    height: 50px;
    display: block;
    position: relative;
}

.header-logo__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-logo__text {
    margin-left: 10px;
    font-size: 18px;
    display: none;
}

.header-nav__group {
    display: flex;
}

.header-nav__item {
    position: relative;
    color: #fff;
    --background: transparent;
    --radius: 8px;
    line-height: 1.375;
}

.header-nav__item:hover,
.header-nav__item.active {
    --background: var(--primary);
    color: #fff;
}

.header-nav__item+.header-nav__item {
    margin-left: 2.5vw;
}

.header-nav__link {
    background-color: var(--background, transparent);
    padding: 7px 16px;
    display: flex;
    border-radius: var(--radius);
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header-nav__item icon-font {
    font-size: 0.625em;
    margin-left: 5px;
    color: inherit;
}

.header-sub__group {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    color: #000;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    background-color: #fff;
    white-space: nowrap;
    transform: translateY(10px);
    overflow-x: hidden;
    overflow-y: auto;
    min-width: 100%;
    max-height: 70vh;
}

.header-sub__group::-webkit-scrollbar {
    display: none;
}

.header-nav__item:hover>.header-sub__group {
    visibility: visible;
    opacity: 1;
    z-index: 3;
    transform: translateY(0);
    white-space: nowrap;
}

.header-sub__item {
    max-width: 200px;
    --background: transparent;
    --radius: 0;
    line-height: 1.875;
}

.header-sub__item:hover {
    color: #fff;
    --background: var(--primary);
}

.header-menu {
    width: 30px;
    height: 30px;
    display: none;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.header-menu span,
.header-menu span::before,
.header-menu span::after {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-menu span {
    position: relative;
}

.header-menu span::before {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 0;
}

.header-menu span::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
}

.header-menu.active span {
    background-color: transparent;
}

.header-menu.active span:before {
    transform: translateY(7px) rotate(45deg);
}

.header-menu.active span::after {
    transform: translateY(-7px) rotate(-45deg);
}

aside {
    width: 100%;
    position: fixed;
    top: 70px;
    bottom: 0;
    z-index: 4;
    background-color: #fff;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

aside.active {
    transform: translateX(0);
}

.aside-nav__group {
    margin: 0;
    padding: 0;
}

.aside-nav__item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5px 0;
}

.aside-nav__item+.aside-nav__item {
    border-top: 1px solid #ededed;
}

.aside-nav__item .aside-nav__item {
    padding-left: 12px;
}

.aside-nav__link {
    line-height: 35px;
    display: flex;
    flex: 1 0 0;
    font-size: 15px;
    margin-right: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: none;
    color: #333;
}

.aside-nav__item icon-font {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.aside-nav__item.active icon-font {
    transform: rotate(180deg);
}

.aside-nav__sub {
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    padding: 0;
    margin: 0;
}

.aside-nav__sub .aside-nav__item {
    border: none;
}

footer {
    background-color: #222;
    padding-top: 45px;
    padding-bottom: 45px;
    color: #fff;
}

footer .inner {
    max-width: 1600px;
}

.footer-info__title {
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 1px;
}

.footer-info__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.footer-info__name {
    font-weight: normal;
    font-size: 24px;
}

.footer-info__email {
    font-size: 18px;
    color: #b9b9b9;
    transition: color 0.3s ease;
}

.footer-info__email:hover {
    color: #fff;
}

.footer-platform__group {
    display: flex;
    justify-content: flex-end;
}

.footer-platform__item+.footer-platform__item {
    margin-left: 10px;
}

.footer-platform__link {
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #222;
    border-radius: 15px;
    font-size: 28px;
}

.footer-platform__link icon-font {
    display: flex;
}

.footer-affix {
    position: fixed;
    z-index: 3;
    right: 30px;
    bottom: 50px;
}

.footer-affix__item {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 22px;
    background-color: var(--primary);
}

.footer-affix__item:first-child {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
    background-color: #fff;
    color: #333;
}

.footer-affix__link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.footer-affix__item icon-font {
    font-size: 20px;
}

.banner-wrapper {
    position: relative;
    padding-bottom: 31.25%;
    color: #fff;
    min-height: 350px;
}

.banner-wrapper.dark {
    color: #333;
}

.banner-text {
    font-family: Inter, sans-serif;
    position: absolute;
    left: 15%;
    top: 50%;
    max-width: 40%;
    max-height: 80%;
    transform: translateY(-50%);
}

.banner-text__title {
    font-size: 63px;
    font-weight: 500;
    line-height: 1.17;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.banner-text__sub {
    margin-top: 32px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.banner-text__button {
    display: inline-block;
    margin-top: 32px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    background: var(--primary);
    padding: 14px 24px;
    transition: background-color 0.3s ease;
}

.banner-text__button:hover {
    background-color: #4460DB;
}

.field+.field {
    margin-top: 24px;
}

.field-label {
    color: #222;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
}

.field-content {
    margin-top: 8px;
}

.field-wrapper {
    height: 42px;
    padding: 0 12px;
    border: 1px solid #444;
    display: flex;
    width: 100%;
    align-items: center;
}

.field-wrapper:focus-within {
    border-color: transparent;
    outline: 2px solid var(--primary);
}

.field-input {
    display: block;
    flex: 1;
    width: 0;
    border: none;
    outline: none;
    height: 100%;
    color: #666;
    font-size: 14px;
    font-weight: 400;
}

.field-input::-webkit-inner-spin-button {
    display: none;
}

.field-wrapper icon-font {
    font-size: 24px;
    cursor: pointer;
}

.field-link {
    color: #999;
    font-size: 14px;
    font-weight: 290;
    line-height: 30px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.field-link:hover {
    color: var(--primary);
}

.field-button {
    display: block;
    width: 100%;
    background-color: #6786ff;
    padding: 14px;
    font-size: 14px;
    color: #F5F5F5;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.field-button.disabled {
    background-color: grey;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.checkbox input[type=checkbox] {
    display: none;
}

.checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #666;
    vertical-align: middle;
    transition: color 0.3s ease;
}

.checkbox:hover {
    color: var(--primary);
    cursor: pointer;
}

.checkbox-inner {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
    left: 0;
}

.checkbox icon-font {
    font-size: 18px;
    display: flex;
}

.checkbox icon-font[name="checked"] {
    animation: zoom 0.3s ease;
}

.checkbox-inner:checked~icon-font {
    color: var(--primary);
}

.checkbox-inner:checked~icon-font[name="uncheck"] {
    display: none;
}

.checkbox-inner:not(:checked)~icon-font[name="checked"] {
    display: none;
}

.checkbox-label {
    margin-left: 8px;
    line-height: 1;
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item icon-font {
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
}

.breadcrumb-item:last-child icon-font {
    display: none;
}

.breadcrumb-item__link {
    color: #666;
    font-size: 12px;
    transition: color 0.3s ease;
}

.breadcrumb-item__link:hover {
    color: var(--primary);
}

.material-field {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    background: #FFF;
    position: relative;
    height: 50px;
    width: 100%;
    padding: 0 12px;
    outline: 2px solid transparent;
    transition: outline-color 0.3s ease;
}

.material-field:focus-within {
    border-color: transparent;
    outline-color: var(--primary);
}


.material-field__input {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    padding-top: 24px;
}

.material-field__input {
    background-position: right center;
}

.material-field__input::placeholder {
    color: transparent;
}

.material-field__label {
    position: absolute;
    max-width: 80%;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
}

.material-field__input:not(:placeholder-shown)+.material-field__label,
.material-field:focus-within .material-field__label {
    top: 0;
    transform: translateY(5px);
    font-size: 14px;
}

.counter {
    display: inline-flex;
    align-items: center;
}

.counter-minus,
.counter-add {
    background-color: var(--primary);
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s ease;
}

.counter-minus {
    border-radius: 5px 0 0 5px;
}

.counter-add {
    border-radius: 0 5px 5px 0;
}

.counter-minus icon-font,
.counter-add icon-font {
    display: flex;
}

.counter-input {
    height: 35px;
    border-left: none;
    border-right: none;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    outline: none;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    width: 80px;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.counter-input::-webkit-inner-spin-button {
    display: none;
}

.tooltip {
    display: inline-flex;
    position: relative;
}

.tooltip-content {
    border-radius: 8px;
    background: #000;
    color: #fff;
    font-size: 14px;
    min-width: 230px;
    padding: 10px 16px;
    position: absolute;
    max-width: 300px;
    left: 50%;
    top: -5px;
    transform: translate(-50%, -100%);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tooltip-content::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 40%) rotate(45deg);
    background: #000;
}

.tooltip:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}

.pagination-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.pagination {
    list-style: none;
    padding: 0;
    justify-content: center;
    margin-top: -10px;
    margin-left: -10px;
    margin-bottom: 0;
    display: inline-flex;
    flex-wrap: wrap;
}

.pagination-item {
    margin-left: 10px;
    margin-top: 10px;
}

.pagination-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
    border: 1px solid #eee;
    border-radius: 4px;
    line-height: 28px;
    width: 30px;
    transition: all .3s ease;
}

.pagination-item.active .pagination-link,
.pagination-item:hover .pagination-link {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* 首页 */
.home-navigator {
    padding-top: 90px;
    padding-bottom: 220px;
}

.home-navigator__group {
    margin-top: -32px;
    margin-left: -32px;
    display: flex;
    flex-wrap: wrap;
}

.home-navigator__item {
    width: calc(25% - 32px);
    border-radius: 8px;
    background: linear-gradient(317deg, #2B54BD 0.04%, #7B8DFD 100%);
    overflow: hidden;
    color: #fff;
    margin-top: 32px;
    margin-left: 32px;
    transition: transform 0.3s ease;
}

.home-navigator__item:hover {
    transform: translateY(-10px);
}

.home-navigator__link {
    font-family: Alibaba PuHuiTi, sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    display: block;
    padding: 27px 31px;
    height: 220px;
}

.home-intro {
    padding-top: 120px;
    padding-bottom: 120px;
    background: linear-gradient(180deg, #F6F9FF 0%, #E3EEFF 100%);
}

.home-intro .inner {
    display: flex;
    max-width: 1270px;
    justify-content: center;
    align-items: center;
}

.home-intro__main {
    max-width: 45%;
    flex: 1 0 0;
}

.home-intro__side {
    margin-left: 100px;
    flex: 1 0 0;
}

.home-intro__image {
    position: relative;
    padding-bottom: 85%;
    border-radius: 8px;
    overflow: hidden;
}

.home-intro__title {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px;
}

.home-intro__text {
    color: #666;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    margin-top: 25px;
}

.home-form {
    padding-top: 50px;
    padding-bottom: 42px;
}

.home-form .inner {
    max-width: 1330px;
}

.home-form__wrapper {
    display: flex;
    justify-content: center;
    padding: 46px;
    border-radius: 20px;
    background: linear-gradient(135deg, #3A5FDB 0%, #A860D4 100%);
}

.home-form__inner {
    width: 100%;
    max-width: 585px;
}

.home-form__title {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 3px;
    text-align: center;
}

.home-form__sub {
    color: #fff;
    font-size: 20px;
    font-weight: 290;
    line-height: normal;
    letter-spacing: 2px;
    margin-top: 28px;
    text-align: center;
}

.home-form__element {
    border-radius: 33px;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4px 7px;
    height: 65px;
    margin-top: 28px;
}

.home-form__element.error {
    border: 2px #f00 solid;
}

.home-form__element.error input {
    color: #f00;
}

.home-form__label {
    padding-left: 25px;
    padding-right: 7px;
    flex: 1 0 0;
    height: 100%;
}

.home-form__input {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    color: #666;
    font-weight: 290;
}

.home-form__button {
    background: #000;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    height: 100%;
    padding-left: 68px;
    padding-right: 68px;
    border-radius: inherit;
    font-weight: 400;
    line-height: normal;
}

/* 邀约 */
.invite-title {
    text-align: center;
}

.invite-title__text {
    color: #131313;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
}

.invite-title__sub {
    color: #999;
    font-family: PingFang HK, sans-serif;
    font-weight: 400;
    line-height: normal;
    margin-top: 12px;
}

.invite-content {
    display: flow-root;
    margin-top: 64px;
}

.invite-step {
    padding-top: 95px;
    padding-bottom: 100px;
}

.invite-step__group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.invite-step__item {
    flex: 1 0 0;
    position: relative;
}

.invite-step__item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 25px;
    height: 62px;
    background: url("../images/invite-arrow.png") no-repeat center center / contain;
    transform: translate(50%, -50%);
}

.invite-step__item:last-child::after {
    display: none;
}

.invite-step__image {
    position: relative;
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
}

.invite-step__text {
    text-align: center;
    margin-top: 32px;
    color: #333;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.invite-service {
    padding-top: 120px;
    padding-bottom: 100px;
    background: linear-gradient(180deg, #010D44 0%, #010D44 0%, #3A5EC9 75.52%);
    color: #fff;
}

.invite-service .invite-title__text,
.invite-service .invite-title__sub {
    color: inherit;
}

.invite-service__group {
    display: flex;
    flex-wrap: wrap;
    margin-top: -32px;
    margin-left: -32px;
}

.invite-service__item {
    width: calc(25% - 32px);
    margin-left: 32px;
    margin-top: 32px;
}

.invite-service__image {
    position: relative;
    padding-bottom: 65.47%;
    overflow: hidden;
}

.invite-service__text {
    color: #fff;
    font-family: Alibaba PuHuiTi, sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    margin-top: 10px;
    text-align: center;
}

.invite-star {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #F8F8F8;
}

.invite-star__group {
    display: flex;
    flex-wrap: wrap;
    margin-left: -32px;
    margin-top: -32px;
}

.invite-star__item {
    width: calc(25% - 32px);
    margin-left: 32px;
    margin-top: 32px;
    padding-bottom: 195px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.invite-star__item:hover {
    transform: translateY(-19px);
}

.invite-star__image {
    position: relative;
    padding-bottom: 108%;
}

.invite-star__content {
    font-family: Alibaba PuHuiTi, sans-serif;
    padding: 24px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    background-color: #fff;
    transition: height 0.3s ease;
}

.invite-star__tags {
    position: absolute;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-top: -10px;
    transform: translateY(-100%);
}

.invite-star__tag {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    background: #E00751;
    padding: 8px 24px;
    border-radius: 20px;
    margin-top: 10px;
    margin-left: 10px;
}

.invite-star__title {
    color: #111;
    font-size: 24px;
    font-weight: 700;
    line-height: 21px;
}

.invite-star__great {
    color: #666;
    font-weight: 400;
    line-height: 18px;
    margin-top: 12px;
    height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.invite-star__description {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    color: #999;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.invite-star__description::-webkit-scrollbar {
    display: none;
}

.invite-star__button {
    display: block;
    width: 100%;
    color: #fff;
    font-weight: 400;
    line-height: normal;
    padding: 14px;
    background-color: #4460DB;
    border-radius: 25px;
    text-align: center;
    margin-top: 29px;
    transition: background-color 0.3s ease;
}

.invite-star__button:hover {
    background-color: var(--primary);

}

.invite-star__item:hover .invite-star__description {
    height: 156px;
    opacity: 1;
    overflow: auto;
}

.invite-star__more {
    display: flex;
    justify-content: center;
    color: var(--primary);
    margin-top: 88px;
}

.invite-star__link {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.invite-star__link icon-font {
    margin-left: 12px;
}

.invite-quality {
    padding-top: 96px;
    padding-bottom: 96px;
}

.invite-quality__img {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.invite-quality__group {
    display: flex;
    flex-wrap: wrap;
}

.invite-quality__item {
    flex: 1 0 0;
    padding: 24px;
    font-family: Alibaba PuHuiTi, sans-serif;
    text-align: center;
    background: #F8FAFB;
    border-right: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
    transition: all 0.3s ease;
    position: relative;
}

.invite-quality__item:first-child {
    border-left: 1px solid #EEE;
}

.invite-quality__item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.invite-quality__item:hover {
    background-color: #fff;
}

.invite-quality__item:hover::after {
    transform: scaleX(1);
}

.invite-quality__item icon-font {
    font-size: 32px;
}

.invite-quality__title {
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 12px;
}

.invite-quality__title strong {
    font-size: 1.5em;
    font-weight: 700;
    margin-right: 3px;
}

.invite-quality__text {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    margin-top: 12px;
}

.invite-form {
    background: #EFF2F4;
    padding-top: 126px;
    padding-bottom: 126px;
}

.invite-form .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1330px;
}

.invite-form__main {
    background-color: #fff;
    border-radius: 20px;
    padding: 64px;
    font-family: Alibaba PuHuiTi, sans-serif;
}

.invite-form__title {
    color: #333;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
}

.invite-form__sub {
    color: #64A2FF;
    font-size: 16px;
    font-weight: 400;
    margin-top: 8px;
    text-align: center;
}

.invite-form__element {
    margin-top: 46px;
}

.invite-form__label {
    display: block;
    width: 100%;
}

.invite-form__label+.invite-form__label {
    margin-top: 24px;
}

.invite-form__input {
    width: 100%;
    height: 54px;
    border-radius: 10px;
    border: 1px solid #EEE;
    outline-color: var(--primary);
    color: #666;
    font-size: 16px;
    font-weight: 400;
    padding-left: 15px;
    padding-right: 12px;
    appearance: none;
    -webkit-appearance: none;
}

.invite-form__input::placeholder {
    color: #999;
}

.invite-form__button {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 46px;
    border-radius: 10px;
    color: #fff;
    font-family: PingFang SC, sans-serif;
    font-weight: 400;
    padding: 16px;
    background-color: #5270DC;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
}

.invite-form__button:hover {
    background-color: var(--primary);
}

.invite-form__side {
    width: 40%;
    margin-left: 5%;
}

.invite-form__image {
    position: relative;
    padding-bottom: 100%;
}

.mall-header {
    padding-top: 18px;
    padding-bottom: 18px;
    border-top: 1px solid #eee;
    position: sticky;
    top: 75px;
    z-index: 2;
    background-color: #fff;
}

.mall-header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mall-nav {
    display: flex;
    align-items: center;
    overflow-x: auto;
    flex: 1 0 0;
    margin-right: 30px;
    position: relative;
}

.mall-nav::-webkit-scrollbar {
    display: none;
}

.mall-nav__item+.mall-nav__item {
    margin-left: 3vw;
}

.mall-nav__arrow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: inline-flex;
    display: none;
}


.mall-header__link {
    display: flex;
    font-size: 16px;
    font-weight: 400;
    padding: 7px 16px;
    line-height: 1.4;
    white-space: nowrap;
}

.mall-header__label {
    position: relative;
    display: block;
}

.mall-header__label::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    height: 4px;
    border-radius: 2px;
    width: 100%;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mall-nav__item:hover .mall-header__label::after,
.mall-nav__item.active .mall-header__label::after {
    transform: scaleX(1);
}

.mall-header__button {
    display: flex;
    font-size: 16px;
    font-weight: 400;
    padding: 7px 16px;
    line-height: 1.4;
    white-space: nowrap;
    background-color: var(--primary);
    color: #fff;
    border-radius: 4px;
}

.mall-nav__back {
    margin-right: 20px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    padding-top: 7px;
    padding-bottom: 7px;
    line-height: 1.4;
}

.mall-nav__back:hover {
    color: var(--primary);
}

.mall-nav__back icon-font {
    display: flex;
    margin-right: 5px;
}

.mall-action {
    display: flex;
    align-items: center;
}

.mall-action__item {
    font-size: 24px;
    position: relative;
}

.mall-action__item+.mall-action__item {
    margin-left: 24px;
}

.mall-action__link icon-font {
    display: flex;
}

.mall-header__badge {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50%) translate(70%);
    background-color: #EB2606;
    color: #fff;
    font-size: 12px;
    padding: 0 7px;
    border-radius: 11px;
    height: 20px;
    display: flex;
    align-items: center;
}

.mall-banner {}

.mall-banner__wrapper {
    display: block;
    position: relative;
    padding-bottom: 35.85%;
}

.mall-banner__adaptor {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.mall-banner__adaptor img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mall-banner__adaptor img {
    display: block;
    width: 100%;
}

.mall-section .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 96px;
    padding-bottom: 96px;
}

.mall-section__main {
    width: 45%;
}

.mall-section__image {
    padding-bottom: 75%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.mall-section__side {
    width: 50%;
    margin-left: 5%;
}

.mall-section__tags {
    display: flex;
    margin-left: -16px;
    margin-top: -16px;
}

.mall-section__tag {
    margin-left: 16px;
    margin-top: 16px;
    background-color: #CA5008;
    color: #fff;
    font-size: 16px;
    padding: 4px 12px;
    border-radius: 4px;
}

.mall-section__title {
    margin-top: 16px;
    color: #333;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mall-section__description {
    margin-top: 16px;
    color: #666;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
}

.mall-section__button {
    margin-top: 42px;
}

.mall-section__btn {
    display: inline-block;
    padding: 24px 73px;
    border-radius: 6px;
    color: #fff;
    background: #4460DB;
    outline: none;
    line-height: 1.5;
    font-size: 20px;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

.mall-section__btn:hover {
    background: #5d7bed;
}

.mall-section__content img {
    display: block;
    max-width: 100%;
    margin: auto;
}

.mall-footer__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 12px;
}

.mall-footer__name {
    font-weight: normal;
    font-size: 24px;
}

.mall-footer__email {
    font-size: 18px;
    color: #b9b9b9;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.mall-footer__email:hover {
    color: #fff;
}

.mall-footer__shop,
.mall-footer__address,
.mall-footer__phone {
    max-width: 380px;
    line-height: 1.6;
    margin: 0 15px;
}

.goods-hot {
    padding-bottom: 72px;
    padding-top: 45px;
}

.goods-hot__total {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #666;
}

.goods-filter {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
}

.goods-filter__group {
    margin-top: -10px;
    margin-left: -10px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.goods-filter__item {
    position: relative;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    background: #F5F5F5;
    border-radius: 20px;
    line-height: 30px;
    cursor: pointer;
    margin-left: 10px;
    margin-top: 10px;
    color: #111;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.goods-filter__item:hover {
    background-color: #e5e5e5;
}

.goods-filter__item.active {
    color: #fff;
    background-color: var(--primary);
}

.goods-filter__item icon-font {
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: flex;
}

.goods-filter__item:hover icon-font {
    transform: rotate(180deg);
}

.goods-filter__sub {
    position: absolute;
    background-color: #fff;
    top: 40px;
    left: 0;
    min-width: 100%;
    border-radius: 4px;
    color: #444;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.goods-filter__item:hover .goods-filter__sub {
    visibility: visible;
    opacity: 1;
}

.goods-filter__category {
    text-align: center;
    z-index: 2;
}

.goods-filter__link {
    display: block;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
}

.goods-filter__category.active .goods-filter__link {
    color: #fff;
    background-color: var(--primary);
}

.goods-filter__category:hover {
    background-color: #F5F5F5;
}

.goods-filter__search {
    width: 300px;
    margin-left: 20px;
}

.goods-search__label {
    display: flex;
    align-items: center;
    border-radius: 24px;
    border: 1px solid #F5F5F5;
    background: #F5F5F5;
    height: 40px;
    padding: 5px 12px;
    color: #484848;
    width: 100%;
}

.goods-search__label icon-font {
    display: flex;
    font-size: 18px;
}

.goods-search__input {
    border: none;
    outline: none;
    flex: 1;
    width: 0;
    background-color: transparent;
    height: 100%;
    margin-left: 5px;
}

.goods-filter__divider {
    border-top: none;
    margin-top: 20px;
    margin-bottom: 32px;
    border-color: #DFDFDF;
}

.goods-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: -40px;
    margin-left: -32px;
}

.goods-list__item {
    width: calc(25% - 32px);
    margin-left: 32px;
    margin-top: 40px;
}

.goods-list__link {
    display: block;
}

.goods-list__image {
    position: relative;
    padding-bottom: 100%;
    background: #F6F6F6;
    border-radius: 20px;
    overflow: hidden;
}

.goods-list__adaptor {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
}

.goods-list__img {
    display: block;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.goods-list__hover {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.goods-list__item:hover .goods-list__hover {
    visibility: visible;
    opacity: 1;
}

.goods-list__content {
    padding-top: 24px;
    padding-bottom: 12px;
}

.goods-list__tags {
    display: flex;
    margin-left: -10px;
    margin-top: -10px;
    overflow-x: auto;
}

.goods-list__tags::-webkit-scrollbar {
    display: none;
}

.goods-list__tag {
    margin-left: 10px;
    margin-top: 10px;
    background-color: #CA5008;
    color: #fff;
    font-size: 13px;
    padding: 4px 12px;
    flex-shrink: 0;
}

.goods-list__tag.hot {
    background-color: #EB2606;
}

.goods-list__title {
    margin-top: 8px;
    color: #000;
    font-size: 17px;
    font-weight: 700;
    line-height: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.goods-list__category {
    margin-top: 4px;
    color: #555;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
}

.goods-list__main {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #9D9EA2;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5
}

.goods-list__price span {
    font-size: 16px;
    margin-right: 8px;
}

.goods-list__price strong {
    color: #111;
    font-size: 21px;
    margin-right: 4px;
}

.goods-list__shopcar {
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
    transition: color 0.3s ease;
}

.goods-list__shopcar:hover {
    color: #2ba2ad;
}

.goods-series .inner {
    padding-top: 94px;
    padding-bottom: 72px;
    border-top: 1px solid #DFDFDF
}

.goods-series__title {
    color: #222;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
}

.goods-series__list {
    margin-top: 40px;
}

.goods-series__more {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    vertical-align: middle;
}

.goods-series__more a {
    display: flex;
    align-items: center;
}

.goods-series__more icon-font {
    margin-left: 5px;
    display: flex;
}

.login {
    padding-top: 115px;
    padding-bottom: 115px;
}

.login .inner {
    max-width: 460px;
}

.login-title {
    color: #222;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

.login-form {
    margin-top: 24px;
}

.login-register {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-register__label {
    margin-right: 15px;
    color: #222;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
}

.login-field__button:hover {
    background-color: var(--primary);
}

.login-field__forget {
    display: flex;
    justify-content: flex-end;
}

.register {
    padding-top: 60px;
    padding-bottom: 120px;
}

.register .inner {
    max-width: 460px
}

.register-title {
    color: #222;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

.register-login {
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-login__label {
    margin-right: 15px;
    color: #222;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
}

.register-form {
    margin-top: 24px;
}

.register-filed__code {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    padding-left: 12px;
    border-left: 1px solid #000;
    min-width: 85px;
    text-align: center;
    display: block;
}

.register-filed__code icon-font {
    font-size: 18px;
}

.login-field__forget {
    display: flex;
    justify-content: flex-end;
}

.forget {
    padding-top: 120px;
    padding-bottom: 120px;
}

.forget .inner {
    max-width: 460px
}

.forget-title {
    color: #222;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

.forget-form {
    margin-top: 24px;
}

.forget-login {
    display: flex;
    justify-content: center;
    align-items: center;
}

.forget-register__label {
    margin-right: 15px;
    color: #222;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
}

.privacy {
    padding-top: 150px;
    padding-bottom: 150px;
}

.privacy .inner {
    max-width: 1040px;
}

.privacy-title {
    color: #222;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
}

.privacy-content {
    margin-top: 24px;
    display: flow-root;
}

.user {
    background-color: #F5F5F5;
    padding-top: 16px;
    padding-bottom: 102px;
}

.user .inner {
    max-width: 1260px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.user-aside {
    background-color: #fff;
    width: 160px;
    padding: 16px 9px 22px;
}

.user-aside__title {
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
    color: #000;
    text-align: center;
}

.user-aside__item {
    text-align: center;
    color: #333;
    padding-bottom: 4px;
}

.user-aside__item+.user-aside__item {
    margin-top: 16px;
}

.user-aside__link {
    padding-bottom: 4px;
    position: relative;
    display: inline-block;
}

.user-aside__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: transform 0.3s ease;
    transform: scaleX(0);
}

.user-aside__item.active .user-aside__link::after,
.user-aside__link:hover::after {
    transform: scaleX(1);
}

.user-main {
    flex: 1 0 0;
    margin-left: 16px;
}

.user-main__title {
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
}

/* 个人资料 */
.profile {
    background-color: #fff
}

.profile-main {
    padding: 17px 24px;
}

.profile-form {
    display: flex;
    flex-wrap: wrap;
    margin-top: -25px;
    margin-left: -24px;
}

.profile-form>* {
    margin-top: 25px;
    margin-left: 24px;
}

.profile-form__field {
    display: flex;
    align-items: center;
    width: calc(50% - 24px);
}

.profile-form__label {
    color: #666;
    font-size: 16px;
    padding-right: 12px;
    width: 120px;
    text-align: right;
}

.profile-form__input {
    border: 1px solid #707070;
    height: 42px;
    padding-left: 12px;
    padding-right: 12px;
    outline-color: var(--primary);
    flex: 1;
    width: 0;
    appearance: none;
    -webkit-appearance: none;
}

.profile-form__row {
    width: 100%;
    padding-left: 65px;
    margin-top: 36px;
}

.profile-form__link {
    color: var(--primary);
    font-size: 16px;
    text-decoration: underline;
}

.profile-form__buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.profile-form__back,
.profile-form__button {
    display: inline-block;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    padding: 13px;
    min-width: 180px;
    cursor: pointer;
}

.profile-form__back {
    color: #333;
    border: 1px solid #eee;
}

.profile-form__button {
    color: #fff;
    border: none;
    background-color: var(--primary);

}

/* 收货地址 */
.address {
    background-color: #fff;
}

.address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
}

.address-title__add {
    cursor: pointer;
    margin-left: 16px;
    transition: color 0.3s ease;
    color: #666;
    text-decoration: underline;
}

.address-title__add:hover {
    color: var(--primary);
}

.address-main {
    padding: 16px 24px;
}

.address-item {
    display: flex;
    align-items: center;
    background: #F7F7F7;
    padding: 20px 28px;
}

.address-item~.address-item {
    margin-top: 16px;
}

.address-name {
    margin-right: 16px;
    width: 140px;
}

.address-name__label {
    color: #999;
    font-weight: 400;
    display: block;
}

.address-name__text {
    font-weight: 400;
    display: block;
    margin-top: 6px;
}

.address-info {
    flex: 1 0 0;
}

.address-info__group {
    margin-top: -16px;
    margin-left: -40px;
    display: flex;
    flex-wrap: wrap;
}

.address-info__item {
    margin-left: 40px;
    margin-top: 16px;
}

.address-info__label {
    color: #666;
}

.address-info__text {
    color: #333;
}

.address-action {
    margin-left: 40px;
}

.address-action__btn {
    color: #333;
    font-weight: 400;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
}

.address-action__btn+.address-action__btn {
    margin-top: 16px;
}

.address-action__btn icon-font {
    color: #999;
    margin-right: 5px;
    display: flex;
}



.user-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}


.address-dialog {
    width: 100%;
    max-width: 685px;
    background-color: #fff;
    border-radius: 8px;
    padding: 56px 56px 32px 56px;
}

.address-dialog__title {
    font-size: 17px;
    font-weight: 600;
}

.address-dialog__form {
    margin-top: 8px;
    margin-left: -14px;
    display: flow-root;
}

.address-dialog__form .field {
    margin-left: 14px;
    margin-top: 16px;
}

.address-dialog__button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.address-dialog__button {
    margin-top: 50px;
}

.address-dialog__back,
.address-dialog__btn {
    display: inline-block;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    padding: 13px;
    min-width: 180px;
    cursor: pointer;
}

.address-dialog__back {
    border: 1px solid #CDCDCD;
}

.address-dialog__btn {
    color: #fff;
    background-color: var(--primary);
    border: none;
    margin-left: 42px;
}

.message {
    background-color: #fff;
}

.message-main {
    padding: 17px 24px;
}

.message-main__item {
    background-color: #F7F7F7;
    padding: 16px 31px;
}

.message-main__item+.message-main__item {
    margin-top: 16px;
}

.message-main__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.message-main__head {
    color: #333;
    font-size: 14px;
    font-weight: normal;
}

.message-main__date {
    color: #999;
    font-size: 14px;
}

.message-main__text {
    margin-top: 12px;
    color: #666;
    font-size: 14px;
}

.message-main__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    min-height: 200px;
    color: #999;
    font-weight: 400;
}

.order-title {
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.order-title__main {
    margin-right: 20px;
}

.order-title__main strong {
    color: #000;
}

.order-title__main span {
    color: #333;
    margin-left: 10px;
}

.order-title__main a {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    margin-left: 50px;
}

.order-title__exit {
    color: #999;
    font-weight: 400;
    text-decoration: underline;
}

.order-main {
    margin-top: 16px;
    background-color: #fff;
}

.order-list {
    padding: 16px 24px;
}

.order-list__item {
    padding-bottom: 12px;
    border-bottom: 1px #f1eeee dotted;
}

.order-list__item+.order-list__item {
    margin-top: 12px;
}

.order-list__num {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 14px;
}

.order-list__content .order-list__payment {
    color: #f00;
    font-size: 14px;
}

.order-list__content {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.order-list__main {
    flex: 1;
    max-width: 350px;
    width: 0;
}

.order-list__simple {
    display: flex;
    align-items: flex-start;
}

.order-list__multiple {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-top: -12px;
}

.order-list__image {
    width: 100px;
    height: 100px;
    position: relative;
}

.order-list__multiple .order-list__image {
    margin-left: 12px;
    margin-top: 12px;
}

.order-list__info {
    margin-left: 12px;
    flex: 1;
    width: 0;
}

.order-list__title {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.order-list__count {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    margin-top: 12px;
}

.order-list__price {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    width: 165px;
}

.order-list__summary {
    margin-top: 10px;
}

.order-list__action {
    text-align: center;
    width: 165px;
}

.order-list__status {
    color: #333;
    font-size: 14px;
    font-weight: 400;

}

.order-list_operate {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    min-width: 120px;
    display: flex;
    justify-content: flex-end;
}

.order-list_operate a {
    margin-right: 10px;

}

.order-list_operate a.order-del {

    color: red;
}

.order-list__button {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #707070;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    outline: none;
}

.order-list__button.primary {
    color: #fff;
    background-color: var(--primary);
    border: none;
}

.order-list__link {

    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    white-space: nowrap;
}

.order-detail {
    background-color: #fff;
}

.order-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
}

.order-content {
    padding: 16px 24px;
    background-color: #fff;
}

.order-detail__list {
    margin-left: -12px;
    display: flex;

    flex-wrap: wrap;
}

.order-detail__item {
    display: flex;
    padding-left: 12px;
    padding-top: 12px;

    width: 33.3333%;
}

.order-detail__num {
    color: #999;
    font-size: 14px;
    font-weight: 400;
}

.order-detail__image {
    width: 100px;
    height: 100px;
    position: relative;
}

.order-detail__info {
    margin-left: 12px;
    flex: 1 0 0;
}

.order-detail__title {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.order-detail__count {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    margin-top: 12px;
}

.order-detail__divider {
    border-top: none;
    border-bottom: 1px solid #eee;
}

.order-detail__rows {
    padding: 0 24px 24px 24px;
}

.order-detail__grid {
    display: flex;
    flex-wrap: wrap;
}

.order-detail__col {
    flex-grow: 1;
    flex-basis: auto;
    padding-right: 2em;
    margin-top: 24px;
}

.order-detail__col:last-child {
    padding-right: 0;
}

.order-detail__row {
    color: #666;
    font-size: 16px;
    font-weight: 400;
}

.order-detail__row+.order-detail__row {
    margin-top: 10px;
}

.order-detail__row span {
    color: #000;
}

.order-detail__upload {
    display: inline-flex;
    cursor: pointer;
    text-decoration: underline;
    color: var(--primary);
}

.order-detail__upload input {
    display: none;
}

.order-detail__preview {
    display: inline-flex;
    vertical-align: top;
    width: 80px;
    height: 80px;
}

.order-detail__action {
    padding: 24px 32px;
    display: flex;
    justify-content: flex-end;
}

.order-detail__btn {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: var(--primary);
}

.shopcar {
    padding-top: 20px;
    padding-bottom: 20px;
}

.shopcar-title {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.shopcar-available__header {
    margin-bottom: 30px;
}

.shopcar-available__header icon-font {
    font-size: 24px;
}

.shopcar-content {
    margin-top: 35px;
    display: flex;
}

.shopcar-main {
    width: 70%;
    padding-right: 45px;
    border-right: 1px solid #eee;
}

.shopcar-main__item {
    padding-top: 32px;
    padding-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.shopcar-main__item .counter{
    margin-top:12px;
    
}
.shopcar-main__item .counter-minus,.shopcar-main__item .counter-add {
    height: 30px;
    width: 30px;
}

.shopcar-main__item .counter-input {
    height: 30px;
    width: 60px;
}

.shopcar-main__item  .shopcar-main__info icon-font {
    font-size: 15px;
}

.shopcar-main__item:not(:first-child) {
    border-top: 1px solid #eee;
}

.shopcar-main__info {
    display: flex;
    align-items: flex-start;
    flex: 1 0 0;
}

.shopcar-main__info icon-font {
    font-size: 24px;
}

.shopcar-main__image {
    width: 100px;
    height: 100px;
    position: relative;
    margin-left: 46px;
}

.shopcar-main__content {
    margin-left: 12px;
    flex: 1 0 0;
}

.shopcar-main__tags {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-top: -8px;
}

.shopcar-main__tag {
    margin-top: 8px;
    margin-left: 8px;
    padding: 3px 5px;
    font-size: 12px;
    color: #fff;
    background-color: #EB2606;
    border-radius: 4px;
}

.shopcar-main__title {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.shopcar-main__count {
    display: inline-flex;
    padding: 4px 24px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    border-radius: 20px;
    border: 1px solid #ccc;
    margin-top: 12px;
}

.shopcar-main__action {
    text-align: right;
}

.shopcar-main__price {
    color: var(--primary);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 13px;
}

.shopcar-main__link {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
}

.shopcar-main__divider {
    border: none;
    height: 14px;
    background: rgba(238, 238, 238, 0.93);
}

.shopcar-unavailable__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.shopcar-side {
    padding-left: 46px;
    width: 30%;
}

.shopcar-side__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 16px;
    font-weight: 400;
}

.shopcar-side__summary span {
    font-weight: bold;
    color: #FD3E3E;
}

.shopcar-side__summary:not(:first-child) {
    margin-top: 10px;
}

.shopcar-side__divider {
    border-top: none;
    border-bottom: 1px solid #373737;
    margin: 28px 0;
}

.shopcar-side__transport {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4C5362;
    font-size: 14px;
}

.shopcar-side__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    margin-top: 12px;
}

.shopcar-side__total span {
    color: #999;
}

.shopcar-side__total strong {
    font-size: 24px;
    color: #333;
    margin-left: 5px;
}

.shopcar-side__button {
    display: block;
    margin-top: 56px;
    text-align: center;
    padding: 14px 24px;
    color: #fff;
    background-color: var(--primary);
}

.shopcar-empty {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #999;
}

.shopcar-empty img {
    display: block;
    max-width: 250px;
    width: 100%;
}

.submit {
    padding-top: 25px;
    padding-bottom: 25px;
}

.submit .inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 1300px;
}

.submit-main {
    padding-top: 15px;
    padding-right: 60px;
    padding-bottom: 30px;
    width: 60%;
    border-right: 1px solid #D6D6D6;
}

.submit-quickly {
    margin-top: 26px;
}

.submit-quickly__title {
    font-size: 14px;
    color: #707070;
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
}

.submit-quickly__group {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-top: -12px;
}

.submit-quickly__item {
    padding-left: 12px;
    padding-top: 12px;
    width: 33.333%;
}

.submit-quickly__link {
    display: block;
}

.submit-quickly__link img {
    display: block;
    width: 100%;
}

.submit-divider {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 25px;
}

.submit-divider::before,
.submit-divider::after {
    content: "";
    height: 1px;
    background-color: #DEDEDE;
    flex: 1;
}

.submit-divider__label {
    display: inline-block;
    padding-left: 14px;
    padding-right: 14px;
    color: #707070;
    font-size: 14px;
}

.submit-form {
    margin-top: 50px;
}

.submit-field__item:not(:first-child) {
    margin-top: 30px;
}

.submit-field__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submit-field__title {
    font-size: 17px;
    color: #000;
    font-weight: 600;
    line-height: 1.6;
}

.submit-field__login {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.submit-field__link {
    color: var(--primary);
}

.submit-field__content {
    margin-top: 15px;
}

.submit-field__content .field+.field {
    margin-top: 14px;
}

.submit-field__select {
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    width: 100%;
    height: 50px;
    padding-left: 12px;
    padding-right: 12px;
}

.submit-field__select:focus {
    outline-color: var(--primary);
}

.submit-field__row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -14px;
    margin-top: -14px;
}

.submit-field__row>* {
    width: calc(50% - 14px);
    margin-left: 14px;
    margin-top: 14px;
}

.submit-field__question {
    position: relative;
    cursor: pointer;
}

.submit-field__upload {
    width: 100%;
    height: 150px;
    border: 1px dashed #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.submit-field__upload icon-font {
    font-size: 24px;
    color: #444;
}

.submit-field__upload input {
    display: none;
}

.submit-field__upload img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.submit-field__button {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

/* .express{ font-size: 14px; display: flex; align-items: center; margin-bottom: 5px; height: 30px;  }
.express label{ padding: 0 10px;cursor: pointer; } */

.submit-field__btn {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    padding: 12px 22px;
    border-radius: 5px;
    min-width: 128px;
    background-color: var(--primary);
    text-align: center;
    border: none;
    cursor: pointer;
    width: 100%;
    outline: none;
}

.submit-main__footer {
    margin-top: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #eee;
}

.submit-footer__nav {
    display: flex;
    flex-wrap: wrap;
    margin-left: -14px;
    margin-top: -10px;
}

.submit-nav__item {
    font-size: 14px;
    margin-left: 14px;
    margin-top: 10px;
    color: #6e8cff;
    transition: all 0.3s ease;
}

.submit-nav__item:hover {
    color: var(--primary);
}

.submit-side {
    padding-left: 45px;
    padding-top: 67px;
    padding-bottom: 30px;
    flex: 1 0 0;
}


.submit-side__item {
    display: flex;
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
}

.submit-side__image {
    position: relative;
    width: 64px;
    height: 64px;
}

.submit-side__image .adaptor {
    border-radius: 10px;
    border: 1px solid #D6D6D6;
    overflow: hidden;
}

.submit-side__badge {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50%) translate(40%);
    background-color: #EB2606;
    color: #fff;
    font-size: 12px;
    padding: 0 6px;
    border-radius: 11px;
    height: 20px;
    display: flex;
    align-items: center;
}

.submit-side__title {
    flex: 1 0 0;
    font-size: 15px;
    color: #333;
    line-height: 1.4;
    margin-left: 14px;

    display: -webkit-box;

    -webkit-box-orient: vertical;
}

.submit-side__price {
    font-size: 14px;
    color: #000;
    line-height: 1.4;
    margin-left: 14px;
}

.submit-side__coupon {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.submit-side__btn {
    margin-left: 10px;
    height: 50px;
    border-radius: 6px;
    color: #fff;
    background-color: var(--primary);
    border: none;
    cursor: pointer;
    padding: 15px 25px;
    white-space: nowrap;
}

.submit-side__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #000;
    margin-top: 20px;
}

.submit-side__transport {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-top: 12px;
}

.submit-side__transport span {
    color: #666;
    font-size: 14px;
}

.submit-side__transport icon-font {
    font-size: 20px;
    color: #666;
}

.submit-side__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 17px;
}

.submit-side__total span {
    font-size: 14px;
    color: #666;
}

.submit-side__total strong {
    font-size: 17px;
    font-weight: 400;
    color: #000;
    margin-left: 5px;
}

.submit .field-wrapper {
    border: 1px solid #DEDEDE;
    border-radius: 5px;
}

.submit-field__label {
    margin-right: 5px;
    font-size: 14px;
    color: #707070;
}

.submit-field__suffix {
    color: var(--primary);
    font-size: 14px;
    cursor: pointer;
    margin-left: 5px;
}

.submit-member_info {
    display: flex;
}

.submit-member__item{

    margin: 0 10px;

}


.submit-online {
    margin-top: 45px;
}

.submit-offline__title,
.submit-online__title {
    margin: 0;
    color: #333;
    font-size: 18px;
    margin-top: 20px;
}

.submit-online__content {
    margin-top: 15px;
}

.submit-online__item+.submit-online__item {
    border-top: 1px dashed #eee;
}

.submit-online__item .checkbox {
    display: flex;
    font-size: 14px;
}

.submit-online__image {
    width: 145px;
    margin-left: auto;
    margin-right: 0;
    display: block;
}

.submit-offline {
    display: flow-root;
}

.submit-offline__content {
    margin-top: 15px;
    display: flow-root;
}

.submit-offline__group {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-top: -10px;
}

.submit-offline__item {
    margin-left: 10px;
    margin-top: 10px;
    display: flex; justify-content: space-between; width: 100%;
}

.submit-offline__total {
    text-align: right;
    color: #ff4444;
    font-size: 16px;
    text-align: right;
}

.submit-offline__other {
    margin-left: -10px;
    margin-top: -10px;
    font-size: 14px;
}

.submit-offline__copy {
    margin-left: 5px;
    font-size: 12px;
    color: var(--primary);
    display: inline-block;
    cursor: pointer;
    line-height: 19px;
}

.submit-offline__qrcode {
    position: relative;
    width: 200px;
    height: 200px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.submit-offline__qrcode .adaptor {
    padding: 10px;
}


.pay-methed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 170px;
}

.paybox .offline {
    justify-content: start;
}

.offline input {

    margin-right: 10px;
}

.detail-goods {
    padding-top: 75px;
    padding-bottom: 75px;
}

.detail-goods .inner {
    display: flex;
    align-items: flex-start;
    max-width: 1340px;
}

.detail-goods__main {
    width: 60%;
    display: flex;
}

.detail-goods__side {
    width: 50px;
    margin-right: 17px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 24px;
}

.detail-goods__thumb {
    position: relative;
    max-height: 380px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.detail-goods__thumb #thumb {
    height: 100%;
}

.detail-goods__thumb .swiper-slide {
    height: auto;
}


.detail-goods__thumb-image {
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    border: 1px solid #eee;
}

.swiper-slide-thumb-active .detail-goods__thumb-image {
    border-color: var(--primary);
}

.detail-goods__prev,
.detail-goods__next {
    position: absolute;
    z-index: 1;
    width: 100%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
}

.detail-goods__prev.swiper-button-disabled,
.detail-goods__next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.detail-goods__thumb icon-font {
    display: flex;
}

.detail-goods__prev {
    top: 0;
}

.detail-goods__next {
    bottom: 0;
}

.detail-goods__thumb-image .adaptor {
    padding: 5px;
}

.detail-goods__thumb-image img {
    object-fit: contain;
}

.detail-goods__images {
    border: 1px solid #eee;
    flex: 1 0 0;
    overflow: hidden;
}

.detail-goods__preview {
    position: relative;
    padding-bottom: 100%;
}

.detail-goods__preview .adaptor {
    padding: 5%;
}

.detail-goods__preview img {
    object-fit: contain;
}

.detail-goods__info {
    display: flow-root;
    padding-left: 45px;
    flex: 1 0 0;
    overflow: hidden;
}

.detail-goods__tags {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-top: -8px;
}

.detail-goods__tag {
    margin-left: 8px;
    margin-top: 8px;
    font-size: 12px;
    padding: 4px 12px;
    color: #fff;
    background-color: #EB2606;
}

.detail-goods__title {
    color: #000;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 8px;
}

.detail-goods__category {
    color: #999;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
}

.detail-goods__price {
    margin-top: 14px;
    color: #333;
    font-family: Arial, serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

.detail-goods__price del {
    color: #999;
    font-size: 15px;
    font-weight: 400;
    margin-left: 10px;
}

.detail-goods__sku {
    margin-top: 85px;
    margin-bottom: 18px;
}

.detail-goods__sku .swiper-slide {
    width: 80px;
}

.detail-sku__image {
    color: #eee;
    border: 1px solid currentColor;
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
}

.detail-sku__image:hover {
    color: var(--primary);
}

.detail-sku__image .adaptor {
    padding: 8px;
}

.detail-sku__image img {
    object-fit: contain;
}

.detail-goods__row {
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.detail-goods__label {
    color: #646464;
    flex: 0 0 50px;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    line-height: 27px;
}

.detail-goods__sku-group {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-top: -10px;
}


.detail-goods__sku-item {
    position: relative;
    margin-left: 10px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    color: #999;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    border: 1px solid var(--primary);
    padding: 3px 14px;
    border-radius: 4px;
    overflow: hidden;
}

.detail-goods__sku-item icon-font {
    color: var(--primary);
    position: absolute;
    right: 0;
    bottom: -1px;
    font-size: 20px;
    visibility: hidden;
}

.detail-goods__sku-item.active icon-font {
    visibility: visible;
}

.detail-goods__button {
    display: flex;
    margin-top: 20px;
}

.detail-goods__btn {
    color: #000;
    border: 1px solid #eee;
    display: inline-block;
    padding: 12px 24px;
    text-align: center;
    line-height: 1.6;
    flex: 1 0 0;
}

.detail-goods__btn+.detail-goods__btn {
    margin-left: 50px;
    color: #fff;
    background-color: var(--primary);
    border: none;
}

.detail-goods__share {}

.detail-goods__share-label {
    color: #999;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.detail-goods__share-group {
    margin-top: 15px;
}

.detail-goods__share-item {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.detail-goods__share-link {
    display: block;
    width: 30px;
    height: 30px;
}

.detail-goods__share-link img {
    display: block;
    width: 100%;
    height: 100%;
}

.detail-tail {
    padding-top: 30px;
    padding-bottom: 120px;
}

.detail-tail__title {
    color: #000;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: normal;
    padding-bottom: 45px;
    border-bottom: 1px solid #999;
}

.detail-tail__content {
    display: flow-root;
    margin-top: 45px;
}

.detail-tail__content img {
    max-width: 100%;
}


.detail-drawer {
    position: fixed;
    z-index: 4;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.60);
    display: flex;
    justify-content: flex-end;
}

.detail-drawer__inner {
    height: 100%;
    background-color: #fff;
    width: 365px;
    max-width: 90vw;
}

.detail-drawer__header {
    padding: 24px 48px 24px 24px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.detail-drawer__title {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-drawer__header icon-font {
    position: absolute;
    top: 50%;
    right: 24px;
    display: flex;
    font-size: 24px;
    transform: translateY(-50%);
    cursor: pointer;
}

.detail-drawer__item {
    padding: 32px 21px;
    display: flex;
    align-items: flex-start;
}

.detail-drawer__item+.detail-drawer__item {
    border-top: 1px solid #eee;
}

.detail-drawer__image {
    position: relative;
    width: 80px;
    height: 80px;
}

.detail-drawer__info {
    margin-left: 8px;
}

.detail-drawer__text {
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.detail-drawer__count {
    color: var(--primary);
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
}

.detail-drawer__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.detail-drawer__price span {
    color: var(--primary);
    font-size: 16px;
    font-weight: 400;
}

.detail-drawer__delete {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    text-decoration-line: underline;
}

.detail-drawer__total {
    padding: 32px 21px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.detail-drawer__summary {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
}

.detail-drawer__transport {
    margin-top: 14px;
    font-size: 15px;
    color: #4C5362;
}

.detail-drawer__transport icon-font {
    font-size: 20px;
    cursor: pointer;
}

.detail-drawer__button {
    padding: 32px 21px;
    display: flex;
    flex-wrap: wrap;
}

.detail-drawer__btn {
    flex: 1 0 0;
    text-align: center;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    padding: 14px 24px;
    border: 1px solid #cdcdcd;
}

.detail-drawer__btn+.detail-drawer__btn {
    margin-left: 12px;
    color: #fff;
    border: none;
    background-color: var(--primary);
}

.query {
    padding-top: 50px;
    padding-bottom: 50px;
}

.query-title {
    text-align: center;
    margin: 0;
}

.query-content {
    margin-top: 45px;
}

.query-form {
    width: 100%;
    max-width: 600px;
    padding-left: 25px;
    padding-right: 25px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.query-list {
    margin-top: 45px;
}

.query-list__item {
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    transition: all 0.3s ease;
}

.query-list__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
}

.query-list__item+.query-list__item {
    margin-top: 22px;
}

.query-list__link {
    display: block;
}

.query-list__header {
    background-color: #fff7f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
}

.query-list__date {
    font-size: 14px;
    color: #666;
}

.query-list__body {
    border-top: 1px solid #eee;
    padding: 0 12px;
}

.query-list__row {
    display: flex;
    align-items: center;
    color: #666;
    padding-top: 12px;
    padding-bottom: 12px;
}

.query-list__row+.query-list__row {
    border-top: 1px solid #eee;
}

.query-list__image {
    width: 100px;
    position: relative;
    margin-right: 15px;
    padding-bottom: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.query-list__main {
    align-self: flex-start;
    flex: 1;
    width: 0;
}

.query-list__name {
    margin-right: 8px;
    color: #333;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.query-list__spec {
    font-size: 14px;
    margin-top: 8px;
}

.query-list__count {
    font-size: 14px;
    margin-top: 8px;
}

.query-list__price {
    margin-top: 8px;
    color: red;
    font-size: 15px;
}

.query-list__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-top: 1px solid #eee;

}

.query-list__state {
    font-size: 15px;
    color: #444;
    display: flex;
    flex-wrap: wrap;
}

.query-list__total {
    margin-left: 8px;
}

.query-list__action span {
    font-size: 15px;
}

.query-list__btn {
    display: inline-block;
    line-height: 25px;
    padding: 8px 24px;
    border-radius: 4px;
    color: #fff;
    background-color: var(--primary);
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin-left: 8px;
}

.query-list__empty {
    margin-top: 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.query-list__more {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.query-list__more span {
    cursor: pointer;
    transition: color 0.3s ease;
}

.query-list__more span:hover {
    color: var(--primary);
}

.query-upload {
    width: 100%;
    margin-top: 45px;
}

.query-upload__tabs {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    border-bottom: 1px solid #eee;
}

.query-upload__tabs::-webkit-scrollbar {
    display: none;
}

.query-upload__tab {
    flex-shrink: 0;
}

.query-upload__tab+.query-upload__tab {
    margin-left: 15px;
}

.query-upload__label {
    display: block;
    cursor: pointer;
    font-size: 15px;
}

.query-upload__label input {
    display: none;
}

.query-upload__label span {
    display: block;
    position: relative;
    padding-bottom: 12px;
    transition: color 0.3s ease;
}

.query-upload__label span:hover {
    color: var(--primary);
}

.query-upload__label span::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    content: "";
    display: block;
    width: 50px;
    max-width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.3s ease;
}

.query-upload__label input:checked~span {
    color: var(--primary);
}

.query-upload__label input:checked~span::after {
    color: currentColor;
    transform: translateX(-50%) scaleX(1);
}

.query-upload__container {
    margin-top: 25px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.query-upload__info {
    background-color: #fffbfb;
    padding: 16px;
    font-size: 14px;
    width: 30%;
    max-width: 350px;
    border-radius: 6px;
    margin-left: 25px;
}

.query-upload__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
}

.query-upload__row+.query-upload__row {
    margin-top: 12px;
}

.query-upload__row strong {
    font-weight: normal;
    color: var(--primary);
}

.query-upload__main {
    flex: 1 0 0;
    display: flex;
    align-items: flex-start;
    border-right: 1px solid #eee;
    padding-right: 30px;
}

.query-upload__condition {
    flex: 1 0 0;
    margin-right: 30px;
    padding-right: 30px;
}

.query-upload__title {
    color: #333;
    font-size: 18px;
}

.query-upload__title~.query-upload__title {
    margin-top: 25px;
}

.query-upload__content {
    margin-top: 25px;
    display: flow-root;
}

.query-upload__group {
    margin-left: -10px;
    margin-top: -10px;
    font-size: 14px;
}

.query-upload__item {
    margin-left: 10px;
    margin-top: 10px;
}

.query-upload__flex {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
    margin-left: -10px;
}


.query-upload__qrcode {
    position: relative;
    width: 200px;
    height: 200px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.query-upload__qrcode .adaptor {
    padding: 10px;
}

.query-upload__buttons {
    display: flex;
    margin-top: 25px;
    justify-content: end;
}

.query-upload__button {
    padding: 12px 24px;
    display: inline-block;
    border-radius: 5px;
    border: none;
    background-color: var(--primary);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.query-upload__rollback {
    padding: 12px 24px;
    display: inline-block;
    border-radius: 5px;
    border: 1px solid currentColor;
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    margin-left: 16px;
    text-align: center;
}


.query-upload__area {
    border: 1px dashed #ddd;
    width: 220px;
    height: 150px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.query-upload__area:hover {
    color: var(--primary);
    border-color: currentColor;
}

.query-upload__area input {
    display: none;
}

.query-upload__preview {
    width: 100%;
    height: 100%;
}

.query-upload__preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.query-upload__help {
    margin-top: 12px;
    text-align: right;
}

.query-upload__link {
    transition: color 0.3s ease;
    color: #555;
}

.query-upload__link icon-font {
    font-size: 1.25em;
}

.query-upload__link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.query-upload__tip {
    text-align: center;
    font-size: 20px;
}

.query-upload__tip p {
    margin-top: 8px;
    font-size: 14px;
}

.query-upload__result {
    width: 100%;
    text-align: center;
}

.query-upload__result icon-font {
    font-size: 32px;
    color: var(--primary);
}

.query-upload__back {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    padding: 8px 24px;
    line-height: 1.5;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    background-color: var(--primary);
    margin-top: 40px;
}

/* 支付結果頁面 */
.payment {
    padding: 70px 0;
    height: 100%;
    box-sizing: border-box;
}

.payment .inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-content {
    text-align: center;
}

.payment-content icon-font[name="success"] {
    color: #16AA68;
    font-size: 35px;
    margin-right: 6px;
}

.payment-content icon-font[name="error"] {
    color: #F4420A;
    font-size: 26px;
    margin-right: 10px;
}

.payment-state {
    display: flex;
    align-items: center;
    transition: all 0.3s;
    justify-content: center;
}

.payment-info {
    margin-top: 20px;
}

.payment-info__item {
    color: #999;
}

.payment-info__item+.payment-info__item {
    margin-top: 10px;
}

.payment-back {
    margin-top: 20px;
}

.payment-back .button {
    background-color: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
}

.payment-submit__button {
    margin-top: 20px;
}

.payment-submit__btn {
    background-color: var(--primary);
    color: #fff;
    border-radius: 4px;
    padding: 5px 24px;
    line-height: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
}

.payment-submit__btn.active {
    visibility: visible;
    opacity: 1;
}

.vue-dialog {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    padding: 15px;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    animation: show 0.3s ease;
}


@keyframes show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}


.vue-dialog__mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.vue-dialog__inner {
    width: 100%;
    max-width: 1200px;
    background-color: #fff;
    border-radius: 8px;
    z-index: 1;
    height: 100%;
    max-height: 650px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    animation: slideIn 0.2s ease;
    animation-fill-mode: forwards;
    animation-delay: 0.1s;
    transform: translateY(-20px);
}

.vue-dialog__header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.vue-dialog__title {
    flex: 1 0 0;
    overflow: hidden;
    font-size: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vue-dialog__header icon-font {
    cursor: pointer;
    font-size: 28px;
    color: #666;
    display: flex;
}

.vue-dialog__body {
    padding: 10px 20px;
    flex: 1 0 0;
    overflow-y: auto;
    word-break: break-word;
}

.vue-dialog__footer {
    padding: 10px 20px;
}