.articleWrapper{
    /* width: 1280px; */
    width: 1100px;
    margin: 20px auto 0;
    padding: 30px 0;
}
.article-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
    padding-bottom: 50px;
    font-family: Space Grotesk, -apple-system, linkMacSystemFont, Helvetica Neue, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 400;
}
.article-wrapper h3 {
    font-size: 22px;
    font-weight: 400;
    margin: 24px 0 28px;
}
.article-wrapper p {
    font-size: 15px;
}
h1{
    font-size: 24px;
    font-weight: 600;
    padding: 20px;
}
.memberImgs{
   
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}
.memberImgs img {
    max-width: 200px;
    max-height: 60px;
}
.memberImgs .memberList{
    position: relative;
    width: 202px;
    
    height: 157px;
    display: flex;
    flex-direction: column;
}
.memberImgs .memberList :hover ~p{
  
   /* width: 100%;
    position: absolute;
margin-top: 76px;
    z-index: 10;
    height: 100%;
    text-align: center;
    overflow: auto;
    text-overflow:initial */
}
.memberImgs .memberList p{
   
    text-align: center;
    height: 64px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 显示的行数，可以根据需要修改 */
    overflow: hidden;
    text-overflow: ellipsis;
}
.memberImgs .memberList a{

 border:1px solid #f2f2f2;
 display: inline-block;
}
@media (max-width: 768px) {
.memberImgs {
    flex-direction: column;
}
.memberImgs .memberList{
    height: auto;
}
.memberImgs .memberList p{
    height: auto;
    overflow: auto;
    -webkit-line-clamp:initial;
    text-overflow:initial
}
}
/* @media (max-width: 1280px) { */
@media (max-width: 1110px) {
    .articleWrapper{
        width: 100%;
        margin-top: 0;
    }

    .article-wrapper {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        text-align: justify;
        font-size: 14px;
    }

    .article-wrapper h3 {
        text-align: center;
        font-size: 18px;
        font-weight: 400;
    }

    .article-wrapper p {
        font-size: 14px;
        line-height: 1.5em;
    }
}