/* 统一样式表 - 用于芯联隐私政策和服务条款页面 */

/* 基础样式设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f9f9f9;
    padding: 20px;
    margin: 0 auto;
}

/* 标题样式 */
h1,
h2,
h3,
h4,
h5 {
    margin: 20px 0 15px;
    color: #333;
    font-weight: 600;
}

h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    color: #222;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}

h2 {
    font-size: 20px;
    margin-top: 30px;
    border-left: 4px solid #4a90e2;
    padding-left: 10px;
}

h3 {
    font-size: 18px;
    margin-top: 25px;
}

/* 段落样式 */
p {
    margin-bottom: 0;
    text-align: justify;
}

/* 列表样式 */
ul,
ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
}

/* 强调文本 */
strong,
b {
    font-weight: 600;
    color: #222;
}

/* 容器样式 */
.container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
}

.content {
    /*white-space: pre-wrap;*/
}

/* 章节样式 */
.section {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

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

/* 条款样式 */
.clause {
    margin-bottom: 15px;
}

.clause-number {
    font-weight: 600;
    color: #4a90e2;
    margin-right: 5px;
}

/* 重要文本样式 */
.important {
    font-weight: 600;
    color: #e74c3c;
}

/* 链接样式 */
a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #2c6cb0;
    text-decoration: underline;
}

/* 摘要样式 */
.summary {
    background-color: #f5f9ff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid #4a90e2;
}

/* 响应式设计 */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .container {
        padding: 20px;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }
}

/* 页脚样式 */
.footer {
    margin-top: 40px;
    text-align: center;
    color: #999;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

/* 表格样式 */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table,
th,
td {
    border: 1px solid #eaeaea;
}

th,
td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f5f9ff;
    font-weight: 600;
}

/* 联系方式样式 */
.contact-info {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
}