/* common.css - 全局字体与基础样式 */
:root{
    --brand:#165DFF;
    --brand-soft:#EAF1FF;
    --brand-2:#0F3A8C;
    --ink:#1D2129;
    --body:#4E5969;
    --muted:#86909C;
    --line:#E5E6EB;
    --bg:#FFFFFF;
    --bg-soft:#F5F7FA;
}

*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}

body{
    font-family:"PingFang SC","Microsoft YaHei","Helvetica Neue",Arial,sans-serif;
    color:var(--ink);
    background:var(--bg);
    font-size:15px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

a{text-decoration:none;color:inherit;}
.wrap{max-width:1200px;margin:0 auto;padding:0 24px;}
section{padding:80px 0;}
.soft{background:var(--bg-soft);}

/* 字号体系 */
.h1{font-size:38px;font-weight:700;line-height:1.25;color:var(--ink);}
.h2{font-size:26px;font-weight:600;line-height:1.35;color:var(--ink);}
.lead{font-size:15px;font-weight:400;color:var(--body);}

/* 按钮等公共样式... */