*{box-sizing:border-box}
body{
    margin:0;
    font-family:"Microsoft YaHei",Arial,sans-serif;
    background:#f5f7fb;
    color:#1f2d3d;
}
a{text-decoration:none;color:#072a73}
.wrap{width:92%;max-width:1200px;margin:0 auto}

.site-header{
    background:#fff;
    border-bottom:1px solid #e7edf5;
    box-shadow:0 2px 10px rgba(0,0,0,.03);
}
.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 0;
}
.site-logo img{
    max-height:90px;
    width:auto;
}
.site-nav a{
    margin-left:24px;
    color:#072a73;
    font-weight:600;
}
.site-main{
    min-height:500px;
    padding:30px 0;
}

.hero-box,
.form-card,
.stats-box{
    background:#fff;
    border-radius:14px;
    padding:28px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
}
.hero-box h1{
    margin-top:0;
    color:#072a73;
}
.hero-actions{margin-top:20px}

.form-card{
    max-width:760px;
    margin:0 auto;
}
.form-card h2{
    margin-top:0;
    color:#072a73;
}
.form-desc{
    color:#66788a;
    margin-bottom:20px;
}
.form-group{margin-bottom:18px}
.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}
.form-group input,
.form-group select{
    width:100%;
    height:44px;
    border:1px solid #d7e1ee;
    border-radius:8px;
    padding:0 12px;
    font-size:15px;
}
.inline-group{
    display:flex;
    gap:10px;
}
.inline-group input{flex:1}
.checkbox-group label{
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:normal;
}
.checkbox-group input{
    width:auto;
    height:auto;
}
.btn-primary,
.btn-secondary{
    display:inline-block;
    height:44px;
    line-height:44px;
    padding:0 20px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:15px;
}
.btn-primary{
    background:#072a73;
    color:#fff;
}
.btn-secondary{
    background:#d9b24a;
    color:#072a73;
    font-weight:700;
}
.full-btn{
    width:100%;
}
.alert-box{
    background:#fff7d6;
    color:#7a5b00;
    border:1px solid #f0dd94;
    padding:12px 14px;
    border-radius:8px;
    margin-bottom:16px;
}

.stats-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
}
.stats-table th,
.stats-table td{
    border:1px solid #e6edf5;
    padding:10px;
    font-size:14px;
    text-align:left;
}
.stats-table th{
    background:#f5f8fc;
    color:#072a73;
}

.site-footer{
    background:#fff;
    border-top:1px solid #e7edf5;
    margin-top:40px;
}
.footer-inner{
    display:flex;
    align-items:center;
    gap:18px;
    padding:24px 0;
}
.footer-icon{
    width:36px;
    height:36px;
    border-radius:6px;
}
.footer-slogan{
    font-size:16px;
    font-weight:700;
    color:#072a73;
}
.footer-sub{
    margin-top:5px;
    color:#66788a;
    font-size:14px;
}
.footer-copy{
    margin-top:8px;
    color:#95a3b3;
    font-size:13px;
}

@media (max-width: 768px){
    .header-inner{
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
    }
    .site-nav a{
        margin:0 16px 0 0;
    }
    .inline-group{
        flex-direction:column;
    }
    .footer-inner{
        flex-direction:column;
        align-items:flex-start;
    }
}

.site-nav a.header-user-name {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
}

.site-nav a.header-user-name {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-nav a.header-avatar {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;

    margin: 0 0 0 8px !important;
    padding: 0 !important;
    box-sizing: border-box !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;

    border-radius: 50% !important;
    background: #0c3989 !important;
    color: #ffffff !important;

    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 46px !important;
    text-align: center !important;
    text-decoration: none !important;
    overflow: hidden !important;
}

.site-nav a.header-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.site-nav a.header-avatar:hover {
    background: #dca915 !important;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .site-nav {
        flex-wrap: wrap;
    }

    .site-nav a.header-avatar {
        margin-right: 0 !important;
    }
}