body {
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    /* overflow: hidden; */
}

.my-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.nav-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 100px;
}

.nav-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.cover-img {
    width: 100%;
}



/* 内容 */
.content-div {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.content-part-title {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    /* background-color: #fafafa; */
    border-radius: 15px;
    /* box-shadow: 0 2px 10px 2px rgb(0 0 0 / 20%); */


}

.content-person-item-right {
    margin-top: 20px;
    background-color: #fafafa;
    padding: 30px;
    padding-bottom: 30px;
    box-shadow: 0 1px 4px 0 rgb(0 21 41 / 12%);

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* align-items: center; */
}

.content-person-item-left {
    margin-top: 20px;
    background-color: #fafafa;
    padding: 30px;
    padding-bottom: 30px;
    box-shadow: 0 1px 4px 0 rgb(0 21 41 / 12%);

    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    /* align-items: center; */
}

.introduction-person-div-right {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;


    width: 57%;
}

.introduction-person-div-left {
    margin-top: 20px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 57%;
}

.person-name {
    font-size: 35px;
    font-family: "Times New Roman", Times, serif;
    color: #218490;
    line-height: 45px;
}

.person-introduction {
    font-size: 20px;
    line-height: 30px;
    font-family: Arial;
    text-align: justify;
    text-indent: 2em;
}

.person-img {
    width: 40%;
    border-radius: 8px;
}





