@charset "utf-8";

.research-team-title{
    width: 100%;
    height: 160px;
    line-height: 160px;
    text-align: center;
    opacity: 1;
    background: rgba(56, 56, 56, 1);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.research-team-title h2{
    font-size: 30px;
    font-weight: 500;
    line-height: 160px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
}
.navigation-box{
    padding:  10px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 34.48px;
    color: rgba(190, 190, 190, 1);
}


.research-team-describe{
    opacity: 1;
    background-image: url(../imgs/team-describe.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    box-sizing: border-box;
    padding: 10px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0px;
    color: rgba(16, 186, 196, 1);
}

/* 切换tabs开始 */
.page-switching{
    height: 44px;
    margin-top: 26px;
    display: flex;
    border-left: 1px solid rgba(16, 186, 196, 1);
}
.page-switching-item{
    flex: 1;
    border-top: 1px solid rgba(16, 186, 196, 1);
    border-bottom: 1px solid rgba(16, 186, 196, 1);
    border-right: 1px solid rgba(16, 186, 196, 1);
    text-align: center;
    line-height: 44px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(16, 186, 196, 1);
    cursor: pointer;
}
.page-switching .page-switching-active{
    flex: 1;
    background: rgba(16, 186, 196, 1);
    box-shadow: 0px 2px 4px  rgba(0, 0, 0, 0.25);
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
}

/* 切换tabs结束 */


/* 表格数据开始 */
/* .list-data-box{
    display: none;
}
.list-data-box.page-switching-active{
    display: block;
} */

.list-data{
    display: flex;
    flex-wrap: wrap;
    padding: 0 5px;
}
.list-data-item{
    width: calc(50vw - 15px);
    height: calc(50vw - 15px);
    border-radius: 5px;
    background: linear-gradient(180deg, rgba(16, 187, 196, 0) 0%, rgba(16, 186, 196, 1) 100%);
    margin: 10px 5px 0;
    box-sizing: border-box;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
    padding: 60px 20px 0;
}
.list-data-item img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.list-data .list-data-item:hover img{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
/* .list-data .list-data-item:nth-child(3n-1){
    margin: 50px 52px 0;
} */
.load-more{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 200px;
}
.load-more .load-more-btn{
    width: 180px;
    height: 65px;
    border-radius: 5px;
    background: rgba(16, 186, 196, 1);
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 30px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    display: none;
}
.load-more .load-more-btn.page-switching-active{
    display: block;
}

/* 表格数据结束 */