/* 上面区域 */
.top-box {
    height: 569px;
    background: var(--bg-url) no-repeat;
    background-size: cover;
    box-sizing: border-box;
    padding: 235px 0 0 249px;
    .top-title {
        font-weight: 500;
        font-size: 68px;
        color: var(--title-color);
        height: 95px;
        line-height: 95px;
    }
    .top-description {
        font-size: 24px;
        color: #2c4f7d;
        margin-top: 9px;
        height: 34px;
        line-height: 34px;
    }
}

/* 富文本区域 */
.editor-box {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    .box-title {
        padding: 105px 50px 40px 11.72vw;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        .editor-keywords {
            font-weight: 600;
            font-size: 48px;
            background-image: linear-gradient(
                to right,
                rgba(0, 85, 255, 0.37) 0%,
                transparent 100%
            );
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-style: italic;
        }
        .editor-title {
            font-weight: 500;
            font-size: 40px;
            color: #333333;
            .text2 {
                color: #0077fe;
            }
            &::after {
                content: '';
                display: inline-block;
                width: 37px;
                height: 5px;
                background: #0077fe;
                border-radius: 12px;
                vertical-align: bottom;
                margin-left: 12px;
            }
        }
    }
    .editor-content {
        padding: 49px 45.94vw 51px 11.72vw;
        background: #f6f8fe;
        line-height: 32px;
    }
    .editor-image {
        position: absolute;
        top: 139px;
        right: -106px;
        width: 49.01vw;
        height: 32.29vw;
        border-radius: 20px;
        overflow: hidden;
        .img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }
    }
}

/* 使命愿景 */
.vision-wrap {
    min-height: 201px;
    background: #fff;
    box-sizing: border-box;
    padding: 92px 11.2vw;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;

    .vision-item {
        display: flex;
        background: linear-gradient(180deg, #f1f8ff 0%, #ffffff 100%);
        border-radius: 20px;
        border: 1px solid #e7f2fb;
        padding: 25px 23px 17px 27px;
        .item-icon {
            width: 66px;
            height: 66px;

            .img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                display: block;
            }
        }

        .item-info {
            margin-left: 16px;
            width: 210px;

            .item-title {
                font-weight: 600;
                font-size: 20px;
                color: var(--title-color);
                height: 28px;
                line-height: 28px;
            }

            .item-subtitle {
                color: #666666;
                margin-top: 8px;
                line-height: 22px;
                white-space: pre-wrap;
            }
        }
    }
}

/* 联系我们 */
.contact-us {
    display: flex;
    flex-wrap: wrap;
    padding: 0 12.08vw 109px;
    gap: 80px 30px;
    justify-content: space-between;
    .content-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        .contact-us-title {
            height: 39px;
            font-weight: 600;
            font-size: 28px;
            line-height: 39px;
            color: var(--title-color);
            margin-bottom: 19px;
        }
        .contact-us-item {
            margin-bottom: 18px;
            font-size: 20px;
            color: rgba(102, 102, 102, 0.7);
            line-height: 20px;
        }
        .qrcode2 {
            padding-top: 2px;
            .img {
                width: 100px;
                height: 100px;
                margin: 0 auto;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    display: block;
                }
            }
            .code-text {
                text-align: center;
                font-size: 12px;
                color: var(--text-color);
                margin-top: 2px;
            }
        }
    }
    .content-right {
        .map-wrap {
            width: 938px;
            height: 495px;
            border-radius: 10px;
            overflow: hidden;
        }
        .img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }
    }
}
