
.bannerImg {
    height: 600px;
    width: 100%;
}
.content {
    width: var(--default-width);
}
.vertical-line-hr {
    height: 12px;
}
.content{
}
.title{
    color:#333;
    font-size:28px;
    font-weight:bold;
}
.news-detail {
    width: 860px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 20px;
    box-sizing: border-box;
}
    .news-detail h2 {
        color: #333;
    }
    .news-time {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-bottom: 16px;
        border-bottom: 1px solid #dedede;
        margin-bottom: 16px;
    }
.news-time p{
    position:relative;
    margin-right: 26px;
    color:#666;
    font-size: 16px;
}
    .news-time p::after {
        content: '';
        position: absolute;
        margin: 0 12px;
        width: 1px;
        height: 100%;
        background-color: #dedede;
    }
.main-text{
    font-size:16px;
    margin-bottom:20px;
    line-height:2;
    color:#666;
}