/* 隐私政策页面样式 */

/* Banner区域 */
.privacy-banner-section {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 778px;
    margin-top: 164px;
    background-color: #F9F9F9;
    overflow: hidden;
}

/* Banner标题 */
.privacy-banner-title {
    position: absolute;
    left: 165px;
    top: 140px;
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 300;
    font-size: 96px;
    line-height: 1.3;
    color: #BEA66E;
    z-index: 3;
}

.privacy-banner-title p {
    margin: 0;
    white-space: nowrap;
}

/* 右侧深蓝色色块 */
.privacy-banner-color {
    position: absolute;
    right: 0;
    top: 0;
    width: 675px;
    height: 778px;
    background-color: #0E2B59;
    z-index: 1;
}

/* Banner图片 */
.privacy-banner-image {
    position: absolute;
    left: 0;
    top: 430px;
    width: 1755px;
    height: 300px;
    overflow: hidden;
    z-index: 2;
}

.privacy-banner-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 内容区域 */
.privacy-content-section {
    position: relative;
    width: 100%;
    max-width: 1920px;
    min-height: auto;
    padding: 96px 0;
    background-color: #F9F9F9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 166px;
}

/* 隐私政策/使用条款区块 */
.privacy-section {
    width: 1050px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

/* 标题 */
.privacy-section-title {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 58px;
    color: #111111;
    text-align: center;
    margin: 0;
}

/* 内容 */
.privacy-section-content {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 2;
    color: #111111;
    opacity: 0.8;
    width: 100%;
}

.privacy-section-content p {
    margin: 0;
}

.privacy-section-content br {
    display: block;
    content: "";
    margin-top: 18px;
}

.privacy-section-content ul {
    list-style: disc;
    padding-left: 27px;
    margin: 0;
}

.privacy-section-content li {
    margin: 0;
    line-height: 2;
}

/* 页脚调整 */
.privacy-footer {
    top: auto;
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
    .privacy-banner-section {
        height: 600px;
    }

    .privacy-banner-title {
        left: 40px;
        top: 100px;
        font-size: 64px;
    }

    .privacy-banner-color {
        width: 50%;
    }

    .privacy-banner-image {
        width: 100%;
        top: 350px;
        height: 250px;
    }

    .privacy-content-section {
        padding: 64px 40px;
        gap: 100px;
    }

    .privacy-section {
        width: 100%;
        max-width: 800px;
        gap: 48px;
    }

    .privacy-section-title {
        font-size: 36px;
        line-height: 48px;
    }

    .privacy-section-content {
        font-size: 16px;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 768px) {

    /* Banner区域 - 根据Figma设计 */
    .privacy-banner-section {
        height: 204px;
        margin-top: 134px;
        /* 移动端导航栏高度 */
    }

    .privacy-banner-title {
        left: 24px;
        top: 0;
        font-size: 32px;
        line-height: 40px;
        font-weight: 300;
        max-width: calc(100% - 48px);
    }

    .privacy-banner-title p {
        white-space: normal;
    }

    /* 深蓝色色块 - 右侧部分 */
    .privacy-banner-color {
        width: 245px;
        height: 108px;
        right: 0;
        left: auto;
        top: 88px;
    }

    /* Banner图片 */
    .privacy-banner-image {
        width: 366px;
        max-width: 100%;
        top: 50.98%;
        left: 0;
        height: 49.02%;
        /* 从50.98%到100% */
    }

    .privacy-banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    /* 内容区域 */
    .privacy-content-section {
        padding: 48px 24px;
        gap: 48px;
        min-height: auto;
    }

    .privacy-section {
        width: 100%;
        gap: 32px;
    }

    /* 标题 - 深蓝色 */
    .privacy-section-title {
        font-size: 24px;
        line-height: 30px;
        font-weight: 400;
        color: #0E2B59;
    }

    /* 内容文字 */
    .privacy-section-content {
        font-size: 16px;
        line-height: 2;
        font-weight: 400;
    }

    .privacy-section-content ul {
        padding-left: 24px;
    }

    /* 使用条款的列表稍大 */
    .privacy-section:last-child .privacy-section-content {
        font-size: 18px;
    }

    .privacy-section:last-child .privacy-section-content ul {
        padding-left: 27px;
    }

    .privacy-section-content br {
        margin-top: 16px;
    }
}

/* 小屏手机（<390px）*/
@media (max-width: 430px) {
    .privacy-banner-title {
        font-size: 28px;
        line-height: 36px;
    }

    .privacy-section-title {
        font-size: 22px;
        line-height: 28px;
    }

    .privacy-section-content {
        font-size: 15px;
    }

    .privacy-section:last-child .privacy-section-content {
        font-size: 16px;
    }
}

/* 超小屏手机 */
@media (max-width: 440px) {
    .privacy-banner-title-2 {
        display: none;
    }

    .privacy-banner-title {
        font-size: 24px;
        line-height: 32px;
        left: 16px;
        max-width: calc(100% - 32px);
    }
}