@charset "utf-8";
/*---- list -----*/
.news-list {
    margin: 0 -10px;
}
.news-list .item {
    width: 25%;
    padding: 0 10px;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list .box {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    max-width: 320px;
    background: #fff;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    margin: 0 auto 40px;
    transition: all 0.3s ease;
}
.news-list .box:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.news-list li .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
}
.news-list .pic {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.news-list .box img{
    width: 100%;
}
.news-list .txt {
    position: relative;
    box-sizing: border-box;
    padding: 15px;
}
.news-list .name {
    position: relative;
    box-sizing: border-box;
    color: #242424;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin: 0 0 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 25px;
    line-height: 25px;
    transition: all 0.3s ease;
}
.news-list .box:hover .name {
    color: #EB5106;
}
.news-list .description {
    position: relative;
    box-sizing: border-box;
    color: #464646;
    letter-spacing: 1.5px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 65px;
}
/*---- content -----*/
.news-header {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}
.news-header .title {
    position: relative;
    box-sizing: border-box;
    display: block;
    text-align: center;
    margin: 0;
    padding: 0 15px;
    color: #242424;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.5;
}
.news-detail {
    position: relative;
    box-sizing: border-box;
}
.share_box .share-link .btn {
    font-size: 28px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    border: 1px solid transparent;
    margin: 2px 0;
}
.share_box .share-link .icon-ic-share-t,
.share_box .share-link .icon-ic-share-linecall,
.share_box .share-link .icon-ic-share-w {
    font-size: 28px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    margin: 2px 0;
    padding: 0;
}
/*---- rwd -----*/
@media screen and (max-width: 1200px) {
    .news-list {
        margin: 0 -4.5px;
    }
    .news-list .item {
        padding: 0 4.5px;
    }
}
@media screen and (max-width: 1000px) {
    /*list*/
    .news-list .item {
        width: calc(100% / 3);
    }
    .news-list .item:nth-child(4n+1) {
        clear: none;
    }
    .news-list .item:nth-child(3n+1) {
        clear: left;
    }
    .news-list .name {
        font-size: 16px;
    }
    .news-list .box {
        margin: 0 auto 9px;
    }
    /*content*/
    .news-header,
    .news-header .title {
        display: block;
    }
    .news-header .title {
        padding: 0;
        text-align: center;
        font-size: 20px;
    }  
    .news-header{
        margin-bottom: 5px;
    }
    .news-detail{
        padding-bottom: 5px;
    }
}
@media screen and (max-width: 767px) {
    .news-list {
        max-width: 649px;
        margin: 0 auto;
    }
    .news-list .item {
        width: calc(100% / 2);
    }
    .news-list .item:nth-child(3n+1) {
        clear: none;
    }
    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 480px) {
    .news-list .box {
        border-radius: 5px;
    }
}