@charset "utf-8";
/*列表通用 index、news*/
.news-list .pic:before{
    display: none;
}
.news-list .item .box{
    top: 0;
    transition: all .3s ease;
}
.news-list .item .pic{
    position: relative;
    box-sizing: border-box;
}
.news-list .date {
    font-family: 'Prompt', serif;
}
.news-list .item .name{
    color: #121212;
    letter-spacing: 0.85px;
    transition: all .3s ease;
}
.news-list .box:hover .name{
    color: #06348B;
}
.news-list .item .description{
    color: #666666;
    letter-spacing: 0.85px;
    line-height: 1.5;
}
/*/列表通用 index、news*/
/*n_type1*/
.news-list.type1 .item:nth-of-type(2n) .box {
    background: #F0F3F7;
}
.news-list.type1 .item:nth-child(2n) .txt_in {
    background: #F0F3F7;
}
.news-list.type1 .item {
    border-bottom: 1px solid #ddd;
}
.news-list.type1 .txt {
    width: 80%;
}
.news-list .btn.more{
    position: relative;
    z-index: 5;
    overflow-x: unset;
    border: 3px solid #0B398C;
    background: #fff;
    color: #1980C3;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 34px;
    border-radius: 0;
    font-family: 'Prompt', serif;
    overflow: hidden;
}
.news-list .btn.more:before {
    content: '';
    position: absolute;
    height: 0%;
    left: 50%;
    top: 50%;
    width: 150%;
    background: #0B398C;
    transform: translateX(-50%) translateY(-50%) rotate(-25deg);
    transition: all 0.3s ease;
    z-index: -1;
}
.news-list .box:hover .btn.more:before {
    height: 450%;
}
.news-list .box:hover .btn.more {
    color: #fff;
    background: transparent;
}
/*/n_type1*/
/*n_type2*/
.news-list .btn.more {
    margin: 22px 0 0;
}
.news-list.type2 .item {
    padding: 0 10px 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
}
/*/n_type2*/
/*n_type3*/
.news-list.type3 .item {
    margin: 0 0 40px;
    border-left: solid #ddd 1px;
}
.news-list.type3 .item .box{
    padding: 20px 0 0;
}
/*/n_type3*/
/*n_type4*/
.news-list.type4 {
    margin: 0 -10px;
}
.news-list.type4 .item{
    padding: 0 10px;
    margin-bottom: 40px;
}
.news-list.type4 .item .box{
    border: 0;
    background: #F0F3F7;
}
.news-list.type4 .item .box:hover{
    background: -webkit-linear-gradient(top, #08368B 0, #1981C3 100%);
}
.news-list.type4 .item .date,
.news-date{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: -30px 0 15px;
    padding: 0;
    color: #fff;
    font-weight: 600;
    line-height: 1;
    border-radius: 0;
    background: -webkit-linear-gradient(top, #08368B 0, #1981C3 100%);
    font-family: 'Prompt', serif;
    transition: all 0.3s 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: #fff;
    color: #08368B;
}
.news-list.type4 .box:hover .name{
    color: #fff;
}
.news-list.type4 .box:hover .description{
    color: rgb(255 255 255 / 70%);
}
.news-list.type4 .description{
    max-height: 75px;
}
/*/n_type4*/
/*瀑布流*/
.masonry-list .item:nth-child(n),
.has-side .masonry-list .item:nth-child(n){
    clear: none!important;
}
/*/瀑布流*/
/*------------ content ------------*/
.news-header{
    display: flex;
    flex-wrap: wrap;
}
.news-date{
    text-align: center;
    width: 62px;
    height: 62px;
    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%;
    margin: 0 0 10px;
}
.news-title{
    font-size: 20px;
    font-weight: bold;
    padding: 10px 0;
    margin: 10px 0;
    display: block;
    width: 100%;
    color: #121212;
    line-height: 1.5;
    border: 1px solid #ddd;
    border-width: 1px 0;
}
/*------------ /content ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1000px){
    .news-list.type4 {
        margin: 0 -5px;
    }
    .news-list.type4 .item{
        padding: 0 5px;
    }
    .news-list.type4 .txt {
        padding: 0 15px 15px 15px;
    }
}