/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    min-height: 100vh;
    justify-content: center;
    align-items: flex-start;
}

a{
    text-decoration:none;
    color:rgb(1, 82, 147);
}

/* 标题 */
.title {
    // display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background:#F6F7F9;
}

/* 用户登录 */
.login{
    display:flex;
    background:#F6F7F9;
    justify-content: right;
    padding-right:10px;
    padding-bottom:10px;
    gap:10px;
}

/* 导览 */
.main-header-box{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background-color: #015293;
}

.header-box {
    display: flex;
    justify-content: space-around;
    gap: max(100px);
    max-width: 1490px;
}

.navigation-box{
    padding:10px;
}

.header-box-title{
    color: #FFF;
    text-decoration: none;
    font-size:18px;
}

/* 副导航 */
.nav-box {
    display: flex;
    color: #D1D1D1;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left:20px;
    background:#F6F7F9;
}

.subheader-box-title {
    text-decoration: none;
    color: #1A90B0;
}

/* 底部 */
.bottom{
    background: #242424;
    color: #8c8c8c;
    font-size: 15px;
    display:flex;
    justify-content: center;
    gap: 200px;
    height: 114px;
}

.bottom-info{
    padding-top: 20px;
}

