.pages{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0;
}
.memberImg{
    width: 100vw;
    height: 28.125vw;
}
.member-line{
    display: flex;
    align-items: center;
    margin: 5.2vw 0;
}
.member-img{
    width: 30.7vw;
    height: 20.5vw;
}
.member-content{
    width: 28.125vw;
    height: 20.5vw;
    background: #F5F5F5;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    padding-left: 2.6vw;
}

.member-title{
    height: 1.98vw;
    font-size: 1.98vw;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: bold;
    color: #333333;
    line-height: 1.98vw;
    letter-spacing: 0.3125vw;
    margin-bottom: 1.5625vw;
}
.member-text{
    width: 25.5vw;
    font-size: 1.14vw;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: normal;
    color: #333333;
    line-height: 1.71vw;
    letter-spacing: 0.15vw;
}
.news-line{
    width: 63.5vw;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 5.2vw 0;
}
.news-item{
    display: flex;
    flex-direction: column;
    margin-right: 1.14vw;
    margin-bottom: 2.6vw;
    box-shadow: 0px 0.4vw 2.5vw 0px rgba(0, 0, 0, 0);
    transition: all 0.3s ease-out; /*ease-out 减速、慢慢结束*/
}
.news-item:hover{
    transform: scale(1.05,1.05);
}
.news-img{
    width: 19.7vw;
    height: 13.125vw;
}
.news-content{
    width: 19.7vw;
    height: 8.22vw;
    
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.news-str{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.news-title{
    width: 17.97vw;
    height: 0.83vw;
    font-size: 0.83vw;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: bold;
    color: #333333;
    line-height: 0.83vw;
    /* letter-spacing: 2px; */
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-line-clamp:1;
   -webkit-box-orient:vertical;
   
}
.news-time{
    font-size: 0.625vw;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: normal;
    color: #BBBBBB;
    line-height: 0.625vw;
    letter-spacing: 2px;
    margin: 0.625vw 0;
}
.news-text{
    width: 17.97vw;
    /* height: 63px; */
    font-size: 0.73vw;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: normal;
    color: #777777;
    line-height: 1.1vw;
    /* letter-spacing: 2px; */
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-line-clamp:3;
   -webkit-box-orient:vertical;
}