@charset "utf-8";
/*列表通用 index、news*/
.news-list .pic:before {
    display: none;
}
.news-list .item .box {
    top: 0;
    border-radius: 20px;
    transition: all .3s ease;
}
.news-list .item .pic {
    position: relative;
    box-sizing: border-box;
    border-radius: 20px 20px 0 0;
}
.news-list .item .name{
    color: #484848;
    letter-spacing: 1px;
    height: 28px;
    line-height: 28px;
    -webkit-line-clamp: 1;
    transition: all 0.3s ease;
}
.news-list .box:hover .name{
    color: #796A56;
}
.news-list .item .description{
    color: #828282;
    letter-spacing: 0.9px;
    line-height: 1.5;
}
.news-list .date {
    color: #796A56;
    font-family: 'Quicksand', serif;
}
/*/列表通用 index、news*/
/*n_type1*/
.news-list.type1 .item {
    border-bottom: 1px solid #ddd;
}
.news-list .btn.more{
    z-index: 5;
    overflow-x: hidden;
    color: #fff;
    font-weight: normal;
    background: #796A56;
    border-radius: 40px;
    transition: all 0.3s ease;
}
.news-list .box:hover .btn.more {
    background: #EFD155;
    color: #796A56;
}
.news-list.type1 .item:nth-child(2n) .txt_in {
    background: #f5f5f5;
}
/*/n_type1*/
/*n_type2*/
.news-list.type2 .item .pic {
    border-radius: 20px;
}
.news-list.type2 .item {
    padding: 0 10px 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
}
/*/n_type2*/
/*n_type3*/
.news-list.type3 .item {
    border-left: 1px solid #ddd;
}
/*/n_type3*/
/*n_type4*/
.news-list.type4 .txt {
    position: static;
    padding: 15px;
}
.news-list.type4 .item .box{
    border: 0;
    background: #F2F2F2;
}
.news-list.type4 .item .date,
.news-date{
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    color: #fff;
    font-weight: normal;
    line-height: 1;
    background: #A3CCE1;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
}
.news-list.type4 .item .box:hover .date {
    background: #F5B2AA;
}
.news-list.type4 .item .date .day{
    display: block;
    width: 100%;
    line-height: 0.8;
    margin-bottom: -15px;
    font-size: 32px;
    font-weight: bold;
}
/*/n_type4*/
/*n_瀑布流*/
.masonry-list .item:nth-child(n),
.has-side .masonry-list .item:nth-child(n){
    clear: none!important;
}
/*/n_瀑布流*/
/*------------ content ------------*/
.news-header{
    display: flex;
    flex-wrap: wrap;
}
.news-date{
    position: relative;
    text-align: center;
    top: unset;
    left: unset;
}
.news-date .day{
    display: block;
    width: 100%;
    line-height: 0.8;
    margin-bottom: -15px;
    font-size: 32px;
    font-weight: 600;
}
.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{
    position: relative;
    display: block;
    margin: 10px 0;
    padding: 10px 0;
    width: 100%;
    color: #7b6956;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.5;
    border: 1px dashed #ddd;
    border-width: 1px 0;
}
/*------------ /content ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1000px){
    .news-list.type4 .txt {
        padding: 15px;
    }
    .news-list.type4 .item .date {
        top: 10px;
        left: 10px;
        width: 50px;
        height: 50px;
    }
    .news-list.type4 .item .date .day {
        font-size: 25px;
    }
    .news-list.type4 .date .month,
    .news-list.type4 .date .years {
        font-size: 10px;
    }
}