@charset "utf-8";
/*列表通用 index、news*/
.news-list .pic:before{
    display: none;
}
.news-list .item .pic {
    border-radius: 8px;
}
.news-list .item .box{
    transition: all .3s ease;
    top: 0;
    border-radius: 8px;
}
.news-list .item .pic{
    position: relative;
    box-sizing: border-box;
}
.news-list .item .name{
    color: #202020;
    font-size: 20px;
    letter-spacing: 1px;
    -webkit-line-clamp: 1;
    line-height: 28px;
    max-height: 28px;
    margin: 0 0 5px;
    transition: all 0.3s ease;
}
.news-list .box:hover .name{
    color: #1D2B6A;
}
.news-list .item .description{
    color: #999;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.5;
    transition: all 0.3s ease;
    max-height: 48px;
    -webkit-line-clamp: 2;
}
.news-list .item .box:hover .description{
    color: #666;
}
/*/列表通用 index、news*/
/*n_type1*/
.news-list.type1 .date .month,
.news-list.type1 .date .years {
    font-size: 20px;
}
.news-list.type1 .item:nth-child(2n) .txt_in {
    background: #F3F4F7;
}
.news-list .btn.more{
    z-index: 5;
    overflow-x: hidden;
    color: #fff;
    background: #1D2B6A;
    border-radius: 40px;
    font-weight: normal;
    transition: all 0.3s ease;
}
.news-list .box:hover .btn.more {
    color: #fff;
    background: #E11715;
}
.news-list .date {
    font-family: 'Cormorant Garamond', serif;
}
/*/n_type1*/
/*n_type2*/
.news-list.type2 .date {
    font-size: 40px;
    margin: 0 0 5px;
}
.news-list.type2 .date .month,
.news-list.type2 .date .years {
    font-size: 20px;
}
.news-list.type2 .item {
    border-bottom: 2px dotted #ddd;
}
/*/n_type2*/
/*n_type3*/
.news-list.type3 .date .month,
.news-list.type3 .date .years,
.news-list.type3 .date .day {
    font-size: 20px;
    line-height: 1;
    margin: 0 0 10px;
}
.news-list.type3 .item {
    border-left: 2px dotted #ddd;
}
/*/n_type3*/
/*n_type4*/
.news-list.type4 .item {
    margin-bottom: 40px;
}
.news-list.type4 .item .box{
    transition: all .3s ease;
    border: 0;
    background: #fff;
}
.news-list.type4 .item .box:hover{
    top: -10px;
}
.news-list.type4 .txt {
    padding: 0;
}
.news-list.type4 .item .date,
.news-date{
    font-weight: normal;
    color: #fff;
    background: #1D2B6A;
    border-radius: 100%;
    font-family: 'Cormorant Garamond', serif;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: -50px 10px 15px;
    padding: 0;
    line-height: 1;
    transition: all 0.3s ease;
}
.news-list.type4 .item .box:hover .date{
    background: #E11715;
}
.news-list.type4 .item .date::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border: 1px solid #1D2B6A;
    border-radius: 100%;
    transition: all 0.3s ease;
}
.news-list.type4 .item .box:hover .date::before {
    border-color: #E11715;
}
.news-list.type4 .item .date .day{
    display: block;
    width: 100%;
    line-height: 0.8;
    margin-bottom: 22px;
    font-size: 40px;
}
.news-list.type4 .date .month,
.news-list.type4 .date .years {
    font-size: 16px;
    margin-top: -40px;
    font-weight: 600;
}
/*/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{
    position: relative;
    text-align: center;
    margin: 0;
    width: 62px;
    height: 62px;
}
.news-date::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border: 1px solid #1D2B6A;
    border-radius: 100%;
    transition: all 0.3s ease;
}
.news-date .day{
    display: block;
    width: 100%;
    line-height: 0.8;
    margin-bottom: 22px;
    font-size: 40px;
}
.news-date .month{
    order: 2;
}
.news-date .month:before{
    content: '.'
}
.news-date .month,
.news-date .years{
    line-height: 1;
    letter-spacing: 0;
    font-size: 16px;
    margin-top: -40px;
    font-weight: 600;
}
.share_box{
    text-align: left;
    display: block;
    order: 2;
    width: 100%;
}
.news-title{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    margin: 10px 0;
    display: block;
    width: 100%;
    color: #444;
    border: 1px dotted #ddd;
    border-width: 2px 0;
    padding: 10px 0 10px;
    letter-spacing: 2px;
}
/*------------ /content ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1000px){
    .news-list.type4 .item .box:hover{
        top: 0;
    }
}