/* 页面头部样式 */
.page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
}

.back-button {
    border: none;
    background: none;
    padding: 8px;
    margin-left: -8px;
    cursor: pointer;
}

.icon-back {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
}

.header-title {
    flex: 1;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #000;
}

/* 主要内容样式 */
.privacy-content {
    padding: 60px 20px 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
}

.privacy-article {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.privacy-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.privacy-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.privacy-section {
    margin-bottom: 24px;
}

.privacy-section h2 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #333;
}

.section-content {
    margin-left: 16px;
}

.section-content p {
    margin-bottom: 8px;
}

.section-content ul {
    list-style: none;
    padding-left: 16px;
    margin: 8px 0;
}

.section-content li {
    position: relative;
    margin-bottom: 6px;
    padding-left: 12px;
}

.section-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background-color: #666;
    border-radius: 50%;
}

.greeting {
    font-weight: 500;
    margin-bottom: 12px;
}

.contact-info {
    color: #666;
    margin-top: 12px;
}

#service-tel {
    color: #382ec6;
    font-weight: 500;
}

/* 响应式布局 */
@media screen and (max-width: 480px) {
    .privacy-content {
        padding: 54px 15px 15px;
    }

    .privacy-title {
        font-size: 16px;
    }

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

    .section-content {
        margin-left: 12px;
    }
} 