/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'MyCustomFont', Arial, sans-serif;
    font-size: 1em;
    background-color: #f5f5f5;
}

/* 容器样式 — 最大宽度80%，自动居中 */
.container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

/* 字体文件和字体样式 */
@font-face {
    font-family: 'MyCustomFont';
    src: url('https://s.ruankaozhijia.com/style/fonts/AlibabaPuHuiTi-3-35-Thin.woff2') format('woff2'),
         url('https://s.ruankaozhijia.com/style/fonts/AlibabaPuHuiTi-3-35-Thin.woff') format('woff'),
         url('https://s.ruankaozhijia.com/style/fonts/AlibabaPuHuiTi-3-35-Thin.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* hr线条处理 */
.hr-line {
    border: none;
    height: 1px;
    background-color: #dddddd;
    flex: 1;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* ===== 手机端适配 ===== */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }

    body, html {
        font-size: 0.95em;
    }
}
