.wp{
    width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}
.ul-science {
    margin: 0 -15px;
    overflow: hidden;
}

.ul-science li {
    float: left;
    width: 25%;
    margin-bottom: 40px;
}

.ul-science .con {
    background: #FFFFFF;
    box-shadow: 0px 2px 12px 0px rgba(182, 183, 188, 0.2);
    border-radius: 10px;
    border: 2px solid rgba(239, 239, 239, 0.88);
    margin: 0 10px;
    overflow: hidden;
    padding: 10px;
    display: flex;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.ul-science .con:hover {
    border: 2px solid #3572b0;
}

.ul-science .pic {
    width: 115px;
    height: 170px;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-right: 20px;
    flex-shrink: 0;
    width: 42%;
}

.ul-expert .pic img,
.m-content-e .qr img,
.m-expert .pic img,
.ul-science .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.ul-imgtxt6 a:hover .name {
    color: #3572b0;
}

.ul-expert a:hover .pic img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

.ul-science .tit {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    color: #222222;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.ul-science .con:hover .tit {
    color: #3572b0;
}

.ul-science .desc {
    position: absolute;
    bottom: 0;
    left: 0;
}

.m-expert .txt,
.ul-science .txt {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ul-science .desc p {
    font-size: 14px;
    color: #666;
    line-height: 24px;
}


.ellipsis {
    white-space: nowrap; /* 防止文本换行 */
    overflow: hidden; /* 隐藏超出容器的内容 */
    text-overflow: ellipsis; /* 显示省略号来表示文本被截断 */
}
.ellipsis-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制显示的行数 */
    -webkit-box-orient: vertical; /* 设置盒子的子元素垂直排列 */
    overflow: hidden; /* 隐藏超出容器的内容 */
    text-overflow: ellipsis; /* 当内容溢出时显示省略号 */
}
.ellipsis-3-lines {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 限制显示的行数 */
    -webkit-box-orient: vertical; /* 设置盒子的子元素垂直排列 */
    overflow: hidden; /* 隐藏超出容器的内容 */
    text-overflow: ellipsis; /* 当内容溢出时显示省略号 */
}
.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background-color: #154196;
}