/**
    *编辑器         \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;
}

body,
li,
ul,
ol,
dl,
dt,
dd,
form,
input,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
select {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    font-size: 12px;
    outline: 0 none;
    font: 12px/1.5 tahoma, arial, ;
    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 {
    clear: both;
}


/*苹果去除样式*/

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;
}

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

@media screen and (min-width:641px) and (max-width:1200px) {
    #text_style_01_1555293311304 {
        width: 242px;
        top: 16px;
        left: 1.166489925768823%;
    }
}

@media screen and (max-width:640px) {
    #text_style_01_1555293311304 {
        width: 76%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 13px;
        left: 12%;
        display: block;
    }
}

#text_style_01_1555293311304>.view_contents {
    overflow: visible;
}

#text_style_01_1555293311304>.view_contents {
    font-size: 30px;
    text-align: left;
    color: #0468cf;
}

@media screen and (max-width:640px) {
    #text_style_01_1555293311304>.view_contents {
        text-align: center;
        font-size: 24px;
    }
}

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

@media screen and (min-width:641px) and (max-width:1200px) {
    #text_style_01_1555293428149 {
        width: 243px;
        top: 67px;
        left: 1.166489925768823%;
    }
}

@media screen and (max-width:640px) {
    #text_style_01_1555293428149 {
        width: 70.66666666666667%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 50px;
        left: 14.666666666666666%;
        display: block;
    }
}

#text_style_01_1555293428149>.view_contents {
    color: #0468cf;
    font-size: 15px;
}

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

#image_style_01_1555293592109 {
    width: 3.6666666666666665%;
    height: 47px;
    position: absolute;
    top: 46px;
    left: 79.875%;
}

@media screen and (min-width:641px) and (max-width:1200px) {
    #image_style_01_1555293592109 {
        top: 48px;
        left: 74.78459703075292%;
        height: 36px;
    }
}

@media screen and (max-width:640px) {
    #image_style_01_1555293592109 {
        width: 52px;
        height: 47px;
        top: 90px;
        left: 43.06666666666666%;
        display: none;
    }
}

#image_style_01_1555293592109>.view_contents {
    overflow: visible;
}

#text_style_01_1555293669229 {
    width: 11%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 40px;
    left: 84.75%;
}

@media screen and (min-width:641px) and (max-width:1200px) {
    #text_style_01_1555293669229 {
        width: 128px;
        left: 79.97746553552491%;
    }
}

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

#text_style_01_1555293669229>.view_contents {
    font-size: 14px;
    color: #0468cf;
}

#text_style_01_1555293716636 {
    width: 15.166666666666668%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 52px;
    left: 84.75%;
}

@media screen and (min-width:641px) and (max-width:1200px) {
    #text_style_01_1555293716636 {
        width: 188px;
        left: 79.97746553552491%;
    }
}

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

#text_style_01_1555293716636>.view_contents {
    font-size: 24px;
    color: #0468cf;
}

#dh_style_29_1555293985516 {
    width: 100%;
    z-index: 999;
    position: absolute;
    top: 105px;
    left: 0%;
}

@media screen and (min-width:641px) and (max-width:1200px) {
    #dh_style_29_1555293985516 {
        z-index: 999;
    }
}

@media screen and (max-width:640px) {
    #dh_style_29_1555293985516 {
        width: 14.399999999999999%;
        z-index: 999;
        top: 20px;
        left: 85.6%;
        display: block;
    }
}

#dh_style_29_1555293985516>.view_contents {
    overflow: visible;
}

#dh_style_29_1555293985516 .mainMenuSet {
    font-size: 16px;
    background: #0468cf;
}

#dh_style_29_1555293985516 .mainMenuSet:hover {
    color: #ffffff;
    font-size: 16px;
    background: #4196ef;
}

#dh_style_29_1555293985516 #hot>a {
    color: #ffffff;
    font-size: 16px;
    background: #4196ef;
}

@media screen and (max-width:640px) {
    #dh_style_29_1555293985516 .icoMenuSet {
        background: #ffffff;
        color: #000000;
    }
}

@media screen and (max-width:640px) {
    #dh_style_29_1555293985516 .mainMenuSet {
        background: #e5e5e5;
        color: e5e5e5;
        text-align: center;
    }
}

@media screen and (max-width:640px) {
    #dh_style_29_1555293985516:hover {
        background: transparent;
    }
}

@media screen and (max-width:640px) {
    #dh_style_29_1555293985516 .mainMenuSet:hover {
        background: #0468cf;
        text-align: center;
    }
}

@media screen and (max-width:640px) {
    #dh_style_29_1555293985516 #hot>a {
        background: #0468cf;
        text-align: center;
    }
}

@media screen and (max-width:640px) {
    #dh_style_29_1555293985516 .subMenuSet:hover {
        background: #0468cf;
    }
}

@media screen and (max-width:640px) {
    #dh_style_29_1555293985516 .subCurSet {
        background: #0468cf;
    }
}

#div_blank_1555294134341 {
    width: 1920px;
    height: 44px;
    position: absolute;
    top: 105px;
    left: calc(50% - 960px);
}

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

@media screen and (max-width:640px) {
    #div_blank_1555294134341 {
        width: 96%;
        height: 200px;
        top: 283px;
        left: 2%;
        display: none;
    }
}

#div_blank_1555294134341>.view_contents {
    overflow: visible;
}

#div_blank_1555294134341 {
    box-sizing: border-box;
    background: #0468cf;
}

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

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

#comm_layout_header {
    height: 149px;
    z-index: 99999;
}

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

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

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

#comm_layout_header {
    background: #ffffff;
}

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

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

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

#layout_1555398934284 {
    height: 600px;
}

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

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

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

#text_style_01_1555386129969 {
    width: 11.666666666666666%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 40px;
    left: 3.833333333333333%;
}

@media screen and (min-width:641px) and (max-width:1200px) {
    #text_style_01_1555386129969 {
        width: 150px;
        top: 49px;
        left: 5.423183987274656%;
    }
}

@media screen and (max-width:640px) {
    #text_style_01_1555386129969 {
        width: 24%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 7px;
        left: 2%;
        display: block;
    }
}

#text_style_01_1555386129969>.view_contents {
    font-size: 28px;
    color: #404040;
}

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

@media screen and (max-width:640px) {
    #text_style_01_1555386129969>.view_contents {
        text-align: left;
        font-size: 16px;
    }
}

#text_style_01_1555386129974 {
    width: 12.25%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 40px;
    left: 14.416666666666666%;
}

@media screen and (min-width:641px) and (max-width:1200px) {
    #text_style_01_1555386129974 {
        width: 172px;
        top: 51px;
        left: 17.06488600212089%;
    }
}

@media screen and (max-width:640px) {
    #text_style_01_1555386129974 {
        width: 28.53333333333333%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 11px;
        left: 22.26666666666667%;
        display: block;
    }
}

#text_style_01_1555386129974>.view_contents {
    font-size: 28px;
    color: #d1d1d1;
}

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

@media screen and (max-width:640px) {
    #text_style_01_1555386129974>.view_contents {
        text-align: left;
        font-size: 12px;
    }
}

#image_style_01_1555386129983 {
    width: 2.666666666666667%;
    height: 37px;
    position: absolute;
    top: 52px;
    left: 0%;
}

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

@media screen and (max-width:640px) {
    #image_style_01_1555386129983 {
        width: 31px;
        height: 31px;
        top: 7px;
        left: 18.266666666666666%;
        display: none;
    }
}

#image_style_01_1555386129983>.view_contents {
    overflow: visible;
}

#layout_1555386129965 {
    height: 128px;
}

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

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

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

#layout_1555386129965 {
    background: #f2f2f2;
}

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

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

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

#text_style_01_1555386324104>.view_contents {
    text-align: justify;
}

#text_style_01_1555386509564 {
    width: 12.25%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 186px;
    left: 14.166666666666666%;
}

@media screen and (min-width:641px) and (max-width:1200px) {
    #text_style_01_1555386509564 {
        width: 115px;
        top: 192px;
        left: 18.125331389183458%;
    }
}

@media screen and (max-width:640px) {
    #text_style_01_1555386509564 {
        width: 16.8%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 160px;
        left: 21.2%;
        display: block;
    }
}

#text_style_01_1555386509564>.view_contents {
    font-size: 28px;
    color: #d1d1d1;
}

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

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

#text_style_01_1555386751982 {
    width: 70.66666666666667%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 256px;
    left: 0.04166666666666667%;
}

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

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

#image_style_01_1555386894674 {
    width: 24.75%;
    height: 366px;
    position: absolute;
    top: 7px;
    left: 74.20833333333333%;
}

@media screen and (min-width:641px) and (max-width:1200px) {
    #image_style_01_1555386894674 {
        width: 227px;
        left: 74.84424708377519%;
    }
}

@media screen and (max-width:640px) {
    #image_style_01_1555386894674 {
        width: 35.733333333333334%;
        height: 100px;
        top: 1px;
        left: 0%;
        display: none;
    }
}

#image_style_01_1555386894674>.view_contents {
    overflow: visible;
}

#image_style_01_1555386531150 {
    width: 2.666666666666667%;
    height: 37px;
    position: absolute;
    top: 196.5px;
    left: 0%;
}

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

@media screen and (max-width:640px) {
    #image_style_01_1555386531150 {
        width: 38px;
        height: 37px;
        top: 147px;
        left: 18.53333333333333%;
        display: none;
    }
}

#image_style_01_1555386531150>.view_contents {
    overflow: visible;
}

#text_style_01_1555386452216 {
    width: 11.666666666666666%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 186px;
    left: 4.083333333333333%;
}

@media screen and (min-width:641px) and (max-width:1200px) {
    #text_style_01_1555386452216 {
        width: 150px;
        top: 192px;
        left: 5.317139448568399%;
    }
}

@media screen and (max-width:640px) {
    #text_style_01_1555386452216 {
        width: 24.266666666666666%;
        font-size: 12px;
        color: #333;
        line-height: 1.6;
        top: 155px;
        left: 2%;
        display: block;
    }
}

#text_style_01_1555386452216>.view_contents {
    font-size: 28px;
    color: #404040;
}

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

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

#layout_1555386133222 {
    height: 373px;
}

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

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

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

#layout_1555386133222 {
    background: #f2f2f2;
}

#layout_1555472347444 {
    height: 47px;
}

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

@media screen and (max-width:640px) {
    #layout_1555472347444 {
        height: 21px;
        display: none;
    }
}

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

#image_style_01_1555478535844 {
    width: 40px;
    height: 40px;
    position: fixed;
    top: 704px;
    left: calc(100% - 40px);
    z-index: 999999;
}

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

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

#image_style_01_1555478535844>.view_contents {
    overflow: visible;
}

#image_style_01_1555478535844 .picSet {
    background: #0468cf;
}


/*----------------------电脑板式样式----------------------*/

#image_style_01_1555478535844 {
    bottom: 0px!important;
    top: auto;
}


/*----------------------平板板式样式----------------------*/

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


/*----------------------手机板式样式----------------------*/

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

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

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

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

#text_style_01_1555317716207>.view_contents {
    overflow: visible;
}

#text_style_01_1555317716207>.view_contents {
    font-size: 20px;
    color: #ffffff;
}

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

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

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

#text_style_01_1555317799389>.view_contents {
    color: #ffffff;
    font-size: 30px;
}

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

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

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

#text_style_01_1555318293487>.view_contents {
    color: #ffffff;
}

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

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

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

#text_style_01_1555318338186>.view_contents {
    color: #ffffff;
}

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

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

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

#text_style_01_1555318354407>.view_contents {
    color: #ffffff;
}

#image_style_01_1555318407150 {
    width: 9.666666666666666%;
    height: 121px;
    position: absolute;
    top: 290px;
    left: 0%;
}

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

@media screen and (max-width:640px) {
    #image_style_01_1555318407150 {
        width: 138px;
        height: 121px;
        top: 647px;
        left: 31.6%;
        display: none;
    }
}

#image_style_01_1555318407150>.view_contents {
    overflow: visible;
}

#text_style_01_1555318528841 {
    width: 6.5%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 316px;
    left: 12.125%;
}

@media screen and (min-width:641px) and (max-width:1200px) {
    #text_style_01_1555318528841 {
        top: 307px;
        left: 15.199164899257688%;
    }
}

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

#text_style_01_1555318528841>.view_contents {
    color: #ffffff;
    text-align: center;
}

#text_style_01_1555318576952 {
    width: 10.583333333333334%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 344px;
    left: 10.083333333333332%;
}

@media screen and (min-width:641px) and (max-width:1200px) {
    #text_style_01_1555318576952 {
        top: 335px;
        left: 13.15780752916225%;
    }
}

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

#text_style_01_1555318576952>.view_contents {
    text-align: center;
    color: #ffffff;
}

#div_blank_1555318674799 {
    width: 1920px;
    height: 60px;
    position: absolute;
    top: 433px;
    left: calc(50% - 960px);
}

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

@media screen and (max-width:640px) {
    #div_blank_1555318674799 {
        width: 100%;
        height: 31px;
        top: 0px;
        left: 0%;
        display: block;
    }
}

#div_blank_1555318674799>.view_contents {
    overflow: visible;
}

#div_blank_1555318674799 {
    box-sizing: border-box;
    background: #0468cf;
}

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

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

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

#text_style_01_1555318759694 {
    width: 35.91666666666667%;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-family: Microsoft YaHei;
    position: absolute;
    top: 450.5px;
    left: 32.04166666666667%;
}

@media screen and (min-width:641px) and (max-width:1200px) {
    #text_style_01_1555318759694 {
        width: 432px;
        left: 31.866383881230114%;
        top: 450.5px;
    }
}

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

#text_style_01_1555318759694>.view_contents {
    font-size: 14px;
    color: #e9eff9;
    text-align: center;
}

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

#liuyanban_style_05_1555319325586 {
    width: 45.916666666666664%;
    position: absolute;
    top: 13px;
    left: 54.125%;
}

@media screen and (min-width:641px) and (max-width:1200px) {
    #liuyanban_style_05_1555319325586 {
        top: 13px;
        left: 45.42848621420997%;
        width: 504px;
    }
}

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

#liuyanban_style_05_1555319325586 .userInfoSet {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    border-radius: initial;
}

#liuyanban_style_05_1555319325586 .messageBoardSet {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    border-radius: initial;
}

#liuyanban_style_05_1555319325586 .btnaSet {
    background: #0468cf;
    border-radius: initial;
}

#liuyanban_style_05_1555319325586 .titSet {
    color: #ffffff;
}

#qqol_style_01_1555407577767 {
    width: 17.5%;
    position: absolute;
    top: 168px;
    left: 32.04166666666667%;
    display: block;
}

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

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

#qqol_style_01_1555407577767>.view_contents {
    overflow: visible;
}

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

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

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

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

#comm_layout_footer {
    background: #282828;
}

#comm_layout_footer>.view_contents {
    background: url(http://cdn.xuansiwei.com/453nmgx/img/upimages/pkgimg/banner/20190417133746930.png);
    background-repeat: no-repeat!important;
    background-size: auto 100%;
    background-position: 50% 50% !important;
}

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

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

@media screen and (max-width:640px) {
    #image_style_01_1555293592109 .CompatibleImg img {
        width: 100%;
        height: 100%
    }
}

#image_style_01_1555293592109 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;
}


/*菜单样式*/

.menuStyle_29 {
    width: 100%;
    position: relative;
}

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

.menuStyle_29 .miniMenu *,
.menuStyle_29 .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_29 .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_29 .rflex {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    float: left\0;
}

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

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

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

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

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

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

.menuStyle_29 .menuUl>li>a {
    background: #000;
    color: #fff;
    position: relative;
    font-size: 16px;
    text-decoration: none;
    box-sizing: border-box;
    display: block;
    text-align: center;
    letter-spacing: normal;
    white-space: nowrap;
    line-height: 44px;
    padding: 0;
    padding: 0 1em\0;
}

.menuStyle_29 .menuUl>li>a:hover {
    color: #f01ef0;
}

.menuStyle_29 .menuUl #hot>a {
    color: #f01ef0;
}

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

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


/*.menuStyle_29 .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_29 .menuLayout .miniMenu {
    display: none;
}

.menuStyle_29 .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_29 .menuUl>li>#menuLogo {
    height: 85%;
}

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

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

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

.menuStyle_29 .menuUl02 .subMenu02.subCurSet {
    color: #f01ef0;
}

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

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

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

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

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

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

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

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

.menuStyle_29 .menuUl03 .subMenu03 a:hover {
    color: #f01ef0;
    background: #f7f7f7;
}

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

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

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

.menuStyle_29 .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_29 .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_29 .rflex {
    position: relative;
}

.menuStyle_29 .maxWidth {
    margin: auto;
}


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

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

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

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

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

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

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

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

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

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

.menuStyle_29 .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_29 .subBox p {
    overflow: hidden;
    float: left;
}

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

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

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

.menuStyle_29 .subBox .subMenu02.subCurSet {
    color: #f01ef0;
}

.menuStyle_29 .subBox .subMenu02:hover,
.menuStyle_29 .subBox .subMenu02:active {
    color: #f01ef0;
}

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

.menuStyle_29 .subBox .subMenu03:hover,
.menuStyle_29 .subBox .subMenu03:active {
    color: #f01ef0;
}

.menuStyle_29 .subMenu03 .thrCurSet {
    color: #f01ef0 !important;
    background: #f7f7f7 !important;
}


/*图标*/

.menuStyle_29 .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_29 .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_29 .imgIco {
        margin-right: 10px;
    }
    .menuStyle_29 .menuUl,
    .menuStyle_29 .menuUl_box {
        display: none;
    }
    .menuStyle_29 .menuScroll {
        height: calc(100% - 100px);
        width: 100%;
    }
    .menuStyle_29 .menuScroll>.menuUlCopy {
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: scroll;
    }
    .menuStyle_29 .menuLayout .miniMenu {
        display: block;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 44px;
    }
    .menuStyle_29 .miniMenu .leftBox {
        height: 100%;
    }
    .menuStyle_29 .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_29 .miniMenu .leftBox .sidebar .fa {
        font-size: inherit;
        line-height: inherit;
        color: inherit;
    }
    .menuStyle_29 .miniMenu .leftBox .nav {
        width: 100%;
        height: 44px;
    }
    .menuStyle_29 .miniMenu.Mslide .leftBox .nav {
        border-bottom: 1px solid rgba(0, 0, 0, .05);
    }
    .menuStyle_29 .miniMenu .leftBox .menuUlCopy {
        padding: 0 0 0 30px;
        clear: both;
    }
    .menuStyle_29 .miniMenu .leftBox .menuUlCopy .menuUlCopy {
        display: none;
    }
    .menuStyle_29 .miniMenu .leftBox .menuUlCopy li {
        width: 100%;
        overflow: hidden;
        color: #fff;
        font-size: 12px;
        line-height: 44px;
    }
    .menuStyle_29 .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_29 .miniMenu .leftBox .menuUlCopy li#hot>a {
        border-bottom: 1px solid #fff;
    }
    .menuStyle_29 .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_29 .miniMenu .leftBox .menuUlCopy li .fa:active {
        background: rgba(0, 0, 0, .3);
    }
    .menuStyle_29 .miniMenu .leftBox .menuUlCopy li.subMenuSet.subCurSet>a,
    .menuStyle_29 .miniMenu .leftBox .menuUlCopy li.thrMenuSet.thrCurSet>a {
        border-bottom: 1px solid #fff;
    }
    .menuStyle_29 .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_29 .menuLayout .miniMenu.Mslide .sidebar {
        color: #fff;
        background: rgba(0, 0, 0, .05);
    }
    .menuStyle_29 .menuLayout .miniMenu.Mslide .nav a {
        display: none !important;
    }
}

@media screen and (min-width:640px) {
    #dh_style_29_1555293985516 .maxWidth {
        max-width: px;
    }
    #dh_style_29_1555293985516 .subBox .sublm {
        width: calc(100% - (px + px) - 20px);
    }
    /*20px是两张图片间的间距*/
    #dh_style_29_1555293985516 .subBox .subImgsbox {
        width: calc((px + px) + 20px);
        height: px
    }
    /*20px是两张图片间的间距*/
    #dh_style_29_1555293985516 .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(http://cdn.xuansiwei.com/453nmgx/img/banner/style_01/hover_left.png) no-repeat left top;
    left: 20px;
    background-size: 80%;
}

.bannerStyle_1 .btn_next {
    background: url(http://cdn.xuansiwei.com/453nmgx/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_1555405152017 .bannerStyle_1 .main_image .img-item .img_0 {
    background: url('http://cdn.xuansiwei.com/453nmgx/img/upimages/pkgimg/banner/banner2.1.png') center top no-repeat;
}

#banner_style_01_1555405152017 .bannerStyle_1 .main_image .img-item .img_1 {
    background: url('http://cdn.xuansiwei.com/453nmgx/img/upimages/pkgimg/banner/20190416170517300.jpg') center top no-repeat;
}

#banner_style_01_1555405152017 .bannerStyle_1 .ground_glass {}

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

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

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

#image_style_01_1555386129983 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_1555386894674 .CompatibleImg img {
    width: auto;
    height: 100%;
    position: relative;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

@media screen and (min-width:641px) and (max-width:1200px) {
    #image_style_01_1555386894674 .CompatibleImg img {
        width: auto;
        height: 100%;
        position: relative;
        top: 0;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}

@media screen and (max-width:640px) {
    #image_style_01_1555386894674 .CompatibleImg img {
        width: 100%;
        height: 100%
    }
}

#image_style_01_1555386894674 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_1555386531150 .CompatibleImg img {
    width: 100%;
    height: auto;
    margin-left: 0px
}

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

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

#image_style_01_1555386531150 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_1555478535844 .CompatibleImg img {
    width: 100%;
    height: auto;
    margin-left: 0px
}

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

@media screen and (max-width:640px) {
    #image_style_01_1555478535844 .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;
}

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

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

@media screen and (max-width:640px) {
    #image_style_01_1555318407150 .CompatibleImg img {
        width: 100%;
        height: 100%
    }
}

#image_style_01_1555318407150 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;
}


/*留言板样式*/

.gformStyle_5 {
    width: 100%;
    box-sizing: border-box;
    min-width: 500px;
}

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

.gformStyle_5 form {}

.gformStyle_5 .gformS {
    width: 100%;
    box-sizing: border-box;
}

.gformStyle_5 .gf_title {
    text-align: left;
    font-size: 18px;
    line-height: 3;
    margin-left: 1%;
}

.gformStyle_5 .gformList {
    width: 100%;
    margin-bottom: 4px;
}

.gformStyle_5 .gformList span {
    display: block;
    float: left;
    width: 36px;
    font-size: 14px;
    line-height: 34px;
}

.gformStyle_5 .gformList textarea.gf_message,
.gformStyle_5 .gformList input.gfInput {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    padding: 8px;
    border: 1px solid #eee;
}

.gformStyle_5 .gformList input.gfInput {
    height: 50px;
    width: 100%;
    min-width: 0;
    border: 1px solid #4289a3;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gformStyle_5 .gformList textarea.gf_message {
    border: 1px solid #4289a3;
    border-radius: 8px;
    height: 200px;
    width: 98%;
    margin-left: 1%;
}

.gformStyle_5 .gbt {
    background: #4289a3;
    position: relative;
    left: 1%;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    line-height: 40px;
    cursor: pointer;
    box-sizing: border-box;
    border: 0;
    height: 40px;
    width: 28%;
    margin: 3% auto;
    border-radius: 8px;
}

.gformStyle_5 #gbook {
    width: 98%;
    box-sizing: border-box;
    list-style: none;
    clear: both;
    margin: 0 auto;
}

.gformStyle_5 li.gbList {
    background: #fff;
    margin-bottom: 10px;
    color: #333;
    padding: 10px;
    box-sizing: border-box;
}

.gformStyle_5 .gb_name {
    font-size: 14px;
    line-height: 3;
    white-space: nowrap;
    border-top: 1px solid #aaa;
    padding: 10px;
}

.gformStyle_5 .gb_content {
    margin: 10px auto;
    clear: both;
}

.gformStyle_5 .gb_page {
    background: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 2;
}

.gformStyle_5 .gb_replay {
    margin: 10px auto;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    box-sizing: border-box;
    font-size: 14px;
}

.gformStyle_5 .gb_replay b {
    padding-left: 50px;
}

.gformStyle_5 .gb_replay .gb_content {
    padding-left: 50px;
}

.gformStyle_5 .gb_info {
    float: right;
    color: #666;
}

.gformStyle_5 .gb_nickname {}


/*alex新增风格的样式*/

.gformStyle_5 .thetextbox {
    width: 31.33%;
    float: left;
    margin-left: 1%;
    margin-right: 1%;
}

.gformStyle_5 .gfInput {
    clear: both;
}

.gformStyle_5 .gf_message {
    border: 1px solid #4289a3;
}

@media screen and (max-width:991px) {
    .gformStyle_5 .gformList textarea.gf_message,
    .gformList input.gfInput {
        margin: auto;
        max-width: auto;
        min-width: calc(100% - 36px);
    }
}

@media screen and (max-width:768px) {
    .gformStyle_5 {
        padding: 15px;
    }
    .gformStyle_5 .listTit {
        display: none;
    }
    .gformStyle_5 .gformList textarea.gf_message,
    .gformList input.gfInput {
        margin: auto;
        max-width: auto;
        min-width: 100%;
    }
    .gformStyle_5 .gbt {
        font-size: 14px;
    }
}

@media screen and (max-width:480px) {
    .gformStyle_5 {
        padding: 10px;
        min-width: 0;
    }
    .gformStyle_5 .listTit {
        display: none;
    }
    .gformStyle_5 .gformList textarea.gf_message,
    .gformStyle_5 .gformList input.gfInput {
        margin: auto;
        max-width: auto;
        min-width: 100%;
    }
    .gformStyle_5 .gb_replay {
        padding-left: 10px;
        font-size: 14px;
    }
    .gformStyle_5 .gb_nickname,
    .gformStyle_5 .gb_nickname b {
        font-size: 14px;
    }
    .gformStyle_5 .thetextbox {
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
    }
}


/*程序修改的颜色*/

.gformStyle_5 .gformList textarea.gf_message,
.gformStyle_5 .gformList input.gfInput,
.gformStyle_5 li.gbList {
    background: #fff;
}


/*modBgColor*/

.gformStyle_5 .modFontColor {
    color: #333;
}

.gformStyle_5 .modBorderColor {
    border-color: #f5f5f5 !important;
}

.style_05_changeCode {
    position: absolute;
    bottom: 268px !important;
    right: 0px !important;
    z-index: 8888 !important;
    width: 65px;
    height: 32px;
    display: block;
    cursor: pointer;
    overflow: hidden;
    zoom: 1;
}


/* 清除浮动 */

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.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;
    }
}