.view_search {
    width: 270px;
    height: 50px;
    background: #ffffff;
    border: 1px solid #e1e6f0;
    display: flex;
    align-items: center;
    padding: 0 14px;
    box-sizing: border-box;
    margin-top: 30px;
}

.view_search input {
    flex: 1;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: none;
    outline: none;
    color: #333333;
    font-size: 14px;
    margin-right: 14px;
}

.view_search .C__icon {
    font-size: 24px;
    color: #969595;
}

/* 文章内容 */
.view_article_main {
    width: 100%;
    box-sizing: border-box;
}

.view_article_top {
    padding: 45px 0;
}

.view_article_top .title {
    font-size: 30px;
    text-align: center;
    color: #333333;
}

.view_article_top p {
    display: flex;
    justify-content: center;
    align-items: center;
}
.view_article_top p span{
    font-size: 14px;
    color: #969595;
    margin: 15px 0 0 30px;
}
.view_article_top p span a{
    font-size: 14px;
    color: #969595;
}
.view_article_top p span:first-child{
    margin-left: 0;
}
.view_article_Contents {
    color: #3b3e4e;
    font-size: 16px;
    line-height: 1.7;
    padding: 0 0 100px;
    box-sizing: border-box;
    word-wrap: break-word;
    word-break: normal;
    text-align: justify;
    /* white-space: pre-line; */
    border-bottom: 1px dashed #DAE0EA;
}

.view_article_Contents img,
.view_article_Contents video,
.view_article_Contents audio {
    max-width: 100%;
}

.view_article_bot {
    padding: 30px 0 15px;
    display: flex;
    justify-content: space-between;
}
.view_article_bot>div{
    flex: 1;
    overflow: hidden;
    font-size: 14px;
    color: #333333;
    display: flex;
    align-items: center;
}
.view_article_bot>div:last-child{
    justify-content: flex-end;
}
.view_article_bot>div a{
    font-size: 14px;
    color: #333333;
    max-width:210px;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.view_article_bot>div span{
    margin: 0 15px;
    color: #333333;
}

.view_article_bot>div.active a,
.view_article_bot>div.active span{
    color:#bbbbbb;
}

/*屏幕小于或等于1200px*/
@media screen and (max-width:1200px) {
    /* .view_contents_main {
        padding: 0 40px;
    } */
}