

/* <!-- 新闻 --> */
body {
    background: #F3F3F3;
}
.newBox {
    background: #F3F3F3;
}

.new {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.newItem {
    width: calc(33.33% - 15px);
    margin-bottom: 30px;
}

.newItem:first-child {
    padding-top: 0;
}

.newImg {
    padding-top: 66%;
}


.newText {
    width: 100%;
    padding: 28px;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
}

.newText span {
    text-align: center;
    display: block;
    min-width: 95px;
    padding-right: 30px;
    position: relative;
    font-family: SangBleu;
}

.newText span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #eee;
}

.newText span b {
    display: block;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.2;
    font-family: SangBleu;
}

.newText span a {
    line-height: 1.2;
}

.newText p {
    width: 80%;
    font-size: 18px;
    line-height: 1.4;
    padding-left: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.newItem:hover .newImg img {
    transform: scale(1.08);
    transition: all .48s;
}

@media(max-width:1920px) {
    /*/* ===================================================================================  */
}

@media(max-width:1680px) {
    /*/* ===================================================================================  */

}



@media(max-width:1366px) {
    /*/* ===================================================================================  */
    .newText span b{
        font-size: 24px;
    }
    .newText p{
        font-size: 16px;
    }
}



@media(max-width:1100px) {
    /*/* ===================================================================================  */
    .newText {
        padding: 20px;
    }
    .newText span b {
        font-size: 22px;
    }
}

@media(max-width:1025px) {

    .newText span{
        padding-right: 20px;
    }
    .newText p{
        padding-left: 20px;
        font-size: 14px;
    }
}

@media(max-width:900px) {
    /*/* ===================================================================================  */
    .newItem {
        width: calc(50% - 15px);
    }
 
}



@media(max-width:680px) {
    /*/* ===================================================================================  */
    .newItem {
        width: 100%;
    }

}

