@charset "utf-8";
/*列表通用 index、news*/
.news-list .pic:before{
    display: none;
}
.news-list .item .box{
    top: 0;
    transition: all .5s ease;
}
.news-list .item .pic{
    position: relative;
    box-sizing: border-box;
    clip-path: polygon(50% 0%, 100% 16%, 100% 100%, 0 100%, 0 16%);
    transition: all .5s ease;
    z-index: 1;
}
.news-list .item .box:hover .pic {
    clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0 100%, 0 0);
}
.news-list .item .name{
    color: #212121;
    letter-spacing: 1px;
    -webkit-line-clamp: 1;
    height: 22px;
    line-height: 22px;
    margin-bottom: 5px;
}
.news-list .box:hover .name{
    color: #2E8F62;
}
.news-list .item .description{
    color: #545454;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    max-height: 42px;
}
/*type1*/
.news-list.type1 .date{
    font-family: 'Roboto', sans-serif;
}
.news-list .btn.more{
    z-index: 5;
    overflow-x: hidden;
    color: #fff;
    font-weight: normal;
    border-radius: 0;
    font-family: 'Roboto', sans-serif;
    background: -webkit-linear-gradient(left, #82BCA1 0, #2E8F62 100%);
    transition: all .5s ease;
}
.news-list .box:hover .btn.more{
    background: #105D32;
    color: #fff;
}
/*/type1*/
/*type2*/
.news-list.type2 .box {
    margin: 0 auto;
}
.news-list.type2 .date{
    font-family: 'Roboto', sans-serif;
}
.news-list.type2 .item {
    border-bottom: 1px dashed #E7E7E7;
}
/*/type2*/
/*type3*/
.news-list.type3:before {
    background: #F2F2F1;
}
.news-list.type3 .item {
    border-left: 1px dashed #E7E7E7;
}
.news-list.type3 .date{
    font-family: 'Roboto', sans-serif;
}
/*/type3*/
/*type4*/
.news-list.type4 .item .box{
    border: 0;
}
.news-list.type4 .txt {
    background: #fff;
    border: 1px solid #ddd;
    padding: 0 20px 30px 20px;
}
.news-list.type4 .txt::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -1px;
    right: 0;
    margin: 0 auto;
    width: calc(100% + 2px);
    height: 4px;
    background: #2E8F62;
    transition: all .5s ease;
}
.news-list.type4 .txt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -1px;
    width: 0;
    height: 4px;
    background: #E84189;
    transition: all .5s ease;
}
.news-list.type4 .box:hover .txt::after {
    width: calc(100% + 2px);
}
.news-list.type4 .item .date,
.news-date{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: -30px 0 25px;
    padding: 0;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    border-radius: 0;
    background: #2E8F62;
    font-family: 'Roboto', sans-serif;
    transition: all 0.5s ease;
}
.news-list.type4 .item .date .day{
    display: block;
    width: 100%;
    line-height: 0.8;
    margin-bottom: -15px;
    font-size: 30px;
}
.news-list.type4 .item .box:hover .date {
    background: #E84189;
}
@media screen and (max-width: 1000px){
    .news-list.type4 .item .box:hover{
        top:0;
    }
}
/*!列表通用 index、news*/
/*瀑布流*/
.masonry-list .item:nth-child(n),
.has-side .masonry-list .item:nth-child(n){
    clear: none!important;
}
/*!瀑布流*/
/*------------ detail-main ------------*/
.news-header{
    display: flex;
    flex-wrap: wrap;
}
.news-date{
    width: 62px;
    height: 62px;
    text-align: center;
    margin: 0;
}
.news-date .day{
    display: block;
    width: 100%;
    line-height: 0.8;
    margin-bottom: -15px;
    font-size: 30px;
}
.news-date .month{
    order: 2;
}
.news-date .month:before{
    content: '.'
}
.news-date .month,
.news-date .years{
    font-size: 12px;
    line-height: inherit;
    line-height: 1;
    margin-top: 0;
    letter-spacing: 0;
    font-weight: 600;
}
.share_box{
    text-align: left;
    display: block;
    order: 2;
    width: 100%;
}
.news-title{
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    display: block;
    width: 100%;
    border: 1px dashed #ddd;
    border-width: 1px 0;
    padding: 10px 0;
    color: #212121;
}
/*------------ rwd ------------*/
@media screen and (max-width: 767px){
    .news-list.type3 .item {
        border-right: 0;
        border-bottom: 1px solid #fff;
    }
    .news-list.type4 .txt {
        padding: 0 10px 20px 10px;
    }
    .news-list.type4 .item .date,
    .news-date {
        margin: -30px 0 15px;
        width: 55px;
        height: 55px;
    }
    .news-list.type4 .item .date .day {
        font-size: 25px;
    }
    .news-list.type4 .date .month,
    .news-list.type4 .date .years {
        font-size: 11px;
    }
}