/* 二级导航 */
.secondary{
    background: #F8F8F8;;
    border-bottom: 1px solid #DDDDDD;
}


/* 新闻动态 */
.new-box{
    /* margin-top: 94px; */
    margin-top: 0px;
    width: 100%;
}
.title {
    display: none;
}
.new-box a{
    display: block;
}
.new-list{
    width: 100%;
    padding: 30px 0 35px;
    border-bottom: 1px solid #DDDDDD;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s;
}

.new-left{
    width: 31%;
}

.new-right{
    width: 69%;
    padding-left: 72px;
    box-sizing: border-box;
    /* padding-top: 45px; */
}

.new-title{
    font-size: 24px;
    font-family: SourceHanSansCN-Regular;
    /* font-weight: 500; */
    color: #333333;
    line-height: 1.67;
    transition: all 0.5s;
}

.new-type,.new-time{
    font-size: 16px;
    font-family: SourceHanSansCN-Regular;
    /* font-weight: 400; */
    color: #666;
    line-height: 2;
    position: relative;
}

.new-type{
    padding-right: 12px;
    margin-right: 12px;
    border-right: 1px solid #666;
}

.new-text{
    margin-top: 15px;
    font-size: 16px;
    font-family: SourceHanSansCN-Regular;
    /* font-weight: 400; */
    color: #666;
    line-height: 2;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.new-more{
    margin-top: 10px;
}

.new-more {
    font-size: 16px;
    font-family: SourceHanSansCN-Regular;
    /* font-weight: 400; */
    color: #666;
    line-height: 2;
    transition: all 0.5s;
}

.new-more  i{
    margin-left: 5px;
}

.new-list:hover{
    border-bottom: 1px solid #EC1E24;
    transition: all 0.5s;
}

.new-list:hover .new-title,.new-list:hover .new-more {
    color: #EC1E24;
    transition: all 0.5s;
}
.new-list .new-left {
    overflow: hidden;
}
.new-list .new-left img {
    transition: all .5s;
}
.new-list:hover img {
    transform: scale(1.1);
    transition: all .5s;
}
@media (max-width:1440px) {
    .new-title {
        font-size: 20px;
    }
}
@media (max-width:1280px) {
    .new-title {
        font-size: 18px;
    }
    .new-right {
        padding-left: 50px;
    }
    .new-text ,.new-more{
        line-height: 28px;
        margin-top: 0;
    }
}
@media (max-width:1024px) {
    .new-right {
        padding-left: 30px;
        padding-top: 0;
    }
    .new-list:nth-child(1) {
        padding-top: 0;
        margin-bottom: 30px;
    }
    .new-type, .new-time ,.new-text ,.new-more{
        font-size: 14px;
    }
}
@media (max-width:767px) {
    .new-more {
        font-size: 14px;
    }
    .new-text {
        font-size: 14px;
        line-height: 24px;
    }
    .new-type, .new-time {
        font-size: 14px;
    }
    .new-title {
        font-size: 16px;
    }
    .new-list{
        flex-direction: column;
        margin-bottom: 30px;
        padding: 0;
    }
    .new-box a:nth-last-child(1)  .new-list{
        margin-bottom: 0;
    }

    .new-left {
        width: 100%;
        margin-bottom: 30px;
    }
    .new-right {
        width: 100%;
        padding-left: 0;
    }
    .new-more ,.new-text{
        margin: 10px 0 18px;
    }
}