.contain{
    padding-top:6.5625vw;
    padding-bottom: 5vw;
}
.newlist{
    display: flex;
    flex-wrap: wrap;
}
.new-item{
  margin-right: 20px;
  flex:0 0 calc((100% - 40px) / 3);
  margin-bottom: 1.875vw;
}
.new-item:nth-child(3n){
    margin-right: 0;
}
.new-item .img{
    position: relative;
}
.new-item .img>img{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.new-item .bq{
    position: absolute;
    left:-7px;
    top:21px;
}
.new-item .bq .ms{
    position: absolute;
    left:24px;
    top:0;
    line-height: 34px;
    font-size: 14px;
    color: #fff;
}
.new-item .txt{
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 1px solid #e7ede8;
    border-top:none;
    background-color: #f6f8fa;
    padding: 1.40625vw 1.5625vw  2.29vw;
}
.new-item .new-tit{
    line-height: 1.5;
    color: #333;
    font-weight: 600;
    display: -webkit-box; /* 将容器以弹性盒子形式布局 */
   -webkit-line-clamp: 2; /* 限制文本显示为两行 */
    -webkit-box-orient: vertical; /* 将弹性盒子的主轴方向设置为垂直方向 */
   overflow: hidden; /* 隐藏容器中超出部分的内容 */
    text-overflow: ellipsis; /* 超出容器范围的文本显示省略号 */
    height: 3em;
    transition: all .5s;
}
.new-item .new-tit:hover{
    color: #17489C;

}
.new-item .new-tit a:hover{
    color: #17489C;

}
.new-item .times{
    line-height: 1;
    font-family: 'Arial';
    color: #333;
    opacity: .6;
    margin-top: 12px;
}
.mores{
    width: 160px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #17489C;
    border-radius: 25px;;
    margin: 1.25vw auto 0;
    color: #fff;
    cursor:pointer;
}
.mores img{
    display:none;
    margin-right: 6px;
    width: auto;
    height: auto;
    animation: Rotate 2s linear infinite;
}
@keyframes Rotate {
    0% {
		transform:rotate(0);
    }
    100% {
		transform:rotate(360deg)
    }
}
@media screen and (max-width:768px){
    .contain{
      padding: 30px 0;
    }
    .new-item{
        margin-right: 0px;
        flex:0 0 100%;
        margin-bottom: 15px;
      }
      .new-item .txt{
        padding:15px 15px  20px;
      }
      .mores{
        width: 140px;
        height: 42px;
      }
}
