/* 文章内容 */
.view_article_main {
    width: 100%;
    box-sizing: border-box;
}

.view_article_img {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.view_article_img .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.view_article_img .swiper-slide {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.view_article_pagination {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 20px;
}

.view_article_pagination span {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background-color: rgba(0, 0, 0, 1);
    border: 1px solid #ffffff;
}

.view_article_pagination .swiper-pagination-bullet-active {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.view_article_arrow {
    position: absolute;
    left: 0;
    top: calc((100% - 90px)/2);
    z-index: 10;
    width: 50px;
    height: 90px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: rotate(180deg);
    padding-left: 5px;
}

.view_article_arrow.arrow_right {
    right: 0;
    left: auto;
    transform: rotate(0deg);
}
.view_article_title {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    color: #3b3e4e;
    padding:30px 0 20px;
}
.view_article_Contents {
    color: #3b3e4e;
    font-size: 16px;
    line-height: 1.7;
    padding: 0 0 40px;
    box-sizing: border-box;
    word-wrap: break-word;
    word-break: normal;
    text-align: justify;
    /* white-space: pre-line; */
}
.view_article_Contents img,
.view_article_Contents video,
.view_article_Contents audio{
    max-width: 100%;
}
/*屏幕小于或等于1200px*/
@media screen and (max-width:1200px) {
    /* .view_contents_main{
        padding: 0 40px;
    } */
}