/* 内页广告 */
.view_banner {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.view_banner .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.view_banner .swiper-slide {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    display:block;
}
.view_banner_bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(0,0,0,0.5);
    z-index:1;
}
.view_banner_list {
    position:relative;
    z-index:2;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    margin: 0 auto;
}

.view_banner_list .title {
    color: #ffffff;
    font-size: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.view_banner_list .describe {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.view_banner_list .tag {
    width: 130px;
    height: 40px;
    font-size: 14px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.20);
    border: 1px solid #ffffff;
    margin-top: 90px;
}

.view_banner_list a:hover {
    /* color: #EA1100;
    border-color: #EA1100; */
}

.view_article_pagination {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 30px;
}

.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_contents {
    width: 100%;
    background-color: #ffffff;
}

.view_contents_main {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
}

.view_contents_main_left {
    width: 270px;
    position: relative;
    padding-top: 50px;
    margin-top:0;
}

.view_contents_main_left>div {
    width: 270px;
    height: fit-content;
}

.view_article_left_title {
    width: 100%;
    height: 250px;
    background: #ffffff;
    border: 1px solid #e1e6f0;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.view_article_left_title img {
    width: 130px;
    height: 90px;
    object-fit: cover;
}

.view_article_left_title div {
    font-size: 20px;
    color: #333333;
    margin-top: 25px;
    padding: 0 20px;
    word-wrap: break-word;
    word-break: normal;
}

.view_article_left_title p {
    font-size: 16px;
    color: #969595;
    margin-top: 8px;
    padding: 0 20px;
    word-wrap: break-word;
    word-break: normal;
}

/* 内容部分 */
.view_contents_main_right {
    flex: 1;
    overflow: hidden;
    margin-left: 30px;
    padding-top: 50px;
}

/* 文章内容 */
.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_l_tag {
    font-size: 20px;
    font-weight: 700;
    color: #3b3e4e;
    margin-top: 40px;
    position: relative;
    padding-left: 15px;
}

.view_article_l_tag::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc((100% - 20px)/2);
    width: 3px;
    height: 20px;
    background: #e50012;
}

.view_article_Contents {
    color: #3b3e4e;
    font-size: 16px;
    line-height: 1.7;
    padding: 20px 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 10px;
    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;
    } */
}