.bread{
    font-weight: 400;
    font-size: 14px;
    color: rgba(0,0,0,0.6);
    margin:16px 0 50px 0;
}
.bread a{
    color: rgba(0,0,0,0.6);
    text-decoration: none;
    margin:0 4px;
}
.bread a:hover{
    color: #065692;
    text-decoration: underline;
}
.news-list{
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.news-list-item{
    width: 364px;
    height: 416px;
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-right: 54px;
    margin-bottom: 24px;
    overflow: hidden;
}
.news-list-item figure{
    background-image: url("../images/default-bg.png");
    background-size: 60% auto;
    background-repeat: no-repeat;
    background-position: center;
    height: 208px;
    background-color: #f5f5f5;
}
.news-list-item:nth-child(3n){
    margin-right: 0;
}
.item-title{
    font-weight: bolder;
    font-size: 18px;
    color: rgba(0,0,0,0.9);
    line-height: 28px;
    max-height: 56px;
    overflow: hidden;
    margin:10px 24px 0 24px;
}

.item-desc{
    font-weight: 400;
    font-size: 14px;
    color: rgba(0,0,0,0.5);
    line-height: 22px;
    height: 66px;
    overflow: hidden;
    margin:10px 24px;
}
.news-list-item .publish_time{
   justify-content: left;
    margin:0 24px;
}
.news-list-item a{
    text-decoration: none;
}
.news-list-item a .item-title{
    color: rgba(0,0,0,0.9);
    text-decoration: none;
}
.news-list-item a:hover .item-title{
    color: rgba(0,0,0,0.9);
    text-decoration: underline;
}
.news-list-item a .item-desc{
    color: rgba(0,0,0,0.5);
    text-decoration: none;
}
.news-list-item a:hover .item-desc{
    color: rgba(0,0,0,0.5);
    text-decoration: underline;
}
.news-list-item a .publish_time{
    color: rgba(0,0,0,0.6);
    text-decoration: none;
}
.news-list-item a:hover .publish_time{
    color: rgba(0,0,0,0.6);
    text-decoration: none;
}
.news-details{
    margin: 0 auto;
}
.news-details .title{
    color: rgba(0,0,0,0.9);
    font-weight: 600;
    font-size: 36px;
    text-align: center;
}
.publish_time{
    align-items: center;
    display: flex;
    margin: 24px 0 36px 0;
    text-align: center;
    font-size: 14px;
    justify-content: center;
}
.publish_time .clock{
    align-items: center;
    border:solid 1px  rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    margin-right: 2px;
    width: 12px;
    height: 12px;
    justify-content: center;
    overflow: hidden;
}
.publish_time .clock:before{
    content: '';
    border-left:solid 1px  rgba(0,0,0,0.5);
    border-bottom:solid 1px  rgba(0,0,0,0.5);
    display: inline-block;
    margin-left: 2px;
    margin-bottom: 2px;
    width: 4px;
    height: 4px;
    overflow: hidden;
}
.news-details-content{
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 50px;
}
.news-details-content img{
    max-width: 800px;
}
.news-details-content p{
    margin:10px 0;
}
.content-previous-next{
    border-top: 1px solid #D9D9D9;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    padding-top: 36px;
    margin:0 auto 80px auto;
}
.content-previous-next a{
    color: rgba(0,0,0,0.6);
    text-decoration: none;
}
.content-previous-next a:hover{
    color: rgba(0,0,0,0.6);
    text-decoration: underline;
}
.content-previous-next a i{
    font-style: normal;
    flex-grow: 0;
    flex-shrink: 0;
}

@media (max-width: 1199px) {
    .news-list{
        flex-direction: column;
    }
    .news-list-item{
        height: auto;
        width: auto;
        margin-right: 0;
        margin-bottom: .5rem;
    }
    .news-list-item figure{
        width: 100%;
    }
    .news-list-item a .item-title{
        font-weight: bolder;
        font-size: .32rem;
        color: rgba(0,0,0,0.9);
        line-height: .4rem;
        max-height: .8rem;
        overflow: hidden;
        margin: .2rem 0 0 0;
    }
    .item-desc {
        font-weight: 400;
        font-size: .28rem;
        color: rgba(0,0,0,0.5);
        line-height: .4rem;
        height: .8rem;
        overflow: hidden;
        margin: .2rem 0;
    }
    .news-details .title{
        font-size: .32rem;
    }
    .publish_time{
        margin: .2rem 0 .4rem 0;
        font-size: .28rem;
    }
    .news-details-content {
        font-size: .28rem;
        line-height: .5rem;
        margin-bottom: .48rem;
    }
    .news-details-content img{
        max-width: 100%;
    }
    .content-previous-next{
        flex-direction: column;
        border-top: 1px solid #D9D9D9;
        font-size: .24rem;
        padding-top:.32rem;
        margin: 0 0 .48rem 0;
    }
    .content-previous-next a:first-child{
        margin-bottom: .1rem;
    }
    .news-list-item a .publish_time{
        margin:0;
    }
}

