.team-banner {
    width: 100%;
    height: 242px;
    background-image: linear-gradient(90deg, rgb(53, 90, 240) 0%, rgba(53, 90, 240, 0.4) 100%),
        url(/static/images/team/banner_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.team-title {
    font-size: 28px;
    margin-bottom: 8px;
}

.team-content {
    width: 546px;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}

.team-main {
    width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
}

.team-main .team-list {
    margin-top: 92px;
    margin-bottom: 100px;
}

.team-main .team-list > .item {
    display: flex;
    justify-content: center;
}

.team-main .team-list > .item .avatar,
.team-main .team-list > .item .avatar img {
    position: relative;
}

.team-main .team-list > .item .avatar::before {
    content: "";
    display: block;
    width: 282px;
    height: 282px;
    border-radius: 50%;
    position: absolute;
    top: -36px;
    left: -25px;
    /* background: linear-gradient(220.83deg, rgba(73, 109, 255, 0.6) 11.08%, rgba(53, 90, 240, 0) 81.02%); */
    /* filter: drop-shadow(0px 0px 30px rgba(9, 219, 191, 0.1)); */
}

.team-main .team-list > .item .content {
    width: 745px;
    margin-left: 110px;
}

.team-main .team-list > .item .content .header {
    font-size: 24px;
    line-height: 28px;
    color: #262626;
    width: 562px;
    border-bottom: 2px dashed #d9d9d9;
    padding-bottom: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    max-width: 100%;
}

.team-main .team-list > .item .content .back {
    border: 1px solid #9e9e9e;
    font-size: 16px;
    height: 36px;
    width: 90px;
    line-height: 34px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}

.team-main .team-list > .item .content .job {
    font-size: 16px;
    line-height: 20px;
    color: #355af0;
    margin-top: 8px;
}

.team-main .team-list > .item .info-item .sub-title {
    font-size: 14px;
    line-height: 16px;
    color: #355af0;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.team-main .team-list > .item .info-item .sub-title::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    margin-right: 10px;
    background: #355af0;
}

.team-main .team-list > .item .info-item .description {
    font-size: 14px;
    line-height: 20px;
    color: #595959;
    margin-bottom: 24px;
}
.team-main .team-list > .item .info-item .description > div {
    margin-bottom: 16px;
}
.team-main .team-list > .item .info-item .description > p {
    width: 560px;
    word-break: break-all;
}

.header-nav {
    display: flex;
    margin-bottom: 40px;
    padding-left: 16px;
}

.header-nav .nav-item {
    font-size: 16px;
    line-height: 24px;
    margin-right: 8px;
    border-bottom: none;
    color: #595959;
}

.header-nav .nav-item::after {
    content: ">";
    margin-left: 4px;
}

.header-nav .nav-item:last-child::after {
    content: "";
}

.header-nav .nav-item.active {
    color: #355af0;
}