html{
    background: #f5f5f6;
    /* 设置根元素字体大小为16px，此时1rem = 16px */
    font-size: 16px;
}

.fill_007BFF{
    fill:#007BFF;
}
.fill_ffffff{
    fill:#ffffff;
}
/* 金色 */
.fill_FFD700{
    fill:#FFD700;
}

.top_space{
    height : 0.8rem;
}

.nav{
    width: 100%;
    max-width:73rem;
    height : 3rem;
    position: fixed;
    top : 0;
    left:50%;
    transform: translateX(-50%);
    background: #007BFF;
}
.nav ul{
    height : 90%;
    display: flex;
    align-items: center;
}
.nav ul li{
    font-size : 1em;
    font-weight : bold;
    color : #000000;
    margin-top:0.3rem;
}
.nav ul li:hover {
    transform: scale(1.2);
    cursor: pointer;
}
.nav ul li img{
    height : 2.5rem;
    margin-left:2vw;
}
.nav ul li span{
    display: inline-block;
    margin-left:6vw;
}
.back_btn{
    width:2.5rem;
    height:2.5rem;
    line-height:2.5rem;
    margin-left:3vw;
    fill:#ffffff;
}

section{
    width : 100%;
    max-width : 1200px;
    margin : 0 auto;
}
section .personal_information{
    width  : 100%;
    height : 5rem;
    margin : 0 auto;
    background-image: url('/static/img/my_head_bg.jpg');
    padding-left : 1rem;
    display: flex;
    justify-content: center; /* 可选：水平居中 */
    align-items: center;    /* 可选：垂直居中 */
}
section .personal_information .headpic{
    width : 5rem;
    height: 5rem;
}
section .personal_information .headpic img{
    border-radius: 50%;     /* 将图像设置为圆形 */
    object-fit: cover;      /* 保持图像比例并填充容器 */
}

section .personal_information .information{
    width : 70%;
    margin-left : 2rem;
}
section .personal_information .information .text{
    height : 1.5rem;
    line-height : 1.5rem;
    color : #ffffff;
}
section .column{
    width  : 94vw;
    height : 3rem;
    margin-left : 3vw;
    color : #000000;
    border-bottom: 1px solid #f5f5f6;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;    /* 可选：垂直居中 */
    background: #ffffff;
    font-size : 1rem;
}
section .column .text{
    margin-left : 1rem;
    width : 8rem;
}
section .column .symbol{
    position: absolute;
    right : 7vw;
    width  : 1.2rem;
}
