body {
    margin: 0 !important;
}

.only-mobile {
    display: none;
}

.focus {
    display: flex;
    height: 310px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.focus img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.focus .header-titles {
    position: relative;
    top: -2px;
}

.focus .header-titles .title {

    font-size: 56px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
    font-weight: 500;
}

.focus .header-titles .sub-title {

    font-size: 40px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

#crumbs {
    background-color: white;
}

.crumbs {
    padding: 10px 0;

    font-size: 14px;
    color: #999999;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.crumbs a {

    font-size: 14px;
    color: #525252;
    letter-spacing: 0;
}

.crumbs i {
    color: #525252;
    font-size: 18px;
}

.crumbs span {}

.describe-layout {
    display: flex;
    flex-direction: row;
    gap: 68px;
}

.describe-layout .text {
    width: 42%;
    padding-bottom: 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 2
}

.describe-layout .text .block-titles {}

.describe-layout .text .block-titles .sub-title {
    opacity: 0.06;

    font-size: 100px;
    color: #0D1851;
    letter-spacing: 0;
    font-weight: 900;
    line-height: 90px;
    text-transform: uppercase;
    position: relative;
}

.describe-layout .text .block-titles .title {

    font-size: 52px;
    color: #2F3243;
    letter-spacing: 0;
    font-weight: 500;
}

.describe-layout .text .intro {
    font-size: 18px;
    color: #2F3243;
    letter-spacing: 1px;
    text-align: justify;
    line-height: 30px;
    margin-top: 26px;
    white-space: pre-wrap;
}

.describe-layout .impression {
    height: 513px;
    flex-grow: 1;
}

.describe-layout .impression img {
    object-fit: cover;
    height: 100%;
}


.container .more {
    text-align: center;
    padding: 26px 0;
}

.container .more a.more-btn {
    border: 1px solid #DDDDDD;
    background: var(--primary-color);
    color: #fff;
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 40px;

    font-size: 18px;
    letter-spacing: 0;
    text-align: center;
    border-radius: 5px;
    padding: 4px 40px;
}


#messageForm {
    background: url('../assets/images/form_bg.png');
    background-size: 100% 100%;
}

#messageForm .container {
    display: flex;
    flex-direction: row;
    padding: 96px 10px 110px;
    gap: 9px;
}

#messageForm .infos {
    padding: 88px 35px;
    width: 642px;
    flex-shrink: 0;
}

#messageForm .infos .wrapper {
    position: sticky;
    top: 96px;
}

#messageForm .infos .en-title {
    opacity: 0.5;

    font-size: 50px;
    color: #0D1851;
    letter-spacing: 0;
    line-height: 60px;
    font-weight: 700;
    text-transform: uppercase;
}

#messageForm .infos .title {

    font-size: 52px;
    color: #2F3243;
    letter-spacing: 0;
    font-weight: 500;
    margin-top: 4px;
}

#messageForm .infos .sub-title {
    opacity: 0.5;

    font-size: 20px;
    color: #2F3243;
    letter-spacing: 0;
    text-align: justify;
    line-height: 38px;
    margin-top: 37px;
    padding-right: 250px;
}

#messageForm .infos .contacts {
    border-top: 1px solid white;
    margin-top: 26px;
    padding-top: 42px;
    display: flex;
    gap: 94px;
}

#messageForm .infos .contacts .item {}

#messageForm .infos .contacts .item .label {
    opacity: 0.49;

    font-size: 21px;
    color: #2F3243;
    letter-spacing: 0;
}

#messageForm .infos .contacts .item .value {

    font-size: 24px;
    color: #2F3243;
    letter-spacing: 0;
    font-weight: 500;
}

#messageForm .form-layout {
    flex-grow: 1;
    background: white;
    padding: 34px 58px;
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    margin-right: 30px;
    margin-top: 40px;
}

#messageForm .form-layout .content {}

#messageForm .form-layout .content .message {}

#messageForm .form-layout .content .items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

#messageForm .form-layout .content .items .item {
    grid-column: span 2 / span 2;
}

#messageForm .form-layout .content .items .item.half {
    grid-column: span 1 / span 1;
}

#messageForm .form-layout .content .items .item .label {

    font-size: 18px;
    color: #2F3243;
    letter-spacing: 0;
    line-height: 25px;
}

#messageForm .form-layout .content .items .item .label.required:after {
    content: '*';

    font-size: 18px;
    color: #D9044A;
    letter-spacing: 0;
    line-height: 25px;
    font-weight: 700;
}

#messageForm .form-layout .content .items .item .value {}

#messageForm .form-layout .content .items .item .value input {}

#messageForm .form-layout .content .items .item .value input,
#messageForm .form-layout .content .items .item .value textarea {
    background: #FFFFFF;
    border: 1px solid #DDDFE1;
    border-radius: 6px;
    width: 100%;
    padding: 10px 17px;
    margin-top: 4px;

    font-size: 18px;
    color: #2F3243;
}

#messageForm .form-layout .content .items .item .value textarea {
    height: 169px;
}

#messageForm .form-layout .content .buttons {
    margin-top: 23px;
}

#messageForm .form-layout .content .buttons button {

    font-size: 20px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
    font-weight: 500;
    width: 100%;
    border-radius: 8px;
    height: 56px;
    line-height: 43px;
    background: var(--primary-color);
}

.full-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    align-items: center;
    justify-content: center;
    display: none;
}

.full-layer .mask {
    background-color: rgba(0, 0, 0, 0.24);
    width: 100%;
    height: 100%;
    position: absolute;
}

.full-layer .wrapper {
    position: relative;
}

.full-layer .wrapper .close {
    top: -44px;
    right: 4px;
    color: white;
    font-size: 28px;
}

#sales-card {}

#sales-card .wrapper {
    width: 300px;
    height: 360px;
}

#sales-card .wrapper .close,
#sales-card .wrapper .bg {
    position: absolute;
}

#sales-card .wrapper .has-qrcode,
#sales-card .wrapper .no-qrcode {
    height: 100%;
    width: 100%;
}

#sales-card .wrapper .has-qrcode>*,
#sales-card .wrapper .no-qrcode>* {
    position: absolute;
}

#sales-card .bg {}

#sales-card .has-qrcode .photo {
    width: 64px;
    height: 64px;
    top: 35px;
    left: 44px;
    border-radius: 999px;
    padding: 2px;
    background: white;
}

#sales-card .has-qrcode .name {
    top: 42px;
    left: 118px;

    font-size: 18px;
    color: #2F3243;
    letter-spacing: 0;
    line-height: 25px;
    font-weight: 500;
}

#sales-card .has-qrcode .title {
    top: 44px;
    left: 182px;

    font-size: 14px;
    color: #2F3243;
    letter-spacing: 0;
    line-height: 25px;
    font-weight: 700;
}

#sales-card .has-qrcode .tag {
    top: 73px;
    left: 118px;

    font-size: 12px;
    color: #525252;
    letter-spacing: 0;
    font-weight: 700;
    background: #FFF6EE;
    padding: 2px;
}

#sales-card .has-qrcode .qr-code {
    width: 128px;
    height: 128px;
    top: 133px;
    left: 86px;
    border-radius: 8px;
    padding: 2px;
    background: white;
}

#sales-card .has-qrcode .tips {
    top: 283px;
    left: 63px;

    font-size: 14px;
    color: #525252;
    letter-spacing: 0;
    text-align: center;
    line-height: 22px;
    font-weight: 700;
    width: 180px;
}

#sales-card .no-qrcode {
    background: white;
    border-radius: 10px;
    height:150px !important;
}

#sales-card .no-qrcode .photo {
    width: 64px;
    height: 64px;
    top: 46px;
    left: 30px;
    border-radius: 999px;
    padding: 2px;
    background: white;
}

#sales-card .no-qrcode .name {
    top: 35px;
    left: 110px;
    font-size: 18px;
    color: #2F3243;
    letter-spacing: 0;
    line-height: 25px;
    font-weight: 500;
}

#sales-card .no-qrcode .title {
    top: 38px;
    left: 170px;
    font-size: 14px;
    color: #2F3243;
    letter-spacing: 0;
    line-height: 25px;
    font-weight: 700;
}

#sales-card .no-qrcode .phone {
    top: 65px;
    left: 110px;
    font-size: 16px;
    color: #666;
    letter-spacing: 0;
    line-height: 25px;
    font-weight: 400;
}

#sales-card .no-qrcode .tag {
    top: 95px;
    left: 110px;
    font-size: 12px;
    color: #525252;
    letter-spacing: 0;
    font-weight: 700;
    background: #FFF6EE;
    padding: 4px 8px;
    border-radius: 4px;
}

#sales-card .no-qrcode .qr-code {
    width: 100px;
    height: 100px;
    top: 200px;
    left: 100px;
    border-radius: 8px;
    padding: 2px;
    background: white;
}

#sales-card .no-qrcode .tips {
    top: 315px;
    left: 50px;
    font-size: 12px;
    color: #525252;
    letter-spacing: 0;
    text-align: center;
    line-height: 18px;
    font-weight: 500;
    width: 200px;
}

#wechat-card {}

#wechat-card .wrapper {
    width: 300px;
    height: 360px;
    background: #fff;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#wechat-card .wrapper .close {
    position: absolute;
}

#wechat-card .qr-code {
    width: 128px;
    height: 128px;
    top: 133px;
    left: 86px;
    border-radius: 8px;
    padding: 2px;
    background: white;
}

#wechat-card .tips {
    font-size: 14px;
    color: #525252;
    letter-spacing: 0;
    text-align: center;
    line-height: 22px;
    font-weight: 700;
    width: 154px;
}

.empty-list-wrapper {
    margin: 50px auto 50px;
    text-align: center;
}

.empty-list-wrapper img {
    display: inline;
    width: 360px;
    height: 360px;
    margin: auto;
}

.empty-list-wrapper .text {
    opacity: 0.6;

    font-size: 20px;
    color: #525252;
    letter-spacing: 0;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .only-mobile {
        display: block;
    }

    .only-desktop {
        display: none;
    }

    .container {
        padding: 0 16px;
    }

    .focus {
        display: flex;
        height: 172px;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .focus img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .focus .header-titles {
        position: relative;
        top: -2px;
    }

    .focus .header-titles .title {

        font-size: 32px;
        color: #FFFFFF;
        letter-spacing: 0;
        text-align: center;
        font-weight: 500;
    }

    .focus .header-titles .sub-title {

        font-size: 20px;
        color: #FFFFFF;
        letter-spacing: 0;
        text-align: center;
        font-weight: 700;
    }

    #crumbs {
        background-color: white;
    }

    .crumbs {
        padding: 10px 0;
        display: flex;
        align-items: center;
        gap: 0;

        font-size: 14px;
        color: #999999;
        letter-spacing: 0;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .crumbs a {

        font-size: 14px;
        color: #525252;
        letter-spacing: 0;
    }

    .crumbs i {
        color: #525252;
        font-size: 18px;
    }

    .crumbs span {}

    .describe-layout {
        display: flex;
        flex-direction: column-reverse;
        gap: 68px;
    }

    .describe-layout .text {
        width: auto;
        padding-bottom: 24px;
        flex-shrink: 0;
        margin: -111px 10px 0;
        background: white;
        box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.10);
        border-radius: 8px;
    }

    .describe-layout .text .block-titles {}

    .describe-layout .text .block-titles .sub-title {
        display: none;
    }

    .describe-layout .text .block-titles .title {
        font-size: 25px;
        text-align: center;
        padding: 25px 0 0 0;
    }

    .describe-layout .text .intro {
        margin-top: 15px;
        white-space: pre-wrap;

        font-size: 14px;
        color: #595B69;
        letter-spacing: 0;
        text-align: justify;
        padding: 0 23px;
        line-height: 24px;
    }

    .describe-layout .impression {
        height: 160px;
        flex-grow: 1;
    }

    .describe-layout .impression img {
        object-fit: cover;
        height: 160px;
        border-radius: 8px;
        width: 100%;
    }


    .container .more {
        text-align: center;
        padding: 19px 0;
    }

    .container .more a.more-btn {
        border: 1px solid #DDDDDD;
        background: var(--primary-color);
        color: #fff;
        display: inline-block;
        width: 130px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 5px;
        font-size: 16px;
        letter-spacing: 0;
        padding: 0;
    }


    #messageForm {
        background: url('../assets/images/form_bg.png');
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: 0px 136px;
    }

    #messageForm .container {
        display: flex;
        flex-direction: column;
        padding: 0px 16px 36px;
        gap: 9px;
    }

    #messageForm .infos {
        padding: 55px 0px 20px;
        width: auto;
        flex-shrink: 0;
        text-align: center;
    }

    #messageForm .infos .wrapper {
        position: sticky;
        top: 96px;
    }

    #messageForm .infos .en-title {
        text-transform: uppercase;
        opacity: 0.5;

        font-size: 26px;
        color: #0D1851;
        letter-spacing: 0;
        text-align: center;
        line-height: 32px;
        font-weight: 700;
    }

    #messageForm .infos .title {

        font-size: 30px;
        color: #2F3243;
        letter-spacing: 0;
        text-align: center;
        font-weight: 500;
    }

    #messageForm .infos .sub-title {
        margin-top: 22px;
        padding: 0 55px;
        opacity: 0.8;

        font-size: 15px;
        color: #2F3243;
        letter-spacing: 0;
        text-align: center;
        line-height: 25px;
        text-align: center;
    }

    #messageForm .infos .contacts {
        border-top: 1px solid white;
        margin-top: 26px;
        padding-top: 42px;
        display: flex;
        gap: 94px;
        display: none;
    }

    #messageForm .infos .contacts .item {}

    #messageForm .infos .contacts .item .label {
        opacity: 0.49;

        font-size: 21px;
        color: #2F3243;
        letter-spacing: 0;
        font-weight: 700;
    }

    #messageForm .infos .contacts .item .value {

        font-size: 24px;
        color: #2F3243;
        letter-spacing: 0;
        font-weight: 500;
    }

    #messageForm .form-layout {
        flex-grow: 1;
        padding: 24px;
        box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.06);
        margin-right: 0;
        margin-top: 0;
        background: rgba(255, 255, 255, 0.40);
        border: 1px solid #FFFFFF;
        border-radius: 8px;
    }

    #messageForm .form-layout .content {}

    #messageForm .form-layout .content .message {}

    #messageForm .form-layout .content .items {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 10px;
    }

    #messageForm .form-layout .content .items .item {
        grid-column: span 2 / span 2;
    }

    #messageForm .form-layout .content .items .item.half {
        grid-column: span 1 / span 1;
    }

    #messageForm .form-layout .content .items .item .label {

        font-size: 15px;
        color: #2F3243;
        letter-spacing: 0;
        line-height: 21px;
    }

    #messageForm .form-layout .content .items .item .label.required:after {
        content: '*';
        color: #D9044A;

        font-size: 15px;
        letter-spacing: 0;
        line-height: 21px;
        font-weight: 700;
    }

    #messageForm .form-layout .content .items .item .value {}

    #messageForm .form-layout .content .items .item .value input {}

    #messageForm .form-layout .content .items .item .value input,
    #messageForm .form-layout .content .items .item .value textarea {
        background: #FFFFFF;
        border: 1px solid #DDDFE1;
        border-radius: 6px;
        width: 100%;
        padding: 6px 10px;
        margin-top: 4px;

        font-size: 14px;
        color: #2F3243;
    }

    #messageForm .form-layout .content .items .item .value textarea {
        height: 169px;

    }

    #messageForm .form-layout .content .buttons {
        margin-top: 23px;
    }

    #messageForm .form-layout .content .buttons button {

        font-size: 16px;
        color: #FFFFFF;
        letter-spacing: 0;
        text-align: center;
        font-weight: 500;
        width: 100%;
        border-radius: 8px;
        height: 40px;
        line-height: 26px;
    }


    .empty-list-wrapper {}

    .empty-list-wrapper img {
        width: 240px;
        height: auto;
    }

    .empty-list-wrapper .text {
        font-size: 16px;
    }
}

