/* 隐私条款页面样式 */

/* 页面标题 */
.page-header {
    background: linear-gradient(135deg, #D1AA57, #B8941F);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* 隐私条款内容 */
.privacy-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.privacy-text {
    background: transparent;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section h2 {
    color: #D1AA57;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #D1AA57;
}

.section h3 {
    color: #333;
    font-size: 20px;
    margin: 25px 0 15px;
    font-weight: 600;
}

.section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
    font-size: 16px;
}

/* 隐私条款项目 */
.privacy-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(209, 170, 87, 0.05);
    border-left: 4px solid #D1AA57;
    border-radius: 5px;
}

.privacy-item h3 {
    color: #D1AA57;
    font-size: 18px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.privacy-item p {
    margin: 0;
    color: #555;
}

/* 重要提示 */
.important-notice {
    background: linear-gradient(135deg, rgba(209, 170, 87, 0.1), rgba(184, 148, 31, 0.1));
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #D1AA57;
}

.important-notice p {
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.important-notice p:last-child {
    margin-bottom: 0;
}

.important-notice i {
    color: #D1AA57;
    font-size: 18px;
    min-width: 20px;
}

/* 页脚链接高亮 */
.footer-links a.active {
    color: #D1AA57;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .privacy-content {
        padding: 40px 0;
    }

    .privacy-text {
        padding: 30px 20px;
        margin: 0 10px;
        max-width: none;
    }

    .section h2 {
        font-size: 22px;
    }

    .section h3 {
        font-size: 18px;
    }

    .section p {
        font-size: 15px;
    }

    .privacy-item {
        padding: 15px;
    }

    .privacy-item h3 {
        font-size: 16px;
    }

    .important-notice {
        padding: 20px;
    }

    .important-notice p {
        font-size: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .important-notice i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 30px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .privacy-text {
        padding: 20px 15px;
        margin: 0 5px;
        max-width: none;
    }

    .section h2 {
        font-size: 20px;
    }

    .section h3 {
        font-size: 16px;
    }

    .section p {
        font-size: 14px;
    }

    .privacy-item {
        padding: 12px;
    }

    .privacy-item h3 {
        font-size: 15px;
    }

    .important-notice {
        padding: 15px;
    }

    .important-notice p {
        font-size: 14px;
    }
} 