/* top-banner */
.top-banner {
    --margin-bottom: 60px;

    position: relative;
    padding: 0;
    margin-bottom: var(--margin-bottom);
}

.top-banner.more-bottom {
    --margin-bottom: 100px;
}

.top-banner .banner-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.top-banner-content {
    position: absolute;
    bottom: calc(var(--margin-bottom) * -1);
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.top-banner-title {
    position: relative;
    min-width: 200px;
    height: 200px;
    width: fit-content;
    padding: 30px;
    background: var(--light-color);
    font-size: 40px;
    color: var(--white-color);
}

.top-banner-title.yellow {
    background: var(--yellow-color);
    color: var(--light-color);
}

.top-banner-title.green {
    background: var(--green-color);
}

.top-banner-title.brown {
    background: var(--brown-light-color);
    color: var(--brown-color);
}

.top-banner-title.deep-brown {
    background: #A2601A;
}

.top-banner-title.has-small {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main[data-lang="cn"] .handing-text {
    text-indent: 2em hanging;
}

main[data-lang="cn"] .handing-default-text {
    text-indent: 2em;
}

main[data-lang="cn"] .handing-pre-text {
    padding-left: 4em;       /* 后面所有行 = 缩进4格 */
    text-indent: -2em;       /* 首行往回拉 = 最终只缩进2格 */
}

.top-banner-title .small {
    font-size: 16px;
}

.legal-banner .top-banner-title {
    background: var(--gray-color);
    color: var(--text-deep-color);
}

.legal-banner .top-banner-title::before,
.legal-banner .top-banner-title::after {
    background: var(--text-deep-color);
}

.legal-banner .top-banner-desc {
    color: var(--text-deep-color);
}

.legal-banner .top-banner-breadcrunmb svg {
    color: var(--text-deep-color);
}

.legal-content {
    color: #0E1F43;
}

.legal-content .base-maxwidth {
    position: relative;
}

.legal-content .base-maxwidth>*:not(.not-top) {
    margin-top: 30px;
}

.legal-content .base-maxwidth>*:first-child {
    margin-bottom: 60px;
}

.legal-title {
    font-size: 22px;
}

.legal-content a {
    color: var(--light-color);
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content li {
    list-style: disc;
    margin-left: 20px;
}

.legal-content .handing-default-text:has(li) {
    text-indent: 0;
}
.legal-content .handing-default-text li {
    margin-left: calc(20px + 2em);
}
.legal-content .handing-default-text .handing-default-text li {
    margin-left: 2em;
}

.legal-content li:has(ul) {
    list-style: none;
}

.legal-content li:has(ul) li {
    list-style: circle;
}

.legal-content li + li {
    margin-top: 10px;
}

.legal-content .base-maxwidth>h3:not(.not-top) {
    margin-top: 40px;
}

.legal-content .base-maxwidth>h3 ~ *:not(.not-top) {
    margin-top: 20px;
}

.legal-content table {
    max-width: 1200px;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--gray-color);
}

.legal-content table th,
.legal-content table td {
    padding: 5px 10px;
    border: 1px solid var(--gray-color);
}

.legal-content table th:first-child,
.legal-content table td:first-child {
    text-align: center;
}

.legal-content table thead {
    background: var(--text-secondary-color);
}

@keyframes heightAni {
    from {
        height: 0;
    }
    to {
        height: var(--height-size);
    }
}

@keyframes scaleAni {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.top-banner-title::before,
.top-banner-title::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 0;
    background: var(--white-color);
}

.top-banner-title.yellow::before,
.top-banner-title.yellow::after {
    background: var(--light-color);
}

.top-banner-title.brown::before,
.top-banner-title.brown::after {
    background: var(--brown-color);
}

.top-banner-title::before {
    right: 18px;
    bottom: 36px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    transform: scale(0);
    animation: scaleAni 1s ease-in-out forwards 1s;
}

.top-banner-title::after {
    --height-size: 38px;

    width: 1px;
    animation: heightAni 1s ease-in-out forwards;
}

.top-banner-desc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: var(--white-color);
}

.top-banner-desc.contact-us {
    top: 40%;
}


.top-banner-breadcrunmb {
    margin-bottom: 10px;
    color: var(--text-light-color);
}

.top-banner-breadcrunmb svg {
    color: var(--light-color);
}

.top-banner-breadcrunmb a:hover {
    text-decoration: underline;
}

.lang-switch {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}


@media (max-width: 1480px) {
    .top-banner .banner-img {
        height: 500px;
    }

    .top-banner-title {
        min-width: 180px;
        height: 180px;
        font-size: 36px;
    }

    .top-banner-desc.contact-us {
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .top-banner.more-bottom,
    .top-banner {
        --margin-bottom: 50px;
    }

    .top-banner .banner-img {
        height: 440px;
    }

    .top-banner-title {
        min-width: 160px;
        height: 160px;
        font-size: 32px;
        padding: 25px 30px;
    }

    .legal-content .base-maxwidth>*:not(.not-top) {
        margin-top: 20px;
    }

    .legal-content .base-maxwidth>*:first-child {
        margin-bottom: 40px;
    }

    .legal-content li {
        list-style: disc;
        margin-left: 20px;
    }

    .legal-content li + li {
        margin-top: 5px;
    }

    .legal-content .base-maxwidth>h3:not(.not-top) {
        margin-top: 20px;
    }

    .legal-content .base-maxwidth>h3 ~ *:not(.not-top) {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .top-banner.more-bottom,
    .top-banner {
        --margin-bottom: 40px;

        height: 200px;
    }

    .top-banner-desc {
        top: 40%;
    }

    .top-banner-desc h2 {
        font-size: 20px;
    }

    .top-banner h2 + div,
    .top-banner-desc h2 + p {
        font-size: 13px;
    }

    .top-banner .banner-img {
        height: 100%;
    }

    .top-banner-content {
        gap: 5px;
        padding: 0 10px;
    }

    .top-banner-title {
        min-width: 80px;
        height: 80px;
        font-size: 18px;
        padding: 20px;
    }
    
    .top-banner-title::before {
        width: 7px;
        height: 7px;
        right: 9px;
        bottom: 37px;
    }

    .top-banner-title::after {
        right: 12px;
        bottom: 0;
    }

    .top-banner-title .small {
        font-size: 14px;
    }

    .top-banner-breadcrunmb {
        margin-bottom: 0;
        font-size: 14px;
    }

    .top-banner-breadcrunmb svg {
        width: 12px;
        height: 12px;
    }

    .legal-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .top-banner-breadcrunmb {
        font-size: 12px;
    }
}

@media (max-width: 390px) {
    .top-banner-title {
        font-size: 16px;
    }
}

@media (max-width: 375px) {
    .top-banner-title {
        font-size: 14px;
    }
}

/* top-banner */

/* strive-area */
.strive-area {
    padding-bottom: 100px;
}

.strive-left {
    max-width: 780px;
    width: 100%;
    flex-shrink: 0;
}

.strive-left h2+p {
    margin: 30px 0;
}

.strive-list {
    margin-top: 60px;
    color: var(--light-color);
}

.strive-list-title {
    margin: 12px 0 8px;
}

.strive-list-title+p {
    color: var(--text-light-color);
}

.strive-right {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin-left: 70px;
}

.strive-fixed {
    position: absolute;
    bottom: 50px;
    left: -50px;
    width: 137px;
    height: 137px;
    z-index: 5;
}

/* strive-area 响应式 —— 1480 以下自动上下布局

/* 1480px 以下 → 上下布局 */
@media (max-width: 1200px) {
    .strive-area {
        padding-bottom: 80px;
    }

    .strive-area .base-maxwidth {
        flex-direction: column;
    }

    .strive-left,
    .strive-right {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
    }

    .strive-right {
        max-width: 600px;
        margin: 40px auto 0;
    }

    .strive-list {
        margin-top: 45px;
    }

    .strive-fixed {
        width: 120px;
        height: 120px;
        bottom: 30px;
        left: -30px;
    }
}

/* Pad 1024px */
@media (max-width: 1024px) {
    .strive-area {
        padding-bottom: 70px;
    }

    .strive-left h2+p {
        margin: 25px 0;
    }

    .strive-list {
        margin-top: 40px;
    }

    .strive-right {
        margin-top: 35px;
    }

    .strive-fixed {
        width: 110px;
        height: 110px;
    }
}

/* 手机 768px */
@media (max-width: 768px) {
    .strive-area {
        padding-bottom: 60px;
    }

    .strive-left h2+p {
        margin: 20px 0;
    }

    .strive-list {
        margin-top: 20px;
    }

    .strive-right {
        margin-top: 30px;
    }

    .strive-fixed {
        width: 100px;
        height: 100px;
        bottom: 20px;
        left: -20px;
    }
}

/* 小屏手机 380px */
@media (max-width: 480px) {
    .strive-list {
        gap: 15px;
        flex-wrap: wrap;
    }

    .strive-list li {
        width: calc(50% - 15px);
    }

    .strive-fixed {
        width: 80px;
        height: 80px;
    }
}

/* strive-area */

/* beyond-area */
.beyond-area {
    background: var(--blue-light-color);
}

.beyond-area p {
    color: var(--text-light-color);
}

@media (max-width: 1200px) {
    .beyond-area p {
        margin-top: 10px;
    }

}

/* beyond-area */

/* inventory-area */

.inventory-area h2+p {
    color: var(--text-light-color);
}

.inventory-list {
    --inventory-gap-x: 145px;
    --inventory-gap-y: 50px;

    margin-top: calc(var(--inventory-gap-y) + 10px);
    flex-wrap: wrap;
    gap: 60px var(--inventory-gap-x);
}

.inventory-item {
    --data-color: var(--light-color);

    display: flex;
    width: calc((100% - (var(--inventory-gap-x) * 2)) / 3);
}

.inventory-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 78px;
    height: 78px;
    margin-right: 20px;
    border-radius: 50%;
    background: var(--data-color);
}

.inventory-item h3 {
    margin: 10px 0;
    font-size: 20px;
}

.inventory-item p {
    color: var(--text-light-color);
}

/* inventory-area 响应式适配 */
@media (max-width: 1680px) {
    .inventory-list {
        --inventory-gap-x: 50px;
        --inventory-gap-y: 40px;
        gap: 50px var(--inventory-gap-x);
    }
}

@media (max-width: 1200px) {
    .inventory-list {
        --inventory-gap-x: 60px;
        --inventory-gap-y: 35px;
    }

    .inventory-icon {
        width: 66px;
        height: 66px;
        margin-right: 16px;
    }

    .inventory-item h3 {
        font-size: 19px;
    }
}

@media (max-width: 991px) {
    .inventory-list {
        --inventory-gap-x: 30px;
        --inventory-gap-y: 30px;
    }

    .inventory-item {
        width: calc((100% - var(--inventory-gap-x)) / 2);
    }

    .inventory-icon {
        width: 62px;
        height: 62px;
    }
}

@media (max-width: 768px) {
    .inventory-list {
        gap: 40px var(--inventory-gap-x);
    }

    .inventory-item h3 {
        font-size: 18px;
    }
}

/* 统一 480px 断点 */
@media (max-width: 480px) {
    .inventory-item {
        width: 100%;
    }

    .inventory-icon {
        width: 58px;
        height: 58px;
        margin-right: 14px;
    }

    .inventory-item h3 {
        font-size: 17px;
    }

    .inventory-item p {
        font-size: 14px;
    }
}

/* inventory-area */

/* solution-right */
.solution-right {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin-left: 70px;
}

.solution-right img {
    border-radius: 30px;
}

.solution-fixed {
    position: absolute;
    bottom: 50px;
    left: -50px;
    width: 137px;
    height: 137px;
}

@media (max-width: 1200px) {
    .solution-right {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
    }

    .solution-right {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* solution-right */

/* lr-content */
.lr-area {
    padding: 100px 0;
}

.lr-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lr-content+.lr-content {
    margin-top: 80px;
}

.lr-left {
    margin-right: 100px;
}

.lr-image {
    position: relative;
    max-width: 800px;
}

.lr-image img {
    border-radius: 30px;
}

.lr-fixed {
    position: absolute;
    left: -55px;
    top: 50%;
    transform: translateY(-50%);
}

.lr-fixed li {
    --data-color: var(--light-color);
    --text-color: var(--white-color);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 178px;
    height: 80px;
    border-radius: 4px;
    color: var(--text-color);
    background: var(--data-color);
    padding: 16px;
    text-align: center;
}

.lr-fixed li+li {
    margin-top: 30px;
}

.lr-fixed-title {
    font-size: 20px;
    font-weight: 700;
}

.lr-fixed-title+p {
    margin-top: 4px;
    font-size: 12px;
}

.lr-text {
    flex-shrink: 0;
    max-width: 660px;
    width: 100%;
}

.lr-text p {
    margin: 25px 0 45px;
}

.lr-default-list li {
    display: flex;
    font-size: 22px;
    font-weight: 700;
}

.lr-default-list li+li {
    margin-top: 30px;
}

.lr-icon,
.lr-default-list li svg:not(.lr-icon>svg) {
    margin-right: 15px;
    color: var(--light-color);
}

.lr-default-list li svg:not(.lr-icon>svg) {
    margin-top: 4px;
}

.lr-spec-list li {
    color: var(--text-color);
}

.lr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-color);
    color: var(--white-color);
}

.lr-spec-list h3 {
    font-size: 22px;
}

.lr-spec-list h3+p {
    margin: 10px 0 0;
    color: var(--text-light-color);
    font-weight: 500;
    font-size: 18px;
}

/* lr-area 三端适配 */
@media (max-width: 1480px) {
    .lr-left {
        margin-right: 60px;
    }

    .lr-image {
        max-width: 700px;
    }

    .lr-fixed {
        left: -40px;
    }

    .lr-fixed li {
        width: 160px;
        height: 74px;
    }
}

@media (max-width: 1200px) {
    .lr-area {
        padding: 80px 0;
    }

    .lr-content {
        flex-direction: column-reverse;
    }

    .lr-content:nth-of-type(2n) {
        flex-direction: column;
    }

    .lr-content+.lr-content {
        margin-top: 60px;
    }

    .lr-left {
        margin-right: 0;
        width: 100%;
    }

    .lr-image {
        max-width: 100%;
        margin-top: 40px;
    }

    .lr-text {
        max-width: 100%;
    }

    .lr-fixed {
        left: 20px;
    }
}

@media (max-width: 991px) {
    .lr-area {
        padding: 60px 0;
    }

    .lr-image img {
        border-radius: 20px;
    }

    .lr-fixed li {
        width: 140px;
        height: 70px;
        padding: 12px;
    }

    .lr-fixed-title {
        font-size: 18px;
    }

    .lr-text p {
        margin: 20px 0 35px;
    }

    .lr-default-list li {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .lr-area {
        padding: 40px 0;
    }

    .lr-content+.lr-content {
        margin-top: 50px;
    }

    .lr-fixed {
        left: 10px;
    }

    .lr-fixed li {
        width: 120px;
        height: 64px;
    }

    .lr-fixed-title {
        font-size: 16px;
    }

    .lr-fixed-title+p {
        font-size: 11px;
    }

    .lr-icon {
        width: 36px;
        height: 36px;
    }

    .lr-spec-list h3 {
        font-size: 20px;
    }
}

@media (max-width: 580px) {
    .lr-area {
        padding: 30px 0;
    }

    .lr-content+.lr-content {
        margin-top: 40px;
    }

    .lr-image img {
        border-radius: 16px;
    }

    .lr-fixed {
        position: static;
        transform: none;
        display: flex;
        gap: 10px;
        margin-top : 20px;
    }

    .lr-fixed li {
        width: 50%;
        height: auto;
        aspect-ratio: 178/80;
        padding: 10px;
    }

    .lr-fixed li+li {
        margin-top: 0;
    }

    .lr-text p {
        margin: 15px 0 25px;
    }

    .lr-default-list li {
        font-size: 16px;
    }

    .lr-default-list li+li {
        margin-top: 20px;
    }

    .lr-spec-list h3 {
        font-size: 18px;
    }

    .lr-spec-list h3+p {
        font-size: 16px;
    }
}

/* lr-content */