.news {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.news li {
    width: 33.3333%;
    box-sizing: border-box;
    margin-bottom: 40px;
    transition: .3s;
}
.news li:hover img {
    box-shadow: 0 0 20px rgba(0,0,0,.5);
    border-radius: 10px;
    transform: scale(1.02);
}
.news .layer {
    margin: 0 15px;
}
.news-img {
    width: 100%;
    height: 214px;
    object-fit: cover;
    transition: .3s;
}
.news-title {
    display: inline-block;
    font-size: 18px;
    line-height: 1.4;
    font-weight: normal;
    padding: 5px 0;
}
.news-title:hover {
    font-weight: bold;
    color: #338360;
}
.news-text {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 15px;
}
a.news-more {
    display: inline-block;
    background: #666666;
    line-height: 2.4;
    font-size: 14px;
    border-top-right-radius: 1.2em;
    border-bottom-left-radius: 1.2em;
    padding: 0 2em;
    color: #fff;
    margin-right: 1em;
}
.news-more:hover {
    background: #333;
}
.news-time {
    font-size: 14px;
}

.text-title {
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    color: #333333;
    line-height: 1.4;
    padding: .5em 0;
    transition: .3s;
}
.text-attr {
    color: #333333;
    font-weight: 14px;
    line-height: 1.6;
}
.text-attr span {
    display: inline-block;
    margin-right: 1em;
}
.text-attr em {
    font-style: normal;
    color: #338360;
}
.text-info {
    background: #f2f2f2;
    color: #999999; 
    font-size: 14px;
    line-height: 1.6;
    padding: 1em 1.2em;
    margin-top: 1em;
    text-align: justify;
}
.text-body {
    margin-top: 2em;
}

/* 图片列表 */
.pics {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.pics li {
    width: 33.3333%;
    box-sizing: border-box;
    margin-bottom: 20px;
    transition: .3s;
}
.pics li a {
    display: block;
    margin: 0 10px;
    height: 100%;
    background: #f2f2f2;
}
.pics li img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.pics li img:hover {
    box-shadow: 0 0 20px #0009;
}

@media screen and (max-width:950px) {
    .news li {
        width: 50%;
    }

    .pics li {
        width: 50%;
    }
}

@media screen and (max-width:767px) {

    /* 新闻 */
    .news {
        margin: 0 -5px;
    }
    .news li {
        width: 100%;
        margin-bottom: 1.2em;
    }
    .news-text {
        margin-bottom: 8px;
    }
    .news .layer {
        margin: 0 5px;
    }

    .text-title {
        text-align: left;
        font-size: 20px;
        font-weight: bold;
    }
    .text-attr {
        font-size: 14px;
    }
    .text-info {
        font-size: 13px;
    }
    .text-body {
        margin-top: 1em;
        
    }
    
}
@media screen and (max-width:414px) {
    .pics li {
        width: 100%;
    }
}
