/* common */
body {
    background: linear-gradient(180deg, var(--green-linear-left), var(--green-linear-right));
}

.top-banner-breadcrunmb svg {
    color: var(--green-color);
}
/* common */

/* lr-area */
.lr-area h2,
.lr-area h3 {
    color: var(--green-color);
}

.lr-area h2+p {
    color: var(--text-deep-color);
}

.lr-content:first-of-type {
    margin-top: 80px;
}

.lr-content h3 {
    font-size: 30px;
}

.lr-text p {
    margin-bottom: 0;
    font-size: 20px;
    color: var(--text-deep-color);
}

.lr-content li {
    display: flex;
    margin-top: 30px;
    font-size: 20px;
    color: var(--text-deep-color);
}

.lr-content li svg {
    flex-shrink: 0;
    margin-right: 15px;
    color: var(--green-color);
}

/* lr-area 页面样式 三端适配 */
@media (max-width: 1480px) {
    .lr-content:first-of-type {
        margin-top: 70px;
    }

    .lr-content h3 {
        font-size: 28px;
    }

    .lr-text p {
        font-size: 16px;
    }

    .lr-content li {
        margin-top: 28px;
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .lr-content {
        flex-direction: column;
    }

    .lr-content:nth-of-type(2n) {
        flex-direction: column-reverse;
    }

    .lr-content:first-of-type {
        margin-top: 60px;
    }

    .lr-content h3 {
        font-size: 26px;
    }

    .lr-content li {
        margin-top: 26px;
    }
}

@media (max-width: 768px) {
    .lr-content:first-of-type {
        margin-top: 50px;
    }

    .lr-content h3 {
        font-size: 22px;
    }

    .lr-content li {
        margin-top: 24px;
    }

    .lr-content li svg {
        margin-right: 12px;
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .lr-content:first-of-type {
        margin-top: 40px;
    }

    .lr-content h3 {
        font-size: 20px;
    }

    .lr-content li {
        margin-top: 20px;
    }

    .lr-content li svg {
        margin-right: 10px;
        width: 16px;
        height: 16px;
    }
}

/* lr-area */

/* beyond-area */
.beyond-area {
    --need-top-height: 95px;

    position: relative;
    height: 500px;
    padding: 0;
    margin-bottom: calc(var(--need-top-height) * -1);
    border-radius: 75px 75px 0 0;
    color: var(--white-color);
    background: none;
    overflow: hidden;
    z-index: 1;
}

.beyond-area img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.beyond-area>.base-maxwidth {
    position: absolute;
    top: calc(50% - var(--need-top-height) / 2);
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.beyond-area p {
    color: var(--white-color);
}

@media (max-width: 820px) {
    .beyond-area {
        border-radius: 35px 35px 0 0;
    }

}
/* beyond-area */