.newsInfo3 {
    max-width: 1400px;
    margin: 0 auto;
}

.newsInfo3 * {
    box-sizing: border-box;
}

@keyframes liner {
    0% {
        width: 10%;
    }
    30% {
        width: 20%;
    }
    60% {
        width: 60%;
    }
    100% {
        width: 100%;
    }
}

.newsInfo3Top {
    padding: 10px;
    text-align: center;
    margin-bottom: 1.6%;
    font-family: "Helvetica Neue", Helvetica, Arial, Tahoma, "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
}

.newsInfo3Top .title {
    font-size: 22px;
    color: rgb(63, 63, 63);
    line-height: 32px;
}

.newsInfo3Top .enTitle {
    font-size: 14px;
    color: rgb(216, 216, 216);
    line-height: 22px;
}

.newsInfo3List:after {
    content: "";
    height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

.newsInfo3List .newsInfo3Item {
    width: 31%;
    margin-right: 3%;
    float: left;
    text-decoration: none;
    margin-bottom: 2%;
    display: block;
}

.newsInfo3List .newsInfo3Item:nth-child(3n) {
    margin-right: 0;
}

.newsInfo3Item .news-img {
    overflow: hidden;
    height: 238px;
}

.newsInfo3Item .news-img img {
    max-width: 100%;
    display: block;
    border: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s;
    object-fit: cover;
}

.newsInfo3Item .content {
    padding-top: 20px;
    font-family: "微软雅黑,Microsoft YaHei";
}

.newsInfo3Item .content .title {
    font-size: 16px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newsInfo3Item .content .time {
    font-size: 12px;
    color: #666;
    margin: 10px 0;
    position: relative;
    margin-bottom: 30px;
}

.newsInfo3Item .content .time:before {
    border-bottom: 1px solid #ccc;
    margin-bottom: -10px;
    transition: all 0.1s cubic-bezier(.23, 1, .38, 1) 0.1s;
    position: absolute;
    height: 1px;
    width: 100%;
    content: "";
    bottom: 0px;
    left: 0;
}

.newsInfo3Item:hover .content .time:before {
    margin-bottom: -10px;
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#fff));
    animation: liner 0.6s linear 1;
    -webkit-animation: liner 0.6s linear 1;
    border-bottom-color: #1976d2;
}

.newsInfo3Item:hover .news-img img {
    transform: scale(1.2);
}

.newsInfo3Item:hover .content .title {
    color: #1976d2;
}

.newsInfo3Item .content .dec {
    font-size: 12px;
    color: #999;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}