* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* 安卓核心适配：375pt 设计稿等比缩放 */
html {
    font-size: calc(100vw / 3.75);
}

body {
    font-family: "sans-serif", "Roboto", "DroidSans";
    background-color: #FFFFFF;
    color: #333333;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

/* 页面容器 */
.container {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    padding: 16px 25px;
}

/* 平板端适配（>375px） */
@media (min-width: 376px) {
    .container {
        max-width: 600px;
        padding: 0 30px;
    }
}

/* 大屏适配（>768px） */
@media (min-width: 769px) {
    .container {
        max-width: 900px;
        padding: 0 40px;
    }
    .title {
        font-size: 24px;
        padding: 24px 0;
    }
    .title-b {
        font-size: 24px;
        padding: 24px 0;
    }
    .item-title {
        font-size: 22px;
        margin: 28px 0 14px;
    }
    .item-content1 {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 10px;
    }
    .item-content {
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 20px;
    }
}

/* 超大屏适配（>1024px） */
@media (min-width: 1025px) {
    .container {
        max-width: 1200px;
        padding: 0 50px;
    }
    .title {
        font-size: 28px;
        padding: 28px 0;
    }
    .item-title {
        font-size: 24px;
        margin: 32px 0 16px;
    }
    .item-content {
        font-size: 18px;
        line-height: 1.75;
        margin-bottom: 24px;
    }
}

/* 主标题 20pt */
.title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 16px;
    line-height: 30px;
    color: #000000;
}
.title-b {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 6px;
    line-height: 30px;
    color: #000000;
}
/* 章节标题 20pt */
.item-title {
    font-size: 14px;
    font-weight: bold;
    line-height: 21px;
    padding-bottom: 4px;
    color: #000000;
}

/* 正文 14pt */
.item-content {
    font-size: 14px;
    line-height: 21px;
    color: #000000;
    margin-bottom: 32px;
    opacity: 0.7;
    word-break: break-all;
}
.item-content1 {
    font-size: 14px;
    line-height: 21px;
    color: #000000;
    margin-bottom: 12px;
    opacity: 0.7;
    word-break: break-all;
}
/* 隐私政策链接样式 */
.privacy-link {
    color: #057EFF;
    font-weight: bold;
    text-decoration: none;
}