/**
    *编辑器         \View\css\diy\editPageComm.css
    *编辑器-预览    \View\css\diy\pageCom.css
    *编辑器-发布    \Model\viewsRes\publish\comm.css
*/
@charset "utf-8";
/*----------------公共部分----------------*/
html {
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    background-repeat: no-repeat;
    background-position: left top;
    position: relative;
    overflow-x: hidden;
    background: #f1f1f1;
}

body, li, ul, ol, dl, dt, dd, form, input, textarea, h1, h2, h3, h4, h5, h6, p, select {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    font-size: 12px;
    font: 12px/1.5 tahoma, arial, "Microsoft YaHei";
    outline: 0 none;
    color: #333;
}

em, i {
    font-style: normal;
}

a {
    color: #333;
}

a {
    text-decoration: none;
}

* {
    margin: 0px;
    padding: 0px;
    outline: none !important;
}

img {
    -ms-interpolation-mode: bicubic;
    border: none;
}

.view {
    z-index: 1;
    position: absolute;
}

.horizontal .view {
    position: relative;
    float: left;
}

.vertical .view {
    position: relative;
}

.view_contents {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    z-index: 10;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box; /*添加后，模块的内边距和边框不会再溢出*/
}

.layout {
    position: relative;
    width: 100%;
    margin: 0px auto;
    padding: 0px;
    z-index: 1;
}

.layout > .view_contents { /*overflow: visible;*/
    cursor: default;
}

/*流布局*/
.flow .view_contents > .view {
    float: left;
}

.clear::after {
    clear: both;
    content: '';
    display: block;
    width: 0;
    height: 0;
    visibility: hidden;
}

/*苹果去除样式*/
select, input[type='button'], input[type="reset"], input[type='submit'], input[type='text'], input[type="password"], input[name='query'], input[name='d'] {
    -webkit-appearance: none;
    border-radius: 0px
}

input:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-modify: read-write-plaintext-only;
}

/*模块分页*/
.page_btn {
    clear: both;
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.page_btn a {
    display: inline-block;
    color: #333;
    box-sizing: border-box;
    margin: 0 5px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border: 1px solid #ccc;
    font-family: 'microsoft YaHei';
}

.page_btn a.cur, .page_btn a:hover {
    border: 1px solid #4c4c4c;
}

.prev_btn, .next_btn {
    font-family: '黑体' !important;
    border: 0 !important;
}

.no_page {
    border: 0 !important;
}

@media screen and (max-width: 768px) {
    /*分页*/
    .page_btn a:nth-child(n+5) {
        display: none;
    }

    .page_btn a:nth-last-child(1), .page_btn a:nth-last-child(2), .page_btn a:nth-last-child(3) {
        display: inline-block !important;
    }
}

/*图片放大样式*/
.imgBox {
    position: fixed;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.imgBox img {
    position: absolute;
    width: auto;
    max-width: 80%; /*max-height: 65%;*/
    border: 20px solid #fff;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.imgBox.scroll {
    overflow-y: scroll;
    overflow-x: hidden;
}

.imgBox.scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, .05);
}

.imgBox.scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, .02);
}

.imgBox.scroll::-webkit-scrollbar-button {
    background: #f7f7f7;
    height: 0;
}

.imgBox.scroll::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, .05);
}

.imgBox.scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .7);
    border-radius: 3px;
}

.imgBox.scroll img {
    top: 5%;
    margin-bottom: 5%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
}

.pos_fixed {
    position: fixed;
    width: 100%;
}

.imageButton {
    position: fixed;
    bottom: 15%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.imageButton span {
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0, 0, 0, .2);
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -ms-transition: all ease .2s;
    -o-transition: all ease .2s;
    transition: all ease .2s;
}

.imageButton span:hover {
    opacity: .8;
}

.imageButton span.closeShowPic {
    font-size: 40px;
    border-radius: 100%;
    font-family: serif;
    line-height: 1;
    background-color: #fff;
    padding: .2em;
    text-align: center;
}

@media screen and (max-width: 768px) {
    /*mobi*/
    .imgBox img {
        border-width: 10px;
    }

    .imgBox.scroll img {
        top: 5%;
        margin-bottom: 10vh;
    }
}

.jurisdiction_mask {
    top: 0;
    left: 0;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2147483647;
    display: none;
}

.jurisdiction_tips {
    width: 400px;
    background: #ffffff;
    position: absolute;
    left: 50%;
    top: 45%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 23px 20px;
    box-sizing: border-box;
    text-align: center;
}

.jurisdiction_tips img {
    display: block;
    margin: 0 auto;
}

.jurisdiction_tips h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    color: #575757;
    text-align: center;
    margin: 5px 0 0;
}

.jurisdiction_tips p {
    color: #999;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    margin: 0;
}

.jurisdiction_tips button {
    color: #fff;
    font-size: 12px;
    padding: 10px 0;
    margin: 10px 3px 0;
    background-color: #aaa;
    cursor: pointer;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    outline: none !important;
    width: 98px;
}

.jurisdiction_tips .jurisdiction_login {
    background: #ff0099;
}

.jurisdiction_tips button:hover {
    opacity: 0.8;
}

.jurisdiction_tips_mobile {
    display: none;
}

@media screen and (max-width: 450px) {
    .jurisdiction_tips {
        width: 80%;
        padding: 20px 15px;
    }

    .jurisdiction_tips p {
        display: none;
    }

    .jurisdiction_tips .jurisdiction_tips_mobile {
        display: block;
    }

    .jurisdiction_tips img {
        width: 60px;
    }

    .jurisdiction_tips h3 {
        font-size: 16px;
    }

    .jurisdiction_tips p {
        font-size: 14px;
    }

    .jurisdiction_tips button {
        margin-top: 12px;
        padding: 8px 0;
    }
}

body {
    background-position: left top;
}


#div_blank_1554258825725 {
    width: 1920px;
    height: 100px;
    position: absolute;
    top: 0px;
    left: calc(50% - 960px);
}

{
#div_blank_1554258825725 {
    height: 102px;
}

}
{
#div_blank_1554258825725 {
    width: 100%;
    height: 58px;
    top: 0px;
    left: 0%;
}

}
#div_blank_1554258825725 > .view_contents {
    overflow: visible;
}

#div_blank_1554258825725 {
    box-sizing: border-box;
    background: #d2110f;
}

{
#div_blank_1554258825725 {
    box-sizing: border-box;
}

}
@media screen and (max-width: 640px) {
    #div_blank_1554258825725 {
        box-sizing: border-box;
    }
}

#text_style_01_1554259062996 {
    width: 30.833333333333336%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 24px;
    left: 0%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554259062996 {
        left: 1.9999337221633087%;
        top: 0;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554259062996 {
        width: 47.46666666666667%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 4px;
        left: 2%;
    }
}

#text_style_01_1554259062996 > .view_contents {
    font-size: 24px;
    line-height: 26px;
    color: #ffffff;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554259062996 > .view_contents {
        font-size: 22px;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554259062996 > .view_contents {
        font-size: 20px;
    }
}

#text_style_01_1554259094732 {
    width: 30.833333333333336%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 68px;
   
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554259094732 {
        left: 1.9999337221633087%;
        top: 57px;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554259094732 {
        width: 58.13333333333334%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 34px;
        left: 2%;
    }
}

#text_style_01_1554259094732 > .view_contents {
    color: #ffffff;
    line-height: 18px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554259094732 > .view_contents {
        font-size: 14px;
    }
}

#dh_style_28_1554260779181 {
    width: 60%;
    z-index: 999;
    position: absolute;
    top: 48px;
    left: 40%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #dh_style_28_1554260779181 {
        z-index: 999;
        left: 37.899323966065744%;
        top: 50px;
    }
}

@media screen and (max-width: 640px) {
    #dh_style_28_1554260779181 {
        width: 13.333333333333334%;
        z-index: 999;
        top: 7px;
        left: 86.66666666666667%;
    }
}

#dh_style_28_1554260779181 > .view_contents {
    overflow: visible;
}

#dh_style_28_1554260779181 .mainMenuSet {
    font-size: 18px;
    color: #ffffff;
    font-weight: normal;
}

#dh_style_28_1554260779181 .mainMenuSet:hover {
    font-size: 18px;
    color: #ffffff;
    border-width: 6px;
    border-style: solid;
    border-color: #ffffff;
    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
    font-weight: normal;
}

#dh_style_28_1554260779181 #hot > a {
    font-size: 18px;
    color: #ffffff;
    border-width: 6px;
    border-style: solid;
    border-color: #ffffff;
    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
    font-weight: normal;
}

/*----------------------电脑板式样式----------------------*/
#dh_style_28_1554260779181 {

}

/*----------------------平板板式样式----------------------*/
@media screen and (min-width: 641px) and (max-width: 1200px) {
    #dh_style_28_1554260779181 {

    }
}

/*----------------------手机板式样式----------------------*/
@media screen and (max-width: 640px) {
    #dh_style_28_1554260779181 {

    }

    #dh_style_28_1554260779181 .menuStyle_28 .miniMenu .leftBox .sidebar {
        color: #fff;
    }
}

#comm_layout_header {
    height: 100px;
    z-index: 99999;
    margin-bottom: 30px
}

#comm_layout_header > .view_contents {
    max-width: 1200px;
    overflow: visible;
}


#banner_style_01_1554259638748 {
    width: 100%;
    height: 588px;
    position: absolute;
    top: 0px;
    left: 0%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #banner_style_01_1554259638748 {
        height: 410px;
        left: 0%;
    }
}

@media screen and (max-width: 640px) {
    #banner_style_01_1554259638748 {
        width: 100%;
        height: 187px;
        top: 0px;
        left: 0%;
    }
}

#layout_1554259634102 {
    height: 588px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554259634102 {
        height: 410px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554259634102 {
        height: 187px;
    }
}

#layout_1554259634102 > .view_contents {
    overflow: visible;
}

#layout_1554260909488 {
    height: 81px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554260909488 {
        height: 41px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554260909488 {
        height: 31px;
    }
}

#layout_1554260909488 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}


#text_style_01_1554270702237 {
    width: 30.833333333333336%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 2px;
    left: 34.583333333333336%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554270702237 {
        top: 0px;
        left: 34.58211823966066%;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554270702237 {
        width: 96%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 0px;
        left: 2%;
    }
}

#text_style_01_1554270702237 > .view_contents {
    text-align: center;
    font-size: 30px;
    line-height: 32px;
    color: #333333;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554270702237 > .view_contents {
        font-size: 28px;
        line-height: 30px;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554270702237 > .view_contents {
        font-size: 18px;
        line-height: 20px;
    }
}

#text_style_01_1554270762480 {
    width: 30.833333333333336%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 62px;
    left: 34.583333333333336%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554270762480 {
        top: 59px;
        left: 34.58211823966066%;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554270762480 {
        width: 96%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 37px;
        left: 2%;
    }
}

#text_style_01_1554270762480 > .view_contents {
    text-align: center;
    color: #333333;
    line-height: 18px;
}

@media screen and (max-width: 640px) {
    #text_style_01_1554270762480 > .view_contents {
        font-size: 14px;
    }
}

#div_blank_1554271378775 {
    width: 60px;
    height: 4px;
    position: absolute;
    top: 51px;
    left: calc(50% - 30px);
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #div_blank_1554271378775 {
        top: 48px;
        left: 46.8186638388123%;
    }
}

@media screen and (max-width: 640px) {
    #div_blank_1554271378775 {
        width: 60px;
        height: 2px;
        top: 30px;
        left: 42%;
    }
}

#div_blank_1554271378775 > .view_contents {
    overflow: visible;
}

#div_blank_1554271378775 {
    box-sizing: border-box;
    background: #d2110f;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #div_blank_1554271378775 {
        box-sizing: border-box;
    }
}

@media screen and (max-width: 640px) {
    #div_blank_1554271378775 {
        box-sizing: border-box;
    }
}

#layout_1554270697549 {
    height: 80px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554270697549 {
        height: 77px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554270697549 {
        height: 55px;
    }
}

#layout_1554270697549 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}

#layout_1554270686678 {
    height: 61px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554270686678 {
        height: 31px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554270686678 {
        height: 16px;
    }
}

#layout_1554270686678 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}


#newsList_style_01_1554273092534 {
    width: 49%;
    position: absolute;
    top: 0px;
    left: 0%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_01_1554273092534 {
        left: 2%;
        width: 47%;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_01_1554273092534 {
        width: 96%;
        top: 245px;
        left: 2%;
        display: none;
    }
}

#newsList_style_01_1554273092534 .titleSet {
    color: #333333;
    font-size: 24px;
    line-height: 48px;
}

#newsList_style_01_1554273092534 .detailSet {
    color: #999999;
    font-size: 14px;
    line-height: 28px;
}

#newsList_style_01_1554273092534 .datSet {
    color: #d81e06;
    border-width: 0px;
    padding-right: 8px;
    margin-right: 11px;
}

#newsList_style_01_1554273092534 .yueSet {
    color: #d81e06;
}

#newsList_style_01_1554273092534 .riSet {
    color: #d81e06;
}

#newsList_style_01_1554273092534 .nianSet {
    background: #ffffff;
    color: #999999;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_01_1554273092534 .titleSet {
        font-size: 18px;
        line-height: 29px;
    }
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_01_1554273092534 .detailSet {
        line-height: 20px;
    }
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_01_1554273092534 .datSet {
        margin-right: 8px;
        padding-right: 8px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_01_1554273092534 .titleSet {
        font-size: 14px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_01_1554273092534 .detailSet {
        font-size: 12px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_01_1554273092534 .datSet {
        margin-right: 0px;
        padding-right: 14px;
    }
}

/*----------------------电脑板式样式----------------------*/
#newsList_style_01_1554273092534 {

}

/*----------------------平板板式样式----------------------*/
@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_01_1554273092534 {

    }
}

/*----------------------手机板式样式----------------------*/
@media screen and (max-width: 640px) {
    #newsList_style_01_1554273092534 {

    }
}

#image_style_01_1554276352738 {
    width: 49%;
    height: 401px;
    position: absolute;
    top: 15.5px;
    left: 51%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #image_style_01_1554276352738 {
        width: 47%;
        left: 51%;
        height: 302px;
        top: 11.5px;
    }
}

@media screen and (max-width: 640px) {
    #image_style_01_1554276352738 {
        width: 96%;
        height: 245px;
        top: 0px;
        left: 2%;
    }
}

#image_style_01_1554276352738 > .view_contents {
    overflow: visible;
}

#newsList_style_01_1554366536445 {
    width: 49%;
    position: absolute;
    top: 10px;
    left: 0.8333333333333334%;
    display: none;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_01_1554366536445 {
        width: 47%;
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_01_1554366536445 {
        width: 96%;
        top: 245px;
        left: 2%;
        display: block;
    }
}

#newsList_style_01_1554366536445 .titleSet {
    color: #333333;
    font-size: 24px;
    line-height: 48px;
}

#newsList_style_01_1554366536445 .detailSet {
    color: #999999;
    font-size: 14px;
    line-height: 28px;
}

#newsList_style_01_1554366536445 .datSet {
    color: #d81e06;
    border-width: 0px;
    padding-right: 8px;
    margin-right: 11px;
}

#newsList_style_01_1554366536445 .yueSet {
    color: #d81e06;
}

#newsList_style_01_1554366536445 .riSet {
    color: #d81e06;
}

#newsList_style_01_1554366536445 .nianSet {
    background: #ffffff;
    color: #999999;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_01_1554366536445 .titleSet {
        font-size: 18px;
        line-height: 29px;
    }
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_01_1554366536445 .detailSet {
        line-height: 20px;
    }
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_01_1554366536445 .datSet {
        margin-right: 8px;
        padding-right: 8px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_01_1554366536445 .titleSet {
        font-size: 14px;
        line-height: 14px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_01_1554366536445 .detailSet {
        font-size: 12px;
        line-height: 20px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_01_1554366536445 .datSet {
        margin-right: 0px;
        padding-right: 14px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_01_1554366536445 .modSet {
        height: 91px;
    }
}

/*----------------------电脑板式样式----------------------*/
#newsList_style_01_1554366536445 {

}

/*----------------------平板板式样式----------------------*/
@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_01_1554366536445 {

    }
}

/*----------------------手机板式样式----------------------*/
@media screen and (max-width: 640px) {
    #newsList_style_01_1554366536445 {

    }
}

#layout_1554270692654 {
    height: 432px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554270692654 {
        height: 327px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554270692654 {
        height: 548px;
    }
}

#layout_1554270692654 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}

#layout_1554275211827 {
    height: 81px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554275211827 {
        height: 41px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554275211827 {
        height: 31px;
    }
}

#layout_1554275211827 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}


#text_style_01_1554276651957 {
    width: 30.833333333333336%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 2px;
    left: 34.583333333333336%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554276651957 {
        top: 0px;
        left: 34.58211823966066%;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554276651957 {
        width: 96%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 0px;
        left: 2%;
    }
}

#text_style_01_1554276651957 > .view_contents {
    text-align: center;
    font-size: 30px;
    line-height: 32px;
    color: #333333;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554276651957 > .view_contents {
        font-size: 28px;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554276651957 > .view_contents {
        font-size: 18px;
        line-height: 20px;
    }
}

#text_style_01_1554276651962 {
    width: 30.833333333333336%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 62px;
    left: 34.583333333333336%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554276651962 {
        top: 59px;
        left: 34.58211823966066%;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554276651962 {
        width: 96%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 37px;
        left: 2%;
    }
}

#text_style_01_1554276651962 > .view_contents {
    text-align: center;
    color: #333333;
    line-height: 18px;
}

@media screen and (max-width: 640px) {
    #text_style_01_1554276651962 > .view_contents {
        font-size: 14px;
        line-height: 16px;
    }
}

#div_blank_1554276651966 {
    width: 60px;
    height: 4px;
    position: absolute;
    top: 51px;
    left: calc(50% - 30px);
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #div_blank_1554276651966 {
        top: 48px;
        left: 46.8186638388123%;
    }
}

@media screen and (max-width: 640px) {
    #div_blank_1554276651966 {
        width: 60px;
        height: 2px;
        top: 30px;
        left: 42%;
    }
}

#div_blank_1554276651966 > .view_contents {
    overflow: visible;
}

#div_blank_1554276651966 {
    box-sizing: border-box;
    background: #d2110f;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #div_blank_1554276651966 {
        box-sizing: border-box;
    }
}

@media screen and (max-width: 640px) {
    #div_blank_1554276651966 {
        box-sizing: border-box;
    }
}

#layout_1554276651956 {
    height: 80px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554276651956 {
        height: 77px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554276651956 {
        height: 53px;
    }
}

#layout_1554276651956 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}

#layout_1554276649405 {
    height: 61px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554276649405 {
        height: 31px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554276649405 {
        height: 16px;
    }
}

#layout_1554276649405 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}


#newsList_style_04_1554285686256 {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554285686256 {
        width: 96%;
        left: 2.014846235418876%;
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554285686256 {
        width: 96%;
        top: 0px;
        left: 2%;
        display: none;
    }
}

#newsList_style_04_1554285686256 .modSet {
    text-align: left;
    height: 479px;
}

#newsList_style_04_1554285686256 .titleSet {
    text-align: center;
    font-size: 24px;
    color: #333333;
}

#newsList_style_04_1554285686256 .detailSet {
    font-size: 14px;
    color: #666666;
    padding-right: 0px;
    text-align: left;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554285686256 .titleSet {
        font-size: 20px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554285686256 .titleSet {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554285686256 .detailSet {
        font-size: 12px;
        text-align: justify;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554285686256 .modSet {
        height: 240px;
    }
}

#newsList_style_04_1554362092688 {
    width: 100%;
    position: absolute;
    top: 10px;
    left: 0%;
    display: none;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554362092688 {
        width: 96%;
        display: block;
        left: 2.014846235418876%;
        top: 0%;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554362092688 {
        width: 96%;
        top: 506px;
        left: 2%;
        display: none;
    }
}

#newsList_style_04_1554362092688 .modSet {
    text-align: left;
    height: 489px;
}

#newsList_style_04_1554362092688 .titleSet {
    text-align: center;
    font-size: 24px;
    color: #333333;
}

#newsList_style_04_1554362092688 .detailSet {
    font-size: 14px;
    color: #666666;
    padding-right: 0px;
    text-align: left;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554362092688 .titleSet {
    }
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554362092688 .modSet {
        height: 388px;
    }
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554362092688 .detailSet {
        text-align: justify;
    }
}

#newsList_style_04_1554629656798 {
    width: 100%;
    position: absolute;
    top: 10px;
    left: 0%;
    display: none;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554629656798 {
        width: 96%;
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554629656798 {
        width: 96%;
        top: 0%;
        left: 2%;
        display: block;
    }
}

#newsList_style_04_1554629656798 .modSet {
    text-align: left;
    height: 479px;
}

#newsList_style_04_1554629656798 .titleSet {
    text-align: center;
    font-size: 24px;
    color: #333333;
}

#newsList_style_04_1554629656798 .detailSet {
    font-size: 14px;
    color: #666666;
    padding-right: 0px;
    text-align: left;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554629656798 .titleSet {
        font-size: 20px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554629656798 .titleSet {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554629656798 .detailSet {
        font-size: 12px;
        text-align: justify;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554629656798 .modSet {
        height: 240px;
    }
}

#layout_1554276681598 {
    height: 503px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554276681598 {
        height: 406px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554276681598 {
        height: 247px;
    }
}

#layout_1554276681598 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}

#layout_1554287878609 {
    height: 81px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554287878609 {
        height: 41px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554287878609 {
        height: 31px;
    }
}

#layout_1554287878609 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}


#text_style_01_1554288045430 {
    width: 30.833333333333336%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 2px;
    left: 34.583333333333336%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554288045430 {
        top: 0px;
        left: 34.58211823966066%;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554288045430 {
        width: 96%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 0px;
        left: 2%;
    }
}

#text_style_01_1554288045430 > .view_contents {
    text-align: center;
    font-size: 30px;
    line-height: 32px;
    color: #333333;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554288045430 > .view_contents {
        font-size: 28px;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554288045430 > .view_contents {
        font-size: 18px;
        line-height: 20px;
    }
}

#text_style_01_1554288045434 {
    width: 30.833333333333336%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 62px;
    left: 34.583333333333336%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554288045434 {
        top: 59px;
        left: 34.58211823966066%;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554288045434 {
        width: 96%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 37px;
        left: 2%;
    }
}

#text_style_01_1554288045434 > .view_contents {
    text-align: center;
    color: #333333;
    line-height: 18px;
}

@media screen and (max-width: 640px) {
    #text_style_01_1554288045434 > .view_contents {
        font-size: 14px;
        line-height: 16px;
    }
}

#div_blank_1554288045438 {
    width: 60px;
    height: 4px;
    position: absolute;
    top: 51px;
    left: calc(50% - 30px);
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #div_blank_1554288045438 {
        top: 48px;
        left: 46.8186638388123%;
    }
}

@media screen and (max-width: 640px) {
    #div_blank_1554288045438 {
        width: 60px;
        height: 2px;
        top: 30px;
        left: 42%;
    }
}

#div_blank_1554288045438 > .view_contents {
    overflow: visible;
}

#div_blank_1554288045438 {
    box-sizing: border-box;
    background: #d2110f;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #div_blank_1554288045438 {
        box-sizing: border-box;
    }
}

@media screen and (max-width: 640px) {
    #div_blank_1554288045438 {
        box-sizing: border-box;
    }
}

#layout_1554288045429 {
    height: 80px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554288045429 {
        height: 77px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554288045429 {
        height: 53px;
    }
}

#layout_1554288045429 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}

#layout_1554288027384 {
    height: 61px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554288027384 {
        height: 31px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554288027384 {
        height: 16px;
    }
}

#layout_1554288027384 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}

#layout_1000000000000 > .view_contents {
    max-width: 1200px
}

#newsList_style_04_1554349762660 {
    width: 100%;
    position: absolute;
    left: 0%;
    top: 0%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554349762660 {
        left: 0%;
        width: 100%;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554349762660 {
        width: 100%;
        top: 0px;
        left: 0%;
    }
}

#newsList_style_04_1554349762660 .titleSet {
    font-size: 30px;
    text-align: center;
}

#newsList_style_04_1554349762660 .modSet {
    height: 940px;
}

#newsList_style_04_1554349762660 .detailSet {
    font-size: 18px;
    text-align: justify;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554349762660 .modSet {
        height: 720px;
        text-align: left;
    }
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554349762660 .detailSet {
        text-align: justify;
        font-size: 14px;
    }
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554349762660 .titleSet {
        font-size: 28px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554349762660 .titleSet {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554349762660 .detailSet {
        font-size: 12px;
        line-height: 24px;
        text-align: justify;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554349762660 .modSet {
        height: 394px;
    }
}

#newsList_style_04_1554350026223 {
    width: 100%;
    position: absolute;
    left: 0%;
    top: 0px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554350026223 {
        width: 100%;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554350026223 {
        width: 100%;
        top: 0px;
        left: 0%;
    }
}

#newsList_style_04_1554350026223 .titleSet {
    font-size: 30px;
    text-align: center;
}

#newsList_style_04_1554350026223 .modSet {
    height: 940px;
}

#newsList_style_04_1554350026223 .detailSet {
    font-size: 18px;
    text-align: justify;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554350026223 .modSet {
        height: 720px;
    }
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554350026223 .detailSet {
        font-size: 14px;
        text-align: justify;
    }
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554350026223 .titleSet {
        font-size: 28px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554350026223 .modSet {
        height: 395px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554350026223 .titleSet {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554350026223 .detailSet {
        font-size: 12px;
        line-height: 24px;
        text-align: justify;
    }
}

#tab_style_03_1554346149326 {
    width: 100%;
    height: 940px;
    position: absolute;
    top: 1px;
    left: 0%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #tab_style_03_1554346149326 {
        height: 720px;
        width: 96%;
        left: 2%;
        top: 16px;
    }
}

@media screen and (max-width: 640px) {
    #tab_style_03_1554346149326 {
        width: 96%;
        height: 394px;
        top: 0px;
        left: 2%;
    }
}

#tab_style_03_1554346149326 > .view_contents {
    overflow: visible;
}

#layout_1554288047895 {
    height: 941px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554288047895 {
        height: 736px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554288047895 {
        height: 394px;
    }
}

#layout_1554288047895 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}

#layout_1554340619959 {
    height: 81px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554340619959 {
        height: 41px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554340619959 {
        height: 31px;
    }
}

#layout_1554340619959 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}


#text_style_01_1554340639385 {
    width: 30.833333333333336%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 2px;
    left: 34.583333333333336%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554340639385 {
        top: 0px;
        left: 34.58211823966066%;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554340639385 {
        width: 96%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 0px;
        left: 2%;
    }
}

#text_style_01_1554340639385 > .view_contents {
    text-align: center;
    font-size: 30px;
    line-height: 32px;
    color: #333333;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554340639385 > .view_contents {
        font-size: 28px;
        line-height: 30px;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554340639385 > .view_contents {
        font-size: 18px;
        line-height: 20px;
    }
}

#text_style_01_1554340639391 {
    width: 30.833333333333336%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 62px;
    left: 34.583333333333336%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554340639391 {
        top: 59px;
        left: 34.58211823966066%;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554340639391 {
        width: 96%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 37px;
        left: 2%;
    }
}

#text_style_01_1554340639391 > .view_contents {
    text-align: center;
    color: #333333;
    line-height: 18px;
}

@media screen and (max-width: 640px) {
    #text_style_01_1554340639391 > .view_contents {
        font-size: 14px;
        line-height: 16px;
    }
}

#div_blank_1554340639394 {
    width: 60px;
    height: 4px;
    position: absolute;
    top: 51px;
    left: calc(50% - 30px);
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #div_blank_1554340639394 {
        top: 48px;
        left: 46.8186638388123%;
    }
}

@media screen and (max-width: 640px) {
    #div_blank_1554340639394 {
        width: 60px;
        height: 2px;
        top: 30px;
        left: 42%;
    }
}

#div_blank_1554340639394 > .view_contents {
    overflow: visible;
}

#div_blank_1554340639394 {
    box-sizing: border-box;
    background: #d2110f;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #div_blank_1554340639394 {
        box-sizing: border-box;
    }
}

@media screen and (max-width: 640px) {
    #div_blank_1554340639394 {
        box-sizing: border-box;
    }
}

#layout_1554340639384 {
    height: 80px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554340639384 {
        height: 77px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554340639384 {
        height: 53px;
    }
}

#layout_1554340639384 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}

#layout_1554340627770 {
    height: 61px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554340627770 {
        height: 31px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554340627770 {
        height: 16px;
    }
}

#layout_1554340627770 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}


#newsList_style_04_1554372489744 {
    width: 100%;
    position: absolute;
    top: 1px;
    left: 0%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554372489744 {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554372489744 {
        width: 96%;
        top: 0px;
        left: 2%;
        display: none;
    }
}

#newsList_style_04_1554372489744 .titleSet {
    font-size: 24px;
    text-align: center;
}

#newsList_style_04_1554372489744 .detailSet {
    font-size: 14px;
    text-align: justify;
}

#newsList_style_04_1554372489744 .btnaSet {
    color: #d41d1b;
    border-color: #d41d1b;
    border-width: 0px;
    padding-left: 517px;
    font-size: 16px;
}

#newsList_style_04_1554372489744 .modSet {
    height: 527px;
}

#newsList_style_04_1554372725655 {
    width: 100%;
    position: absolute;
    top: 11px;
    left: 0%;
    display: none;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554372725655 {
        display: block;
        width: 96%;
        left: 2.014846235418876%;
        top: 0%;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554372725655 {
        width: 96%;
        top: 539px;
        left: 2%;
        display: none;
    }
}

#newsList_style_04_1554372725655 .titleSet {
    font-size: 24px;
    text-align: center;
}

#newsList_style_04_1554372725655 .detailSet {
    font-size: 14px;
}

#newsList_style_04_1554372725655 .btnaSet {
    color: #d41d1b;
    border-color: #d41d1b;
    border-width: 0px;
    padding-left: 535px;
}

#newsList_style_04_1554372725655 .modSet {
    height: 522px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554372725655 .titleSet {
        font-size: 22px;
    }
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554372725655 .btnaSet {
        padding-left: 382px;
        font-size: 14px;
    }
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554372725655 .modSet {
        height: 453px;
    }
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554372725655 .detailSet {
        text-align: justify;
    }
}

#newsList_style_04_1554372856257 {
    width: 100%;
    position: absolute;
    top: 11px;
    left: 0%;
    display: none;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554372856257 {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554372856257 {
        width: 96%;
        top: 0%;
        left: 2%;
        display: block;
    }
}

#newsList_style_04_1554372856257 .titleSet {
    font-size: 24px;
    text-align: center;
}

#newsList_style_04_1554372856257 .detailSet {
    font-size: 14px;
}

#newsList_style_04_1554372856257 .btnaSet {
    color: #d41d1b;
    border-color: #d41d1b;
    border-width: 0px;
    padding-left: 535px;
}

#newsList_style_04_1554372856257 .modSet {
    height: 522px;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554372856257 .titleSet {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554372856257 .detailSet {
        font-size: 12px;
        line-height: 24px;
        text-align: justify;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554372856257 .btnaSet {
        padding-left: 120px;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554372856257 .modSet {
        height: 284px;
    }
}

#layout_1554340797604 {
    height: 552px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554340797604 {
        height: 471px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554340797604 {
        height: 291px;
    }
}

#layout_1554340797604 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}

#layout_1554345318046 {
    height: 81px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #layout_1554345318046 {
        height: 41px;
    }
}

@media screen and (max-width: 640px) {
    #layout_1554345318046 {
        height: 16px;
    }
}

#layout_1554345318046 > .view_contents {
    overflow: visible;
    max-width: 1200px;
}

#image_style_01_1555739324167 {
    width: 40px;
    height: 40px;
    position: fixed;
    top: 410px;
    left: calc(100% - 40px);
    z-index: 9999999;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #image_style_01_1555739324167 {
        height: 40px;
        width: 4.166666666666666%;
        top: 407px;
        left: 95.83333333333333%;
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #image_style_01_1555739324167 {
        height: 40px;
        width: 10.526315789473683%;
        top: 407px;
        left: 89.47368421052632%;
        display: none;
    }
}

#image_style_01_1555739324167 > .view_contents {
    overflow: visible;
}

#image_style_01_1555739324167 .picSet {
    background: #ff4949;
}

#image_style_01_1555739324167 .picSet:hover {
    background: #d2110f;
}

/*----------------------电脑板式样式----------------------*/
#image_style_01_1555739324167 {
    bottom: 5px;
    top: auto;
}

/*----------------------平板板式样式----------------------*/
@media screen and (min-width: 641px) and (max-width: 1200px) {
    #image_style_01_1555739324167 {

    }
}

/*----------------------手机板式样式----------------------*/
@media screen and (max-width: 640px) {
    #image_style_01_1555739324167 {

    }
}


#text_style_01_1554350180506 {
    width: 30.833333333333336%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 45px;
    left: 34.583333333333336%;
    z-index: 2;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554350180506 {
        left: 34.568862672322375%;
        top: 38px;
        z-index: 2;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554350180506 {
        width: 96%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 343px;
        left: 2%;
        display: none;
        z-index: 2;
    }
}

#text_style_01_1554350180506 > .view_contents {
    font-size: 24px;
    line-height: 26px;
    color: #ffffff;
    text-align: center;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554350180506 > .view_contents {
        font-size: 22px;
        line-height: 24px;
    }
}

#text_style_01_1554350392443 {
    width: 30.833333333333336%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 78px;
    left: 34.583333333333336%;
    z-index: 2;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554350392443 {
        top: 68px;
        left: 34.58211823966066%;
        z-index: 2;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554350392443 {
        width: 96%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 379px;
        left: 2%;
        display: none;
        z-index: 2;
    }
}

#text_style_01_1554350392443 > .view_contents {
    color: #ffffff;
    line-height: 18px;
    text-align: center;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554350392443 > .view_contents {
        font-size: 14px;
        line-height: 16px;
    }
}

#dh_style_28_1554357708223 {
    width: 60%;
    z-index: 1000;
    position: absolute;
    top: 124px;
    left: 20%;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #dh_style_28_1554357708223 {
        z-index: 1000;
        top: 108px;
        left: 19.999337221633088%;
    }
}

@media screen and (max-width: 640px) {
    #dh_style_28_1554357708223 {
        width: 96%;
        z-index: 1000;
        top: 407px;
        left: 2%;
        display: none;
    }
}

#dh_style_28_1554357708223 > .view_contents {
    overflow: visible;
}

#dh_style_28_1554357708223 .mainMenuSet {
    font-size: 18px;
    color: #ffffff;
    font-weight: normal;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-style: none;
    border-width: 0px;
    line-height: 20px;
}

#dh_style_28_1554357708223 .mainMenuSet:hover {
    font-size: 18px;
    color: #ffffff;
    border-width: 1px;
    border-style: none;
    border-color: #ffffff;
    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
    border-bottom: none !important;
    font-weight: normal;
}

#dh_style_28_1554357708223 #hot > a {
    font-size: 18px;
    color: #ffffff;
    border-width: 1px;
    border-style: none;
    border-color: #ffffff;
    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
    border-bottom: none !important;
    font-weight: normal;
}

#dh_style_28_1554357708223 .subMenuSet {
    line-height: 20px;
}

#dh_style_28_1554357708223 .thrMenuSet {
    line-height: 20px;
}

#dh_style_28_1554357708223:hover {
    border-width: 1px;
    border-style: none;
    border-color: #ffffff;
    border-right: none !important;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #dh_style_28_1554357708223 .mainMenuSet {
        font-size: 16px;
    }
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #dh_style_28_1554357708223 .mainMenuSet:hover {
        font-size: 16px;
    }
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #dh_style_28_1554357708223 #hot > a {
        font-size: 16px;
    }
}

#image_style_01_1554358801403 {
    width: 30px;
    height: 27px;
    position: absolute;
    top: 180px;
    left: 20%;
    z-index: 2;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #image_style_01_1554358801403 {
        left: 15.853658536585366%;
        top: 156px;
        z-index: 2;
    }
}

@media screen and (max-width: 640px) {
    #image_style_01_1554358801403 {
        width: 30px;
        height: 27px;
        top: 461px;
        left: 46%;
        display: none;
        z-index: 2;
    }
}

#image_style_01_1554358801403 > .view_contents {
    overflow: visible;
}

#text_style_01_1554358899725 {
    width: 30.833333333333336%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 222px;
    left: 5.833333333333333%;
    z-index: 2;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554358899725 {
        left: 2.014846235418876%;
        top: 198px;
        z-index: 2;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554358899725 {
        width: 96%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 572px;
        left: 2%;
        display: none;
        z-index: 2;
    }
}

#text_style_01_1554358899725 > .view_contents {
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    line-height: 20px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554358899725 > .view_contents {
        font-size: 16px;
        line-height: 18px;
    }
}

#image_style_01_1554359169135 {
    width: 30px;
    height: 27px;
    position: absolute;
    top: 180px;
    left: 48.75%;
    z-index: 2;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #image_style_01_1554359169135 {
        left: 48.40933191940615%;
        top: 156px;
        z-index: 2;
    }
}

@media screen and (max-width: 640px) {
    #image_style_01_1554359169135 {
        width: 30px;
        height: 27px;
        top: 498px;
        left: 46%;
        display: none;
        z-index: 2;
    }
}

#image_style_01_1554359169135 > .view_contents {
    overflow: visible;
}

#text_style_01_1554359174871 {
    width: 30.833333333333336%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 222px;
    left: 34.583333333333336%;
    z-index: 2;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554359174871 {
        top: 198px;
        left: 34.57051961823966%;
        z-index: 2;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554359174871 {
        width: 96%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 602px;
        left: 2%;
        display: none;
        z-index: 2;
    }
}

#text_style_01_1554359174871 > .view_contents {
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    line-height: 20px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554359174871 > .view_contents {
        line-height: 18px;
        font-size: 16px;
    }
}

#image_style_01_1554359388429 {
    width: 30px;
    height: 27px;
    position: absolute;
    top: 180px;
    left: 77.5%;
    z-index: 2;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #image_style_01_1554359388429 {
        left: 81.44220572640509%;
        top: 156px;
        z-index: 2;
        width: 30px;
    }
}

@media screen and (max-width: 640px) {
    #image_style_01_1554359388429 {
        width: 36px;
        height: 27px;
        top: 535px;
        left: 45.2%;
        display: none;
        z-index: 2;
    }
}

#image_style_01_1554359388429 > .view_contents {
    overflow: visible;
}

#text_style_01_1554359809755 {
    width: 30.833333333333336%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 222px;
    left: 63.33333333333333%;
    z-index: 2;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554359809755 {
        left: 67.33662513255567%;
        top: 198px;
        z-index: 2;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554359809755 {
        width: 96%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 632px;
        left: 2%;
        display: none;
        z-index: 2;
    }
}

#text_style_01_1554359809755 > .view_contents {
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    line-height: 20px;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554359809755 > .view_contents {
        font-size: 16px;
        line-height: 18px;
    }
}

#qqol_style_01_1554360267764 {
    width: 29.333333333333332%;
    position: absolute;
    top: 0px;
    left: 0%;
    z-index: 2;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #qqol_style_01_1554360267764 {
        width: 356px;
        top: 0px;
        left: 0%;
        z-index: 2;
    }
}

@media screen and (max-width: 640px) {
    #qqol_style_01_1554360267764 {
        width: 96%;
        top: 0px;
        left: 2%;
        display: none;
        z-index: 2;
    }
}

#qqol_style_01_1554360267764 > .view_contents {
    overflow: visible;
}

#text_style_01_1554360073663 {
    width: 49.75%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 294px;
    left: 25.124999999999996%;
    z-index: 2;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #text_style_01_1554360073663 {
        top: 252px;
        left: 25.124270943796397%;
        z-index: 2;
    }
}

@media screen and (max-width: 640px) {
    #text_style_01_1554360073663 {
        width: 96%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 11px;
        left: 2%;
        z-index: 2;
    }
}

#text_style_01_1554360073663 > .view_contents {
    font-size: 12px;
    color: #333333;
    text-align: center;
}

@media screen and (max-width: 640px) {
    #text_style_01_1554360073663 > .view_contents {
        color: #ffffff;
    }
}

#div_blank_1554360025438 {
    width: 1920px;
    height: 33px;
    position: absolute;
    top: 288px;
    left: calc(50% - 960px);
    z-index: 1;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #div_blank_1554360025438 {
        top: 246px;
        left: 0%;
        z-index: 1;
    }
}

@media screen and (max-width: 640px) {
    #div_blank_1554360025438 {
        width: 100%;
        height: 26px;
        top: 16px;
        left: 0%;
        display: none;
        z-index: 1;
    }
}

#div_blank_1554360025438 > .view_contents {
    overflow: visible;
}

#div_blank_1554360025438 {
    box-sizing: border-box;
    background: #e2e2e2;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #div_blank_1554360025438 {
        box-sizing: border-box;
    }
}

@media screen and (max-width: 640px) {
    #div_blank_1554360025438 {
        box-sizing: border-box;
    }
}

#comm_layout_footer {
    height: 321px;
    z-index: 99999;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #comm_layout_footer {
        height: 279px;
    }
}

@media screen and (max-width: 640px) {
    #comm_layout_footer {
        height: 43px;
    }
}

#comm_layout_footer > .view_contents {
    max-width: 1200px;
    overflow: visible;
}

#comm_layout_footer {
    background: #d2110f;
}

/*菜单样式*/
.menuStyle_28 {
    width: 100%;
    position: relative;
}

.menuStyle_28 * {
    box-sizing: border-box;
}

.menuStyle_28 .miniMenu *,
.menuStyle_28 .menuUl li * {
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -o-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: background, height, padding;
    -moz-transition-property: background, height, padding;
    -moz-transition-property: background, height, padding;
    transition-property: background, height, padding;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.menuStyle_28 .dflex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.menuStyle_28 .rflex {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    float: left \0;
}

.menuStyle_28 ul, .menuStyle_28 li {
    padding: 0;
    margin: 0px;
    list-style: none
}

.menuStyle_28 .menuLayout {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.menuStyle_28 .menuLayout:after {
    content: '';
    display: block;
    clear: both;
}

.menuStyle_28 .menuUl_box {
    position: relative;
    width: 100%;
    text-align: center;
}

.menuStyle_28 .menuUl {
    position: relative;
    width: 100%;
    text-align: center;
}

.menuStyle_28 .menuUl > li {
    position: relative;
}

.menuStyle_28 .menuUl > li > a {
    background: rgba(0, 0, 0, 0.0);
    position: relative;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    box-sizing: border-box;
    display: block;
    text-align: center;
    letter-spacing: normal;
    white-space: nowrap;
    color: #17233d;
    line-height: 44px;
    padding: 0;
    padding: 0 1em \0;
}

.menuStyle_28 .menuUl > li > a:hover {
    color: #750406;
}

.menuStyle_28 .menuUl #hot > a {
    color: #750406;
}

.menuStyle_28 .menuUl > li > a span {
    display: block;
    width: 100%;
    text-align: center;
    color: rgba(0, 0, 0, .3);
    font-size: 12px;
}

.menuStyle_28 .menuUl #hot > a span {
    color: inherit;
}

/*.menuStyle_28 .menuUl>li>a i{position: absolute; right: 10px; top: 50%; -webkit-transform: translateY(-50%); -o-transform: translateY(-50%); -moz-transform: translateY(-50%); transform: translateY(-50%);}*/
.menuStyle_28 .menuLayout .miniMenu {
    display: none;
}

.menuStyle_28 .menuUl02 {
    position: absolute;
    left: 50%;
    opacity: 0;
    display: none;
    width: 100%;
    height: 0;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
}

.menuStyle_28 .menuUl > li > #menuLogo {
    height: 85%;
}

.menuStyle_28 .menuUl .rflex:hover .menuUl02 {
    opacity: 1;
    display: block;
    height: auto;
    padding-top: 10px;
}

.menuStyle_28 .menuUl.noHover .rflex:hover .menuUl02 {
    display: none;
}

.menuStyle_28 .menuUl02 .subMenu02 {
    position: relative;
    color: #4d5158;
    font-size: 14px;
    line-height: 40px;
    padding: 0 15px;
    background: #fff;
}

.menuStyle_28 .menuUl02 .subMenu02.subCurSet {
    color: #750406;
}

.menuStyle_28 .menuUl02 .subMenu02 > a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.menuStyle_28 .menuUl02 .subMenu02:hover {
    color: #750406;
    border-left: 2px solid #750406;
    background: #f7f7f7;
}

.menuStyle_28 .menuUl02 .subMenu02 > a .fa {
    float: right;
    line-height: inherit;
}

.menuStyle_28 .menuUl02 .subMenu02:hover .menuUl03 {
    display: block;
}

.menuStyle_28 .menuUl02 .subMenu02:first-child {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.menuStyle_28 .menuUl02 .subMenu02:last-child {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.menuStyle_28 .menuUl03 {
    position: absolute; /*left需要js获取二级的宽*/
    top: 0;
    left: 100%;
    display: none;
}

.menuStyle_28 .menuUl03 .subMenu03 {
    line-height: 40px;
    margin-left: 10px;
}

.menuStyle_28 .menuUl03 .subMenu03 a:hover {
    color: #750406;
    background: #f7f7f7;
}

.menuStyle_28 .menuUl03 .subMenu03 > a {
    color: #17233d;
    background: #fff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 15px;
}

.menuStyle_28 .menuUl03 .subMenu03:first-child a {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.menuStyle_28 .menuUl03 .subMenu03:last-child a {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.menuStyle_28 .menuUl .rflex:hover .menuUl02::before {
    content: '';
    border-top: 5px solid transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #fff;
    position: absolute;
    top: 0px;
    transform: translateX(-50%);
}

.menuStyle_28 .menuUl02 .arrow:hover::before {
    content: '';
    border-top: 5px solid transparent;
    border-left: 5px solid #fff;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.menuStyle_28 .rflex {
    position: relative;
}

.menuStyle_28 .maxWidth {
    margin: auto;
}

/* .menuStyle_28 .menuUl03 .subMenu03 .thrCurSet{background: rgba(0, 0, 0, 0.1);} */

.menuStyle_28 .subBox {
    position: absolute;
    left: 0; /*top通过JS获取菜单高度*/
    width: 100%;
    background: rgba(238, 238, 238, 0.85);
    display: none;
}

.menuStyle_28 .subBox .subBoxContent {
    padding: 15px;
    text-align: left;
    overflow: hidden;
}

.menuStyle_28 .subBox .subBoxContent .subItems {
    overflow: hidden;
    display: none;
}

.menuStyle_28 .subBox .sublm {
    float: left;
    width: calc(100% - 440px);
    min-height: 10px;
}

.menuStyle_28 .subBox .sublm > div {
    clear: both;
    overflow: hidden;
    margin: 8px 0;
}

.menuStyle_28 .subBox .subImgsbox {
    float: left;
    width: 440px; /*这个宽可被设置*/
    height: 160px;
}

.menuStyle_28 .subBox .subImgsbox > a {
    display: block;
    height: 100%;
    float: right;
    width: calc((100% - 20px) / 2);
    margin-left: 20px;
}

.menuStyle_28 .subBox .subImgsbox > a:last-child {
    margin-left: 0;
}

.menuStyle_28 .subBox .subImgsbox > a > div.subImg {
    position: relative;
    height: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover !important;
}

.menuStyle_28 .subBox .subImgsbox > a > div.subImg span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    padding: 5px;
    background: rgba(255, 255, 255, .8);
    color: #17233d;
    font-size: 12px;
}

.menuStyle_28 .subBox p {
    overflow: hidden;
    float: left;
}

.menuStyle_28 .subBox p:first-child {
    margin-right: 10px;
    width: 100px;
}

.menuStyle_28 .subBox p:last-child {
    width: calc(100% - 110px);
}

.menuStyle_28 .subBox .subMenu02 {
    font-size: 14px;
    margin-bottom: 5px;
    clear: both;
    color: #17233d;
    line-height: 28px;
}

.menuStyle_28 .subBox .subMenu02.subCurSet {
    color: #750406;
}

.menuStyle_28 .subBox .subMenu02:hover,
.menuStyle_28 .subBox .subMenu02:active {
    color: #750406;
}

.menuStyle_28 .subBox .subMenu03 {
    float: left;
    margin: 5px 20px 5px 0;
    font-size: 12px;
    color: #666;
}

.menuStyle_28 .subBox .subMenu03:hover,
.menuStyle_28 .subBox .subMenu03:active {
    color: #750406;
}

.menuStyle_28 .subMenu03 .thrCurSet {
    color: #750406 !important;
    background: #f7f7f7 !important;
}


/*图标*/
.menuStyle_28 .imgIco {
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    position: relative;
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}

.menuStyle_28 .imgIco img {
    width: auto;
    height: 100%;
    vertical-align: top;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%);
}


@media screen and (max-width: 640px) {
    .menuStyle_28 .imgIco {
        margin-right: 10px;
    }

    .menuStyle_28 .menuUl,
    .menuStyle_28 .menuUl_box {
        display: none;
    }

    .menuStyle_28 .menuScroll {
        height: calc(100% - 100px);
        width: 100%;
    }

    .menuStyle_28 .menuScroll > .menuUlCopy {
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: scroll;
    }

    .menuStyle_28 .menuLayout .miniMenu {
        display: block;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 44px;
    }

    .menuStyle_28 .miniMenu .leftBox {
        height: 100%;
    }

    .menuStyle_28 .miniMenu .leftBox .sidebar {
        font-size: 24px;
        line-height: 44px;
        font-weight: normal;
        cursor: pointer;
        color: #4d5158;
        position: absolute;
        top: 0;
        right: 0px;
        width: 44px;
        text-align: center;
    }

    .menuStyle_28 .miniMenu .leftBox .sidebar .fa {
        font-size: inherit;
        line-height: inherit;
        color: inherit;
    }

    .menuStyle_28 .miniMenu .leftBox .nav {
        width: 100%;
        height: 44px;
    }

    .menuStyle_28 .miniMenu.Mslide .leftBox .nav {
        border-bottom: 1px solid rgba(0, 0, 0, .05);
    }

    .menuStyle_28 .miniMenu .leftBox .menuUlCopy {
        padding: 0 0 0 30px;
        clear: both;
    }

    .menuStyle_28 .miniMenu .leftBox .menuUlCopy .menuUlCopy {
        display: none;
    }

    .menuStyle_28 .miniMenu .leftBox .menuUlCopy li {
        width: 100%;
        overflow: hidden;
        color: #fff;
        font-size: 12px;
        line-height: 44px;
    }

    .menuStyle_28 .miniMenu .leftBox .menuUlCopy li a {
        width: calc(100% - 50px);
        float: left;
        display: block;
        text-align: left;
        color: inherit;
        text-decoration: none;
        font-size: inherit;
        line-height: inherit;
        height: inherit;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border-bottom: 1px solid rgba(0, 0, 0, .2);
    }

    .menuStyle_28 .miniMenu .leftBox .menuUlCopy li#hot > a {
        border-bottom: 1px solid #fff;
    }

    .menuStyle_28 .miniMenu .leftBox .menuUlCopy li .fa {
        color: inherit;
        font-size: inherit;
        float: left;
        width: 50px;
        text-align: center;
        line-height: inherit;
        background: rgba(0, 0, 0, 0.1);
    }

    .menuStyle_28 .miniMenu .leftBox .menuUlCopy li .fa:active {
        background: rgba(0, 0, 0, .3);
    }

    .menuStyle_28 .miniMenu .leftBox .menuUlCopy li.subMenuSet.subCurSet > a,
    .menuStyle_28 .miniMenu .leftBox .menuUlCopy li.thrMenuSet.thrCurSet > a {
        border-bottom: 1px solid #fff;
    }

    .menuStyle_28 .menuLayout .miniMenu.Mslide {
        height: 100% !important;
        height: 100vh !important;
        background: rgba(23, 25, 29, 0.95);
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -o-transition: all linear .3s;
        transition: all linear .3s;
    }

    .menuStyle_28 .menuLayout .miniMenu.Mslide .sidebar {
        color: #fff;
        background: rgba(0, 0, 0, .05);
    }

    .menuStyle_28 .menuLayout .miniMenu.Mslide .nav a {
        display: none !important;
    }
}


@media screen and (min-width: 640px) {
    #dh_style_28_1554260779181 .maxWidth {
        max-width: px;
    }

    #dh_style_28_1554260779181 .subBox .sublm {
        width: calc(100% - (px + px) - 20px);
    }

    /*20px是两张图片间的间距*/
    #dh_style_28_1554260779181 .subBox .subImgsbox {
        width: calc((px + px) + 20px);
        height: px
    }

    /*20px是两张图片间的间距*/
    #dh_style_28_1554260779181 .menuUl > li > #menuLogo {
        height: px;
        margin-right: px;
        margin-left: px;
    }
}

/* banner样式 */

.bannerStyle_1 {
    width: 100%;
    height: 100%;
    position: relative;
}

.bannerStyle_1 .main_visual {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.bannerStyle_1 .main_image {
    height: 100%;
    overflow: hidden;
    position: relative;
}

/* 圆点 */
.bannerStyle_1 div.flicking_con {
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 14px;
    text-align: center;
    z-index: 105;
}

.bannerStyle_1 div.flicking_con a {
    width: 14px;
    height: 14px;
    padding: 0;
    background: none;
    border: 1px solid white;
    display: inline-block;
    box-sizing: border-box;
    margin: 0 3px;
    border-radius: 100%;
}

.bannerStyle_1 div.flicking_con a.on {
    background: white;
    border: 0;
}

/* 左右按钮 */
.bannerStyle_1 .btn_prev, .bannerStyle_1 .btn_next {
    z-index: 11111;
    position: absolute;
    width: 73px;
    height: 74px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
}

.bannerStyle_1 .btn_prev {
    background: url(../img/banner/style_01/hover_left.png) no-repeat left top;
    left: 20px;
    background-size: 80%;
}

.bannerStyle_1 .btn_next {
    background: url(../img/banner/style_01/hover_right.png) no-repeat right top;
    right: 20px;
    background-size: 80%;
}

/* 遮罩面板 */
.bannerStyle_1 .ground_glass {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    background-color: #fff;
}

@media screen and  (min-width: 326px) and (max-width: 767px) {
    .bannerStyle_1 div.flicking_con a {
        width: 9px;
        height: 9px;
    }
}

@media screen and  (max-width: 640px) {
    .bannerStyle_1 div.flicking_con a {
        width: 9px;
        height: 9px;
    }

    .bannerStyle_1 .btn_prev, .bannerStyle_1 .btn_next {
        width: 53px;
        height: 54px;
    }
}

/* 默认 动画效果 */
.bannerStyle_1 .main_image .img-list {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0
}

.bannerStyle_1 .main_image .img-item {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
}

.bannerStyle_1 .main_image .img-item span {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover !important;
}

.bannerStyle_1 .main_image .img-item a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* 3D矩形旋转 动画效果 */
.bannerStyle_1.rotate-3d .img-part {
    position: absolute;
    top: 0;
    width: calc(20% + 1px); /* [注意] 修改为总宽度 / 动画块个数 */
    height: 100%;
    background-color: #fff;
    transition: all .7s;
    /* 设置子元素在3D空间中呈现 */
    transform-style: preserve-3d;
}

.bannerStyle_1.rotate-3d .img-part .img {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: 500% auto; /* [注意] 宽度 为 动画块个数 * 100%, 这样图片可以分若干份后始终100%, 如果不需要这样, 可以设置为cover */
}

.bannerStyle_1.rotate-3d .img-part .img:nth-child(1) {
    transform: rotateX(0deg) translateZ(150px);
}

.bannerStyle_1.rotate-3d .img-part .img:nth-child(2) {
    transform: rotateX(-90deg) translateZ(150px);
}

.bannerStyle_1.rotate-3d .img-part .img:nth-child(3) {
    transform: rotateX(-180deg) translateZ(150px);
}

.bannerStyle_1.rotate-3d .img-part .img:nth-child(4) {
    transform: rotateX(-270deg) translateZ(150px);
}


.img_url {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: block;
    z-index: 100;
}

#banner_style_01_1554259638748 .bannerStyle_1 .main_image .img-item .img_0 {
    background: url('../img/upimages/pkgimg/banner2.jpg') center top no-repeat;
}

#banner_style_01_1554259638748 .bannerStyle_1 .main_image .img-item .img_1 {
    background: url('../img/upimages/pkgimg/banner5145545481.jpg') center top no-repeat;
}

#banner_style_01_1554259638748 .bannerStyle_1 .ground_glass {
}

/*新闻列表样式*/
.boxNewsListStyle_1 {
    width: 100%;
    clear: both;
}

.boxNewsListStyle_1 * {
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -o-transition: all ease .2s;
}

.boxNewsListStyle_1 li {
    width: 100%;
    list-style: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #ddd;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.boxNewsListStyle_1 li:hover {
}

.boxNewsListStyle_1 li:first-child {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: transparent;
}

.boxNewsListStyle_1 li .clear {
    clear: both;
}

.boxNewsListStyle_1 .sumary_list .newCont {
    float: none;
    width: 100%;
    box-sizing: border-box;
}

.boxNewsListStyle_1 .sumary_list .newCont .newTitle {
    width: 100%;
}

.boxNewsListStyle_1 .newTitle .nDate {
    float: left;
    width: 80px;
    background: #fff;
    text-align: center;
    line-height: 1.4;
    box-sizing: border-box;
    border: 1px solid #ddd;
}

.boxNewsListStyle_1 .newTitle .nDate .numDate {
    float: left;
    width: 60%;
    text-align: right;
    font-weight: normal;
    font-size: 38px; /*font-family: Georgia,Tahoma;*/
    color: #40B8FF;
}

.boxNewsListStyle_1 .newTitle .nDate .enDate {
    float: left;
    margin-top: 20px;
    font-weight: normal;
    font-size: 18px;
    font-family: microsoft yahei;
    color: #666;
}

.boxNewsListStyle_1 .newTitle .nDate .yrDate {
    font-size: 18px;
    color: #999;
    background: #eee;
    height: 26px;
    line-height: 26px;
    clear: both;
}

.boxNewsListStyle_1 .sumary_list .newName {
    float: left;
    width: calc(98% - 150px - 80px);
    margin: .5em 0;
    padding: 0 .5em;
    box-sizing: border-box;
}

.boxNewsListStyle_1 .sumary_list .newName .newTit {
    width: 100%;
}

.boxNewsListStyle_1 .sumary_list .newName a {
    text-decoration: none;
    line-height: 1.4;
    font-size: 16px;
    color: #333;
    display: block;
}

.boxNewsListStyle_1 .sumary_list .newName a:hover {
}

.boxNewsListStyle_1 .sumary_list .newB {
    width: 100%;
    line-height: 2;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.boxNewsListStyle_1 .sumary_list .newSort {
    font-size: 12px;
    white-space: nowrap;
    padding: .5em 1em .5em 0;
    border-radius: 1.5em;
    margin-right: 5px; /*display:block;*/
    width: 60px;
    text-align: center;
    margin-top: 5px;
}

.boxNewsListStyle_1 .sumary_list .newsTime {
    text-align: left;
    color: #999;
    font-size: 14px;
    white-space: nowrap;
    display: inline-block;
}

.boxNewsListStyle_1 .sumary_list .newsTime .nsDate {
    margin-right: 15px;
    font-size: 12px;
    color: #999
}

.boxNewsListStyle_1 .sumary_list .newsTime span {
    white-space: nowrap;
}

.boxNewsListStyle_1 .sumary_list .newDetail {
    width: 100%;
    box-sizing: border-box;
    padding: .6em .6em .6em 0;
    color: #999;
    font-size: 12px;
    line-height: 1.6;
    text-overflow: ellipsis; /* white-space:nowrap; */
    overflow: hidden;
}

/*分页*/
/* 分页 */
.boxNewsListStyle_1 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

.boxNewsListStyle_1 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

.boxNewsListStyle_1 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}


/* .boxNewsListStyle_1 .page_btn{clear: both; margin-top: 20px; width: 100%; text-align: center;}
.boxNewsListStyle_1 .page_btn a{display: inline-block; color: #333; box-sizing: border-box; margin: 0 5px; width: 24px; height: 24px; line-height: 24px; border: 1px solid #ccc; font-family: 'microsoft YaHei';}
.boxNewsListStyle_1 .page_btn a.cur,.boxNewsListStyle_1 .page_btn a:hover{border:1px solid #4c4c4c;} */
.boxNewsListStyle_1 .prev_btn, .boxNewsListStyle_1 .next_btn {
    font-family: '黑体' !important;
    border: 0 !important;
}

.boxNewsListStyle_1 .no_page {
    border: 0 !important;
}

.boxNewsListStyle_1 .sumary_list .show_all {
    width: 25%;
    margin-top: .5em;
}

.boxNewsListStyle_1 .sumary_list .show_all a {
    display: block;
    margin-top: .4em;
    text-decoration: none;
    border: 1px solid #ddd;
    text-align: center;
    padding: .4em;
    font-size: 12px;
    color: #666;
}

/*alex---后期加的图片样式*/
.boxNewsListStyle_1 .sumary_list .newPic {
    background-color: #eee;
    width: 150px;
    margin: 0 1% 1%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    float: left;
    padding-bottom: 1px;
}

.boxNewsListStyle_1 .sumary_list .newPic a {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
}

.boxNewsListStyle_1 .sumary_list .newPic img {
    width: 100%;
    background-color: #eee;
}

.boxNewsListStyle_1 .sumary_list .newPic2 {
    display: none;
}

@media screen and (max-width: 767px) {
    .boxNewsListStyle_1 .sumary_list .newName a {
        font-size: 12px;
    }

    .boxNewsListStyle_1 .newTitle .nDate {
        width: 65px;
    }

    .boxNewsListStyle_1 .sumary_list .newName {
        width: calc(100% - 65px);
    }

    .boxNewsListStyle_1 .newTitle .nDate .numDate {
        font-size: 28px;
    }

    .boxNewsListStyle_1 .newTitle .nDate .enDate {
        font-size: 12px;
        margin-top: 15px;
    }

    /*分页*/
    /* .boxNewsListStyle_1 .page_btn a:nth-child(n+5){display: none;}
.boxNewsListStyle_1 .page_btn a:nth-last-child(1),.boxNewsListStyle_1 .page_btn a:nth-last-child(2),.boxNewsListStyle_1 .page_btn a:nth-last-child(3){display: inline-block !important;} */
    .boxNewsListStyle_1 .sumary_list .newPic {
        margin-bottom: 15px;
    }

    .boxNewsListStyle_1 .sumary_list .newPic {
        display: none;
    }

    .boxNewsListStyle_1 .sumary_list .newPic2 {
        display: block;
        background-color: #eee;
        width: 100%;
        min-width: 100px;
        margin-left: 1%;
        margin-right: 1%;
        margin-bottom: 5px;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
        float: left;
        padding-bottom: 1px;
    }

    .boxNewsListStyle_1 .sumary_list .newPic2 img {
        width: 100%;
        float: left;
    }
}


#newsList_style_01_1554273092534 .newDetail.pc {
    display: block;
}

#newsList_style_01_1554273092534 .newDetail.pad, #newsList_style_01_1554273092534 .newDetail.mobile {
    display: none;
}


/* 新分页 */
#newsList_style_01_1554273092534 .page_btn {
    font-size: 14px;
    text-align: center;
}

#newsList_style_01_1554273092534 .page_btn .all_page {
    display: inline-block;
    margin: 0 10px;
}

#newsList_style_01_1554273092534 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_01_1554273092534 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_01_1554273092534 .submit_div {
    display: inline-block;
}

#newsList_style_01_1554273092534 .page_btn input {
    width: 50px;
    margin: 0 5px;
}

#newsList_style_01_1554273092534 .page_btn input:hover {
    cursor: default;
    background: white;
    color: #333;
}

#newsList_style_01_1554273092534 .page_submit {
    margin-left: 5px;
}

#newsList_style_01_1554273092534 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

@media screen and (max-width: 640px) {
    #newsList_style_01_1554273092534 .page_btn {
        font-size: 12px;
    }

    #newsList_style_01_1554273092534 .submit_div {
        display: none;
    }
}

#newsList_style_01_1554273092534 .page {
    width: auto;
    margin: 0 5px 10px 5px;
    border-radius: 5px;
}

@media screen and (max-width: 640px) {
    #newsList_style_01_1554273092534 .page {
        line-height: 30px;
        padding: 0 13px;
    }
}


#image_style_01_1554276352738 .CompatibleImg img {
    width: 100%;
    height: auto;
    margin-left: 0px
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #image_style_01_1554276352738 .CompatibleImg img {
        width: 100%;
        height: auto;
        margin-left: 0px
    }
}

@media screen and (max-width: 640px) {
    #image_style_01_1554276352738 .CompatibleImg img {
        width: 100%;
        height: auto;
        margin-left: 0px
    }
}

#image_style_01_1554276352738 a {
    cursor: default;
}

.imgStyle {
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.imgStyle > a {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.imgStyle img {
    box-sizing: border-box;
}

/*新闻列表样式*/
.boxNewsListStyle_1 {
    width: 100%;
    clear: both;
}

.boxNewsListStyle_1 * {
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -o-transition: all ease .2s;
}

.boxNewsListStyle_1 li {
    width: 100%;
    list-style: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #ddd;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.boxNewsListStyle_1 li:hover {
}

.boxNewsListStyle_1 li:first-child {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: transparent;
}

.boxNewsListStyle_1 li .clear {
    clear: both;
}

.boxNewsListStyle_1 .sumary_list .newCont {
    float: none;
    width: 100%;
    box-sizing: border-box;
}

.boxNewsListStyle_1 .sumary_list .newCont .newTitle {
    width: 100%;
}

.boxNewsListStyle_1 .newTitle .nDate {
    float: left;
    width: 80px;
    background: #fff;
    text-align: center;
    line-height: 1.4;
    box-sizing: border-box;
    border: 1px solid #ddd;
}

.boxNewsListStyle_1 .newTitle .nDate .numDate {
    float: left;
    width: 60%;
    text-align: right;
    font-weight: normal;
    font-size: 38px; /*font-family: Georgia,Tahoma;*/
    color: #40B8FF;
}

.boxNewsListStyle_1 .newTitle .nDate .enDate {
    float: left;
    margin-top: 20px;
    font-weight: normal;
    font-size: 18px;
    font-family: microsoft yahei;
    color: #666;
}

.boxNewsListStyle_1 .newTitle .nDate .yrDate {
    font-size: 18px;
    color: #999;
    background: #eee;
    height: 26px;
    line-height: 26px;
    clear: both;
}

.boxNewsListStyle_1 .sumary_list .newName {
    float: left;
    width: calc(98% - 150px - 80px);
    margin: .5em 0;
    padding: 0 .5em;
    box-sizing: border-box;
}

.boxNewsListStyle_1 .sumary_list .newName .newTit {
    width: 100%;
}

.boxNewsListStyle_1 .sumary_list .newName a {
    text-decoration: none;
    line-height: 1.4;
    font-size: 16px;
    color: #333;
    display: block;
}

.boxNewsListStyle_1 .sumary_list .newName a:hover {
}

.boxNewsListStyle_1 .sumary_list .newB {
    width: 100%;
    line-height: 2;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.boxNewsListStyle_1 .sumary_list .newSort {
    font-size: 12px;
    white-space: nowrap;
    padding: .5em 1em .5em 0;
    border-radius: 1.5em;
    margin-right: 5px; /*display:block;*/
    width: 60px;
    text-align: center;
    margin-top: 5px;
}

.boxNewsListStyle_1 .sumary_list .newsTime {
    text-align: left;
    color: #999;
    font-size: 14px;
    white-space: nowrap;
    display: inline-block;
}

.boxNewsListStyle_1 .sumary_list .newsTime .nsDate {
    margin-right: 15px;
    font-size: 12px;
    color: #999
}

.boxNewsListStyle_1 .sumary_list .newsTime span {
    white-space: nowrap;
}

.boxNewsListStyle_1 .sumary_list .newDetail {
    width: 100%;
    box-sizing: border-box;
    padding: .6em .6em .6em 0;
    color: #999;
    font-size: 12px;
    line-height: 1.6;
    text-overflow: ellipsis; /* white-space:nowrap; */
    overflow: hidden;
}

/*分页*/
/* 分页 */
.boxNewsListStyle_1 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

.boxNewsListStyle_1 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

.boxNewsListStyle_1 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}


/* .boxNewsListStyle_1 .page_btn{clear: both; margin-top: 20px; width: 100%; text-align: center;}
.boxNewsListStyle_1 .page_btn a{display: inline-block; color: #333; box-sizing: border-box; margin: 0 5px; width: 24px; height: 24px; line-height: 24px; border: 1px solid #ccc; font-family: 'microsoft YaHei';}
.boxNewsListStyle_1 .page_btn a.cur,.boxNewsListStyle_1 .page_btn a:hover{border:1px solid #4c4c4c;} */
.boxNewsListStyle_1 .prev_btn, .boxNewsListStyle_1 .next_btn {
    font-family: '黑体' !important;
    border: 0 !important;
}

.boxNewsListStyle_1 .no_page {
    border: 0 !important;
}

.boxNewsListStyle_1 .sumary_list .show_all {
    width: 25%;
    margin-top: .5em;
}

.boxNewsListStyle_1 .sumary_list .show_all a {
    display: block;
    margin-top: .4em;
    text-decoration: none;
    border: 1px solid #ddd;
    text-align: center;
    padding: .4em;
    font-size: 12px;
    color: #666;
}

/*alex---后期加的图片样式*/
.boxNewsListStyle_1 .sumary_list .newPic {
    background-color: #eee;
    width: 150px;
    margin: 0 1% 1%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    float: left;
    padding-bottom: 1px;
}

.boxNewsListStyle_1 .sumary_list .newPic a {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
}

.boxNewsListStyle_1 .sumary_list .newPic img {
    width: 100%;
    background-color: #eee;
}

.boxNewsListStyle_1 .sumary_list .newPic2 {
    display: none;
}

@media screen and (max-width: 767px) {
    .boxNewsListStyle_1 .sumary_list .newName a {
        font-size: 12px;
    }

    .boxNewsListStyle_1 .newTitle .nDate {
        width: 65px;
    }

    .boxNewsListStyle_1 .sumary_list .newName {
        width: calc(100% - 65px);
    }

    .boxNewsListStyle_1 .newTitle .nDate .numDate {
        font-size: 28px;
    }

    .boxNewsListStyle_1 .newTitle .nDate .enDate {
        font-size: 12px;
        margin-top: 15px;
    }

    /*分页*/
    /* .boxNewsListStyle_1 .page_btn a:nth-child(n+5){display: none;}
.boxNewsListStyle_1 .page_btn a:nth-last-child(1),.boxNewsListStyle_1 .page_btn a:nth-last-child(2),.boxNewsListStyle_1 .page_btn a:nth-last-child(3){display: inline-block !important;} */
    .boxNewsListStyle_1 .sumary_list .newPic {
        margin-bottom: 15px;
    }

    .boxNewsListStyle_1 .sumary_list .newPic {
        display: none;
    }

    .boxNewsListStyle_1 .sumary_list .newPic2 {
        display: block;
        background-color: #eee;
        width: 100%;
        min-width: 100px;
        margin-left: 1%;
        margin-right: 1%;
        margin-bottom: 5px;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
        float: left;
        padding-bottom: 1px;
    }

    .boxNewsListStyle_1 .sumary_list .newPic2 img {
        width: 100%;
        float: left;
    }
}


#newsList_style_01_1554366536445 .newDetail.pc {
    display: block;
}

#newsList_style_01_1554366536445 .newDetail.pad, #newsList_style_01_1554366536445 .newDetail.mobile {
    display: none;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_01_1554366536445 .newDetail.pad {
        display: block;
    }

    #newsList_style_01_1554366536445 .newDetail.pc, #newsList_style_01_1554366536445 .newDetail.mobile {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_01_1554366536445 .newDetail.mobile {
        display: block;
    }

    #newsList_style_01_1554366536445 .newDetail.pc, #newsList_style_01_1554366536445 .newDetail.pad {
        display: none;
    }
}

@media screen and (min-width: 1025px) {
    #newsList_style_01_1554366536445 .sumary_list .newPic {
        width: 0px;
    }

    #newsList_style_01_1554366536445 .sumary_list .newName {
        width: calc(98% - 0px - 80px);
    }
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
    #newsList_style_01_1554366536445 .sumary_list .newPic {
        width: 0px;
    }

    #newsList_style_01_1554366536445 .sumary_list .newName {
        width: calc(98% - 0px - 80px);
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_01_1554366536445 .sumary_list .newPic2 {
        width: 0px;
    }

    #newsList_style_01_1554366536445 .sumary_list .newName {
        width: calc(98% - 0px - 80px);
    }

}

/* 新分页 */
#newsList_style_01_1554366536445 .page_btn {
    font-size: 14px;
    text-align: center;
}

#newsList_style_01_1554366536445 .page_btn .all_page {
    display: inline-block;
    margin: 0 10px;
}

#newsList_style_01_1554366536445 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_01_1554366536445 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_01_1554366536445 .submit_div {
    display: inline-block;
}

#newsList_style_01_1554366536445 .page_btn input {
    width: 50px;
    margin: 0 5px;
}

#newsList_style_01_1554366536445 .page_btn input:hover {
    cursor: default;
    background: white;
    color: #333;
}

#newsList_style_01_1554366536445 .page_submit {
    margin-left: 5px;
}

#newsList_style_01_1554366536445 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

@media screen and (max-width: 640px) {
    #newsList_style_01_1554366536445 .page_btn {
        font-size: 12px;
    }

    #newsList_style_01_1554366536445 .submit_div {
        display: none;
    }
}

#newsList_style_01_1554366536445 .page {
    width: auto;
    margin: 0 5px 10px 5px;
    border-radius: 5px;
}

@media screen and (max-width: 640px) {
    #newsList_style_01_1554366536445 .page {
        line-height: 30px;
        padding: 0 13px;
    }
}

/*新闻列表样式*/
.boxNewsListStyle_4 {
    width: 100%;
    clear: both;
}

.boxNewsListStyle_4 * {
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -o-transition: all ease .2s;
    box-sizing: border-box;
}

.boxNewsListStyle_4 ul {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.boxNewsListStyle_4 .sumary_list {
    list-style: none;
    background: #fff;
}

.boxNewsListStyle_4 .sumary_list .newPic {
    width: 100%;
    min-width: 100px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    background: #eee;
}

.boxNewsListStyle_4 .sumary_list .newPic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newPic .zTm {
    margin-top: 100%;
}

.boxNewsListStyle_4 .sumary_list .newCont {
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newCont .newTitle {
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newName {
}

.boxNewsListStyle_4 .sumary_list .newName a {
    text-decoration: none;
    color: #333;
    line-height: 1.1;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 10px 0;
}

.boxNewsListStyle_4 .sumary_list .newName a:hover {
}

.boxNewsListStyle_4 .sumary_list .newB {
    width: 100%;
    line-height: 2;
    padding-top: 5px;
}

.boxNewsListStyle_4 .sumary_list .newSort {
    color: #fff;
    background-color: #498D9C;
    font-size: 12px;
    white-space: nowrap;
    padding: .5em 1em;
    margin-right: 5px;
}

.boxNewsListStyle_4 .sumary_list .newsTime {
    text-align: right;
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

.boxNewsListStyle_4 .sumary_list .newsTime span {
    white-space: nowrap;
}

.boxNewsListStyle_4 .sumary_list .newsTime span.nTime {
    display: none;
}

.boxNewsListStyle_4 .sumary_list .newDetail {
    width: 100%;
    margin: 0;
    color: #999;
    font-size: 12px;
    line-height: 1.6; /* display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;*/
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.boxNewsListStyle_4 .sumary_list .show_all {
    width: 100%;
    margin-top: .5em;
}

.boxNewsListStyle_4 .sumary_list .show_all a {
    display: block;
    margin-top: .4em;
    text-decoration: none;
    border: 1px solid #ddd;
    text-align: center;
    padding: .4em;
    font-size: 12px;
    color: #666;
}

/* 分页 */
.boxNewsListStyle_4 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

.boxNewsListStyle_4 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

.boxNewsListStyle_4 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    /*分页*/
    .boxNewsListStyle_4 .page_btn a:nth-child(n+5) {
        display: none;
    }

    .boxNewsListStyle_4 .page_btn a:nth-last-child(1), .boxNewsListStyle_4 .page_btn a:nth-last-child(2), .boxNewsListStyle_4 .page_btn a:nth-last-child(3) {
        display: inline-block !important;
    }
}

#newsList_style_04_1554285686256 .newDetail.pc {
    display: block;
}

#newsList_style_04_1554285686256 .newDetail.pad, #newsList_style_04_1554285686256 .newDetail.mobile {
    display: none;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554285686256 .newDetail.pad {
        display: block;
    }

    #newsList_style_04_1554285686256 .newDetail.pc, #newsList_style_04_1554285686256 .newDetail.mobile {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554285686256 .newDetail.mobile {
        display: block;
    }

    #newsList_style_04_1554285686256 .newDetail.pc, #newsList_style_04_1554285686256 .newDetail.pad {
        display: none;
    }
}

/*pc*/
#newsList_style_04_1554285686256 li {
    width: 49%;
}

#newsList_style_04_1554285686256 li.sumary_list {
    margin-bottom: 2%;
}

@media screen and (max-width: 1024px) {
    /*ipad*/
    #newsList_style_04_1554285686256 li {
        width: 49%;
    }

    #newsList_style_04_1554285686256 li.sumary_list {
        margin-bottom: 2%;
    }
}

@media screen and (max-width: 768px) {
    /*mobi*/
    #newsList_style_04_1554285686256 li {
        width: 49%;
    }

    #newsList_style_04_1554285686256 li.sumary_list {
        margin-bottom: 2%;
    }
}

@media screen and (min-width: 1025px) {
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
}

@media screen and (max-width: 640px) {

}

/* 新分页 */
#newsList_style_04_1554285686256 .page_btn {
    font-size: 14px;
    text-align: center;
}

#newsList_style_04_1554285686256 .page_btn .all_page {
    display: inline-block;
    margin: 0 10px;
}

#newsList_style_04_1554285686256 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_04_1554285686256 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_04_1554285686256 .submit_div {
    display: inline-block;
}

#newsList_style_04_1554285686256 .page_btn input {
    width: 50px;
    margin: 0 5px;
}

#newsList_style_04_1554285686256 .page_btn input:hover {
    cursor: default;
    background: white;
    color: #333;
}

#newsList_style_04_1554285686256 .page_submit {
    margin-left: 5px;
}

#newsList_style_04_1554285686256 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554285686256 .page_btn {
        font-size: 12px;
    }

    #newsList_style_04_1554285686256 .submit_div {
        display: none;
    }
}

#newsList_style_04_1554285686256 .page {
    width: auto;
    margin: 0 5px 10px 5px;
    border-radius: 5px;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554285686256 .page {
        line-height: 30px;
        padding: 0 13px;
    }
}

/*新闻列表样式*/
.boxNewsListStyle_4 {
    width: 100%;
    clear: both;
}

.boxNewsListStyle_4 * {
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -o-transition: all ease .2s;
    box-sizing: border-box;
}

.boxNewsListStyle_4 ul {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.boxNewsListStyle_4 .sumary_list {
    list-style: none;
    background: #fff;
}

.boxNewsListStyle_4 .sumary_list .newPic {
    width: 100%;
    min-width: 100px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    background: #eee;
}

.boxNewsListStyle_4 .sumary_list .newPic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newPic .zTm {
    margin-top: 100%;
}

.boxNewsListStyle_4 .sumary_list .newCont {
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newCont .newTitle {
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newName {
}

.boxNewsListStyle_4 .sumary_list .newName a {
    text-decoration: none;
    color: #333;
    line-height: 1.1;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 10px 0;
}

.boxNewsListStyle_4 .sumary_list .newName a:hover {
}

.boxNewsListStyle_4 .sumary_list .newB {
    width: 100%;
    line-height: 2;
    padding-top: 5px;
}

.boxNewsListStyle_4 .sumary_list .newSort {
    color: #fff;
    background-color: #498D9C;
    font-size: 12px;
    white-space: nowrap;
    padding: .5em 1em;
    margin-right: 5px;
}

.boxNewsListStyle_4 .sumary_list .newsTime {
    text-align: right;
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

.boxNewsListStyle_4 .sumary_list .newsTime span {
    white-space: nowrap;
}

.boxNewsListStyle_4 .sumary_list .newsTime span.nTime {
    display: none;
}

.boxNewsListStyle_4 .sumary_list .newDetail {
    width: 100%;
    margin: 0;
    color: #999;
    font-size: 12px;
    line-height: 1.6; /* display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;*/
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.boxNewsListStyle_4 .sumary_list .show_all {
    width: 100%;
    margin-top: .5em;
}

.boxNewsListStyle_4 .sumary_list .show_all a {
    display: block;
    margin-top: .4em;
    text-decoration: none;
    border: 1px solid #ddd;
    text-align: center;
    padding: .4em;
    font-size: 12px;
    color: #666;
}

/* 分页 */
.boxNewsListStyle_4 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

.boxNewsListStyle_4 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

.boxNewsListStyle_4 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    /*分页*/
    .boxNewsListStyle_4 .page_btn a:nth-child(n+5) {
        display: none;
    }

    .boxNewsListStyle_4 .page_btn a:nth-last-child(1), .boxNewsListStyle_4 .page_btn a:nth-last-child(2), .boxNewsListStyle_4 .page_btn a:nth-last-child(3) {
        display: inline-block !important;
    }
}

#newsList_style_04_1554362092688 .newDetail.pc {
    display: block;
}

#newsList_style_04_1554362092688 .newDetail.pad, #newsList_style_04_1554362092688 .newDetail.mobile {
    display: none;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554362092688 .newDetail.pad {
        display: block;
    }

    #newsList_style_04_1554362092688 .newDetail.pc, #newsList_style_04_1554362092688 .newDetail.mobile {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554362092688 .newDetail.mobile {
        display: block;
    }

    #newsList_style_04_1554362092688 .newDetail.pc, #newsList_style_04_1554362092688 .newDetail.pad {
        display: none;
    }
}

/*pc*/
#newsList_style_04_1554362092688 li {
    width: 49%;
}

#newsList_style_04_1554362092688 li.sumary_list {
    margin-bottom: 2%;
}

@media screen and (max-width: 1024px) {
    /*ipad*/
    #newsList_style_04_1554362092688 li {
        width: 49%;
    }

    #newsList_style_04_1554362092688 li.sumary_list {
        margin-bottom: 2%;
    }
}

@media screen and (max-width: 768px) {
    /*mobi*/
    #newsList_style_04_1554362092688 li {
        width: 49%;
    }

    #newsList_style_04_1554362092688 li.sumary_list {
        margin-bottom: 2%;
    }
}

@media screen and (min-width: 1025px) {
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
}

@media screen and (max-width: 640px) {

}

/* 新分页 */
#newsList_style_04_1554362092688 .page_btn {
    font-size: 14px;
    text-align: center;
}

#newsList_style_04_1554362092688 .page_btn .all_page {
    display: inline-block;
    margin: 0 10px;
}

#newsList_style_04_1554362092688 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_04_1554362092688 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_04_1554362092688 .submit_div {
    display: inline-block;
}

#newsList_style_04_1554362092688 .page_btn input {
    width: 50px;
    margin: 0 5px;
}

#newsList_style_04_1554362092688 .page_btn input:hover {
    cursor: default;
    background: white;
    color: #333;
}

#newsList_style_04_1554362092688 .page_submit {
    margin-left: 5px;
}

#newsList_style_04_1554362092688 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554362092688 .page_btn {
        font-size: 12px;
    }

    #newsList_style_04_1554362092688 .submit_div {
        display: none;
    }
}

#newsList_style_04_1554362092688 .page {
    width: auto;
    margin: 0 5px 10px 5px;
    border-radius: 5px;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554362092688 .page {
        line-height: 30px;
        padding: 0 13px;
    }
}

/*新闻列表样式*/
.boxNewsListStyle_4 {
    width: 100%;
    clear: both;
}

.boxNewsListStyle_4 * {
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -o-transition: all ease .2s;
    box-sizing: border-box;
}

.boxNewsListStyle_4 ul {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.boxNewsListStyle_4 .sumary_list {
    list-style: none;
    background: #fff;
}

.boxNewsListStyle_4 .sumary_list .newPic {
    width: 100%;
    min-width: 100px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    background: #eee;
}

.boxNewsListStyle_4 .sumary_list .newPic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newPic .zTm {
    margin-top: 100%;
}

.boxNewsListStyle_4 .sumary_list .newCont {
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newCont .newTitle {
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newName {
}

.boxNewsListStyle_4 .sumary_list .newName a {
    text-decoration: none;
    color: #333;
    line-height: 1.1;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 10px 0;
}

.boxNewsListStyle_4 .sumary_list .newName a:hover {
}

.boxNewsListStyle_4 .sumary_list .newB {
    width: 100%;
    line-height: 2;
    padding-top: 5px;
}

.boxNewsListStyle_4 .sumary_list .newSort {
    color: #fff;
    background-color: #498D9C;
    font-size: 12px;
    white-space: nowrap;
    padding: .5em 1em;
    margin-right: 5px;
}

.boxNewsListStyle_4 .sumary_list .newsTime {
    text-align: right;
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

.boxNewsListStyle_4 .sumary_list .newsTime span {
    white-space: nowrap;
}

.boxNewsListStyle_4 .sumary_list .newsTime span.nTime {
    display: none;
}

.boxNewsListStyle_4 .sumary_list .newDetail {
    width: 100%;
    margin: 0;
    color: #999;
    font-size: 12px;
    line-height: 1.6; /* display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;*/
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.boxNewsListStyle_4 .sumary_list .show_all {
    width: 100%;
    margin-top: .5em;
}

.boxNewsListStyle_4 .sumary_list .show_all a {
    display: block;
    margin-top: .4em;
    text-decoration: none;
    border: 1px solid #ddd;
    text-align: center;
    padding: .4em;
    font-size: 12px;
    color: #666;
}

/* 分页 */
.boxNewsListStyle_4 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

.boxNewsListStyle_4 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

.boxNewsListStyle_4 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    /*分页*/
    .boxNewsListStyle_4 .page_btn a:nth-child(n+5) {
        display: none;
    }

    .boxNewsListStyle_4 .page_btn a:nth-last-child(1), .boxNewsListStyle_4 .page_btn a:nth-last-child(2), .boxNewsListStyle_4 .page_btn a:nth-last-child(3) {
        display: inline-block !important;
    }
}

#newsList_style_04_1554629656798 .newDetail.pc {
    display: block;
}

#newsList_style_04_1554629656798 .newDetail.pad, #newsList_style_04_1554629656798 .newDetail.mobile {
    display: none;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554629656798 .newDetail.pad {
        display: block;
    }

    #newsList_style_04_1554629656798 .newDetail.pc, #newsList_style_04_1554629656798 .newDetail.mobile {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554629656798 .newDetail.mobile {
        display: block;
    }

    #newsList_style_04_1554629656798 .newDetail.pc, #newsList_style_04_1554629656798 .newDetail.pad {
        display: none;
    }
}

/*pc*/
#newsList_style_04_1554629656798 li {
    width: 49%;
}

#newsList_style_04_1554629656798 li.sumary_list {
    margin-bottom: 2%;
}

@media screen and (max-width: 1024px) {
    /*ipad*/
    #newsList_style_04_1554629656798 li {
        width: 49%;
    }

    #newsList_style_04_1554629656798 li.sumary_list {
        margin-bottom: 2%;
    }
}

@media screen and (max-width: 768px) {
    /*mobi*/
    #newsList_style_04_1554629656798 li {
        width: 49%;
    }

    #newsList_style_04_1554629656798 li.sumary_list {
        margin-bottom: 2%;
    }
}

@media screen and (min-width: 1025px) {
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
}

@media screen and (max-width: 640px) {

}

/* 新分页 */
#newsList_style_04_1554629656798 .page_btn {
    font-size: 14px;
    text-align: center;
}

#newsList_style_04_1554629656798 .page_btn .all_page {
    display: inline-block;
    margin: 0 10px;
}

#newsList_style_04_1554629656798 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_04_1554629656798 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_04_1554629656798 .submit_div {
    display: inline-block;
}

#newsList_style_04_1554629656798 .page_btn input {
    width: 50px;
    margin: 0 5px;
}

#newsList_style_04_1554629656798 .page_btn input:hover {
    cursor: default;
    background: white;
    color: #333;
}

#newsList_style_04_1554629656798 .page_submit {
    margin-left: 5px;
}

#newsList_style_04_1554629656798 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554629656798 .page_btn {
        font-size: 12px;
    }

    #newsList_style_04_1554629656798 .submit_div {
        display: none;
    }
}

#newsList_style_04_1554629656798 .page {
    width: auto;
    margin: 0 5px 10px 5px;
    border-radius: 5px;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554629656798 .page {
        line-height: 30px;
        padding: 0 13px;
    }
}

ba.niceTab.tabStyle_3 {
    position: relative;
    width: 100%;
    height: 100%;
}

.niceTab.tabStyle_3 li {
    -webkit-transition: all ease-out .2s;
    -moz-transition: all ease-out .2s;
    -o-transition: all ease-out .2s;
    transition: all ease-out .2s
}

/*标签样式*/
.tab_nav {
    position: absolute;
    z-index: 2;
    overflow: hidden;
}

.tab_ul {
    text-align: left; /* 该设置可将标签居左left、居中center、居右right,仅对标签在上面或标签在下面可用 */
}

.tab_li {
    display: inline-block;
    text-align: center;
    background: #f6f5f4;
    font-size: 12px;
    border: 0;
    cursor: pointer;
    box-sizing: border-box;
}

.tab_ul .tabCurItem {
    background: #eee;
}

.tab_img img {
    width: 18px;
    height: 14px;
}

.tab_img {
    vertical-align: middle;
}

.tab_txt {
    vertical-align: middle;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    color: inherit !important;
}

.tab_txt p {
    white-space: nowrap;
    font-size: inherit;
    color: inherit;
}

/*内容区样式*/
.tab_box {
    position: absolute;
    left: 0;
    z-index: 1;
}

.tab_content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tab_main {
    background: #eee;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.tab_div {
    width: 100%;
    height: 100%;
    display: none;
    overflow: hidden;
}

.niceTabShow {
    display: block;
}

/*选项卡左右箭头*/
.tab_left_arrow {
    position: absolute;
    cursor: pointer;
    top: 50%;
    left: 10px; /*左箭头边距*/ /*width: 40px; height: 40px;*/
    background: url(../img/tab/style_03/arrow_left.png) no-repeat center center !important;
    background-size: auto 80%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    opacity: 1;
    z-index: 999999;
    display: none;
}

.tab_right_arrow {
    position: absolute;
    cursor: pointer;
    top: 50%;
    right: 10px; /*右箭头边距*/
    width: 40px;
    height: 40px;
    background: url(../img/tab/style_03/arrow_right.png) no-repeat center center !important;
    background-size: auto 80%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    opacity: 1;
    z-index: 999999;
    display: none;
}

.tab_content:hover .tab_left_arrow, .tab_content:hover .tab_right_arrow {
    display: block;
}

/*=========  标签位置  ==========*/

/*标签顶部样式*/
.tab_nav_top {
    left: 0;
    top: 0;
    width: 100%;
    height: 50px; /*标签高度可以随意设置*/
}

.tab_scroll_top {
    overflow-x: scroll !important;
    overflow-y: hidden;
    width: 100%;
    height: calc(100% + 17px);
}

.tab_ul_top {
    min-width: 100%;
    height: 100%; /*该宽度是默认宽度，程序读取后替换*/
}

.tab_li_top {
    height: 100%; /*标签宽度可以随意设置*/
}

.tab_box_top {
    width: 100%;
    height: calc(100% - 50px); /*减掉标签的高度*/
    top: 50px; /*标签的高度*/
}

/*标签左侧样式*/
.tab_nav_left {
    left: 0;
    top: 0;
    width: 50px; /*标签宽度可以随意设置*/
    height: 100%;
}

.tab_scroll_left {
    overflow-x: hidden;
    overflow-y: scroll !important;
    width: calc(100% + 17px);
    height: 100%;
}

.tab_ul_left {
    height: 100%; /*该标签的宽度要和.tab_nav_left宽度一样;*/
}

.tab_li_left {
    width: 100%; /*标签高度可以随意设置*/
}

.tab_box_left {
    height: 100%;
    width: calc(100% - 50px); /*减掉标签的宽度*/
    left: 50px; /*标签的宽度*/
}

/*标签底部样式*/
.tab_nav_bottom {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 50px; /*标签高度可以随意设置*/
}

.tab_scroll_bottom {
    overflow-x: scroll !important;
    overflow-y: hidden;
    width: 100%;
    height: calc(100% + 17px);
}

.tab_ul_bottom {
    min-width: 100%;
    height: 100%; /*该宽度是默认宽度，程序读取后替换*/
}

.tab_li_bottom {
    height: 100%; /*标签宽度可以随意设置*/
}

.tab_box_bottom {
    width: 100%;
    height: calc(100% - 50px); /*减掉标签的高度*/
    bottom: 50px; /*标签的高度*/
}

/*标签左侧样式*/
.tab_nav_right {
    right: 0;
    bottom: 0;
    width: 50px; /*标签宽度可以随意设置*/
    height: 100%;
}

.tab_scroll_right {
    overflow-x: hidden;
    overflow-y: scroll !important;
    width: calc(100% + 17px);
    height: 100%;
}

.tab_ul_right {
    height: 100%; /*该标签的宽度要和.tab_nav_left宽度一样;*/
}

.tab_li_right {
    width: 100%; /*标签高度可以随意设置*/
}

.tab_box_right {
    height: 100%;
    width: calc(100% - 50px); /*减掉标签的宽度*/
    right: 50px; /*标签的宽度*/
}

.tab_pos_r {
    position: relative;
    top: 50%;
    left: 50%;
    padding: 0 1em;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.tab_pos_n {
    padding: 1em 0;
}


@media screen and (max-width: 991px) {
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 320px) {
}

/*新闻列表样式*/
.boxNewsListStyle_4 {
    width: 100%;
    clear: both;
}

.boxNewsListStyle_4 * {
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -o-transition: all ease .2s;
    box-sizing: border-box;
}

.boxNewsListStyle_4 ul {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.boxNewsListStyle_4 .sumary_list {
    list-style: none;
    background: #fff;
}

.boxNewsListStyle_4 .sumary_list .newPic {
    width: 100%;
    min-width: 100px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    background: #eee;
}

.boxNewsListStyle_4 .sumary_list .newPic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newPic .zTm {
    margin-top: 100%;
}

.boxNewsListStyle_4 .sumary_list .newCont {
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newCont .newTitle {
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newName {
}

.boxNewsListStyle_4 .sumary_list .newName a {
    text-decoration: none;
    color: #333;
    line-height: 1.1;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 10px 0;
}

.boxNewsListStyle_4 .sumary_list .newName a:hover {
}

.boxNewsListStyle_4 .sumary_list .newB {
    width: 100%;
    line-height: 2;
    padding-top: 5px;
}

.boxNewsListStyle_4 .sumary_list .newSort {
    color: #fff;
    background-color: #498D9C;
    font-size: 12px;
    white-space: nowrap;
    padding: .5em 1em;
    margin-right: 5px;
}

.boxNewsListStyle_4 .sumary_list .newsTime {
    text-align: right;
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

.boxNewsListStyle_4 .sumary_list .newsTime span {
    white-space: nowrap;
}

.boxNewsListStyle_4 .sumary_list .newsTime span.nTime {
    display: none;
}

.boxNewsListStyle_4 .sumary_list .newDetail {
    width: 100%;
    margin: 0;
    color: #999;
    font-size: 12px;
    line-height: 1.6; /* display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;*/
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.boxNewsListStyle_4 .sumary_list .show_all {
    width: 100%;
    margin-top: .5em;
}

.boxNewsListStyle_4 .sumary_list .show_all a {
    display: block;
    margin-top: .4em;
    text-decoration: none;
    border: 1px solid #ddd;
    text-align: center;
    padding: .4em;
    font-size: 12px;
    color: #666;
}

/* 分页 */
.boxNewsListStyle_4 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

.boxNewsListStyle_4 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

.boxNewsListStyle_4 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    /*分页*/
    .boxNewsListStyle_4 .page_btn a:nth-child(n+5) {
        display: none;
    }

    .boxNewsListStyle_4 .page_btn a:nth-last-child(1), .boxNewsListStyle_4 .page_btn a:nth-last-child(2), .boxNewsListStyle_4 .page_btn a:nth-last-child(3) {
        display: inline-block !important;
    }
}

#newsList_style_04_1554349762660 .newDetail.pc {
    display: block;
}

#newsList_style_04_1554349762660 .newDetail.pad, #newsList_style_04_1554349762660 .newDetail.mobile {
    display: none;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554349762660 .newDetail.pad {
        display: block;
    }

    #newsList_style_04_1554349762660 .newDetail.pc, #newsList_style_04_1554349762660 .newDetail.mobile {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554349762660 .newDetail.mobile {
        display: block;
    }

    #newsList_style_04_1554349762660 .newDetail.pc, #newsList_style_04_1554349762660 .newDetail.pad {
        display: none;
    }
}

/*pc*/
#newsList_style_04_1554349762660 li {
    width: 100%;
}

#newsList_style_04_1554349762660 li.sumary_list {
    margin-bottom: 0%;
}

@media screen and (max-width: 1024px) {
    /*ipad*/
    #newsList_style_04_1554349762660 li {
        width: 100%;
    }

    #newsList_style_04_1554349762660 li.sumary_list {
        margin-bottom: 0%;
    }
}

@media screen and (max-width: 768px) {
    /*mobi*/
    #newsList_style_04_1554349762660 li {
        width: 100%;
    }

    #newsList_style_04_1554349762660 li.sumary_list {
        margin-bottom: 0%;
    }
}

@media screen and (min-width: 1025px) {
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
}

@media screen and (max-width: 640px) {

}

/* 新分页 */
#newsList_style_04_1554349762660 .page_btn {
    font-size: 14px;
    text-align: center;
}

#newsList_style_04_1554349762660 .page_btn .all_page {
    display: inline-block;
    margin: 0 10px;
}

#newsList_style_04_1554349762660 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_04_1554349762660 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_04_1554349762660 .submit_div {
    display: inline-block;
}

#newsList_style_04_1554349762660 .page_btn input {
    width: 50px;
    margin: 0 5px;
}

#newsList_style_04_1554349762660 .page_btn input:hover {
    cursor: default;
    background: white;
    color: #333;
}

#newsList_style_04_1554349762660 .page_submit {
    margin-left: 5px;
}

#newsList_style_04_1554349762660 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554349762660 .page_btn {
        font-size: 12px;
    }

    #newsList_style_04_1554349762660 .submit_div {
        display: none;
    }
}

#newsList_style_04_1554349762660 .page {
    width: auto;
    margin: 0 5px 10px 5px;
    border-radius: 5px;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554349762660 .page {
        line-height: 30px;
        padding: 0 13px;
    }
}

/*新闻列表样式*/
.boxNewsListStyle_4 {
    width: 100%;
    clear: both;
}

.boxNewsListStyle_4 * {
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -o-transition: all ease .2s;
    box-sizing: border-box;
}

.boxNewsListStyle_4 ul {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.boxNewsListStyle_4 .sumary_list {
    list-style: none;
    background: #fff;
}

.boxNewsListStyle_4 .sumary_list .newPic {
    width: 100%;
    min-width: 100px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    background: #eee;
}

.boxNewsListStyle_4 .sumary_list .newPic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newPic .zTm {
    margin-top: 100%;
}

.boxNewsListStyle_4 .sumary_list .newCont {
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newCont .newTitle {
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newName {
}

.boxNewsListStyle_4 .sumary_list .newName a {
    text-decoration: none;
    color: #333;
    line-height: 1.1;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 10px 0;
}

.boxNewsListStyle_4 .sumary_list .newName a:hover {
}

.boxNewsListStyle_4 .sumary_list .newB {
    width: 100%;
    line-height: 2;
    padding-top: 5px;
}

.boxNewsListStyle_4 .sumary_list .newSort {
    color: #fff;
    background-color: #498D9C;
    font-size: 12px;
    white-space: nowrap;
    padding: .5em 1em;
    margin-right: 5px;
}

.boxNewsListStyle_4 .sumary_list .newsTime {
    text-align: right;
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

.boxNewsListStyle_4 .sumary_list .newsTime span {
    white-space: nowrap;
}

.boxNewsListStyle_4 .sumary_list .newsTime span.nTime {
    display: none;
}

.boxNewsListStyle_4 .sumary_list .newDetail {
    width: 100%;
    margin: 0;
    color: #999;
    font-size: 12px;
    line-height: 1.6; /* display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;*/
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.boxNewsListStyle_4 .sumary_list .show_all {
    width: 100%;
    margin-top: .5em;
}

.boxNewsListStyle_4 .sumary_list .show_all a {
    display: block;
    margin-top: .4em;
    text-decoration: none;
    border: 1px solid #ddd;
    text-align: center;
    padding: .4em;
    font-size: 12px;
    color: #666;
}

/* 分页 */
.boxNewsListStyle_4 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

.boxNewsListStyle_4 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

.boxNewsListStyle_4 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    /*分页*/
    .boxNewsListStyle_4 .page_btn a:nth-child(n+5) {
        display: none;
    }

    .boxNewsListStyle_4 .page_btn a:nth-last-child(1), .boxNewsListStyle_4 .page_btn a:nth-last-child(2), .boxNewsListStyle_4 .page_btn a:nth-last-child(3) {
        display: inline-block !important;
    }
}

#newsList_style_04_1554350026223 .newDetail.pc {
    display: block;
}

#newsList_style_04_1554350026223 .newDetail.pad, #newsList_style_04_1554350026223 .newDetail.mobile {
    display: none;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554350026223 .newDetail.pad {
        display: block;
    }

    #newsList_style_04_1554350026223 .newDetail.pc, #newsList_style_04_1554350026223 .newDetail.mobile {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554350026223 .newDetail.mobile {
        display: block;
    }

    #newsList_style_04_1554350026223 .newDetail.pc, #newsList_style_04_1554350026223 .newDetail.pad {
        display: none;
    }
}

/*pc*/
#newsList_style_04_1554350026223 li {
    width: 100%;
}

#newsList_style_04_1554350026223 li.sumary_list {
    margin-bottom: 0%;
}

@media screen and (max-width: 1024px) {
    /*ipad*/
    #newsList_style_04_1554350026223 li {
        width: 100%;
    }

    #newsList_style_04_1554350026223 li.sumary_list {
        margin-bottom: 0%;
    }
}

@media screen and (max-width: 768px) {
    /*mobi*/
    #newsList_style_04_1554350026223 li {
        width: 100%;
    }

    #newsList_style_04_1554350026223 li.sumary_list {
        margin-bottom: 0%;
    }
}

@media screen and (min-width: 1025px) {
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
}

@media screen and (max-width: 640px) {

}

/* 新分页 */
#newsList_style_04_1554350026223 .page_btn {
    font-size: 14px;
    text-align: center;
}

#newsList_style_04_1554350026223 .page_btn .all_page {
    display: inline-block;
    margin: 0 10px;
}

#newsList_style_04_1554350026223 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_04_1554350026223 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_04_1554350026223 .submit_div {
    display: inline-block;
}

#newsList_style_04_1554350026223 .page_btn input {
    width: 50px;
    margin: 0 5px;
}

#newsList_style_04_1554350026223 .page_btn input:hover {
    cursor: default;
    background: white;
    color: #333;
}

#newsList_style_04_1554350026223 .page_submit {
    margin-left: 5px;
}

#newsList_style_04_1554350026223 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554350026223 .page_btn {
        font-size: 12px;
    }

    #newsList_style_04_1554350026223 .submit_div {
        display: none;
    }
}

#newsList_style_04_1554350026223 .page {
    width: auto;
    margin: 0 5px 10px 5px;
    border-radius: 5px;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554350026223 .page {
        line-height: 30px;
        padding: 0 13px;
    }
}


#tab_style_03_1554346149326 #div_tab_style_03_1554346149326 .tab_right_arrow {
    width: 40px;
    height: 40px;
    opacity: 0.6;
    right: 10px;
}

#tab_style_03_1554346149326 #div_tab_style_03_1554346149326 .tab_left_arrow {
    width: 40px;
    height: 40px;
    opacity: 0.6;
    left: 10px;
}

#tab_style_03_1554346149326 #div_tab_style_03_1554346149326 .tab_ul {
    text-align: center
}

#tab_style_03_1554346149326 #div_tab_style_03_1554346149326 .tab_nav {
    display: none !important;
}

#tab_style_03_1554346149326 #div_tab_style_03_1554346149326 .tab_box {
    height: 100%;
    top: 0px;
}

/*新闻列表样式*/
.boxNewsListStyle_4 {
    width: 100%;
    clear: both;
}

.boxNewsListStyle_4 * {
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -o-transition: all ease .2s;
    box-sizing: border-box;
}

.boxNewsListStyle_4 ul {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.boxNewsListStyle_4 .sumary_list {
    list-style: none;
    background: #fff;
}

.boxNewsListStyle_4 .sumary_list .newPic {
    width: 100%;
    min-width: 100px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    background: #eee;
}

.boxNewsListStyle_4 .sumary_list .newPic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newPic .zTm {
    margin-top: 100%;
}

.boxNewsListStyle_4 .sumary_list .newCont {
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newCont .newTitle {
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newName {
}

.boxNewsListStyle_4 .sumary_list .newName a {
    text-decoration: none;
    color: #333;
    line-height: 1.1;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 10px 0;
}

.boxNewsListStyle_4 .sumary_list .newName a:hover {
}

.boxNewsListStyle_4 .sumary_list .newB {
    width: 100%;
    line-height: 2;
    padding-top: 5px;
}

.boxNewsListStyle_4 .sumary_list .newSort {
    color: #fff;
    background-color: #498D9C;
    font-size: 12px;
    white-space: nowrap;
    padding: .5em 1em;
    margin-right: 5px;
}

.boxNewsListStyle_4 .sumary_list .newsTime {
    text-align: right;
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

.boxNewsListStyle_4 .sumary_list .newsTime span {
    white-space: nowrap;
}

.boxNewsListStyle_4 .sumary_list .newsTime span.nTime {
    display: none;
}

.boxNewsListStyle_4 .sumary_list .newDetail {
    width: 100%;
    margin: 0;
    color: #999;
    font-size: 12px;
    line-height: 1.6; /* display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;*/
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.boxNewsListStyle_4 .sumary_list .show_all {
    width: 100%;
    margin-top: .5em;
}

.boxNewsListStyle_4 .sumary_list .show_all a {
    display: block;
    margin-top: .4em;
    text-decoration: none;
    border: 1px solid #ddd;
    text-align: center;
    padding: .4em;
    font-size: 12px;
    color: #666;
}

/* 分页 */
.boxNewsListStyle_4 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

.boxNewsListStyle_4 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

.boxNewsListStyle_4 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    /*分页*/
    .boxNewsListStyle_4 .page_btn a:nth-child(n+5) {
        display: none;
    }

    .boxNewsListStyle_4 .page_btn a:nth-last-child(1), .boxNewsListStyle_4 .page_btn a:nth-last-child(2), .boxNewsListStyle_4 .page_btn a:nth-last-child(3) {
        display: inline-block !important;
    }
}

#newsList_style_04_1554372489744 .newDetail.pc {
    display: block;
}

#newsList_style_04_1554372489744 .newDetail.pad, #newsList_style_04_1554372489744 .newDetail.mobile {
    display: none;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554372489744 .newDetail.pad {
        display: block;
    }

    #newsList_style_04_1554372489744 .newDetail.pc, #newsList_style_04_1554372489744 .newDetail.mobile {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554372489744 .newDetail.mobile {
        display: block;
    }

    #newsList_style_04_1554372489744 .newDetail.pc, #newsList_style_04_1554372489744 .newDetail.pad {
        display: none;
    }
}

/*pc*/
#newsList_style_04_1554372489744 li {
    width: 49%;
}

#newsList_style_04_1554372489744 li.sumary_list {
    margin-bottom: 2%;
}

@media screen and (max-width: 1024px) {
    /*ipad*/
    #newsList_style_04_1554372489744 li {
        width: 32%;
    }

    #newsList_style_04_1554372489744 li.sumary_list {
        margin-bottom: 2%;
    }
}

@media screen and (max-width: 768px) {
    /*mobi*/
    #newsList_style_04_1554372489744 li {
        width: 49%;
    }

    #newsList_style_04_1554372489744 li.sumary_list {
        margin-bottom: 2%;
    }
}

@media screen and (min-width: 1025px) {
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
}

@media screen and (max-width: 640px) {

}

/* 新分页 */
#newsList_style_04_1554372489744 .page_btn {
    font-size: 14px;
    text-align: center;
}

#newsList_style_04_1554372489744 .page_btn .all_page {
    display: inline-block;
    margin: 0 10px;
}

#newsList_style_04_1554372489744 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_04_1554372489744 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_04_1554372489744 .submit_div {
    display: inline-block;
}

#newsList_style_04_1554372489744 .page_btn input {
    width: 50px;
    margin: 0 5px;
}

#newsList_style_04_1554372489744 .page_btn input:hover {
    cursor: default;
    background: white;
    color: #333;
}

#newsList_style_04_1554372489744 .page_submit {
    margin-left: 5px;
}

#newsList_style_04_1554372489744 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554372489744 .page_btn {
        font-size: 12px;
    }

    #newsList_style_04_1554372489744 .submit_div {
        display: none;
    }
}

#newsList_style_04_1554372489744 .page {
    width: auto;
    margin: 0 5px 10px 5px;
    border-radius: 5px;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554372489744 .page {
        line-height: 30px;
        padding: 0 13px;
    }
}

/*新闻列表样式*/
.boxNewsListStyle_4 {
    width: 100%;
    clear: both;
}

.boxNewsListStyle_4 * {
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -o-transition: all ease .2s;
    box-sizing: border-box;
}

.boxNewsListStyle_4 ul {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.boxNewsListStyle_4 .sumary_list {
    list-style: none;
    background: #fff;
}

.boxNewsListStyle_4 .sumary_list .newPic {
    width: 100%;
    min-width: 100px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    background: #eee;
}

.boxNewsListStyle_4 .sumary_list .newPic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newPic .zTm {
    margin-top: 100%;
}

.boxNewsListStyle_4 .sumary_list .newCont {
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newCont .newTitle {
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newName {
}

.boxNewsListStyle_4 .sumary_list .newName a {
    text-decoration: none;
    color: #333;
    line-height: 1.1;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 10px 0;
}

.boxNewsListStyle_4 .sumary_list .newName a:hover {
}

.boxNewsListStyle_4 .sumary_list .newB {
    width: 100%;
    line-height: 2;
    padding-top: 5px;
}

.boxNewsListStyle_4 .sumary_list .newSort {
    color: #fff;
    background-color: #498D9C;
    font-size: 12px;
    white-space: nowrap;
    padding: .5em 1em;
    margin-right: 5px;
}

.boxNewsListStyle_4 .sumary_list .newsTime {
    text-align: right;
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

.boxNewsListStyle_4 .sumary_list .newsTime span {
    white-space: nowrap;
}

.boxNewsListStyle_4 .sumary_list .newsTime span.nTime {
    display: none;
}

.boxNewsListStyle_4 .sumary_list .newDetail {
    width: 100%;
    margin: 0;
    color: #999;
    font-size: 12px;
    line-height: 1.6; /* display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;*/
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.boxNewsListStyle_4 .sumary_list .show_all {
    width: 100%;
    margin-top: .5em;
}

.boxNewsListStyle_4 .sumary_list .show_all a {
    display: block;
    margin-top: .4em;
    text-decoration: none;
    border: 1px solid #ddd;
    text-align: center;
    padding: .4em;
    font-size: 12px;
    color: #666;
}

/* 分页 */
.boxNewsListStyle_4 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

.boxNewsListStyle_4 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

.boxNewsListStyle_4 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    /*分页*/
    .boxNewsListStyle_4 .page_btn a:nth-child(n+5) {
        display: none;
    }

    .boxNewsListStyle_4 .page_btn a:nth-last-child(1), .boxNewsListStyle_4 .page_btn a:nth-last-child(2), .boxNewsListStyle_4 .page_btn a:nth-last-child(3) {
        display: inline-block !important;
    }
}

#newsList_style_04_1554372725655 .newDetail.pc {
    display: block;
}

#newsList_style_04_1554372725655 .newDetail.pad, #newsList_style_04_1554372725655 .newDetail.mobile {
    display: none;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554372725655 .newDetail.pad {
        display: block;
    }

    #newsList_style_04_1554372725655 .newDetail.pc, #newsList_style_04_1554372725655 .newDetail.mobile {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554372725655 .newDetail.mobile {
        display: block;
    }

    #newsList_style_04_1554372725655 .newDetail.pc, #newsList_style_04_1554372725655 .newDetail.pad {
        display: none;
    }
}

/*pc*/
#newsList_style_04_1554372725655 li {
    width: 49%;
}

#newsList_style_04_1554372725655 li.sumary_list {
    margin-bottom: 2%;
}

@media screen and (max-width: 1024px) {
    /*ipad*/
    #newsList_style_04_1554372725655 li {
        width: 49%;
    }

    #newsList_style_04_1554372725655 li.sumary_list {
        margin-bottom: 2%;
    }
}

@media screen and (max-width: 768px) {
    /*mobi*/
    #newsList_style_04_1554372725655 li {
        width: 49%;
    }

    #newsList_style_04_1554372725655 li.sumary_list {
        margin-bottom: 2%;
    }
}

@media screen and (min-width: 1025px) {
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
}

@media screen and (max-width: 640px) {

}

/* 新分页 */
#newsList_style_04_1554372725655 .page_btn {
    font-size: 14px;
    text-align: center;
}

#newsList_style_04_1554372725655 .page_btn .all_page {
    display: inline-block;
    margin: 0 10px;
}

#newsList_style_04_1554372725655 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_04_1554372725655 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_04_1554372725655 .submit_div {
    display: inline-block;
}

#newsList_style_04_1554372725655 .page_btn input {
    width: 50px;
    margin: 0 5px;
}

#newsList_style_04_1554372725655 .page_btn input:hover {
    cursor: default;
    background: white;
    color: #333;
}

#newsList_style_04_1554372725655 .page_submit {
    margin-left: 5px;
}

#newsList_style_04_1554372725655 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554372725655 .page_btn {
        font-size: 12px;
    }

    #newsList_style_04_1554372725655 .submit_div {
        display: none;
    }
}

#newsList_style_04_1554372725655 .page {
    width: auto;
    margin: 0 5px 10px 5px;
    border-radius: 5px;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554372725655 .page {
        line-height: 30px;
        padding: 0 13px;
    }
}

/*新闻列表样式*/
.boxNewsListStyle_4 {
    width: 100%;
    clear: both;
}

.boxNewsListStyle_4 * {
    transition: all ease .2s;
    -webkit-transition: all ease .2s;
    -moz-transition: all ease .2s;
    -o-transition: all ease .2s;
    box-sizing: border-box;
}

.boxNewsListStyle_4 ul {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.boxNewsListStyle_4 .sumary_list {
    list-style: none;
    background: #fff;
}

.boxNewsListStyle_4 .sumary_list .newPic {
    width: 100%;
    min-width: 100px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    background: #eee;
}

.boxNewsListStyle_4 .sumary_list .newPic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newPic .zTm {
    margin-top: 100%;
}

.boxNewsListStyle_4 .sumary_list .newCont {
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newCont .newTitle {
    width: 100%;
}

.boxNewsListStyle_4 .sumary_list .newName {
}

.boxNewsListStyle_4 .sumary_list .newName a {
    text-decoration: none;
    color: #333;
    line-height: 1.1;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 10px 0;
}

.boxNewsListStyle_4 .sumary_list .newName a:hover {
}

.boxNewsListStyle_4 .sumary_list .newB {
    width: 100%;
    line-height: 2;
    padding-top: 5px;
}

.boxNewsListStyle_4 .sumary_list .newSort {
    color: #fff;
    background-color: #498D9C;
    font-size: 12px;
    white-space: nowrap;
    padding: .5em 1em;
    margin-right: 5px;
}

.boxNewsListStyle_4 .sumary_list .newsTime {
    text-align: right;
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

.boxNewsListStyle_4 .sumary_list .newsTime span {
    white-space: nowrap;
}

.boxNewsListStyle_4 .sumary_list .newsTime span.nTime {
    display: none;
}

.boxNewsListStyle_4 .sumary_list .newDetail {
    width: 100%;
    margin: 0;
    color: #999;
    font-size: 12px;
    line-height: 1.6; /* display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;*/
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.boxNewsListStyle_4 .sumary_list .show_all {
    width: 100%;
    margin-top: .5em;
}

.boxNewsListStyle_4 .sumary_list .show_all a {
    display: block;
    margin-top: .4em;
    text-decoration: none;
    border: 1px solid #ddd;
    text-align: center;
    padding: .4em;
    font-size: 12px;
    color: #666;
}

/* 分页 */
.boxNewsListStyle_4 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

.boxNewsListStyle_4 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

.boxNewsListStyle_4 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    /*分页*/
    .boxNewsListStyle_4 .page_btn a:nth-child(n+5) {
        display: none;
    }

    .boxNewsListStyle_4 .page_btn a:nth-last-child(1), .boxNewsListStyle_4 .page_btn a:nth-last-child(2), .boxNewsListStyle_4 .page_btn a:nth-last-child(3) {
        display: inline-block !important;
    }
}

#newsList_style_04_1554372856257 .newDetail.pc {
    display: block;
}

#newsList_style_04_1554372856257 .newDetail.pad, #newsList_style_04_1554372856257 .newDetail.mobile {
    display: none;
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #newsList_style_04_1554372856257 .newDetail.pad {
        display: block;
    }

    #newsList_style_04_1554372856257 .newDetail.pc, #newsList_style_04_1554372856257 .newDetail.mobile {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554372856257 .newDetail.mobile {
        display: block;
    }

    #newsList_style_04_1554372856257 .newDetail.pc, #newsList_style_04_1554372856257 .newDetail.pad {
        display: none;
    }
}

/*pc*/
#newsList_style_04_1554372856257 li {
    width: 49%;
}

#newsList_style_04_1554372856257 li.sumary_list {
    margin-bottom: 2%;
}

@media screen and (max-width: 1024px) {
    /*ipad*/
    #newsList_style_04_1554372856257 li {
        width: 32%;
    }

    #newsList_style_04_1554372856257 li.sumary_list {
        margin-bottom: 2%;
    }
}

@media screen and (max-width: 768px) {
    /*mobi*/
    #newsList_style_04_1554372856257 li {
        width: 49%;
    }

    #newsList_style_04_1554372856257 li.sumary_list {
        margin-bottom: 2%;
    }
}

@media screen and (min-width: 1025px) {
}

@media screen and (min-width: 640px) and (max-width: 1024px) {
}

@media screen and (max-width: 640px) {

}

/* 新分页 */
#newsList_style_04_1554372856257 .page_btn {
    font-size: 14px;
    text-align: center;
}

#newsList_style_04_1554372856257 .page_btn .all_page {
    display: inline-block;
    margin: 0 10px;
}

#newsList_style_04_1554372856257 .page:hover {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_04_1554372856257 .page_btn .cur {
    background: red;
    color: white;
    cursor: pointer;
}

#newsList_style_04_1554372856257 .submit_div {
    display: inline-block;
}

#newsList_style_04_1554372856257 .page_btn input {
    width: 50px;
    margin: 0 5px;
}

#newsList_style_04_1554372856257 .page_btn input:hover {
    cursor: default;
    background: white;
    color: #333;
}

#newsList_style_04_1554372856257 .page_submit {
    margin-left: 5px;
}

#newsList_style_04_1554372856257 .page {
    display: inline-block;
    border: none;
    background: white;
    text-align: center;
    width: auto;
    padding: 0 15px;
    margin: 0 .5px;
    height: auto;
    line-height: 35px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #e5e5e5;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554372856257 .page_btn {
        font-size: 12px;
    }

    #newsList_style_04_1554372856257 .submit_div {
        display: none;
    }
}

#newsList_style_04_1554372856257 .page {
    width: auto;
    margin: 0 5px 10px 5px;
    border-radius: 5px;
}

@media screen and (max-width: 640px) {
    #newsList_style_04_1554372856257 .page {
        line-height: 30px;
        padding: 0 13px;
    }
}


#image_style_01_1555739324167 .CompatibleImg img {
    width: 100%;
    height: auto;
    margin-left: 0px
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #image_style_01_1555739324167 .CompatibleImg img {
        width: 100%;
        height: 100%
    }
}

@media screen and (max-width: 640px) {
    #image_style_01_1555739324167 .CompatibleImg img {
        width: 100%;
        height: 100%
    }
}

.imgStyle {
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.imgStyle > a {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.imgStyle img {
    box-sizing: border-box;
}

/*菜单样式*/
.menuStyle_28 {
    width: 100%;
    position: relative;
}

.menuStyle_28 * {
    box-sizing: border-box;
}

.menuStyle_28 .miniMenu *,
.menuStyle_28 .menuUl li * {
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -o-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: background, height, padding;
    -moz-transition-property: background, height, padding;
    -moz-transition-property: background, height, padding;
    transition-property: background, height, padding;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.menuStyle_28 .dflex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.menuStyle_28 .rflex {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    float: left \0;
}

.menuStyle_28 ul, .menuStyle_28 li {
    padding: 0;
    margin: 0px;
    list-style: none
}

.menuStyle_28 .menuLayout {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.menuStyle_28 .menuLayout:after {
    content: '';
    display: block;
    clear: both;
}

.menuStyle_28 .menuUl_box {
    position: relative;
    width: 100%;
    text-align: center;
}

.menuStyle_28 .menuUl {
    position: relative;
    width: 100%;
    text-align: center;
}

.menuStyle_28 .menuUl > li {
    position: relative;
}

.menuStyle_28 .menuUl > li > a {
    background: rgba(0, 0, 0, 0.0);
    position: relative;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    box-sizing: border-box;
    display: block;
    text-align: center;
    letter-spacing: normal;
    white-space: nowrap;
    color: #17233d;
    line-height: 44px;
    padding: 0;
    padding: 0 1em \0;
}

.menuStyle_28 .menuUl > li > a:hover {
    color: #750406;
}

.menuStyle_28 .menuUl #hot > a {
    color: #750406;
}

.menuStyle_28 .menuUl > li > a span {
    display: block;
    width: 100%;
    text-align: center;
    color: rgba(0, 0, 0, .3);
    font-size: 12px;
}

.menuStyle_28 .menuUl #hot > a span {
    color: inherit;
}

/*.menuStyle_28 .menuUl>li>a i{position: absolute; right: 10px; top: 50%; -webkit-transform: translateY(-50%); -o-transform: translateY(-50%); -moz-transform: translateY(-50%); transform: translateY(-50%);}*/
.menuStyle_28 .menuLayout .miniMenu {
    display: none;
}

.menuStyle_28 .menuUl02 {
    position: absolute;
    left: 50%;
    opacity: 0;
    display: none;
    width: 100%;
    height: 0;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
}

.menuStyle_28 .menuUl > li > #menuLogo {
    height: 85%;
}

.menuStyle_28 .menuUl .rflex:hover .menuUl02 {
    opacity: 1;
    display: block;
    height: auto;
    padding-top: 10px;
}

.menuStyle_28 .menuUl.noHover .rflex:hover .menuUl02 {
    display: none;
}

.menuStyle_28 .menuUl02 .subMenu02 {
    position: relative;
    color: #4d5158;
    font-size: 14px;
    line-height: 40px;
    padding: 0 15px;
    background: #fff;
}

.menuStyle_28 .menuUl02 .subMenu02.subCurSet {
    color: #750406;
}

.menuStyle_28 .menuUl02 .subMenu02 > a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.menuStyle_28 .menuUl02 .subMenu02:hover {
    color: #750406;
    border-left: 2px solid #750406;
    background: #f7f7f7;
}

.menuStyle_28 .menuUl02 .subMenu02 > a .fa {
    float: right;
    line-height: inherit;
}

.menuStyle_28 .menuUl02 .subMenu02:hover .menuUl03 {
    display: block;
}

.menuStyle_28 .menuUl02 .subMenu02:first-child {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.menuStyle_28 .menuUl02 .subMenu02:last-child {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.menuStyle_28 .menuUl03 {
    position: absolute; /*left需要js获取二级的宽*/
    top: 0;
    left: 100%;
    display: none;
}

.menuStyle_28 .menuUl03 .subMenu03 {
    line-height: 40px;
    margin-left: 10px;
}

.menuStyle_28 .menuUl03 .subMenu03 a:hover {
    color: #750406;
    background: #f7f7f7;
}

.menuStyle_28 .menuUl03 .subMenu03 > a {
    color: #17233d;
    background: #fff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 15px;
}

.menuStyle_28 .menuUl03 .subMenu03:first-child a {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.menuStyle_28 .menuUl03 .subMenu03:last-child a {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.menuStyle_28 .menuUl .rflex:hover .menuUl02::before {
    content: '';
    border-top: 5px solid transparent;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #fff;
    position: absolute;
    top: 0px;
    transform: translateX(-50%);
}

.menuStyle_28 .menuUl02 .arrow:hover::before {
    content: '';
    border-top: 5px solid transparent;
    border-left: 5px solid #fff;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.menuStyle_28 .rflex {
    position: relative;
}

.menuStyle_28 .maxWidth {
    margin: auto;
}

/* .menuStyle_28 .menuUl03 .subMenu03 .thrCurSet{background: rgba(0, 0, 0, 0.1);} */

.menuStyle_28 .subBox {
    position: absolute;
    left: 0; /*top通过JS获取菜单高度*/
    width: 100%;
    background: rgba(238, 238, 238, 0.85);
    display: none;
}

.menuStyle_28 .subBox .subBoxContent {
    padding: 15px;
    text-align: left;
    overflow: hidden;
}

.menuStyle_28 .subBox .subBoxContent .subItems {
    overflow: hidden;
    display: none;
}

.menuStyle_28 .subBox .sublm {
    float: left;
    width: calc(100% - 440px);
    min-height: 10px;
}

.menuStyle_28 .subBox .sublm > div {
    clear: both;
    overflow: hidden;
    margin: 8px 0;
}

.menuStyle_28 .subBox .subImgsbox {
    float: left;
    width: 440px; /*这个宽可被设置*/
    height: 160px;
}

.menuStyle_28 .subBox .subImgsbox > a {
    display: block;
    height: 100%;
    float: right;
    width: calc((100% - 20px) / 2);
    margin-left: 20px;
}

.menuStyle_28 .subBox .subImgsbox > a:last-child {
    margin-left: 0;
}

.menuStyle_28 .subBox .subImgsbox > a > div.subImg {
    position: relative;
    height: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover !important;
}

.menuStyle_28 .subBox .subImgsbox > a > div.subImg span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    padding: 5px;
    background: rgba(255, 255, 255, .8);
    color: #17233d;
    font-size: 12px;
}

.menuStyle_28 .subBox p {
    overflow: hidden;
    float: left;
}

.menuStyle_28 .subBox p:first-child {
    margin-right: 10px;
    width: 100px;
}

.menuStyle_28 .subBox p:last-child {
    width: calc(100% - 110px);
}

.menuStyle_28 .subBox .subMenu02 {
    font-size: 14px;
    margin-bottom: 5px;
    clear: both;
    color: #17233d;
    line-height: 28px;
}

.menuStyle_28 .subBox .subMenu02.subCurSet {
    color: #750406;
}

.menuStyle_28 .subBox .subMenu02:hover,
.menuStyle_28 .subBox .subMenu02:active {
    color: #750406;
}

.menuStyle_28 .subBox .subMenu03 {
    float: left;
    margin: 5px 20px 5px 0;
    font-size: 12px;
    color: #666;
}

.menuStyle_28 .subBox .subMenu03:hover,
.menuStyle_28 .subBox .subMenu03:active {
    color: #750406;
}

.menuStyle_28 .subMenu03 .thrCurSet {
    color: #750406 !important;
    background: #f7f7f7 !important;
}


/*图标*/
.menuStyle_28 .imgIco {
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    position: relative;
    padding: 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}

.menuStyle_28 .imgIco img {
    width: auto;
    height: 100%;
    vertical-align: top;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%);
}


@media screen and (max-width: 640px) {
    .menuStyle_28 .imgIco {
        margin-right: 10px;
    }

    .menuStyle_28 .menuUl,
    .menuStyle_28 .menuUl_box {
        display: none;
    }

    .menuStyle_28 .menuScroll {
        height: calc(100% - 100px);
        width: 100%;
    }

    .menuStyle_28 .menuScroll > .menuUlCopy {
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: scroll;
    }

    .menuStyle_28 .menuLayout .miniMenu {
        display: block;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 44px;
    }

    .menuStyle_28 .miniMenu .leftBox {
        height: 100%;
    }

    .menuStyle_28 .miniMenu .leftBox .sidebar {
        font-size: 24px;
        line-height: 44px;
        font-weight: normal;
        cursor: pointer;
        color: #4d5158;
        position: absolute;
        top: 0;
        right: 0px;
        width: 44px;
        text-align: center;
    }

    .menuStyle_28 .miniMenu .leftBox .sidebar .fa {
        font-size: inherit;
        line-height: inherit;
        color: inherit;
    }

    .menuStyle_28 .miniMenu .leftBox .nav {
        width: 100%;
        height: 44px;
    }

    .menuStyle_28 .miniMenu.Mslide .leftBox .nav {
        border-bottom: 1px solid rgba(0, 0, 0, .05);
    }

    .menuStyle_28 .miniMenu .leftBox .menuUlCopy {
        padding: 0 0 0 30px;
        clear: both;
    }

    .menuStyle_28 .miniMenu .leftBox .menuUlCopy .menuUlCopy {
        display: none;
    }

    .menuStyle_28 .miniMenu .leftBox .menuUlCopy li {
        width: 100%;
        overflow: hidden;
        color: #fff;
        font-size: 12px;
        line-height: 44px;
    }

    .menuStyle_28 .miniMenu .leftBox .menuUlCopy li a {
        width: calc(100% - 50px);
        float: left;
        display: block;
        text-align: left;
        color: inherit;
        text-decoration: none;
        font-size: inherit;
        line-height: inherit;
        height: inherit;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border-bottom: 1px solid rgba(0, 0, 0, .2);
    }

    .menuStyle_28 .miniMenu .leftBox .menuUlCopy li#hot > a {
        border-bottom: 1px solid #fff;
    }

    .menuStyle_28 .miniMenu .leftBox .menuUlCopy li .fa {
        color: inherit;
        font-size: inherit;
        float: left;
        width: 50px;
        text-align: center;
        line-height: inherit;
        background: rgba(0, 0, 0, 0.1);
    }

    .menuStyle_28 .miniMenu .leftBox .menuUlCopy li .fa:active {
        background: rgba(0, 0, 0, .3);
    }

    .menuStyle_28 .miniMenu .leftBox .menuUlCopy li.subMenuSet.subCurSet > a,
    .menuStyle_28 .miniMenu .leftBox .menuUlCopy li.thrMenuSet.thrCurSet > a {
        border-bottom: 1px solid #fff;
    }

    .menuStyle_28 .menuLayout .miniMenu.Mslide {
        height: 100% !important;
        height: 100vh !important;
        background: rgba(23, 25, 29, 0.95);
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        -webkit-transition: all linear .3s;
        -moz-transition: all linear .3s;
        -o-transition: all linear .3s;
        transition: all linear .3s;
    }

    .menuStyle_28 .menuLayout .miniMenu.Mslide .sidebar {
        color: #fff;
        background: rgba(0, 0, 0, .05);
    }

    .menuStyle_28 .menuLayout .miniMenu.Mslide .nav a {
        display: none !important;
    }
}


@media screen and (min-width: 640px) {
    #dh_style_28_1554357708223 .maxWidth {
        max-width: px;
    }

    #dh_style_28_1554357708223 .subBox .sublm {
        width: calc(100% - (px + px) - 20px);
    }

    /*20px是两张图片间的间距*/
    #dh_style_28_1554357708223 .subBox .subImgsbox {
        width: calc((px + px) + 20px);
        height: px
    }

    /*20px是两张图片间的间距*/
    #dh_style_28_1554357708223 .menuUl > li > #menuLogo {
        height: px;
        margin-right: px;
        margin-left: px;
    }
}

#image_style_01_1554358801403 .CompatibleImg img {
    width: 100%;
    height: auto;
    margin-left: 0px
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #image_style_01_1554358801403 .CompatibleImg img {
        width: 100%;
        height: auto;
        margin-left: 0px
    }
}

@media screen and (max-width: 640px) {
    #image_style_01_1554358801403 .CompatibleImg img {
        width: 100%;
        height: 100%
    }
}

#image_style_01_1554358801403 a {
    cursor: default;
}

.imgStyle {
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.imgStyle > a {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.imgStyle img {
    box-sizing: border-box;
}

#image_style_01_1554359169135 .CompatibleImg img {
    width: 100%;
    height: auto;
    margin-left: 0px
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #image_style_01_1554359169135 .CompatibleImg img {
        width: 100%;
        height: auto;
        margin-left: 0px
    }
}

@media screen and (max-width: 640px) {
    #image_style_01_1554359169135 .CompatibleImg img {
        width: 100%;
        height: 100%
    }
}

#image_style_01_1554359169135 a {
    cursor: default;
}

.imgStyle {
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.imgStyle > a {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.imgStyle img {
    box-sizing: border-box;
}

#image_style_01_1554359388429 .CompatibleImg img {
    width: 100%;
    height: auto;
    margin-left: 0px
}

@media screen and (min-width: 641px) and (max-width: 1200px) {
    #image_style_01_1554359388429 .CompatibleImg img {
        width: 100%;
        height: auto;
        margin-left: 0px
    }
}

@media screen and (max-width: 640px) {
    #image_style_01_1554359388429 .CompatibleImg img {
        width: 100%;
        height: 100%
    }
}

#image_style_01_1554359388429 a {
    cursor: default;
}

.imgStyle {
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.imgStyle > a {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.imgStyle img {
    box-sizing: border-box;
}

/* 清除浮动 */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}


.clear {
    display: block !important;
    clear: both !important;
}

.clearfix {
    zoom: 1
}

.online-service {
    display: none
}

.online-service .wrapper {
    padding: 5px 0;
    background-color: #fff
}

.online-service .close, .online-service .button {
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.online-service.right .button div {
    text-align: right;
    padding-right: 5px
}

.online-service.left .button div {
    text-align: left;
    padding-left: 5px
}

.online-service .header, .online-service .footer {
    height: 25px;
    line-height: 25px;
    padding: 0 .5em;
}

.online-service .header {
    border-bottom: 1px solid #eee
}

.online-service .footer {
    border-top: 1px solid #eee;
    font-size: 12px
}

.online-service.right .footer {
    text-align: right
}

.online-service.left .footer {
    text-align: left
}

.online-service .content {
    padding: .5em 1em
}

.ol-qq-online .qq-btn {
    float: left;
    margin-right: .5em
}

.ol-qq-online .qq-btn img {
    float: left
}

.ol-qq-online {
    line-height: 25px
}

.ol-image img {
    width: 100%
}

/*----------------------电脑板式样式----------------------*/
body > .online-service {
    display: block !important;
}

/*----------------------平板板式样式----------------------*/
@media screen and (min-width: 641px) and (max-width: 1200px) {
    body > .online-service {
        display: block !important;
    }
}

/*----------------------手机板式样式----------------------*/
@media screen and (max-width: 640px) {
    body > .online-service {
        display: none !important;
    }
}

.bottomMenu {
    width: 100%;
    box-sizing: border-box;
    display: none;
    position: fixed;
    top: calc(100% - 50px);
    z-index: 999999
}

.bottomMenu ul {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    background-color: #FFFFFF;
    border-top: 1px solid #ddd;
    box-shadow: 0 0px 6px rgba(0, 0, 0, .1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.bottomMenu ul li {
    position: relative;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.bottomMenu ul li .menuItem {
    position: relative;
}

.bottomMenu ul li .menuIco {
    width: 26px;
    height: 26px;
    overflow: hidden;
    margin: 0 auto 5px;
}

.bottomMenu ul li .menuIco img {
    width: 100%;
    height: 100%;
}

.bottomMenu ul li .menuName {
    font-size: 12px;
    white-space: nowrap;
    margin: auto;
    text-align: center;
    color: #666666;
    line-height: 1;
    font-family: Microsoft YaHei;
}

.bottomMenu ul li .submenuItems {
    position: absolute;
    bottom: 48px;
    z-index: 999999;
    width: 100%;
    text-align: center;
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0 0px 6px rgba(0, 0, 0, .1);
}

.bottomMenu ul li .submenuItems a {
    display: block;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    color: #333;
    border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
    .bottomMenu {
        display: block;
    }

    body {
        padding-bottom: 55px;
    }
}


.view_wrap {
    margin: 0 auto 0px;
    overflow: hidden;
    width: 1200px;
}

.tag-title {
    display: inline-block;
    font-size: 18px;
    border-bottom: solid 3px #d2110f;
    padding-bottom: 5px;
}
.tag-title img {
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 28px;
}
.signal_box .tag-title img {
    width: 117px;
    height: 24px;
}

.relate_box {
    width: 345px;
    height: 100%;
    float: right;
}

.ep-pages {
    padding: 30px 40px;
    clear: both;
    text-align: center;
    vertical-align: top;
}

.pagination li {
    display: inline-block;
    height: 34px;
    line-height: 34px;
    padding: 0 8px;
    background: #fff;
    border: 1px solid #ededed;
    overflow: hidden;
    vertical-align: top;
    margin: 0 3px;
    min-width: 18px;
}

.pagination li.active {
    background: #ff4d4d;
    border: 1px solid #ff4d4d;
    color: #fff;
    border-radius: 4px;
}

.pagination li.active a {
    color: #fff;
}

.video-list li {
    font-size: 14px;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #000;
    text-decoration: none;
    line-height: 30px;
}

.not_data {
    padding: 15px;
    text-align: center;
    font-size: 16px;
    color: #999999;
    border-bottom: solid 1px #dedede;
}

.body {
    margin-top: 15px;
}

.playbtn {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -25px;
    margin-top: -25px;
    width: 49px;
    height: 49px;
    background: url(../img/dspleft_ico.png) no-repeat 0 0;
    -webkit-transform: scale(.7);
    -webkit-transition-property: opacity, -webkit-transform;
    -webkit-transition-duration: .5s;
    transform: scale(.7);
    transition-property: opacity, transform;
    transition-duration: .5s;
    zoom: 1;
    background-size: 100% 100%;
}

.video-list dl {
    width: 150px;
    float: left;
    margin-top: 20px;
    margin-left: 5px;
}

.video-list dl dt {
    position: relative;
    width: 100%;
    height: 110px;
}

.video-list dl dt img {
    width: 148px;
    height: 100px;
    position: absolute;
    left: 0;
    top: 0;
}

.video-list dl dd {
    color: #666;
    line-height: 18px;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-wrap {
    width: 100%;
    box-shadow: 0 2px 20px #f0f0f0;
    background: #000000;
    color: #898a89;
    overflow: hidden;
    padding: 50px 0;
    font-size: 14px;
    margin-top: 150px;
}

.footer-wrap .friend-link {
    width: 1200px;
    margin: 0 auto 10px;
    overflow: hidden;
    padding-bottom: 30px;
    border-bottom: 1px solid #fd0300;
    text-align: left;
}

.footer-wrap .friend-link p {
    color: #fff;
    margin-bottom: 20px;
}

.footer-wrap .friend-link a {
    font-size: 12px;
    color: grey;
    text-decoration: none;
    margin-right: 5px;
}

.footer-wrap .footer {
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 14px;
    border-bottom: 1px solid #292929;
}

.footer-wrap .footer .list1 {
    width: 432px;
    margin: 0 8px 0 0;
    padding: 0 15px;
    box-sizing: border-box;
}

.footer-wrap .footer ul {
    float: left;
    width: 150px;
    margin-right: 150px;
    line-height: 35px;
    list-style: none;
    color: #8D8D8D;
}

.footer-wrap .footer ul .white {
    color: #f9f9f9;
    padding-bottom: 15px;
    box-sizing: border-box;
}

.footer-wrap .footer ul li {
    white-space: nowrap;
}

.footer-wrap .footer p {
    color: #868585;
}

.footer-wrap .footer a {
    color: #868585;
}

.footer-wrap .footer .list4 {
    width: 230px;
}

.footer-wrap .footer .list4 > li {
    padding-bottom: 15px;
}

.footer-wrap .footer ul a {
    color: #868585;
    text-decoration: none;
    display: block;
}

.list4 .el-tag {
    font-size: 11px;
    color: #868585 !important;
    background: #000000;
    float: left;
    border: none;
    height: auto;
    padding: 0 4px;
    line-height: 20px;
}

.sub_nav_menus::after {
    clear: both;
    content: '';
    display: block;
    width: 0;
    height: 0;
    visibility: hidden;
}

.sub_nav_menus li {
    float: left;
    background: #dedede;
    padding: 7px 7px;
    margin-right: 20px;
    border-radius: 5px;
}
.sub_nav_menus li a {
    display: block;
    font-size: 14px;
}
.sub_nav_menus li#hot {
    background: #d41d1b;
}
.sub_nav_menus li#hot a {
    color: #FFFFFF;
}
.channel_wrap {
    margin-top: 30px;
}
.channel_content_left {
    width: 820px;
    float: left;
    margin-right: 40px;
}
.channel_content_right {
    float: left;
    width: 340px;
}
.channel_news_v {
    margin-top: 15px;
    background: #f1f1f1;
    padding-top: 20px;
    padding-bottom: 20px;
}
.channel_news_v li {
    float: left;
    width: 191px;
    margin-left: 5px;
}
.new_v_item_pic {
    width: 100%;
    height: 120px;
}
.new_v_item_text {
    width: 100%;
    line-height: 18px;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pic_list {
    margin-right: 30px;
}
.pic_list li {
    position: relative;
    margin-bottom: 15px;
}
.pic_list li .ib {
    width: 240px;
    height: 150px;
}
.pic_list li img {
    width: 100%;
    height: 100%;
}
.pic_list li  p {
    line-height: 30px;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: #fff;
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
}
.channel_top_new_list a {
    font-size: 14px;
    line-height: 30px;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.topic_box {
    margin-top: 30px;
}
.topic_box_tag_title {
    height: 50px;
    padding: 5px 20px 0 20px;
}
.topic_box_tag_title img {
    float: left;
    width: 50px;
    height: 50px;
}
.topic_box_tag_title h1 {
    float: left;
    font-size: 18px;
    color: #333333;
    line-height: 50px;
    margin-left: 10px;
}
.topic_box_tag_title ul {
    float: left;
    margin-left: 60px;
    margin-top: 14px;
}
.topic_box_tag_title li {
    float: left;
    margin-right: 20px;
    font-size: 14px;
    color: #999;
}
.topic_box_tag_title li a {
    color: #999;
}
.topic_box_tag_title .gd {
    font-size: 14px;
    color: #666;
    float: right;
    margin-top: 16px;
}
.topic_box_list {
    margin-top: 15px;
}
.topic_box_list li {
    width: 48%;
    float: left;
    font-size: 14px;
    line-height: 30px;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-right: 15px;
}
.topic_box_tag_title li.active a {
    font-weight: bold;
    color: #000000;
}
.topic_box_score_box {
    display: flex;
    margin-top: 15px;
}
.topic_box_score_match_item {
    display: block;
    flex: 1;
}
.score_match_team img {
    width: 32px;
    height: 32px;
}
.score_match_header {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    font-size: 15px;
}
.score_match_date, .score_match_tag {
    flex: 1;
}
.score_match_tag {
    color: darkred;
}
.score_match_date {
}
.score_match_body {
    display: flex;
    align-items: center;
}
.score_match_team {
    flex: 1;
    line-height: 2.5;
}
.score_match_vs {
    flex: 1;
    font-size: 16px;
}
.score_match_team span {
    padding-left: 5px;
}
.get-more-match {display:block;padding: 15px;text-align: center;font-size: 16px;color: #cf0d0d;margin-top: 15px}
.score_match_team_h, .score_match_team_v {
    display: flex;
    align-items: center;
    font-size: 15px;
}
.tocr_block_taggle {
    height: 44px;
    background: #F8F8F8;
    margin-top: 15px;
}
.tocr_block_taggle li.active {
    background: #fff;
    color: #DC2221;
}
.tocr_block_taggle li {
    float: left;
    width: 50%;
    font-size: 18px;
    color: #999;
    text-align: center;
    line-height: 44px;
    cursor: pointer;
    position: relative;
}
.tocr_block_taggle li s {
    display: block;
    width: 100%;
    height: 4px;
    background: #DC2221;
    position: absolute;
    left: 0;
    top: -2px;
    display: none;
}
.tocr_block_table {
    margin: 20px 20px 0 17px;
}
.tocr_block_table table th {
    font-size: 14px;
    color: #666;
}
.tocr_block_table table td {
    font-size: 16px;
    color: #333;
    text-align: center;
    padding-top: 15px;
}
.red {
    color: #DC2221 !important;
}
.match_show_box {
    padding-top: 30px;
}
.match_show_date_tabs a {
    box-sizing: border-box;
    float: left;
    border: 1px solid #D3E1E2;
    border-radius: 4px;
    width: 100px;
    height: 64px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}
.match_show_date_tabs a p {
    font-size: 14px;
}
.match_show_date_tabs a.active p {
    color: #F23632;
}
.match_show_date_tabs a.active {
    color: #F23632;
    border: 1px solid #d41d1b;
    border-bottom: solid 8px #d41d1b;
    position: relative;
}
.match_show_list {
    margin-top: 30px;
}
.match_status_tabs {
    padding: 5px 0;
}
.match_status_tabs a {
    display: block;
    float: left;
    padding: 5px 30px;
    box-sizing: border-box;
    border: solid 1px #d41d1b;
    font-size: 16px;
}
.match_status_tabs a.active {
    background: #d41d1b;
    color: #FFFFFF;
}
.data_content_table {
    margin-top: 36px;
}
.nbadata_table_title {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    margin: 20px 0 20px 26px;
    padding-top: 15px;
}
.data_table_index {
    background: #efefef;
}
.data_table_index table tbody tr th {
    font: 14px/50px "microsoft yahei";
    color: #333;
    text-align: center;
    background: #dedede;
}
.data_table_index table tbody tr td {
    font: 16px/56px "microsoft yahei";
    color: #333;
    text-align: center;
    border-top: 1px solid #eee;
}
.data_table_index .orderred {
    background: #ce2623;
}
.data_table_index .order {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto;
    background: #dc2221;
    font: 16px/30px "microsoft yahei";
    color: #fff;
}
.nbadata_table_index .logo_name img {
    width: 36px;
    height: 36px;
    float: left;
    margin: 7px 0 0 20px;
}
.data_table_index .logo_name img {
    width: 30px;
    height: 30px;
    float: left;
    margin: 14px 0 0 25px;
}
.mb30 {
    margin-bottom: 30px;
}
.video_list {
    padding: 15px 0;
}
.video_list_item {
    height: 52px;
    line-height: 52px;
    border-bottom: 1px #eee solid;
}
.video_list_item .video_list_item_left {
    position: relative;
    float: left;
    padding-left: 24px;
    font-size: 14px;
}
.video_list_item_date {
    color: #666;
    display: inline-block;
    width: 120px;
    float: left;
}
.video_list_item_title {
    width: 390px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
}
.video_list_item .video_list_item_left a:after {
    height: 6px;
    content: '';
    width: 6px;
    background: #ddd;
    position: absolute;
    top: 50%;
    left: 7px;
    z-index: 10;
    border-radius: 50%;
    margin-top: -2px;
}
.video_list_item:nth-child(even) {
    background: #f8f8f8;
}
.video_list_item_right {
    color: #999;
    width: 220px;
    float: right;
    text-align: right;
    padding-right: 30px;
    overflow: hidden;
}
.video_list_item_right a {
    color: #999;
    margin-left: 15px;
}
.live_right_box {
    padding: 15px 0;
}
.live_right_item {
    font-size: 15px;
    margin-bottom: 20px;
}
.live_right_item_hd_league {
    float: left;
}
.live_right_item_hd_league a {
    color: #999999;
}
.live_right_item_hd_date {
    float: right;
    color: #999999;
}
.live_right_item_bd {
    padding-top: 10px;
}
.live_right_item_bd_team img {
    display: inline-block;
    width: 28px;
    height: 28px;
    vertical-align: middle;
}
.live_right_item_bd_team {
    float: left;
    line-height: 35px;
}
.live_right_item_bd_action {
    float: right;
}
.live_right_item_bd_action a {
    background: #d41d1b;
    color: #fff;
    border-radius: 30px;
    text-align: center;
    padding: 5px 15px;
    line-height: 58px;
}
.liansai_box li {
    width: 94px;
    height: 96px;
    border-radius: 4px;
    border: 1px #eee solid;
    text-align: center;
    float: left;
    margin: 0 15px 30px;
}
.liansai_box li span {
    display: block;
    height: 72px;
}
.liansai_box li img {
    width: 60px;
    height: 60px;
    padding-top: 8px;
}
.liansai_box li span {
    display: block;
    height: 72px;
}
.video_page_list li {
    width: 33.3%;
    float: left;
    text-align: center;
    margin-bottom: 18px;
    margin-top: 11px;
}
.video_page_list .dsp_photo {
    position: relative;
    width: 256px;
    height: 143px;
    margin: 0 auto;
    border: solid 1px #efefef;
}
.video_page_list .dsp_photo span {
    width: 256px;
    height: 143px;
    display: block;
}
.video_page_list .dsp_photo span img {
    width: 256px;
    height: 143px;
    display: block;
    border-radius: 6px;
}
.video_page_list .dsp_photo .covermask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
}
.video_page_list .dsp_photo .playbtn {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -25px;
    margin-top: -25px;
    width: 49px;
    height: 49px;
    background: url(../img/dspleft_ico.png) no-repeat 0 0;
    opacity: 0;
    -webkit-transform: scale(.7);
    -webkit-transition-property: opacity,-webkit-transform;
    -webkit-transition-duration: .5s;
    transform: scale(.7);
    transition-property: opacity,transform;
    transition-duration: .5s;
    zoom: 1;
    background-size: 100% 100%;
}
.video_page_list .dsp_photo .covermask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    -webkit-transition: opacity .5s;
    transition: opacity .5s
}
.video_page_list .dsp_photo:hover .covermask {
    opacity: .2;
    -webkit-transition: opacity .5s;
    transition: opacity .5s
}
.video_page_list .dsp_photo:hover .playbtn {
    opacity: .9;
    -webkit-transform: scale(1);
    -webkit-transition-property: opacity,-webkit-transform;
    -webkit-transition-duration: .5s;
    transform: scale(1);
    transition-property: opacity,transform;
    transition-duration: .5s;
    cursor: pointer
}
.video_page_list .dsp_title {
    width: 257px;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 26px;
    height: 28px;
    margin: 0 auto;
    text-align: left;
}
.zhixun_list_fl {
}
.zhixun_list_fl li {
    border-bottom: 1px #eee solid;
    overflow: hidden;
    padding: 8px 25px 10px 10px;
}
.zx_slt {
    width: 165px;
    height: 122px;
    float: left;
    margin-right: 10px;
    overflow: hidden;
    border-radius: 4px;
}
.zx_slt img {
    width: 194px;
    height: 122px;
    transition: transform .3s;
    -ms-transition: -ms-transform .3s;
    -moz-transition: -moz-transform .3s;
    -webkit-transition: -webkit-transform .3s;
    -o-transition: -o-transform .3s;
}
.zx_xianqing {
    width: 615px;
    float: left;
}
.zx_xq_bt {
    font-size: 18px;
    color: #353030;
    font-weight: 700;
    line-height: 40px;
    height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.zx_xianqing {
    width: 575px;
    float: left;
}
.zx_xq_jj {
    font-size: 14px;
    color: #666;
    line-height: 24px;
    height: 54px;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 9px;
}
.zx_xq_banq .zx_xq_fl {
    width: 100px;
    display: block;
    float: left;
}
.zx_xq_banq .zx_xq_fl a {
    color: #0073c4;
}
.zx_xq_banq .zx_xq_dw, .zx_xq_banq .zx_xq_dw .iconfont, .zx_xq_banq .zx_xq_dw a {
    color: #999;
}
.zx_xq_banq .zx_xq_time {
    float: right;
    color: #999;
}
.breadcrumb {
    font-size: 14px;
}
.breadcrumb {
    color: #8D8D8D;
}
.content_box_hd h3 {
    font-size: 24px;
    font-weight: 700;
}
.content_box_hd_info li {
    float: left;
    color: #999;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    padding-top: 1px;
}
.content_box_hd_info li cite {
    padding: 0 10px;
    font-style: normal;
}
.content_box_bd {
    font-size: 16px;
    line-height: 30px;
    clear: both;
    padding: 15px;
}
.content_box_bd p {
    font-size: 16px;
    margin-bottom: 30px;
    text-indent: 20px;
    line-height: 30px;
}
.content_box_bd img {
    max-width: 94%;
    margin: 15px auto;
    display: block;
}
.tags {
    margin-bottom: 30px;
}
.tags h2 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    border-top: solid 1px #dedede;
    padding-top: 15px;
}
.tags li {
    float: left;
    padding: 5px 15px;
    background: #F2F2F2;
    border-radius: 10px;
    margin: 5px 10px;
    font-size: 14px;
}
.fixed_score_box {
    width: 100%;
    display: block;
    background: linear-gradient(90deg, #292E2E 0%, #0f1852 50%, #292E2E 100%);
    padding: 30px;
    box-sizing: border-box;
}
.fixed_score_box .fixed_score_top {
    display: flex;
    justify-content: space-between;
    flex: 1;
    color: white;
    padding-top: 30px;
}
.score_name_left {
    display: flex;
    align-items: center;
    flex: 1;
}
.score_name {
    text-align: center;
}
.score_name_left.score_name_right {
    flex-direction: row-reverse;
}
.score_name_left {
    display: flex;
    align-items: center;
    flex: 1;
}
.score_name_right .image_container, .score_name_left .image_container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.score_name_left .image_container {
    margin-right: 20px;
}
.score_name_left h1 {
    height: 26px;
    font-size: 20px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    line-height: 26px;
    color: #FFFFFF;
}
.score_name_right .image_container img, .score_name_left .image_container img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}
.score_name_left.score_name_right .image_container {
    margin-left: 20px;
}
.league_name {
    height: 28px;
    line-height: 28px;
    border: 1px solid #FFFFFF;
    border-radius: 18px;
    padding: 4px 27px;
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
}
.match_score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
    height: 39px;
    padding: 0 12px;
}
.match_score > div {
    font-size: 32px;
    font-family: DIN;
    font-weight: bold;
    line-height: 39px;
    color: #FFFFFF;
}
.match_status {
    height: 36px;
    background: #FFFFFF;
    border-radius: 18px;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    line-height: 36px;
    width: 140px;
    margin: auto;
    color: #F23632;
}
.match_bg_container {
    position: absolute;
    display: flex;
    justify-content: center;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
}
.signal_box {
    margin-top: 30px;
}
.signal_box .tag-title img{
    vertical-align: middle;
}
.signal_list {
    margin-top: 15px;
}
.signal_list ul li a {
    float: left;
    padding: 5px;
    background: #d41d1b;
    color: #FFFFFF;
    box-sizing: border-box;
    margin-right: 15px;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    margin-bottom: 15px;
}
.signal_list ul li a .desc {
    color: #dedede;
    font-size: 12px;
}
.bisai_desc_box, .luxiang_box {
    margin-top: 30px;
}
.bisai_desc_info {
    padding: 15px;
}
.bisai_desc_info p {
    font-size: 14px;
    padding-top: 15px;
}
.luxiang_list {
    padding-top: 15px;
}
.luxiang_list li {
    font-size: 14px;
    padding-bottom: 10px;
}
.luxiang_list li i {
    float: left;
    width: 4px;
    height: 4px;
    margin: 7px 14px 0px 0px;
    background: #999;
}
.play_video {
    overflow: hidden;
    display: flex;
    justify-content: center;
    background: #1d1d1d;
}
.room_video_box {
    float: left;
    width: 900px;
    padding-bottom: 15px;
}
.play_video .room_video {
    position: relative;
    height: 540px;
}
.room_video {
    height: auto!important;
}
.room_video>a {
    display: block;
}
.video_article_play_box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}
.video_article_play {
    display: block;
    background: url(../img/video_article_play.png);
    margin: 210px auto 0;
    width: 120px;
    height: 120px;
}
.room_video_title {
    padding-left: 15px;
}
.room_video_title h2 {
    font-size: 26px;
    color: #FFFFFF;
    margin-top: 30px;
}
.room_video_title time {
    font-size: 14px;
    color: #CCCCCC;
    display: block;
    margin-top: 10px;
}
.play_video .correlation_video {
    width: 300px;
    height: auto;
    float: left;
    background: #333333;
}
.correlation_video .correlation_video_tab {
    height: 55px;
    border-bottom: 1px solid #454545;
}
.correlation_video .correlation_video_tab li.active {
    border-bottom: 2px solid #D0021B;
    color: #DC2221;
}
.correlation_video .correlation_video_tab li {
    /* float: left; */
    width: 100%;
    height: 54px;
    text-align: center;
    line-height: 54px;
    font-size: 20px;
    color: #CCCCCC;
    cursor: pointer;
}
.scroll_video {
    height: 619px;
    overflow-x: hidden;
    overflow-y: scroll;
    margin-top: 5px;
}
.scroll_video_block {
    height: 99px;
}
.scroll_video_block img {
    width: 100px;
    height: 75px;
    margin: 12px 0 0 10px;
    float: left;
}
.scroll_video_block p {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 28px;
    width: 160px;
    float: left;
    margin: 6px 0 0 10px;
    height: 56px;
    overflow: hidden;
}
.scroll_video_block time {
    opacity: 0.66;
    font-size: 12px;
    color: #CCCCCC;
    float: left;
    margin: 12px 0 0 10px;
}
.tocr_block_title {
    height: 44px;
    border-bottom: 2px solid #017BD1;
}
.tocr_block_title h1 {
    float: left;
    padding: 0 20px;
    font-size: 18px;
    color: #000;
    line-height: 44px;
    border-bottom: 2px solid #DC2221;
}
.video_recommend_block {
    width: 810px;
    height: 147px;
    box-sizing: border-box;
    border-bottom: 1px solid #E2E2E2;
    margin-top: 20px;
}
.video_recommend_block > a {
    float: left;
    display: inline-block;
    position: relative;
}
.video_recommend_block img {
    width: 168px;
    height: 126px;
}
.video_recommend_block .video_tag {
    display: block;
    width: 36px;
    height: 36px;
    position: absolute;
    background: url(../img/video_play.png) no-repeat;
    left: 66px;
    top: 45px;
}
.video_recommend_block h3 {
    font-size: 20px;
    width: 622px;
    height: 32px;
    color: #333333;
    line-height: 32px;
    float: left;
    margin: -6px 0 0 20px;
    overflow: hidden;
}
.video_recommend_block p {
    width: 622px;
    float: left;
    margin: 10px 0 0 20px;
}
.video_recommend_block p a {
    font-size: 14px;
    color: #666666;
    line-height: 30px;
}
.video_recommend_block time {
    float: right;
    font-size: 14px;
    color: #666666;
    margin-top: 12px;
}
.play_video_box.mobile {
    display: none !important;
}
.liansai_lxjj {
    display: flex;
}
.liansai_lxjj .mt30 {
    flex: 1;
}
.news_list {
    margin-top: 15px;
}
.news_list li {
    float: left;
    width: 48%;
    font-size: 14px;
    margin-right: 15px;
    height: 20px;
    margin-bottom: 15px;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    padding-right: 10px;
    box-sizing: border-box;
}
.qd_jieshao {
    border-radius: 8px;
    background: #fff;
    padding-bottom: 10px;
}
.qd_name {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 0 20px 0;
    overflow: hidden;
}
.qd_name img {
    width: 120px;
    height: 120px;
}
.qd_name span {
    display: block;
    width: 60%;
    margin: 0 auto;
}
.qd_xq h5 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}
.qdjsbt {
    line-height: 30px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
    border-bottom: 2px #e60640 solid;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.qdjsbt span {
    float: left;
    margin-left: 15px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 280px;
}
.dwjiansao {
    padding: 10px 18px;
}
.dwjiansao {
    line-height: 20px;
    color: #666;
    padding: 15px;
}
.qdfl_list {
    background: #fff;
    padding: 6px 0 0 0;
    border-top: 0;
    border-radius: 0 0 4px 4px;
}
.qdfl_list li {
    width: 50%;
    float: left;
    padding: 10px 0;
}
.qdfl_list li .qtdw_img {
    width: 23px;
    height: 23px;
    display: inline-block;
    float: left;
    margin-right: 10px;
}
.qdfl_list li .qtdw_img img {
    width: 23px;
    height: 23px;
}
.qdfl_list li .qtdw_name {
    height: 23px;
    line-height: 23px;
    display: inline-block;
    float: left;
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
}
.zujijin_index {
    width: 100%;
    display: flex;
    background: #fff;
    box-sizing: border-box;
    margin-bottom: 30px;
}
.zujijin_index_div {
    width: 50%;
}
.zujijin_index_div {
    width: 50%;
}
.zujijin_index_dian {
    display: flex;
    margin-bottom: 10px;
}
.zujijin_index_div>ul {
    width: 100%;
}
.zujijin_index_dian>.active {
    color: #fff;
    background: #ff4d4d;
}
.zujijin_index_dian>p {
    font-size: 14px;
    color: #333;
    width: 73px;
    height: 30px;
    background: #eee;
    line-height: 30px;
    text-align: center;
    margin-right: 15px;
    cursor: pointer;
    border-radius: 5px;
}
.zujijin_index_div>ul a img {
    margin-right: 5px;
    width: 22px;
    height: 22px;
}
.zujijin_index_div>ul a {
    display: flex;
    align-items: center;
    height: 35px;
}
.zujijin_index_text {
    display: flex;
    font-size: 14px;
    color: #333;
    width: 330px;
    cursor: pointer;
}
.zujijin_index_text>p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}
.zujijin_index_div>ul {
    width: 100%;
}
.zujijin_index_div>ul:nth-of-type(2) {
    display: none;
}
.topic_box_list {
    border-bottom: solid 1px #efefef;
    padding-bottom: 15px;
}
.rank_box {
    margin-top: 30px;
}
.tag-title.mt30 {
    margin-top: 0 !important;
}
.nbadata_table_title {
    margin-top: 0;
}
.wait_upload {
    display: inline-block;
    padding: 10px 15px;
    background: #f1f1f1;
    font-size: 16px;
    border-radius: 5px;
}
.zujijin_index,.match,.liansai,.remenqiudui,.tags,.shipinzixun,
.match_body,.channel_news_v,.zuqiuzixun,.lanqiuzixun,.luxiang,.jijin,
.topic_box,.cnews_list,.rank_box,.xinwen,.saichengbiao,.data_content_table,
.video_box,.content_box,.bisai_desc_box,.luxiang_box,.matchs,.liansai_lxjj,.tags_arc_box,.relate_wrap {
    background: #FFFFFF !important;
    padding: 15px !important;
    box-sizing: border-box !important;
}
.match_intro { margin-bottom:30px;background:#fff;padding:15px}
.match_intro_box { padding-top:15px;font-size:14px;color:#888; }

@media (max-width: 1280px) {
    
    body {
        min-width: 325px;
        max-width: 640px;
        margin: 0 auto;
    }
    
    #comm_layout_header {
        margin-bottom: 0;
    }

    #dh_style_28_1554260779181 > .view_contents {
        overflow-x: auto;
    }

    #div_blank_1554258825725 {
        height: 50px;
        background: #d41d1b;
    }

    #dh_style_28_1554260779181 {
        width: 100%;
        left: 0;
        right: 0;
        top: 50px;
        height: 45px;
        background: #650705;
    }

    .menuStyle_28 .menuLayout {
        margin: 0;
    }

    .menuStyle_28 .menuUl, .menuStyle_28 .menuUl_box {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menuUl > li > a {
        font-size: 16px !important;
    }

    #dh_style_28_1554260779181 #hot > a {
        border: none;
        color: #FFFFFF;
        background: #a60303;
    }

    .index_top {
        width: 100% !important;
        height: 100% !important;
    }

    .index_top .index_top_left {
        float: none !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .index_top .index_top_left a dl {
        width: 100% !important;
    }

    .index_top .index_top_left a dl dt img {
        width: 100% !important;
        height: 240px !important;
    }

    .main-wrap .home-top .top-left a dl, .top_bottom_box {
        width: 100% !important;
        height: 120px !important;
        margin-top: 15px !important;
        overflow: unset !important;
        overflow-y: hidden !important;
        overflow-x: auto !important;
        padding: 15px;
        box-sizing: border-box;
    }

    .top_bottom_box ul {
        width: 600px;
    }

    .top_bottom_box ul li.nex_vt_gamevb1 {
        margin-right: 15px;
    }

    .index_top .index_top_center {
        float: none !important;
        box-sizing: border-box;
        padding: 5px 15px;
        width: 100% !important;
    }

    .index_top .index_top_center .news-list.mt30 {
        margin: 0;
    }

    .index_top .index_top_right {
        float: none !important;
        width: 100% !important;
        padding-left: 15px;
        box-sizing: border-box;
    }

    .index_top_right .top-right-top a dd {
        float: none;
    }

    .view_wrap {
        width: 100%;
    }

    .view_left {
        width: 100% !important;
    }

    .match_date {
        padding: 2px !important;
        font-size: 14px !important;
        padding-left: 10px !important;
        background: #f5e3e3;
    }

    .match-item {
        position: relative;
    }

    .match-item .info_left {
        display: block !important;
        width: 75px !important;
        font-size: 14px;
    }

    .match-item .info_left span {
        display: block !important;
    }

    .match-item .info_left .time, .match-item .info_left .league {
        width: 70px !important;
        padding: 0;
    }

    .match-item .info_center .home .left {
        width: 120px !important;
    }

    .match-item .info_center img {
        display: none;
    }

    .match-item .info_center {
        display: block !important;
        font-size: 14px;
    }

    .match-item .info_center .home {
        padding-bottom: 5px;
    }

    .match-item .info_center .home, .match-item .info_center .away {
        display: block !important;
    }

    .match-item .info_center .home .left .text {
        padding-left: 0 !important;
    }

    .match-item .info_center .away .right {
        display: block !important;
    }

    .match-item .info_center .score {
        display: block !important;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        font-size: 14px !important;
    }

    .match-item .info_center .score span {
        display: block;
    }

    .match-item .info_center .score .fenge {
        display: none;
    }

    .match-item .info_right {
        position: absolute;
        top: 50%;
        right: 3%;
        transform: translate(-3%, -50%);
        border-radius: 0 !important;
        background: #dedede;
        border: 0 !important;
    }

    .match-item .info_right.more {
        position: relative;
        padding: 2px 5px;
        margin-top: 15px;
    }

    .match-item .info_right a {
        color: #FFFFFF !important;
        font-size: 14px !important;
    }

    .match-item .info_right.start {
        background: #d41d1b;
    }

    .match-item .info_right.end {
        background: #999999;
    }

    .view_right {
        width: 100% !important;
    }

    .tag-title {
        margin-left: 15px;
    }

    .tags-list {
        padding: 15px;
        box-sizing: border-box;
    }

    .mt30 {
        margin-top: 15px !important;
    }

    .hot_liansai_list li {
        width: 29% !important;
    }

    .video-list {
        padding: 0px 15px;
        box-sizing: border-box;
        padding-left: 30px;
    }

    .video-list dl {
        width: 48% !important;
    }

    body {
        padding: 0 !important;
    }

    .body {
        margin-top: 5px !important;
    }

    .footer-wrap {
        padding: 5px;
        margin-top: 100px !important;
    }

    .footer-wrap .footer {
        width: 100% !important;
    }

    .footer-wrap .friend-link {
        width: 100% !important;
        padding: 15px;
    }

    .footer-wrap .footer .list1 {
        width: 100% !important;
    }

    .footer-wrap .footer .list4 {
        box-sizing: border-box;
        width: 100% !important;
        padding: 0 15px !important;
        margin-top: 5px !important;
    }

    #dh_style_28_1554260779181 .mainMenuSet:hover {
        border: none !important;
    }
    .channel_content_left {
        width: 100% !important;
    }
    .sub_nav {
        margin-top: 15px;
        overflow-x: auto;
        padding: 5px 15px;
        padding-bottom: 15px;
        margin-bottom: 10px;
    }
    .sub_nav_menus {
        width: 1200px;
    }
    .channel_wrap {
        margin-top: 0;
    }
    .channel_news_v {
        overflow-x: auto;
        background: transparent;
    }
    .channel_news_v ul {
        display: flex;
    }
    .channel_content_left .body {
        display: block !important;
    }
    .pic_list {
        margin: 0;
        padding: 15px !important;
    }
    .pic_list li .ib {
        width: auto !important;
        height: 220px !important;
    }
    .video-list {
        padding-left: 15px;
    }
    .topic_box {
        margin-top: 0;
        margin-bottom: 15px;
    }
    .topic_box_list li {
        width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .topic_box_tag_title {
        position: relative;
    }
    .topic_box_tag_title ul {
        width: 100%;
        margin-left: 0;
        margin-bottom: 15px;
    }
    .topic_box_tag_title .gd {
        position: absolute;
        top: 50%;
        right: 5%;
        transform: translate(-50%, -5%);
    }
    .topic_box_score_box {
        padding: 15px;
    }
    .channel_content_right {
        width: 100%;
    }
    .cnews_list {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }
    .match_status_tabs {
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin-top: 15px;
    }
    .match_show_box {
        box-sizing: border-box;
        padding-left: 20px;
        overflow-x: auto;
    }
    .match_show_date_tabs {
        width: 1200px;
        padding-bottom: 15px;
    }
    .data_content_table {
        zoom: 0.8;
    }
    .data_table_index .logo_name img {
        display: none;
    }
    .logo_name {
        line-height: 1;
    }
    .video_list_item {
        display: flex;
        align-items: center;
        padding: 10px;
        box-sizing: border-box;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        color: #000;
        text-decoration: none;
        line-height: 30px;
    }
    .video_list_item .video_list_item_left, .video_list_item_right {
        float: none;
        padding: 0;
    }
    .video_list_item_left {
        width: 82%;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        color: #000;
        text-decoration: none;
        line-height: 30px;
        margin-right: 5px;
    }
    .video_list_item_left a {
        display: flex;
        align-items: center;
    }
    .video_list_item_date {
        width: unset;
        font-size: 14px;
        padding-right: 15px;
        color: #999999;
    }
    .video_list_item_title {
        width: unset;
        float: none;
        font-size: 14px;
    }
    .video_list_item .video_list_item_left a:after {
        display: none;
    }
    .video_list_item_right a {
        display: block;
        margin: 0;
    }
    .video_list_item_right {
        width: 18%;
        line-height: 1.6;
    }
    .ep-pages {
        padding: 5px;
        margin-top: 15px;
    }
    .pagination li {
        margin-bottom: 5px;
        text-align: center;
    }
    .live_right_item {
        padding: 0 15px;
    }
    .liansai_box ul {
        padding-left: 10px;
    }
    .liansai_box li {
        width: 30%;
        margin: 5px 10px 10px 0;
    }
    .video_page_list li {
        width: 100%;
    }
    .video_page_list .dsp_photo, .video_page_list .dsp_photo span {
        width: 100%;
        height: 200px;
    }
    .video_page_list .dsp_photo span img {
        width: 100%;
        height: 200px;
    }
    .video_page_list {
        padding: 0px 20px;
    }
    .video_page_list .dsp_photo .playbtn {
        opacity: 1;
        width: 69px;
        height: 69px;
        margin: 0;
        transform: translate(-50%,-50%);
    }
    .video_page_list .dsp_title {
        margin: 0;
        width: 100%;
        font-size: 16px;
        padding-top: 5px;
    }
    .zhixun_list_fl li {
        padding: 10px;
        box-sizing: border-box;
        display: flex;
    }
    .arc_list li {
        width: 100% !important;
        box-sizing: border-box;
    }
    .zx_slt {
        width: 90px !important;
        height: 65px !important;
        overflow: unset;
        float: none;
    }
    .zx_xianqing {
        width: unset !important;
        float: none !important;
    }
    .zx_slt img {
        width: 90px !important;
        height: 65px !important;
    }
    .zx_xq_bt {
        font-size: 14px !important;
        line-height: 1.2 !important;
        height: 18px !important;
        white-space: unset !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 1 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .zx_xq_jj {
        font-size: 12px !important;
        line-height: 1.2 !important;
        height: unset !important;
        margin: 0 !important;
    }
    .zx_xq_banq .zx_xq_time {
        float: none;
    }
    .match_show_date_tabs a {
        height: 50px;
    }
    .breadcrumb {
        padding: 15px;
    }
    .content_box_hd {
        padding: 15px;
    }
    .content_box_bd img {
        width: 100%;
        max-width: 100%;
    }
    .fixed_score_box {
        zoom: 0.82;
    }
    .score_name_left h1 {
        text-align: center;
    }
    .score_name_left {
        display: block;
    }
    .league_name {
        line-height: 1.5;
        padding: 5px 22px;
        height: unset;
    }
    .league_name span {
        display: block;
    }
    .score_name_right .image_container, .score_name_left .image_container {
        margin-bottom: 15px;
    }
    .score_name_left .image_container {
        margin-left: 20px;
    }
    .fixed_score_box {
        padding: 15px;
    }
    .bisai_desc_box {
        padding: 15px;
        margin-top: 10px;
    }
    .luxiang_list {
        padding: 15px;
    }
    .luxiang_list li {
        font-size: 14px;
        padding-bottom: 15px;
    }
    .luxiang_list li a {
        display: block;
        height: 20px !important;
        word-break: break-all;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }
    .signal_list {
        padding: 15px;
        margin-top: 0;
    }
    .signal_list li a {
        width: 29%;
    }
    .match-item .info_center {
        margin-right: 20px;
    }
    .play_video.pc {
        display: none;
    }
    .play_video_box {
        height: auto;
        background: #fff;
    }
    .play_video_box .play_link {
        width: 100%;
        height: 240px;
        background: #000;
        position: relative;
    }
    .play_link img {
        width: 100%;
        height: 100%;
    }
    .video_article_play_m {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 60px !important;
        height: 60px !important;
        transform: translate(-50%,-50%);
    }
    .play_video_box > span {
        display: block;
        font-size: 16px;
        line-height: 1.2rem;
        color: #333;
        padding: 15px;
    }
    .play_video_box > time {
        display: block;
        font-size: 14px;
        color: #666;
        padding: 5px 15px;
    }
    .video_recommend_box {
        padding: 15px;
    }
    .video_recommend_block {
        width: 100%;
        height: 100px;
    }
    .video_recommend_block p {
        width: 70%;
        margin: 0 0 0 20px;
    }
    .video_recommend_block h3 {
        width: 70%;
    }
    .video_recommend_block p a {
        line-height: 1.2;
    }
    .video_recommend_block img {
        width: 80px;
        height: 60px;
    }
    .video_recommend_block .video_tag {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 26px;
        height: 26px;
        background-size: cover;
    }
    .play_video_box.mobile {
        display: block !important;
    }
    .collection {
        padding: 15px;
    }
    .block_min {
        width: 100%;
        height: 80px;
        padding: 5px 0;
        border-bottom: 1px solid #f1f1f1;
        position: relative;
    }
    .block_min img {
        float: left;
        width: 4.5rem;
        height: 3.75rem;
    }
    .block_min p {
        float: left;
        width: calc(92vw - 100px - 1rem);
        font-size: 16px;
        color: #000;
        height: 50px;
        line-height: 1.5;
        overflow: hidden;
        padding-left: 10px;
    }
    .block_min time {
        font-size: 0.6rem;
        color: #999;
        line-height: 0.9rem;
        float: left;
        margin-top: 7px;
        margin-left: 10px;
    }
    .block_min .video_ico {
        width: 1.5rem;
        height: 1.5rem;
        background: url(../img/video_play.png) no-repeat;
        background-size: 100%;
        position: absolute;
        left: 10%;
        top: 32%;
    }
    .liansai_lxjj {
        display: block;
    }
    .news_list {
        padding: 15px;
    }
    .news_list li {
        width: 100%;
    }
    .qdfl_list {
        padding: 15px;
    }
    .qd_jieshao {
        margin-top: 30px;
    }
    .qd_name {
        padding: 0;
    }
    .qd_name img {
        width: 60px;
        height: 60px;
    }
    .zujijin_index {
        display: block;
        padding: 15px;
    }
    .zujijin_index_div {
        width: 100%;
        margin-bottom: 15px;
    }
    .mobile_table {
        display: flex;
        flex-flow: column-reverse;
    }
    .match {
        margin-top: 15px;
    }
    body {
        background: #FFFFFF;
    }
    .zujijin_index,.match,.liansai,.remenqiudui,.tags,.shipinzixun,
    .match_body,.channel_news_v,.zuqiuzixun,.lanqiuzixun,.luxiang,.jijin,
    .topic_box,.cnews_list,.rank_box,.xinwen,.saichengbiao,.data_content_table,
    .video_box,.content_box,.bisai_desc_box,.luxiang_box,.matchs,.liansai_lxjj,.tags_arc_box,.relate_wrap {
        background: transparent !important;
        padding: unset !important;
    }
    .tags_arc_box {
        width: 100% !important;
        float: none !important;
    }
    .relate_box {
        width: 100% !important;
        float: none !important;
    }
    .luxiang {
        margin-top: 30px;
    }
    .zujijin_index {
        padding: 15px !important;
        box-sizing: border-box !important;
    }
    #text_style_01_1554259094732 {
        display: none !important;
    }
    .video-list li {
        line-height: 40px !important;
    }
    .zuqiuzixun .video-list li a, .lanqiuzixun .video-list li a {
        position: relative;
        padding-left: 25px;
    }
    .zuqiuzixun .video-list li a::after, .lanqiuzixun .video-list li a::after {
        content: ' ';
        position: absolute;
        width: 22px;
        height: 22px;
        background: url(../img/xinwen.pngg") no-repeat;
        background-size: cover;
        left: 0;
        top: 50%;
        transform: translate(0, -50%);
    }
}
