.members-page {
    width: 86%;
    margin: 10px auto;
    margin-top: 0px;
}

.member-banner {
    width: 100%;
    border-radius: 18px;
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
}

.member-cover {
    margin-top: 60px;
    width: 50%;
    border-radius: 18px;
}

.member-cover img {
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.member-banner-desc {
    width: 50%;
    margin-top: 70px;
    padding: 0px 30px;
    border-radius: 18px;
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: 'NunitoBold', Courier, monospace;
}

.student-members {
    height: 500px;
    background-color: #353942;
    border-radius: 18px;

    padding: 25px;
    box-sizing: border-box;
    margin-top: 20px;
    /* box-shadow: 0 0 10px #5d626b; */
}

.student-header {
    width: 100%;
    height: 70px;
    border-radius: 18px;
    background-color: #202227;
    display: none;
}

.student-content {
    display: flex;
    margin-top: 16px;
}

.student-list {
    width: 220px;
    height: 450px;
    overflow-y: auto;
    /* border-radius: 18px; */
    /* background-color: #202227; */
}

.student-info {
    margin-left: 20px;
}

.student-name {
    color: #eee;
    /* padding: 16px;
    box-sizing: border-box; */
    width: 200px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
}

.teacher-name {
    color: #eee;
    /* padding: 16px;
    box-sizing: border-box; */
    width: 220px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
}

.advisor-name {
    color: #eee;
    /* padding: 16px;
    box-sizing: border-box; */
    width: 200px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
}

.student-name:hover {
    color: #21b879;
    font-weight: bold;
}

.teacher-name:hover {
    color: #bb7109;
    font-weight: bold;
}

.advisor-name:hover {
    color: #bb09b2;
    font-weight: bold;
}

.student-name-active {
    background-color: #202227;
    border-radius: 8px;
    color: #21b879;
}

.teacher-name-active {
    background-color: #202227;
    border-radius: 8px;
    color: #945803;
}

.advisor-name-active {
    background-color: #202227;
    border-radius: 8px;
    color: #92068b;
}

.student-info {
    flex: 1;
    min-height: 100px;
    display: flex;
}

.student-icon {
    width: 200px;
}

.student-icon .student-image {
    width: 200px;
    border-radius: 20px;
    box-shadow: 0 0 10px #1ad66b;
    transition: all 0.4s ease-in-out;
    /*水平翻转*/
    transform: rotateY(0deg);
}

.student-icon .student-image-back {
    transform: rotateY(180deg);
}


.teacher-icon .teacher-image {
    width: 200px;
    border-radius: 20px;
    box-shadow: 0 0 10px #bb7109;
    transition: all 0.4s ease-in-out;
    /*水平翻转*/
    transform: rotateY(0deg);
}

.teacher-icon .teacher-image-back {
    transform: rotateY(180deg);
}



.advisor-icon .advisor-image {
    width: 200px;
    border-radius: 20px;
    box-shadow: 0 0 10px #bb09b2;
    transition: all 0.4s ease-in-out;
    /*水平翻转*/
    transform: rotateY(0deg);
}

.advisor-icon .advisor-image-back {
    transform: rotateY(180deg);
}


.student-desc {
    color: #ddd;
    margin-left: 25px;
    max-height: 400px;
    overflow-y: auto;
}

.advisor-desc {
    color: #ddd;
    margin-left: 25px;
    max-height: 400px;
    overflow-y: auto;
}

.desc-segment {
    text-indent: 32px;
}

.sub-title {

    width: 70%px;
    height: 60px;
    background-color: #444;
    border-radius: 10px;
    color: #fff;
    line-height: 60px;
    font-weight: bold;
    font-size: 20px;
    padding-left: 26px;
    box-sizing: border-box;
    border-left: 20px solid #21b879;
    /* border: 1px solid #fff000; */
    background: linear-gradient(90deg,
            #444 0%,
            #12121270 60%,
            #11111130 70%,
            #11111100 100%);
}

.sub-title-teacher {
    border-left: 20px solid #bb7109;
    /* border: 1px solid #fff000; */
    background: linear-gradient(90deg,
            #444 0%,
            #12121270 60%,
            #11111130 70%,
            #11111100 100%);
}

.sub-title-advisor {
    border-left: 20px solid #bb09b2;
    /* border: 1px solid #fff000; */
    background: linear-gradient(90deg,
            #444 0%,
            #12121270 60%,
            #11111130 70%,
            #11111100 100%);
}