/* -------- list -------- */
.news-list {
    max-width: 1280px;
    margin: 0 auto;
}
.news-list .item {
    width: 25%;
    padding: 0 10px;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list .box {
    max-width: 250px;
    margin: 0 auto 45px;
    text-align: center;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
    max-width: 250px;
    margin: 0 auto 10px;
    border-radius: 15px;
}
.news-list .name {
    position: relative;
    box-sizing: border-box;
    display: block;
    text-align: center;
    color: #333;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 1px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 10px 0 0;
}
.news-list a:hover .name {
    color: #0074AE;
}
.news-list .date,
.news-header .date {
    display: block;
    border: 1px solid #DCDCDC;
    border-width: 1px 0;
    width: 104px;
    margin: 15px auto 0;
    color: #0074AE;
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
    font-family: 'Arsenal', serif;
    transition: all 0.3s ease;
}
.news-list .btn{
    display: none;
}
/* -------- content -------- */
.news-header {
    text-align: center;
    border-bottom: 1px dashed #DCDCDC;
    padding-bottom: 25px;
}
.news-header .title {
    max-width: 1045px;
    margin: 0 auto 25px;
    color: #333;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}
.news-detail {
    border-bottom: 1px dashed #DCDCDC;
    padding: 40px 0;
}
.news-detail .editor {
    max-width: 1045px;
    margin: 0 auto;
}
.share_box{
	margin-top: 30px;
}
/* -------- rwd -------- */
@media screen and (max-width: 1000px) {
    .news-list {
        margin: 10px auto 0;
    }
    .news-list .name{
        font-size: 16px;
    }
    .news-list .date,
    .news-header .date {
        font-size: 16px;
        margin: 10px auto 0;
    }
    .news-list .box {
        margin: 0 auto 15px;
    }
    .news-header .title{
        font-size: 17px;
        margin: 0 auto 15px;
    }
    .share_box{
        margin-top: 10px;
    }
    .news-header {
        padding-bottom: 15px;
    }
    .news-detail {
        padding: 15px 0;
    }
    .share_box .share-link .a2a_default_style {
        margin: 1.5px 0 0;
    }
    .share_box .share-link .a2a_default_style:not(.a2a_flex_style) a {
        width: 25px;
    }
    .share_box .share-link .a2a_default_style:not(.a2a_flex_style) a {
        line-height: 26px !important;
        padding: 0 !important;
    }
}
@media screen and (max-width: 900px) {
    .news-list {
        max-width: 700px;
    }
    .news-list .item{
        width: 50%;
        margin-bottom:15px;
    }
    .news-list .item:nth-child(4n+1) {
        clear: none;
    }
    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
}
@media screen and (max-width: 500px) {
    .news-list {
        margin: 5px auto 0;
    }
}