/* banner */
.main-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 600px;
    margin-top: 60px;
}
.main-banner .content{
    width: 100%;
    height: 100%;
}
.main-banner .content img{
    width: 100%;
    height: 100%;
}

/* 产品中心 */
.team-card{
    display: flex;
    flex-direction: column;
    width: 1250px;
    padding: 82px 0 92px;
}

.team-card > .title{
    font-weight: 500;
    font-size: 32px;
    color: #333333;
    line-height: 45px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.team-card .content{
    width: 100%;
}

.team-card .content .structure-list{
    display: flex;
    justify-content: space-around;
}

.team-card .content .structure-list .card{
    width: 20%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}

.team-card .content .structure-list .card .header{
    line-height: 30px;
    border-bottom: 1px solid #e3e3e3;
    font-weight: bold;
    background-color: #F6F5F4;
    padding: 10px 15px;
}
.team-card .content .structure-list .card ul {
    list-style: disc;
    margin-left: 15px;
    margin-top: 10px;
    padding: 0 15px 10px;
}

.team-card .content .structure-list .card ul li{
    line-height: 30px;
}

.team-card .content .structure-list .card ul li a{
    text-decoration: none;
    color: #333;
}

.team-card .content .team-list{
    margin-top: 30px;
}

.team-card .content .team-list .list-card{
    padding: 0 20px;
    margin-bottom: 30px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}
.team-card .content .team-list .list-card .card-header{
    font-size: 24px;
    padding: 20px 0;
    line-height: 41px;
    font-weight: bold;
}
.team-card .content .team-list .list-card .card-content{
    padding-bottom: 30px;
    border-top: 1px solid #e3e3e3;
}

.team-card .content .team-list .list-card .card-content ul{
    margin-top: 20px;
}

.team-card .content .team-list .list-card .card-content ul li{
    margin-bottom: 30px;
}

.team-card .content .team-list .list-card .card-content ul li .name{
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
    position: relative;
    padding-top: 80px; /* 预留导航栏高度 */
    margin-top: -80px; /* 反向抵消偏移 */
}
.team-card .content .team-list .list-card .card-content ul li .remark{
    font-size: 14px;
    color: #333;
}

.team-card .content .team-list .list-card .card-content ul li .remark p{
    line-height: 2;
    font-size: 14px;
    color: #333;
    text-indent: 2em;
}