/* 专家委员会盒子 */
.expert-title{
    border-bottom: 6px solid #06a756;
    text-align: center;
    color: #002f6c;
    margin: 16px 0;
    padding-bottom: 16px;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 5px;
    width: 100%;
}
.expert-box-big{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.expert-box{
    height:540px;
    /* height:480px; */
    width:770px;
    background: ;
    /* 背景图不平铺 */
    background-repeat: no-repeat;
    /* 让背景图基于容器大小伸缩 */
    background-size: cover;
    position: relative;

}
.expert-header-box{
    width: 230px;
    height: 328px;
    overflow: hidden;
    position: relative;
    left:60px;
    top:114px;
}

.expert-header-box ul {
    list-style: none;
    width: 10000px;
    position: absolute;
}
.expert-header-box ul li {
    margin:0;
    padding: 0;
}
.expert-header-box ul li img {
    width: 230px;
    height: 315px;
    display: inline-block;
    cursor: pointer;
    transform: all .5s ease-in-out;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-property: all;
}
.expert-header-box ul li img:hover{
    transform: scale(1.1);
}
/* 专家委员会表格盒子 */
.expert-table-box{
    position: relative;
    left:330px;
    top:-210px;
    font-size: 13px;
    width:400px;
    overflow: hidden;
    color:#fff;
    text-align: center;
}
.expert-table-box .item{
    display: flex;
    margin: 15px 0;
}
.expert-table-box .item:first-child{
    margin-top: 0;
}
.expert-table-box .item .row-title{
    width: 150px;
    text-align: left;
    font-size: 16px;
    letter-spacing: 2px;
}
.expert-table-box .item .list{
    margin-left: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(50px, 1fr));
    grid-gap: 8px;
}
.expert-table-box a{
    font-size: 16px;
    color:#fff;
}
.expert-table-box .other{
    margin: 80px 0 0 150px;
    font-size: 16px;
    letter-spacing: 3px;
}
/* 专家列表 */
.expert-list{
    margin-top: 30px;
}
.expert-list .banner{
    width: 100%;
    border-bottom: 1px solid #747474;
    margin-bottom: 10px;
}
.expert-list .banner span{
    display: block;
    width:110px;
    height:6px;
    background-color: #fcb700;

}
.expert-list .title{
    color:#002f6c;
    line-height: 30px;
    font-size: 28px;
    font-weight: 600;
    height: 50px;
    margin-top: 15px;
}
.expert-list .item-box{
    position: relative;
}
.expert-list .item-box .tag{
    position: absolute;
    width:100%;
    height:10px;
    top:-80px;
}
.expert-list .item{
    display: flex;
    margin-bottom: 15px;
}
.expert-list img{
    min-width:160px;
    max-width:160px;
    height:200px;
}
.expert-list .name{
    color:#171717;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    margin: 5px 0 20px 0;
}
.expert-list .content-all{
    margin-left: 10px;
    border-bottom: 1px solid #e1e1e1;
    width: 100%;
}