html {
    font-size: 10px;
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.about-author > a {
    text-decoration: none;
}
.about-author > a:hover {
    color: #406fe7;
    border-left: 1px solid #406fe7;
}
.about-author > a:active {
    color: #406fe7;
}

.about-page {
    display: flex;
    justify-content: space-between;
    position: relative;
    background: #F0F4FA;
    min-height: 100vh;
}

/* 左侧导航栏 */
.sidebar {
    position: sticky;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    padding: 4rem 0;
    height: 100vh;
    width: 30rem;
    background: linear-gradient( 180deg, #FFFFFF 0%, #FFFFFF 100%);

}
.sidebar-menu {
    padding: 0 2rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 2rem;
    color: #262626;
}
.sidebar-menu-item {
    padding: 1.5rem 3rem;
    border-radius: 6px;
}
.sidebar-menu-item:hover {
    background: #0C7BEB;
    color: #FFFFFF;
}
.sidebar-menu-item-active {
    background: #0C7BEB;
    color: #FFFFFF;
}
.sidebar-menu-item > a {
    color: inherit;
    display: flex;
    align-items: center;
    gap: 9px;
}

/* 中间区域 */
.about-warp {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 6.4rem;
    flex: 1;
    padding: 2rem 14rem;
}
.member-title {
    font-weight: bold;
    font-size: 3.2rem;
    color: #262626;
    margin-top: 6rem;
}

/* member-logo-list grid 布局，每行3个 */
.member-logo-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 40px; */
    margin-top: 4rem;
    /* max-width: 280px; */
}
.member-logo-list > img {
    width: 100%;
    max-width: 280px !important;
}

.about-content {
    font-weight: 400;
    font-size: 1.8rem;
    color: #3D3D3D;
    line-height: 2.7rem;
    text-align: left;
    font-style: normal;
    line-height: normal;
}
.about-content > div {
    margin-bottom: 10px;
    line-height: normal;
}
.about-title-h1 {
    font-weight: bold;
    font-size: 3.2rem;
    color: #262626;
    text-align: center;
    margin-bottom: 2rem !important; 
    margin-top: 6rem;
}
.about-sub-title {
    font-weight: 400;
    font-size: 1.8rem;
    color: rgba(38,38,38,0.35);
    text-align: center;
    margin-bottom: 1.2rem !important;
}
.about-title-h2 {
    font-weight: bold;
    font-size: 2.8rem;
    color: #262626;
    margin-bottom: 2.8rem;
    margin-top: 2.8rem !important;
}
.about-title-h3 {
    font-weight: bold;
    font-size: 2rem;
    color: #262626;
    margin-bottom: 1.2rem !important;
    margin-top: 2.8rem;
}

/* 右侧内容 */
.about-author {
    position: sticky;
    right: 0;
    height: min-content;
    flex-shrink: 0;
    width: 33.8rem;
    z-index: 10;
    top: 0;
    padding: 4rem 0;
    padding-bottom: 150px;
}
.author-link {
    position: relative;
    cursor: pointer;
    display: block;
    padding: .6rem 2rem;
    z-index: 1;
    border-left: 2px solid rgba(38,38,38,0.05);
    font-size: 1.8rem;
    color: rgba(38,38,38,0.35);
    font-weight: 400;
}
.active-link {
    position: relative;
    cursor: pointer;
    display: block;
    border-left: 2px solid #0C7BEB; 
    font-weight: bold;
    font-size: 1.8rem;
    color: #0C7BEB;
}
.author-link:hover {
    color: #0C7BEB;
    border-left: 2px solid rgba(38,38,38,0.05);
}

#openDrawerBtn {
    display: none;
}

/* 大于1920Px  */
@media (max-width: 10000px) {
    html {
        font-size: 11px;
        /* 增加动画效果 */
        transition: font-size 0.3s;
    }
    .member-logo-list {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (max-width: 2540px) {
    html {
        font-size: 10px !important;
        /* 增加动画效果 */
        transition: font-size 0.3s;
    }
}


/* 1500分辨率以下 */
@media (max-width: 1800px) {
    html {
        font-size: 9px !important;
        /* 增加动画效果 */
        transition: font-size 0.3s;
    }
}

/* 1500分辨率以下 */
@media (max-width: 1500px) {
    html {
        font-size: 8px !important;
        /* 增加动画效果 */
        transition: font-size 0.3s;
    }
}

/* 1200分辨率以下 */
@media (max-width: 1200px) {
    html {
        font-size: 7px !important;
        /* 增加动画效果 */
        transition: font-size 0.3s;
    }
    /* 导航栏隐藏 */
    .sidebar, .about-author  {
        display: none;
    }
    /* 侧边导航栏显示 */
    #openDrawerBtn {
        display: block;
    }
    .about-warp {
        margin-left: 0;
        padding: 2rem 3rem;
    }
}

/* 700px */
@media (max-width: 700px) {
    html {
        font-size: 6px !important;
        /* 增加动画效果 */
        transition: font-size 0.3s;
    }
    .member-logo-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
}