/*----- list -----*/
.news-list {
    margin: 20px 40px 0;
}
.news-list .item {
    width: 25%;
    padding: 0 15px;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list li .box {
    margin: 0 auto 20px;
    max-width: 300px;
    display: block;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.news-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:80;
}
.news-list .pic {
    position: relative;
    box-sizing: border-box;
    transition: all .3s ease;
    margin: 0 auto 0;
    max-width: 300px;
    border-radius: 10px;
}
.news-list .pic:before {
    content: "read more";
    font-size: 18px;
    color: #FFF;
    font-family: "Libertinus Sans", sans-serif;
    text-align: center;
    position: absolute;
    top: calc(50% - 29px);
    z-index: 1;
    width: 100%;
    left: 6px;
    transition: all .3s ease;
    opacity: 0;
}
.news-list .news-more {
    position: absolute;
    background: url(../../images/common/more-pic-1.png) no-repeat;
    font-family: "Libertinus Sans", sans-serif;
    color: #FFF;
    width: 400px;
    height: 294px;
    background-size: contain;
    left: calc(50% - 165px);
    top: calc(50% - 164px);
    line-height: 302px;
    text-align: center;
    transition: all .3s ease;
    opacity: 0;
}
.news-list .box:hover .pic:before {
    opacity: 1;
}
.news-list .box:hover .news-more {
    opacity: 1;
}
.news-list .text {
    width: calc(100% - 30px);
    margin-right: auto;
    margin-top: -58px;
    box-sizing: border-box;
    padding: 10px 10px 23px 15px;
    position: relative;
    transition: all .3s ease;
    border-top-right-radius: 10px;
    z-index: 0;
    background: #FFF;
}
.news-list .text:before {
    content: "";
    position: absolute;
    left: 0px;
    top: -8px;
    background: url(../../images/common/news/news-radius-1.png) no-repeat;
    background-size: contain;
    width: 14px;
    height: 8px;
    z-index: -1;
}
.news-list .text:after {
    content: "";
    position: absolute;
    right: -9px;
    top: 48px;
    background: url(../../images/common/news/news-radius-2.png) no-repeat;
    background-size: contain;
    width: 9px;
    height: 10px;
    z-index: -1;
}
.news-list .date{
    font-family: "Libertinus Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #11AEB8;
    transition: all .3s ease;
}
.news-list li .box:hover .date{
    color: #9DCCAF;
}
.news-list .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #1F1F1F;
    font-size: 22px;
    font-weight: normal;
    transition: all .3s ease;
    line-height: 1.5;
}
.news-list li .box:hover .name{
    color: #11ADB8;
}
.news-list .description {
    color: #666666;
    font-size: 17px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 27px;
    overflow: hidden;
}
/*----- content -----*/
.news-header,
.news-detail {
    max-width: 1280px;
    margin: 0 auto;
}
.news-header{
    margin-top: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 44px;
    padding-bottom: 25px;
}
.news-header .title {
    color: #333;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    line-height: 1.45;
    margin: 0;
}
.news-header .date {
    display: block;
    font-size: 18px;
    color: #FFF;
    background: #11AEB8;
    max-width: 120px;
    margin: 0 auto 20px;
    text-align: center;
    border-radius: 30px;
    font-family: "Libertinus Sans", sans-serif;
}
.news-detail {
    padding: 0 60px 15px;
}
.news-detail article.editor{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
/*----- rwd -----*/
@media screen and (max-width: 1000px) {
    .news-header .title {
        font-size: 18px;
    }
    .news-list {
        margin: 0 30px;
    }
    .news-list .item {
        width: 33%;
        padding: 0 15px;
    }
    .news-list .item:nth-child(4n+1) {
        clear: unset;
    }
    .news-list .item:nth-child(3n+1) {
        clear: left;
    }
    .news-list .date {
        font-size: 15px;
    }
    .news-header {
        margin-top: 0;
        padding-bottom:15px;
        margin-bottom: 20px;
    }
    .news-detail {
        padding: 0 0 10px;
    }
}
@media screen and (max-width: 760px) {
    .news-list {
        margin: 0 -10px;
    }
    .news-list .item {
        width: 50%;
        padding: 0 10px;
    }
    .news-list .item:nth-child(3n+1) {
        clear: unset;
    }
    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 480px) {
    .news-list .item {
        width: 100%;
        padding: 0 10px;
    }
}