html{
    font-size: 0.83vw;
}
.container-box{
    width: 83.33%;
    max-width: 1600px;
}
.detail-title{
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-top: 0.5em;
}
.detail-date{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    text-align: center;
    letter-spacing: 1px;
    font-size: 1rem;
    color: #919396;
    position: relative;
    margin: 4rem 0;
}
.detail-date span {
    flex-shrink: 0;
    margin: 0 30px;
}
 .detail-date:before{
    content: "";
    width: 100%;
    background: #ccc;
    height: 1px;
}
 .detail-date:after{
    content: "";
    width: 100%;
    background: #ccc;
    height: 1px;
}
.detail-content p{
    text-indent: 2em;
    font-size: 1.6rem;
    line-height: 2;
    margin: 0.75em 0;
    color: #595757 ;
}
.detail-content img {
    width: 40rem;
    height: auto;
    max-width: 100%;
}
.news-detail-back{
    margin: 2rem auto;
    width: 150px;
    height: 32px;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    border: 1px solid #bebebe;
    transition: all .3s;
    cursor: pointer;
    padding: 0.5rem 1.5rem;

}
.news-detail-back:hover{
    color: #0b6ec7;
    border-color: #0b6ec7;
}
.detail-action {
    display: flex;
    justify-content: space-around;
    margin: 2em 0;
}
.detail-action .detail-btn {
    float: left;
    margin: 0 .2em;
    width: 12em;
    height: 2.5em;
    line-height: 2.5em;
    text-align: center;
    border: 1px solid #bebebe;
    transition: all .3s;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: #333333;
}
.detail-action .detail-btn.disabled {
    border: 1px solid #eee;
    color: #eee;
    cursor: not-allowed;
}
.detail-action .detail-btn a {
    display: block;
    color: inherit;
}
.detail-action .detail-btn:hover {
    border: 1px solid #0b6ec7;
    color: #0b6ec7;
}

@media screen and (max-width: 1200px) {
    .container-box{
        width: 100%;
        padding: 0 15px;
    }
}
@media screen and (max-width: 650px) {
    .detail-title{
        font-size: 1.5rem;
    }
    .detail-date {
        margin: 2rem 0;
    }
    .detail-content p {
        font-size: 1rem;
    }
    .detail-content img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}<!--0.00024008750915527-->