@charset "utf-8";
/* CSS Document */

html, body{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: unset;
    color: #565872;
    letter-spacing: 0;
    font-weight: 400;
    word-break: break-word;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Nunito', sans-serif;
    color: #222F5A;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 15px;
    line-height: 1.5;
}
a{
    color: #222F5A;
    text-decoration: none;
    -webkit-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease;
}
a:hover{
    color: #412CC5;
    text-decoration: none;
}
a:focus{
    outline: 0;
    text-shadow: none;
    box-shadow: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}




/*---- Animation ----*/
@keyframes blinker {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1, 1);
    }
}
@keyframes halfBounce {
    0%,
    100% {
        transform: scale(.5)
    }
    50% {
        transform: scale(1)
    }
}
@keyframes halfBounce2 {
    0%,
    100% {
        transform: scale(.9)
    }
    50% {
        transform: scale(1)
    }
}
@-webkit-keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.overlay-anim::before {
    background: rgba(255, 255, 255, 0.5);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 500ms linear;
}
.overlay-anim:hover::before {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 500ms linear;
}
.overlay-anim::after {
    background: rgba(255, 255, 255, 0.5);
    bottom: 50%;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    opacity: 1;
    pointer-events: none;
    transition: all 600ms linear;
}
.overlay-anim:hover::after {
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 600ms linear;
}
/*------------------------------------------------------
/ 2. Home 01
/------------------------------------------------------*/


/*---- Header ---*/
.header-01{
    position: absolute;
    background: transparent;
    left: 0;
    bottom: auto;
    width: 100%;
    height: auto;
    z-index: 99;
    border-bottom: 2px solid rgba(34, 47, 90, .2)
}
.navbar.navbar-expand-lg{
    position: relative;
    margin: 0 0;
    padding: 0;
    transition: all 0.3s ease-out;
}
.navbar-brand{
    position: relative;
    padding: 0 0;
    margin: 0;
    text-align: center;
}
.navbar-brand img{
    max-width: 100%;
    height: auto;
}
.text-logo{
    display: block;
    font-size: 30px;
    line-height: 30px;
    text-transform: capitalize;
    color: #222F5A;
    font-weight: 700;
    letter-spacing: 0;
}
.text-logo:hover{
    color: #5838fc;
}
.navbar .navbar-collapse{
    justify-content: flex-end;
}
.navbar-expand-lg .navbar-nav{
    position: relative;
    margin: 0;
    padding: 0;
}
.navbar-expand-lg .navbar-nav li{
    position: relative;
    list-style: none;
    display: inline-block;
    margin: 0 0 0 48px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.navbar-expand-lg .navbar-nav li:first-child{
    margin-left: 0;
}
.navbar-expand-lg .navbar-nav li > a{
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: #222F5A;
    font-family: 'Nunito', sans-serif;
    text-transform: capitalize;
    font-weight: 600;
    padding: 30px 0 30px;
    position: relative;
}
.navbar-expand-lg .navbar-nav > li.menu-item-has-children > a:after {
    content: '';
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0px;
    height: 2px;
    width: 0;
    transition: width .4s cubic-bezier(.25,.8,.25,1) 0s;
    background: #222F5A;
}
.navbar-expand-lg .navbar-nav > li.menu-item-has-children:hover > a:after {
    width: calc(100% + 32px);
    left: -25px;
    right: auto;
}
.navbar-expand-lg .navbar-nav li.current-menu-item > a,
.navbar-expand-lg .navbar-nav li:hover > a{
    color: #5838fc;
}
.navbar-expand-lg .navbar-nav li .sub-menu {
    background: #fff;
    width: 200px;
    z-index: 9;
    text-align: left;
    padding: 0;
    display: block;
    left: -25px;
    margin: auto;
    position: absolute;
    padding: 0 0;
    visibility: hidden;
    opacity: 0;
    top: 100%;
    z-index: 9;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    -moz-box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    box-shadow: 0px 5px 20px 0px rgba(150, 176, 203, 0.15);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: none;
    border-radius: 0;
    color: inherit;
    font-size: inherit;
    -o-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
    transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform: rotateX(-90deg);
    -o-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    -webkit-transform: rotateX(-90deg);
}
.navbar-expand-lg .navbar-nav li .sub-menu li{
    display: block;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.navbar-expand-lg .navbar-nav li .sub-menu li a{
    padding: 9px 25px;
    margin: 0;
    color: #222F5A;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 15px;
    width: 100%;
    display: block;
    position: relative;
}
.navbar-expand-lg .navbar-nav li .sub-menu li.current-menu-item > a,
.navbar-expand-lg .navbar-nav li .sub-menu li:hover > a{
    color: #412CC5;
}
.navbar-expand-lg .navbar-nav li:hover .sub-menu{
    visibility: visible;
    opacity: 1;
    transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
}
.navbar-expand-lg .navbar-nav li .sub-menu li a:before{
    display: none;
}
.navbar-expand-lg .navbar-nav li .sub-menu li .sub-menu{
    position: absolute;
    left: 110%;
    right: auto;
    top: 0;
    visibility: hidden;
    opacity: 0;
}
.navbar-expand-lg .navbar-nav li .sub-menu li:hover .sub-menu{
    visibility: visible;
    opacity: 1;
    left: calc(100% + 1px);
}
.access-btn{
    position: relative;
    margin-left: 68px;
}
.access-btn a{
    display: inline-block;
    position: relative;
    width: 46px;
    height: 46px;
    border: 2px solid rgba(34, 47, 90, .1);
    border-radius: 50px;
    text-align: center;
    background: transparent;
    font-size: 17px;
    color: #222F5A;
    line-height: 45px;
    margin-left: 12px;
}
.access-btn a span{
    position: absolute;
    right: -7px;
    top: -8px;
    width: 20px;
    height: 20px;
    display: block;
    background: #222F5A;
    color: #fff;
    font-size: 11px;
    line-height: 21px;
    font-weight: 500;
    border-radius: 50%;
    text-align: center;
}
.access-btn a:hover{
    background: #412CC5;
    border-color: #412CC5;
    color: #fff;
}
.submenu-toggler{
    display: none;
}

/*---- Search Toggle ---*/
.popup_search_sec {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}
.popup_search_overlay {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    cursor: url(../images/close.png), auto;
    -webkit-transition: all .4s ease-in .8s;
    -o-transition: all .4s ease-in .8s;
    transition: all .4s ease-in .8s;
}
.popup_search_sec.active .popup_search_overlay {
    visibility: visible;
    -webkit-transition: all .8s ease-out 0s;
    -o-transition: all .8s ease-out 0s;
    transition: all .8s ease-out 0s;
    top: 0;
    opacity: 1;
}
.pop_search_background {
    background: #000;
    width: 100%;
    height: 400px;
    top: -100%;
    z-index: 99;
    position: fixed;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 0.6s cubic-bezier(0.9, 0.03, 0, 0.96) 0.7s;
    -o-transition: all 0.6s cubic-bezier(0.9, 0.03, 0, 0.96) 0.7s;
    transition: all 0.6s cubic-bezier(0.9, 0.03, 0, 0.96) 0.7s;
}
.popup_search_sec.active .pop_search_background {
    opacity: 1;
    visibility: visible;
    top: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.5s;
    -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.5s;
    transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.5s;
}
.middle_search {
    position: relative;
    top: 43%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    position: relative;
    z-index: 2;
}
.popup_search_form {
    position: relative;
}
.popup_search_form:after {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
    animation-delay: 0.8s;
    position: absolute;
    content: '';
    height: 1px;
    background: rgba(255, 255, 255, .25);
    width: 0;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: 0;
}
.popup_search_sec.active .popup_search_form:after {
    -webkit-animation-name: fadeInGo;
    animation-name: fadeInGo;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility: visible;
    opacity: 1;
    width: 100%;
}
.popup_search_form:before{
    content: '';
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
    -moz-transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
    -webkit-transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
    background: #412CC5;
}
.popup_search_form.focused:before{
    width: 100%;
    left: 0;
    right: auto;
}
.popup_search_form input[type="search"] {
    width: 100%;
    height: 64px;
    border: none;
    background: transparent;
    outline: none;
    font-size: 20px;
    line-height: 64px;
    color: #ffffff;
    font-weight: 500;
}
.popup_search_form input[type="search"]::-moz-placeholder{
    color: #ffffff;
    opacity: 1;
}
.popup_search_form input[type="search"]::-ms-input-placeholder{
    color: #ffffff;
    opacity: 1;
}
.popup_search_form input[type="search"]::-webkit-input-placeholder{
    color: #ffffff;
    opacity: 1;
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@-webkit-keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}
@keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@-webkit-keyframes fadeInGo {
    0% {opacity: 0.1; width: 0; }
    100% {opacity: 1; width: 100%; }
}
@keyframes fadeInGo {
    0% {opacity: 0.1; width: 0; }
    100% {opacity: 1; width: 100%; }
}

@-webkit-keyframes fadeOutGo {
    0% {opacity: 1; width: 100%; }
    100% {opacity: 0; width: 0; }
}
@keyframes fadeOutGo {
    0% {opacity: 1; width: 100%; }
    100% {opacity: 0; width: 0; }
}

@-webkit-keyframes fadeOutGo2 {
    0% {opacity: 0.8; width: 100%; }
    100% {opacity: 0.14; width: 0; }
}
@keyframes fadeOutGo2 {
    0% {opacity: 0.8; width: 100%; }
    100% {opacity: 0.14; width: 0; }
}
.popup_search_form  button[type="submit"]{
    position: absolute;
    right: 0;
    bottom: 14px;
    border: none;
    outline: none;
    z-index: 2;
    font-size: 20px;
    line-height: 32px;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #ffffff;
    transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -webkit-transition: all ease 300ms;
    -ms-transition: all ease 300ms;
    -o-transition: all ease 300ms;
}
.popup_search_form  button[type="submit"]:hover{
    color: #412CC5;
}

/**zhongfang20210225 zxf**/
.greybg{ background: #f2f2f2; text-align: center}
.indexbg{background:url(../images/cloudbg.jpg) center 130px no-repeat #fff; text-align: center}
.header-01{ background:#fff; position: relative}
.zfcontain .navbar .navbar-collapse {
    justify-content: center;
}
.zfcontain .col-lg-12{padding-left:0px; padding-right: 0px}
.zf-top{height: 102px; display: flex; display:-ms-flexbox; display:-webkit-flex; align-items: center; flex-flow:row nowrap;justify-content:space-between }
.zf-top .access-btn{display:none}
.zf-topr{display: flex; display:-ms-flexbox; display:-webkit-flex; align-items: center; flex-flow:row nowrap;justify-content:flex-end}
.zf-search{ width:318px; height:34px; border:1px solid #106fd8;}
.zf-search input{ float:right; width:280px; height:32px; line-height:32px; border:none; text-indent:5px; font-size: 16px;}
.zf-search .zfsubmit{ background:url(../images/sc1.gif) -3px -5px no-repeat; width:32px; height:32px; text-indent:0px; cursor:pointer;}
.englink{ display:block; color: #1f75de; font-size:14px; margin-left: 20px; line-height: 1em; height: 1em; width:72px; text-align:left; background: url("../images/dot.png") right center no-repeat; }
.zf-mk1 { width: 1200px; margin: 23px auto 20px auto}
.zf-mk1 .zf-mk1l{ width: 577px; height: 400px; margin-right:15px; float: left; position: relative; overflow: hidden}
.zf-mk1 .zf-mk1r{ width:605px;  height: 400px; float:right; background: #fff }

.zf-mk1rmenu{ width:100%; height:41px; margin:0px;}
.zf-mk1rmenu dd{ float:left; width:50%; height:41px; font-size:18px; font-weight:bolder; line-height:41px; text-align:center;cursor:pointer}
.zf-redbg{ background:#0562bc; color:#fff;}
.zf-greybg{ background:#eae8e6; color: #333}
.zf-bluebg{ background: #106fd8; color: #fff}
.block{ display: block}
.none{ display: none}
.mk1-content{ width: 100%}
.mk1-content > ul{ display:none}
.news-index-rv2{padding:0px; background: #fff; margin-top:10px; width: 100%}
.news-index-rv2,.news-index-rv2 li{display:block;}
.news-index-rv2 *{box-sizing:border-box;}
.news-index-rv2 * a:hover{ color:#4a86ff}
.news-index-rv2 i{ font-style:normal}
.news-index-rv2 h3{ position: relative;}
.news-index-rv2 h3 a{ display:inline-block; float:left; font-size:16px; color:#3a3a3a; line-height:40px; height:45px; padding-top:4px; width:100%; padding-right:120px; text-align:left; overflow: hidden; text-overflow:ellipsis; white-space:nowrap; font-weight: normal; position: relative; padding-left:18px}
.news-index-rv2 h3,.news-index-rv2 h4{margin:0px}
.news-index-rv2 h3 i{ position: absolute;display:inline-block; right:0px; top:4px; font-size:16px; color:#a3a3a3; line-height:40px; height:45px; width:114px; text-align:right; padding-right:14px; font-weight: normal}
.news-index-rv2 li{ border-bottom:1px solid #e7e7e7; margin-bottom:0px; background:#fff; display:block; width:100%; height:51px;}
.news-index-rv2 li h4{ display:none}
.news-index-rv2 * a{-webkit-transition: 0s ease; transition: 0s ease;}
.zf-indexlist{ width:100%;}
.boxshadow{box-shadow:0px 0px 21px rgba(6,0,1,0.26); -webkit-box-shadow:0px 0px 21px rgba(6,0,1,0.26);-moz-box-shadow:0px 0px 21px rgba(6,0,1,0.26);}
.zf-indexlist .zf-mk2,.zf-indexlist .zf-mk3,.zf-indexlist .zf-mk4{ width: 100%; margin:0px 10px; background:#fff; height: 344px; float:left}
.zf-indexlist .zf-mk4{width: calc(100% - 24px);}
.zf-indexlist .zf-mk2 h2,.zf-indexlist .zf-mk4 h2{ padding:0px; margin: 0px; display: block;height: 42px; width: 100%; background:#dbeaf8;}
.zf-indexlist .zf-mk2 h2 b,.zf-indexlist .zf-mk4 h2 b{ display: inline-block; float: left; font-size: 18px; color: #333; font-weight:bolder;height: 18px; margin-top:14px; background: url("../images/d1.gif") 17px center no-repeat; padding-left:28px; line-height: 1em;}
.zf-indexlist .zf-mk2 h2 a,.zf-indexlist .zf-mk4 h2 a{display:inline-block; float: right; width: 52px; height: 22px;border-radius:6px; -webkit-border-radius:6px; -moz-border-radius:6px; background: rgba(255,255,255,0.5); margin:13px 11px 0px 0px; font-size: 14px; line-height: 22px; color:#0563bd; font-weight: normal;}
.zf-indexlist .zf-mk2 h2 a:hover{ background: #106fd8; color: #fff;}
.zf-indexlist .zf-mk4 h2 a:hover{ background: #106fd8; color: #fff;}
.zf-mk2 > ul,.zf-mk4 > ul{ padding: 0px 16px; margin:0px; list-style: none; width: 100%; position: relative; clear: both; display: none}
.zf-mk2 > ul li,.zf-mk4 > ul li{ padding: 0px; margin:0px;  list-style: none; width: 100%; position: relative}
.zf-mk2 > ul li a,.zf-mk4 > ul li a{position: relative; display: block; white-space: nowrap; text-overflow: ellipsis; font-size: 14px; color: #333; line-height: 32px; width: 100%; padding-right:82px; cursor: pointer; text-align: left}
.zf-mk2 > ul li a:hover,.zf-mk4 > ul li a:hover{ color: #c1280e}
.zf-mk2 > ul li i,.zf-mk4 > ul li i{ width: 82px; display: block; position: absolute; line-height: 32px; height: 32px; right:0px; font-style: normal; font-size: 14px; color: #a6a6a6; top:0px}

.es-carousel-wrapper{
    position:relative; height: 35px; width: 100%; margin: 17px 0px 6px 0px; padding: 0px 10px 0px 12px;
}
.es-carousel{
    overflow:hidden;background: #f5f5f5;
}
.es-carousel ul{
    display:none; padding:0px; margin:0px;
}
.es-carousel ul li{
    height:35px;
    float:left;
    display:block; cursor:pointer;
}
.es-carousel ul li a{
    display:block; width: 100%; margin: 0px; text-align: center;color: #333; font-weight: normal; font-size: 15px; line-height:35px;
}
.es-carousel ul li a:hover{ text-decoration:none; color: #fff; }
.es-nav span{
    position:absolute;
    top:0;
    left:10px;
    background:transparent url(../images/jt1.gif) no-repeat top left;
    width:20px;
    height:35px;
    text-indent:-9000px;
    cursor:pointer;
}
.es-nav span.es-nav-next{
    right:10px;
    left:auto;
    background:transparent url(../images/jt2.gif) no-repeat top left;
}
.es-nav span:hover{
    opacity:1.0;
}

.zhttabcur{  background: #0562bc }
.es-carousel ul li.zhttabcur a{font-weight: bold; color: #fff;}

.zf-indexlist .zf-mk2,.zf-indexlist .zf-mk3,.zf-indexlist .zf-mk4{margin-bottom: 20px; }
.zf-mk3 > ul{ display: none; padding: 0px}
#carouselc,#carouselc ul,#carouselc ul li{ width: 100%; height: 43px; display: block; line-height: 43px;}
#carouselc ul{ padding:0px}
#carouselc ul li{ width: 50%; font-weight: bolder; font-size:18px; float:left; cursor: pointer; text-align: center}
.zf-bluebg{ background: #0562bc; color: #fff}
.tabc_css{ display: block; width: 100%;}
.tabc_css ul{padding:0px}
.tabc_css a{ display: block; width: 108px; height: 123px; margin: 14px 9px 0px 9px; color: #333; font-weight: normal; line-height: 1.2em; font-size: 15px; text-align: center; padding-top:85px; float: left; background-color:#f3f3f3; background-repeat:no-repeat; background-position: center 16px;-webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;}
.tabc_css a:hover{ background-color:#106fd8; color:#fff;  }
.zf-mk3 > ul > div{ display: flex; display:-ms-flexbox; display:-webkit-flex; padding: 10px 3px 0px 3px; flex-flow:row wrap;justify-content:flex-start}
.yqlj{border-bottom: 1px solid #c5c8ca}
.yqlj,.yqlj > div{ width: 100%; background: #daedf6; min-height:30px; line-height: 30px; font-size:14px; color: #bec1c3; text-align: center}
.yqlj > div b{ color: #45484b; font-size: 16px; font-weight: bold;}
.yqlj > div a{font-size: 14px; color: #45484b;}
.yqlj > div a.yqljm{ color: #106fd8}
.yqlj > div a:hover{ color: #c1280e; text-decoration: none}
.bq{ width: 100%; height:auto; background: #e3e5e6; line-height: 20px; color: #45484b; font-size: 14px; padding-top:25px; text-align: center}
.bq b{ font-size: 18px; color: #c1280e}
.rfd{ width:auto; position: absolute; top:200px; right:0px;  background: #fff; z-index: 2}
.rfd div{width: 83px;-webkit-transition: all 0.2s ease;-o-transition: all 0.2s ease;transition: all 0.2s ease; }
.rfd a{ display:block; width: 100%; height:auto; background-color:#fff; background-repeat:no-repeat; background-position: center center;-webkit-transition: all 0.4s ease;-o-transition: all 0.4s ease;transition: all 0.4s ease; cursor: pointer}
.rfd a:hover{background-color:#106fd8;}
.rfd a.rfdzx:hover{ background-image: url("../images/i01.gif")!important;}
.rfd a.rfdlx:hover{ background-image: url("../images/i02.gif")!important;}
.rfd a.rfds{ width: 100%; height: 24px; background:url("../images/i0.png") center center no-repeat #f5f5f5;}
.rfd a.rfds:hover{ background:url("../images/i00.png") center center no-repeat #c1280e;}
.rfd a.rfdz{ width: 30px; height: 24px; background:url("../images/i0h.png") center center no-repeat #c1280e;}
.rfd a.rfdz:hover{ background:url("../images/i0h.png") center center no-repeat #c1280e;}
.rfd a.rfdlx,.rfd a.rfdzx{ height: 73px;}
.rfd a i{ display:block; width:100%;}
.rfd a i img{ width:100%; height:auto;}
.zf-mkcon{ width:100%; margin: 20px 0px; padding:0px 10px}
.zf-mkconl{ width: 267px; background: #fff; margin-right: 20px; padding-bottom: 30px; float: left}
.zf-mkconl > span{ display: block; width: 100%; height: 43px; line-height: 43px; background: #c1280e; color: #fff; font-weight: bolder; text-align: center; clear: both}
.subNavBox{width:90%;margin:20px auto;}
.subNav{cursor:pointer;font-weight:bold;font-size:16px; margin-bottom: 10px; text-align: left;font-weight: bold; color:#333; padding: 12px 0px; line-height:18px;padding-left:22px;background:#f4f4f4;}
.subNav:hover{color:#c1280e;}
/**.currentDt{color:#c1280e}**/
.navContent{display: none; padding:0px; margin: 0px}
.navContent li { list-style: none; padding:0px; margin: 0px; margin-bottom: 20px; height: 1em}
.navContent li a{display:block; width: 100%; text-align: left; height: 1em; line-height: 1em; font-size: 16px; color: #333; background:url("../images/d3.gif") 42px center no-repeat; padding-left: 55px; }
.navContent li a:hover{color:#c1280e;}
.zf-mkconr{ float: left; width: 100%;}
.zf-map{ display: block;width: 100%; height: 44px; width: 100%; background: url("../images/d2.gif") 12px center no-repeat; padding-left:26px; font-size:16px; line-height: 44px; color:#333; text-align: left}
.zf-map a{ font-weight: bold; font-size:16px; line-height: 44px; color:#333;}
.page{ display:block; width:90%; height:26px; text-align:center; font-weight:normal; line-height:26px; font-size:12px;color:#5b5b5b; margin:20px auto 0px auto; clear:both; padding:0px;}
.page a{ font-size:12px; color:#4091ff}
.page a:hover{text-decoration:underline; color:#c1280e; text-decoration: none}
.page .pagetext{ height: 24px; line-height: 24px; width: 50px; border: 1px solid #dcdfe6}
.page .bt-ok{ width:41px; height:24px; border:none; border: none; cursor:pointer; background:#1781e9; font-size:12px; color:#fff; line-height:22px;}
.page .bt-ok:hover{ background: #c1280e}
.bd{}
.contbt{ line-height:70px; width:98%; margin:0px auto; text-align:center; color:#333; font-size:24px; font-family:"\5FAE\8F6F\96C5\9ED1","\5B8B\4F53";padding:20px 0px 12px 0px}
.continfo{ width:95%; margin:0px auto; font-size:14px; color:#9d9d9d; text-align:center; line-height:35px; }
.contfont{  width:90%; font-size:16px; color: #333; text-align:left; margin:0px auto; padding-top:10px;clear:both;}
.contfont>span{line-height:30px;}
.contfont table p{line-height:unset}
html,body{margin:0;padding:0;height:100%}
.layout{min-height:100%;height:auto !important;height:100%;/*ie6不识别min-height,如上述处理*/ position: relative}
.pbbq{padding-bottom:140px;/*padding等于footer的高度*/}
.footerbq{position:absolute;bottom:0;width:100%;height:166px;/*footer的高度*/clear:both;}
.continfo{ background:#f5f5f5}
.tp-banner-container{ width: 577px!important; left: 0px!important; position: relative!important; z-index: 999}
.tp-caption.slider-text-description{background:rgba(0,0,0,0.5); padding: 7px 0px 29px 0px!important; left:0px!important;}
.tp-bullets{ margin-left: -85px!important; bottom: 5px!important; z-index: 99999}
.tp-fullwidth-forcer{ display: none}
.tp-bannerfoot{ height: 52px; width: 100%; background: rgba(0,0,0,0.4); clear: both; position: absolute; bottom:0px; z-index:9999}
.tp-banner ul li{ overflow: visible!important; cursor: pointer}
.slider-text-description{ color: #ffffff; text-align: center; font-size: 16px; line-height: 1em;width: 100%; overflow: hidden; text-overflow:ellipsis;white-space:nowrap; }
.forcefullwidth_wrapper_tp_banner{z-index: 1}
.zf-query > div{ width:33%; padding:20px; float:left; margin-bottom:0px; padding-bottom:5px; text-align:left}
.zf-query > div > label{ width:30%;float:left; text-align:right}
.zf-query > div > input,.zf-query > div > select{ width:70%;float:left;}
.zf-query > div.zf-querybtn{ width:33%; text-align:left; clear:both}
.zf-mkconr > div{ background: #fff; width: 100%; text-align: center; padding-top:10px; padding-bottom: 20px}
.zf-mkconr > div ul,.zf-mkconr > div li{ padding:0px; margin: 0px; list-style: none}
.zf-mkconr > div ul{ display: block; width: 95%; margin: 10px auto; }

.zf-mkconr > div li{ line-height:42px; height:42px; width:100%; clear:both; border-bottom:1px dashed rgb(206,206,206); position: relative}
.zf-mkconr > div li a{ float:left; padding-left:28px; line-height:42px; color: #333; font-size: 15px; display:block; width: 100%; position: relative; padding-right:122px;background: url("../images/d4.gif") 12px center no-repeat; text-align:left}
.zf-mkconr > div li a:hover{color:#c1280e;}
.zf-mkconr > div li i{ font-weight:normal; font-style:normal;line-height:42px; right:8px; position: absolute; font-size: 14px; color: #999;}
.zf-mkconr > div li p{display:none;}
.zf-mkconr > div li.flfg{ height:auto; line-height:2em}
.zf-mkconr > div li.flfg p{display:block;}
.zf-mkconr > div li.flfg a{ color:rgb(0,98,161); font-weight:bolder; line-height:2em}
.zf-mkconr > div li.flfg p{ padding:0px; margin:0px; color:#333; font-size:12px; padding-bottom:0.5em; font-weight:normal; text-align:left; line-height:1.5em; padding-left:2em}
.yqljmain div{ width:30%; padding-left:20px; box-sizing:border-box; text-align:left; float:left; height:50px; padding:30px 0px 0px 30px}
.yqljmain div a{ color:#333; line-height:50px; text-decoration:none;}
.yqljmain div a:hover{ color:#c1280e; text-decoration:underline;}
.toolsmain div a{ margin-right:15px}
.search-t{ width:98%; margin:0px auto; text-align:left; font-size:16px; color:#c1280e; font-weight:bold;  line-height:30px; height:30px; padding-top:10px; padding-left:10px}
.red{color:#c1280e}
.contfont p{margin:0px}
.notice1 {
    width: 248px;
    height:134px;
    z-index: 99999;
    position: fixed;
    top: 4px;
    left: 6px;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.notice1 .close {
    width: 24px;
    height: 20px;
    position: absolute;
    left: 223px;
    cursor: pointer;
}
.notice1 .content {
    padding: 15px 12px 12px 12px;
    font-size:14px;
    font-weight:bolder;
    text-align:justify;
    line-height:21px; text-align:left; color:#db510e;font-family:"\5FAE\8F6F\96C5\9ED1","\5B8B\4F53"
}

table p{margin-block-start:0px;margin-block-end:0px; position: relative}
.contfont table{margin-left:auto; margin-right:auto}

.contbt{color:#000; line-height: 1.5em}
.continfo{font:14px/1.5 宋体,Arial,Tahoma,Helvetica,sans-serif; color:#333; border-bottom:1px dotted #a9a9a9; background:none; padding-bottom:15px}
.yqlj > div > span{height: 30px!important;}
.yqlj > div > span a{white-space:nowrap;}
.zf-mk4 > ul li a{overflow: hidden}
.zf-mk3 > ul > div{justify-content: center}
.zf-mkconr .contfont img{max-width:99%; }
/**顶部蓝色主题
.zfcontain{ background: #0076e8}
.zf-search .zfsubmit{ background: url(../images/sc01.gif) -3px -5px no-repeat}
.englink{ color:#fff; background: url("../images/dot01.png") right center no-repeat}
.navbar.navbar-expand-lg .navbar-toggler{background: #fff!important;}
.nss-bars1:before{color:#055098;}**/

/**begin 顶部渐变主题**/
.zfcontain{ background: url(../images/topbg.gif) repeat-x}
/**顶部渐变主题 end**/

/**begin footer v2**/
.footerlayoutv2{position:absolute;bottom:0;width:100%;height:104px;/*footer的高度*/clear:both;}
.footerbqv2{padding:0px 25px; margin-bottom:5px!important;}
.footerbqv2 *{font-family:"\5FAE\8F6F\96C5\9ED1","\5B8B\4F53"}
.footerlinks{ width:100%; height:27px; margin:5px 0px 10px 0px; clear: both; padding-top:5px}
.footerlinks i{ display:inline-block; line-height:22px; margin-left:-10px; font-style:normal; float:left; width:100px; padding-left:20px;background:url("../images/d1.gif") 10px center no-repeat; color:#333; font-size:18px; font-weight:bolder;}
.footerlinks a{display:inline-block; float: right; width: 52px; height: 22px;border-radius:6px; -webkit-border-radius:6px; -moz-border-radius:6px; background:#eef5fc; margin:0px -5px 0px 0px; font-size: 14px; line-height: 22px; color:#0563bd; font-weight: normal;}
.footerlinks a:hover{background:#106fd8; color:#fff;}
.footerbqv2 .row{display:block}
.footerbqv2 .row dd{display:inline-block; padding:5px; float:left; box-sizing:border-box; margin-bottom:0px} 
.footerbqv2 .row a{ display:block; background:#dbeaf8; border:1px solid #bfe1fe; color:#313131; line-height:46px;height:46px; font-size:16px; text-decoration:none; }
.footerbqv2 .row a:hover{ background:#a3cdf5; border:1px solid #a3cdf5;}
.footerlayoutv2 .bq{background:#0562bc; color:#8eacd8; min-height: 105px; }
.footerlayoutv2 .bq span{ display:inline-block;}
.footerlayoutv2 .bq a{color:#8eacd8}
.yqljlayout{padding-bottom: 105px;}
.yqljlayout .zf-map{font-weight: bolder}
/**footer v2 end**/

/**begin index_serviceplat v2**/
.zf-indexlist .zf-mk4.zf-mpic{height:auto; padding-bottom: 15px}
.zf-mpic .tabc_css a{margin:18px 9px 0px 9px; width: 150px; height: 124px}
.zf-mk4.zf-mpic #carouselc ul{ background:#eae8e6}
.zf-mk4.zf-mpic > ul{padding:0px 10px; background:#eae8e6}
.zf-mk4.zf-mpic .tabc_css,.zf-mk4.zf-mpic .tabc_css div{background: #fff}
/**index_serviceplat v2 end**/

@media (min-width: 1200px){
    .mainout{width: 1220px; margin:0px auto; background: #fff;}
    .contbt{ font:26px/1.5 "\5FAE\8F6F\96C5\9ED1",黑体,"\5B8B\4F53",Arial,Tahoma,Helvetica,sans-serif; width:90%; margin:0px auto;padding:40px 0px 20px 0px}
    .continfo{width:90%; margin:0px auto; }
    .contfont{font:12pt/1.5 宋体,Arial,Tahoma,Helvetica,sans-serif;}
    .zfcontain{ max-width: 100%;padding:0px; box-sizing: border-box}
    .navbar-nav{ width: 1200px; margin: 0px auto}
    .zf-top{width: 1200px; margin: 0px auto; height: 130px; padding-left:30px; padding-right:30px; padding-top:3px}
    .zf-search{margin-right:60px}
    .zfcontain .navbar .navbar-collapse{ background: url("../images/m1.jpg") repeat-x;  display: flex; display:-ms-flexbox; display:-webkit-flex; width:100%; background: #0065c6}
    .header-01{ border-bottom: none}
    .navbar-expand-lg .navbar-nav{ padding-left:55px}
    .navbar-expand-lg .navbar-nav li > a{ font-size: 18px; line-height: 2.625em; padding:0px; color: #fff; font-weight: bolder}
    .navbar-expand-lg .navbar-nav li.current-menu-item > a, .navbar-expand-lg .navbar-nav li:hover > a{ color: #c1280e; font-weight: bold; z-index: 999}
    .navbar-expand-lg .navbar-nav > li.menu-item-has-children > a:after {
        height: 0px;
        z-index: -1;
        background:url("../images/m1h.jpg") repeat-x ;
    }
    .navbar-expand-lg .navbar-nav > li.menu-item-has-children:hover > a:after {
        width: calc(100% + 49px);
        height: 42px;
        transition: height .2s cubic-bezier(.25,.8,.25,1) 0s;
    }
    .navbar-expand-lg .navbar-nav li .sub-menu li a{ white-space: nowrap; color: #333; font-weight: 600; font-size:15px; padding:7px 30px}
    .navbar-expand-lg .navbar-nav li .sub-menu li a:hover{ color: #c1280e}
    .navbar-expand-lg .navbar-nav li .sub-menu{ width: auto; background:rgba(255,255,255,0.8)}
    .navbar-expand-lg .navbar-nav li .sub-menu li{ border-bottom: none}
    .zf-indexlist{ width: 1224px; margin:0px auto}
    .zf-indexlist .zf-mk2,.zf-indexlist .zf-mk3{ width: 388px;}
    .yqlj > div{ width: 1200px; margin:0px auto; height:60px; line-height: 60px; background:url("../images/bg3.jpg") center top repeat}
    .bq{ height:105px; line-height: 26px; padding-top:25px;}
    .zf-mkcon{ width:1200px; margin:auto; padding:0px;}
    .zf-mkconl{ float: left}
    .zf-mkconr{width: 910px; float: left}
    .pbbq{padding-bottom:104px;/*padding等于footer的高度*/}
    .news-index-rv2 li.newcurv2{margin-top:-1px; border-bottom:2px solid #006dd9;box-shadow:2px 0px 9px rgba(82,82,82,0.11); height:182px; -webkit-box-shadow:2px 0px 9px rgba(82,82,82,0.11);-moz-box-shadow:2px 0px 9px rgba(82,82,82,0.11); padding-top:5px; margin-bottom:10px; height:150px;}
    .news-index-rv2 li.newcurv2:first-child{ margin-top:0px;}
    .news-index-rv2 li.newcurv2 h3{ width:100%; height:62px; margin-bottom:0px}
    .news-index-rv2 li.newcurv2 h3 a{ color:#343434; font-size:22px; width:100%; padding:0px 23px; line-height:62px; height:62px; font-weight:normal;overflow: hidden; text-overflow:ellipsis; white-space:nowrap; }
    .news-index-rv2 li.newcurv2 h3 i{ display:none}
    .news-index-rv2 li.newcurv2 h4{ position: relative}
    .news-index-rv2 li.newcurv2 h4 a{ display:block; position:relative; float:left; width:calc(100% - 50px); height:56px; margin-left:23px; font-size:16px; color:#9c9c9c; padding-top:10px; padding-bottom:10px; padding-right:130px; line-height:28px; border-top:1px solid #e8e8e8; font-weight: normal; text-align: left}
    .news-index-rv2 li.newcurv2 h4 i{ position: absolute; right:15px; top:10px; display:block; float:right; width:80px; text-align:center; font-size:18px; color:#006dd9; font-weight: normal;line-height:1.5em;}
    .news-index-rv2 li.newcurv2 h4 i b{ font-size:36px; line-height:1em; font-weight:bolder;}
    .news-index-rv2 li.newcurv2 h4{display:block; height:60px; }
    .toolsmain div a{margin:17px}
    .toolsmm{ width:1200px; margin:0px auto; float:none}
    .yqljmain{padding-left:80px}
    /*index-top-news 20210716*/
    .news-index-rv2 li.newcurv2{height:86px;margin-bottom: 0px}
    .news-index-rv2 li.newcurv2 h3{display:none}
    .news-index-rv2 li.newcurv2 h4 a{ border-top:none;color:#343434; font-size:22px; padding-right: 80px;text-align:justify;text-justify:inter-ideograph;}
    .news-index-rv2 li.newcurv2 h4 a br{ display: none}
    .zf-redbg a{color:#fff; text-underline: none}
    .zf-greybg a{color: #333; text-underline: none}

    .toolsmain div a{margin:17px}
    .toolsmm{ width:1200px; margin:0px auto; float:none}
    .yqljmain{padding-left:80px}
    .yqlj > div > span{height: 60px!important;}
    .zf-mk4.zf-mpic .tabc_css div{display: flex; display: -webkit-flex; justify-content: center;}
}
@media (min-width: 992px){
    .zfcontain .navbar-expand-lg {
        flex-flow:row wrap;
    }
}
@media (min-width: 600px) {
    .zf-mpic #carouselc ul li {
        width: 250px;
    }
}
@media (max-width: 1200px){
    .zf-search{ display: none;}
    .access-btn{display:block}
    .zf-mk1{ width: 100%}.zfcontain
    .zf-mk1 .zf-mk1l,.zf-mk1 .zf-mk1r{ width: 100%}
    .zf-mk1l img{ width: 100%}
    .zf-mk1 .zf-mk1l{ height: auto; margin-bottom: 20px}
    .zf-mk1 .zf-mk1r{ height:auto}
    .zf-mk1{ margin-bottom: 5px}
    .yqlj, .yqlj > div{ padding: 10px 3px; line-height: 25px}
    .bq{ padding: 10px 5px}
    .navbar-expand-lg .navbar-nav{flex-direction:column}
    .navbar-expand-lg .navbar-toggler{ display: block}
    .zf-mkconl{ width:100%}
    .zf-mkconr > div li{ text-align:left; margin-bottom:10px}
    .zf-mkconr > div li a{  line-height:30px; color: #333; font-size: 16px;}
    .zf-mkconr > div li a:hover{color:#c1280e;}
    .zf-mkconr > div li i{ font-weight:normal; font-style:normal;line-height:30px; font-size: 16px; color: #999;}
    .mklist{ background:#fff; padding:10px 10px 30px 0px}
    .mklist ul{ padding-left:10px}
    .contbt{ line-height:1.5em; font-size:1.2em; padding:10px}
    .continfo{ line-height:1.2em; padding:10px}
    .zf-mkconr > div{ background:#fff; padding:10px 0px}
    .navbar-brand img{ width:160px}
    .zf-indexlist .zf-mk2, .zf-indexlist .zf-mk3,.zf-indexlist .zf-mk4{ height:auto}
    .tp-banner-container{ width: 100%!important;}
    .zf-query > div{ width:100%;}
    .zf-query > div > label{ width:30%;}
    .zf-query > div > input,.zf-query > div > select{ width:70%;}
    .zf-query > div.zf-querybtn{ width:100%;}
    .zf-mkconr > div li a{overflow: hidden;text-overflow:ellipsis;white-space:nowrap;}
    .yqljmain div{ width:50%;}
.navbar .navbar-collapse,.navbar .navbar-nav li .sub-menu{display: none}
    .navbar-collapse,ul .sub-menu{display: none}
    li.menu-item-has-children.inmm span{display: none!important}
    li.menu-item-has-children span.submenu-toggler *{line-height: 38px}
    .header-01 .zfcontain{ max-width: 100%;padding:0px 25px 0px 25px}
.zf-top {height: 52px}
.navbar.navbar-expand-lg .navbar-toggler{top:24px}
.zf-mkconr .contfont img{max-width:99%; height: auto!important; }
}
@media (max-width: 767px){
    .access-btn{display:block}
    .zf-query > div{ padding:10px}
    .zf-query > div > label{ width:36%;}
    .zf-query > div > input,.zf-query > div > select{ width:64%;}
    .yqljmain div{ width:100%; padding:15px 0px 0px 10px;}
    .zf-mk1 .zf-mk1l{width: 100%}
	    .zf-mpic .tabc_css a{margin:18px 0px 0px 9px; width:135px;}
    .zf-mpic .tabc_css a:last-of-type{margin-bottom: 15px}
}
@media (min-width: 400px) and (max-width: 576px){
.footerbqv2 .row dd{width:50%!important}
}
@media (max-width: 420px) {
 .tp-bullets {bottom: -3px !important;}
.zf-mk2 > ul li a, .zf-mk4 > ul li a{overflow: hidden}
.footerbqv2 .row{ max-height:333px; overflow:hidden}
}
/**jingjiren20210622
@media (min-width: 1200px){
.zfcontain .navbar .navbar-collapse{background: url("../images/m01.gif") repeat-x}
}
.zf-redbg{background:#bb3a30}
.zf-indexlist .zf-mk2 h2 b{background:url("../images/jm.gif") 17px center no-repeat}
.zhttabcur,.zf-bluebg,.tabc_css a:hover{background-color:#407df8}
**/
.navbar-expand-lg .navbar-nav li{margin:0px 0px 0px 45px}

.contfont a{color:#0373c6!important;  text-decoration: underline!important}
.contfont a:hover{color:#c1280e!important}

.hydw{padding:0px 15px; box-sizing: border-box; width: 100%}
.hydwmain{width:100%; height:160px; overflow: hidden;background:url("../images/hydw.jpg") no-repeat;padding:15px 0px; box-sizing: border-box}
.hymarquee{height: auto; overflow:hidden; width:100%;}
.hymarquee p{padding:0px; margin:0px; display: block; clear: both; text-align: center;width: 100%; height: 40px; margin-bottom:5px;  line-height: 40px; color: #7af7f3; font-size:20px; font-weight:bold;}
.hymarquee span{ display: inline-block; float: left; width: 33.33333%; height: 50px; padding:0px 15px; box-sizing: border-box; text-align: center;line-height: 1.2em; font-weight: bold; color: #fff; font-size: 16px}
.hydw .footerlinks i{background:url("../images/d5.gif") 10px center no-repeat}
@media (max-width: 1220px) {
.hymarquee span{ width: 50%; }
}
@media (max-width: 800px) {
.hymarquee span{ width: 100%; }
}




