﻿/* 注意：以下长度用em换算，1em=10px。特别注意文字大小，父子层级会继承，所以不要在div中定义字体大小，只能用span修改字体。

------------------------------------------------------------------------------------------------------ *//* 全局样式

-------------------------------------------------------------- */
html, body, a, p, span, ul, img
{
    padding: 0;
    margin: 0;
    list-style: none;
    border: none;
    font-size: 14px;
    font-family: "Microsoft YaHei","Arial";
    color: #666;
}
p
{
    line-height: 25px;
}
img
{
    border: none;
    vertical-align: middle;
}
td
{
    vertical-align: center;
    font-size: 14px;
}
*
{
    margin: 0;
    padding: 0;
}
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td, img
{
    border: medium none;
    margin: 0;
    padding: 0;
}
body, button, input, select, textarea
{
    outline: none;
}
.body
{
    background: #fff;
}
.nbody
{
    background: #efefef;
}
ul, ol, li
{
    list-style: none;
}
img
{
    border: 0;
}
table, table tr, table td
{
    border: solid 1px #777;
}
html, body
{
    height: auto;
    margin: 0 auto;
}
.hide
{
    display: none;
}
.clear
{
    clear: both;
}
input, textarea
{
    font-family: "Microsoft YaHei","Arial";
}
h1, h2, h3, h4, h5, h6
{
    font-weight: bold;
}
h1
{
    font-size: 3em;
    line-height: 1;
    margin: 0;
    padding: 0;
}
h2
{
    font-size: 2em;
    margin: 0;
    padding: 0;
}
h3
{
    font-size: 1.5em;
    line-height: 1;
    margin: 0;
    padding: 0;
}
h4
{
    font-size: 1.2em;
    line-height: 1.25;
    margin: 0;
    padding: 0;
}
h5
{
    font-size: 1em;
    margin: 0;
    padding: 0;
}
h6
{
    font-size: 1em;
}
body
{
    background: #fff;
}/* 页面基本元素

-------------------------------------------------------------- *//* 链接样式 */
a
{
    text-decoration: none;
}
a:visited
{
    text-decoration: none;
}
a:hover
{
    text-decoration: none;
}/* 常用元素 */
.clear
{
    clear: both;
    font-size: 1px;
    line-height: 0;
    height: 0;
}/* 层浮动 */
.left
{
    float: left;
}
.right
{
    float: right;
}
.center
{
    margin: 0 auto;
}/* 文字对齐 */
.tleft
{
    text-align: left;
}
.tright
{
    text-align: right;
}
.tcenter
{
    text-align: center;
}
img
{
    webkit-transition: -webkit-transform .75s cubic-bezier(.19,1,.22,1);
    transition: -webkit-transform .75s cubic-bezier(.19,1,.22,1);
    transition: transform .75s cubic-bezier(.19,1,.22,1);
    transition: transform .75s cubic-bezier(.19,1,.22,1),-webkit-transform .75s cubic-bezier(.19,1,.22,1);
}/* top

-------------------------------------------------------------- */
.header
{
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 999;
    top: 0;
    background: #fff;
    padding: 0 1%;
}
.logo
{
    overflow: hidden;
    padding: 15.5px 0;
}
.cnen
{
    float: right;
    position: relative;
    padding-left: 50px;
}
.cnen:before
{
    content: "";
    position: absolute;
    width: 1px;
    height: 18px;
    background: #9aafd5;
    top: 41px;
    left: 0;
}
.cnen .en
{
    font-size: 16px;
    font-family: Arial;
    color: #000;
    line-height: 100px;
    padding: 0 10px;
    position: relative;
}
.cnen .en a
{
    font-size: 16px;
    font-family: Arial;
    color: #000;
}
.cnen .cn
{
    font-size: 16px;
    color: #000;
    line-height: 100px;
    position: relative;
    padding: 0 10px;
}
.cnen .cn a
{
    font-size: 16px;
    color: #000;
}
.cnen .cn:before
{
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background: #023797;
    bottom: 26px;
}
.cnen .en:after
{
    content: "";
    position: absolute;
    width: 6px;
    height: 2px;
    background: #9aafd5;
    left: -3px;
    bottom: 49px;
}
.small
{
    box-shadow: 0 2px 3px rgba(0,0,0,.3);
    -moz-box-shadow: 0 2px 3px rgba(0,0,0,.3);
    -webkit-box-shadow: 0 2px 3px rgba(0,0,0,.3);
}/* nav
-------------------------------------------------------------- */
.menu, .menu ul
{
    list-style: none;
    padding: 0;
}
.menu>li
{
    position: relative;
    display: inline-block;
    outline: 0;
}
.submenu
{
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 0;
    overflow: hidden;/* IE8 needs this */
    overflow: hidden\0/!important;
    max-height: 0;/* A .submenu should be only revealed when hovering the .menu */
    pointer-events: none;
}
.menu>li:hover .submenu, .menu>li:focus .submenu
{
    pointer-events: auto;
    z-index: 10;
    max-height: 2000px;
    -webkit-transition: none;
    -moz-transition: none;
}/* Default

 ================================================================= */
.submenu li
{
    opacity: 0;
    -webkit-transition: opacity .4s,-webkit-transform .6s,max-height .6s;
    -moz-transition: opacity .4s,-moz-transform .6s,max-height .6s;
    -ms-transition: opacity .4s,-ms-transform .6s,max-height .6s;
    -o-transition: opacity .4s,-o-transform .6s,max-height .6s;
    transition: opacity .4s,transform .6s,max-height .6s;
}
.menu>li:hover .submenu li, .menu>li:focus .submenu li
{
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}/* Shield

 ================================================================= */
.shield
{
    overflow: visible;
    -webkit-perspective: 400px;
    -moz-perspective: 400px;
    -ms-perspective: 400px;
    -o-perspective: 400px;
    perspective: 400px;
}
.shield li
{
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition-timing-function: cubic-bezier(0,.35,.5,1.7);
    -moz-transition-timing-function: cubic-bezier(0,.35,.5,1.7);
    -ms-transition-timing-function: cubic-bezier(0,.35,.5,1.7);
    -o-transition-timing-function: cubic-bezier(0,.35,.5,1.7);
    transition-timing-function: cubic-bezier(0,.35,.5,1.7);
}
.nav
{
    text-align: right;
    margin-right: 12px;
}
.nav>ul
{
    display: inline-block;
    margin: 0;
}
.nav .menu>li
{
    float: left;
    text-align: center;
    line-height: 100px;
    padding: 0 45px;
}
.nav .menu>li a
{
    color: #000;
    font-size: 17px;
    display: block;
    line-height: 100px;
    position: relative;
    -webkit-transition: all .6s cubic-bezier(.215,.61,.355,1) 0s;
    transition: all .6s cubic-bezier(.215,.61,.355,1) 0s;
}
.nav .menu>li:hover a, .nav .menu>li.active a
{
    font-weight: bold;
}
.nav .menu>li .submenu
{
    width: 100%;
}
.nav .menu>li .submenu li
{
    width: 100%;
    height: 30px;
    line-height: 30px;
    background: #0aa8d5;
    text-align: center;
    border-top: solid 1px #fff;
}
.nav .menu>li .submenu li a
{
    display: block;
    color: #fff;
    background: none;
    font-size: 14px;
    padding: 0;
    line-height: 30px;
}
.nav .menu>li .submenu li:hover
{
    background: #ee8544;
}
.nav .menu>li.current a:after
{
    width: 100%;
}/* cont
-------------------------------------------------------------- */
.cont
{
    width: 1400px;
    overflow: hidden;
    margin: auto;
}
.cont1
{
    width: 1400px;
    height: auto;
    margin: auto;
}/* banner

-------------------------------------------------------------- */
.banner
{
    width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
    margin-top: 100px;
}
.bannermore
{
    width: 100px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border-left: solid 1px rgba(132,132,132,.2);
    z-index: 99;
}
.bannermore img
{
    position: absolute;
    top: 50%;
    margin-top: -50px;
    right: 0;
}
.mouse-index
{
    position: absolute;
    bottom: 58px;
    right: 4%;
    width: 25px;
    z-index: 999;
}
.mouse
{
    width: 47px;
    overflow: hidden;
    position: relative;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
    -webkit-animation: scroll 1s infinite alternate;
    animation: scroll 1s infinite alternate;
    margin-top: 10px;
}
.mouse-index p
{
    width: 20px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    margin: auto;
    background-color: #0ba8d5;
    font-weight: bold;
}
@-webkit-keyframes scroll
{
    100%
    {
        -webkit-transform: translate(-50%,8px);
        transform: translate(-50%,8px);
    }
}
@keyframes scroll
{
    100%
    {
        -webkit-transform: translate(-50%,8px);
        transform: translate(-50%,8px);
    }
}
.rslides
{
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}
.rslides li
{
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
}
.rslides li:first-child
{
    position: relative;
    display: block;
    float: left;
}
.rslides img
{
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0;
}
.rslides
{
    margin: 0 auto 40px;
}
#slider2, #slider3
{
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 0 auto;
}
.rslides_tabs
{
    width: 26px;
    padding: 0;
    font-size: 18px;
    list-style: none;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    margin-top: -93px;
    z-index: 99;
    display: inline-block;
    right: 4%;
}
.rslides_tabs:after
{
    content: "";
    width: 27px;
    height: 163px;
    background: url(../png/zw28gy.png) no-repeat center;
    position: absolute;
    top: 10px;
    right: -35px;
}
.rslides_tabs li
{
    float: left;
    width: 26px;
    height: 26px;
    margin: 7px 0;
}
.rslides_tabs li:first-child
{
    margin-top: 0;
}
.rslides_tabs li:last-child
{
    margin-bottom: 0;
}
.rslides_tabs a
{
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    position: relative;
}
.rslides_tabs li a:before
{
    content: "0";
}
.rslides_tabs li:first-child
{
    margin-left: 0;
}
.events
{
    list-style: none;
}
.callbacks_container
{
    margin-bottom: 50px;
    position: relative;
    float: left;
    width: 100%;
}
.callbacks
{
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}
.callbacks li
{
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}
.callbacks img
{
    display: block;
    position: relative;
    z-index: 1;
    height: auto;
    width: 100%;
    border: 0;
}
.callbacks .caption
{
    display: block;
    position: absolute;
    z-index: 2;
    font-size: 20px;
    text-shadow: none;
    color: #fff;
    background: #000;
    background: rgba(0,0,0,.8);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 20px;
    margin: 0;
    max-width: none;
}
.rslides_nav
{
    position: absolute;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    top: 50%;
    z-index: 3;
    text-indent: -9999px;
    overflow: hidden;
    text-decoration: none;
    height: 10px;
    width: 19px;
    z-index: 100;
    right: 4%;
}
.banner .prev
{
    background: url(../png/dki6r9.png) no-repeat center;
    margin-top: -135px;
    z-index: 100;
}
.banner .next
{
    background: url(../png/amsa34.png) no-repeat center;
    margin-top: 123px;
    z-index: 100;
}
#slider3-pager a
{
    display: inline-block;
}
#slider3-pager img
{
    float: left;
}
#slider3-pager .rslides_here a
{
    background: transparent;
    box-shadow: 0 0 0 2px #666;
}
#slider3-pager a
{
    padding: 0;
}
@media screen and (max-width: 600px)
{
    .callbacks_nav
    {
        top: 47%;
    }
}/*banner*//* tit

-------------------------------------------------------------- */
.tit
{
    width: 100%;
    overflow: hidden;
}
.tit h3
{
    width: 100%;
    overflow: hidden;
    font-size: 40px;
    color: #343434;
    line-height: 50px;
    text-align: center;
}
.tit h3 a
{
    font-size: 40px;
    color: #343434;
}
.tit p
{
    width: 100%;
    overflow: hidden;
    font-size: 17px;
    color: #a3a3a3;
    line-height: 30px;
    font-family: Arial;
    text-transform: uppercase;
    text-align: center;
    margin-top: 6px;
}
.more
{
    overflow: hidden;
}
.more a
{
    width: 156px;
    height: 44px;
    display: block;
    color: #0066ce;
    line-height: 44px;
    text-align: center;
    border: solid 1px #0066ce;
    border-radius: 25px;
}/* top
-------------------------------------------------------------- */
.top
{
    width: 100%;
    overflow: hidden;
    background: url(../jpg/syi13t.jpg) no-repeat top center;
    background-size: cover;
    padding: 32px 0;
}
.topnr .topnrlf
{
    width: 20%;
    overflow: hidden;
    font-size: 20px;
    color: #343434;
    line-height: 30px;
}
.topnr .topnrrt
{
    width: 80%;
    overflow: hidden;
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    text-align: right;
}/* contact
-------------------------------------------------------------- */
.contact
{
    height: 80px;
    background: #2069af url(../png/bcabnz.png) no-repeat 44px center;
    padding-left: 116px;
    color: #fff;
    line-height: 80px;
    font-size: 22px;
    margin-top: -40px;
    position: relative;
    z-index: 99;
}
.contact a
{
    color: #fff;
    font-size: 22px;
}
.contact .dh
{
    width: 80px;
    height: 80px;
    background: #50c861 url(../png/gkdil9.png) no-repeat center;
}/* pro
-------------------------------------------------------------- */
.pro
{
    width: 100%;
    overflow: hidden;
    padding-top: 155px;
}
.pronr
{
    width: 100%;
    height: 860px;
    overflow: hidden;
    position: relative;
}
.yyhynr
{
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: 40px;
    background: url(../jpg/canrj6.jpg) no-repeat top center;
    background-size: cover;
}
.yyhynr dl
{
    width: 20%;
    height: 100%;
    overflow: hidden;
    float: left;
    margin-bottom: 0;
}
.yyhynr dl:nth-child(2n+1)
{
    background: rgba(0,0,0,.2);
}
.yyhynr dl dt
{
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-top: 290px;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.yyhynr dl dd
{
    width: 100%;
    overflow: hidden;
    margin-top: 46px;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.yyhynr dl dd h4
{
    width: 100%;
    overflow: hidden;
    font-size: 22px;
    color: #fff;
    margin: 0;
    line-height: 30px;
    text-align: center;
}
.yyhynr dl dd p
{
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    color: #fff;
    font-family: Arial;
    text-align: center;
}
.yyhynr dl dd hr
{
    width: 42px;
    border: none;
    border-bottom: solid 2px #fff;
    margin: 40px auto 0;
}
.yyhynr dl dd .proms
{
    width: 100%;
    overflow: hidden;
    font-size: 15px;
    color: #fff;
    line-height: 30px;
    padding: 0 6%;
    margin-top: 52px;
    opacity: 0;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.yyhynr dl dd .proicon
{
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-top: 92px;
    opacity: 0;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.yyhynr dl:first-child:hover
{
    background: url(../jpg/jqh6n4.jpg) no-repeat 100% 100%;
    background-size: cover;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.yyhynr dl:nth-child(2):hover
{
    background: url(../jpg/ldxlfk.jpg) no-repeat 100% 100%;
    background-size: cover;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.yyhynr dl:nth-child(3):hover
{
    background: url(../jpg/8ov9l5.jpg) no-repeat 100% 100%;
    background-size: cover;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.yyhynr dl:nth-child(4):hover
{
    background: url(../jpg/f2mlkk.jpg) no-repeat 100% 100%;
    background-size: cover;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.yyhynr dl:nth-child(5):hover
{
    background: url(../jpg/vf084f.jpg) no-repeat 100% 100%;
    background-size: cover;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.yyhynr dl:hover dt img
{
    display: none;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.yyhynr dl:hover dt
{
    margin-top: 230px;
}
.yyhynr dl:hover dd
{
    margin-top: 0;
}
.yyhynr dl:hover dd h4
{
    font-size: 30px;
    line-height: 40px;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.yyhynr dl:hover dd .proms, .yyhynr dl:hover dd .proicon
{
    opacity: 1;
}/* about
-------------------------------------------------------------- */
.about
{
    margin-top: 156px;
}
.about .aboutlf, .about .aboutrt
{
    padding: 0;
}
.about .aboutlf .aboutimg
{
    width: 100%;
    overflow: hidden;
}
.about .aboutlf .aboutimg img
{
    max-width: 100%;
    height: auto;
}
.aboutrt .aboutnr
{
    width: 100%;
    overflow: hidden;
    padding: 0 0 0 92px;
    font-size: 15px;
    color: #585858;
    line-height: 30px;
    margin-bottom: 55px;
}
.aboutrt .tit
{
    margin-bottom: 22px;
}
.aboutnr p
{
    width: 100%;
    overflow: hidden;
    font-size: 15px;
    color: #585858;
    line-height: 30px;
}
.aboutrt .aboutimg
{
    width: 100%;
    overflow: hidden;
}
.aboutrt .aboutimg img
{
    max-width: 100%;
    height: auto;
}
.about .aboutrt .tit h3, .about .aboutrt .tit p
{
    text-align: left;
}
.aboutlf .aboutlist
{
    width: 100%;
    overflow: hidden;
    background: url(../jpg/6didlq.jpg) no-repeat bottom right;
    padding-top: 70px;
}
.aboutlf .aboutlist ul
{
    width: 100%;
    overflow: hidden;
}
.aboutlf .aboutlist ul li
{
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    color: #828282;
    line-height: 30px;
    margin-bottom: 17px;
    position: relative;
}
.aboutlf .aboutlist ul li a
{
    font-size: 16px;
    color: #828282;
}
.aboutlf .aboutlist ul li:hover, .aboutlf .aboutlist ul li:hover a
{
    color: #ff9415;
}
.aboutlf .aboutlist ul li:after
{
    content: "";
    position: absolute;
    width: 40px;
    height: 12px;
    background: url(../png/bcabnz.png) no-repeat center;
    left: 270px;
    top: 0;
    opacity: 0;
}
.aboutlf .aboutlist ul li:hover:after
{
    opacity: 1;
}
.aboutmore
{
    width: 100%;
    overflow: hidden;
    margin-top: 100px;
}
.aboutmore a
{
    display: block;
    width: 185px;
    height: 50px;
    line-height: 50px;
    background: #f3f3f3 url(../png/gkdil9.png) no-repeat left center;
    padding-left: 94px;
    border-radius: 25px;
    font-size: 16px;
    color: #000;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.news .schd .aboutmore a:hover, .aboutmore a:hover
{
    background-color: #ff9415;
    color: #fff;
}/* news
-------------------------------------------------------------- */
.news
{
    width: 100%;
    overflow: hidden;
    padding-bottom: 150px;
    padding-top: 180px;
    background: #fafafa;
}
.news .schd
{
    width: 38%;
    overflow: hidden;
    padding-left: 13%;
    padding-top: 115px;
}
.news .schd ul
{
    width: 100%;
    overflow: hidden;
    margin-top: 64px;
}
.news .schd ul li
{
    width: 118px;
    height: 36px;
    overflow: hidden;
    border-radius: 25px;
    line-height: 36px;
    padding-left: 45px;
    float: left;
    margin-right: 16px;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.news .schd ul li a
{
    display: block;
}
.news .schd ul li:first-child
{
    background: #fff url(../png/ignx74.png) no-repeat 20px center;
}
.news .schd ul li:nth-child(2)
{
    background: #fff url(../png/mf6wq5.png) no-repeat 20px center;
}
.news .schd ul li:hover:first-child
{
    background: #ff9415 url(../png/zstc4v.png) no-repeat 20px center;
}
.news .schd ul li:hover:nth-child(2)
{
    background: #ff9415 url(../png/jnhsvf.png) no-repeat 20px center;
}
.news .schd ul li:hover a
{
    color: #fff;
}
.news .schd .aboutmore a
{
    background-color: #fff;
}
.news .newsnr
{
    width: 62%;
    overflow: hidden;
}
.news .newsnr dl
{
    width: 100%;
    overflow: hidden;
    padding: 20px 21% 20px 20px;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.news .newsnr dl dt
{
    width: 26%;
    overflow: hidden;
    float: left;
    position: relative;
    height: 194px;
}
.news .newsnr dl dt img
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.news .newsnr dl:hover dt img
{
    transform: translate(-50%,-50%) scale(1.2);
}
.news .newsnr dl dt .newsbg
{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(246,128,47,.9) url(../png/bcabnz.png) no-repeat center;
    top: 0;
    left: 0;
    padding-top: 62px;
    opacity: 0;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}
.news .newsnr dl:hover dt .newsbg
{
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.news .newsnr dl dd
{
    width: 74%;
    overflow: hidden;
}
.news .newsnr dl dd .ddlf
{
    width: 78%;
    overflow: hidden;
    padding: 0 68px 0 32px;
    border-right: solid 1px #e5e5e5;
}
.news .newsnr dl dd .ddlf h4
{
    width: 100%;
    overflow: hidden;
    font-size: 18px;
    color: #333;
    line-height: 30px;
    margin-bottom: 12px;
    margin-top: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news .newsnr dl dd .ddlf p
{
    width: 100%;
    overflow: hidden;
    font-size: 15px;
    color: #8a8a8a;
    line-height: 30px;
}
.news .newsnr dl dd .ddlf .newsmore
{
    width: 100%;
    overflow: hidden;
    line-height: 30px;
    margin-top: 28px;
    font-size: 15px;
    color: #333;
    background: url(../png/hyid16.png) no-repeat 80px center;
}
.news .newsnr dl dd .ddrt
{
    width: 22%;
    overflow: hidden;
}
.news .newsnr dl dd .ddrt .newsdate
{
    overflow: hidden;
    float: right;
}
.news .newsnr dl dd .ddrt .newsdate span
{
    font-size: 34px;
    color: #000;
    font-family: Arial;
    font-weight: bold;
}
.news .newsnr dl dd .ddrt .newsdate p
{
    font-size: 16px;
    color: #717171;
    font-weight: bold;
}
.news .newsnr dl dd .ddrt .newsdate hr
{
    width: 28px;
    border: none;
    border-bottom: solid 1px #d7d7d7;
    margin-top: 10px;
}
.news .newsnr dl:hover
{
    background: #0aa8d5;
}
.news .newsnr dl:hover dd .ddlf h4
{
    color: #fff;
}
.news .newsnr dl:hover dd .ddlf p
{
    color: rgba(255,255,255,.6);
}
.news .newsnr dl:hover dd .ddlf .newsmore
{
    color: rgba(255,255,255,.9);
    background: url(../png/v59jxk.png) no-repeat 80px center;
}
.news .newsnr dl:hover dd .ddrt .newsdate span
{
    color: rgba(255,255,255,.9);
}
.news .newsnr dl:hover dd .ddrt .newsdate p
{
    color: rgba(255,255,255,.7);
}
.news .newsnr dl:hover dd .ddlf
{
    border-right: solid 1px #33b1d5;
}
.schd .tit h3, .schd .tit p
{
    text-align: left;
}
.schd .schdms
{
    width: 100%;
    overflow: hidden;
    margin-top: 70px;
}
.schd .schdms p
{
    width: 100%;
    overflow: hidden;
    color: #333;
    font-size: 18px;
    line-height: 30px;
}/* link
-------------------------------------------------------------- */
.link
{
    width: 100%;
    overflow: hidden;
    background: #2e2e2e;
    padding: 60px 0 30px 0;
    line-height: 35px;
    font-size: 16px;
    color: #fff;
}
.linknr
{
    line-height: 35px;
    font-size: 16px;
    color: #fff;
}
.linknr span
{
    font-size: 20px;
    color: #fff;
    font-family: Arial;
}
.link a
{
    font-size: 16px;
    color: #fff;
    margin-right: 10px;
    font-weight: normal;
}/* footer
-------------------------------------------------------------- */
.footer
{
    width: 100%;
    overflow: hidden;
    background: #2e2e2e;
    background-size: cover;
    padding-top: 34px;
    padding-bottom: 130px;
}
.footernr .blogo
{
    width: 21%;
    overflow: hidden;
    padding-right: 10px;
}
.footernr .blogo img
{
    max-width: 100%;
    height: auto;
}
.footernr .footerlf
{
    width: 62%;
    overflow: hidden;
    padding-right: 60px;
}
.footernr .footerlf ul
{
    width: 100%;
    overflow: hidden;
}
.footernr .footerlf ul li
{
    width: 20%;
    overflow: hidden;
    float: left;
}
.footernr .footerlf ul li:last-child
{
    width: 40%;
}
.footernr .footerlf ul li h4
{
    width: 100%;
    overflow: hidden;
    font-size: 18px;
    color: #fff;
    font-weight: normal;
    line-height: 30px;
    margin-bottom: 17px;
}
.footernr .footerlf ul li h4 a
{
    width: 100%;
    overflow: hidden;
    font-size: 18px;
    color: #fff;
}
.footernr .footerlf ul li hr
{
    width: 16px;
    border: none;
    border-bottom: solid 2px #fff;
    margin-top: 4px;
    margin-bottom: 13px;
}
.footernr .footerlf ul li p
{
    width: 100%;
    overflow: hidden;
    font-size: 15px;
    color: rgba(255,255,255,.5);
    line-height: 30px;
}
.footernr .footerlf ul li p a
{
    font-size: 15px;
    color: rgba(255,255,255,.5);
}
.footernr .footerrt
{
    width: 17%;
    overflow: hidden;
}
.footernr .footerrt dl
{
    overflow: hidden;
    float: right;
}
.footernr .footerrt dl dt, .footernr .footerrt dl dd
{
    overflow: hidden;
    text-align: center;
}
.footernr .footerrt dl dd
{
    line-height: 30px;
    color: #6c6a6a;
    margin-top: 4px;
}
.bnav
{
    width: 100%;
    overflow: hidden;
    padding-top: 36px;
    border-top: solid 1px #545454;
    margin-top: 20px;
}
.bnav a
{
    font-size: 15px;
    color: rgba(255,255,255,.6);
    margin-right: 72px;
}
.footerrt .bmap
{
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    color: #fff;
    margin-top: 25px;
    margin-top: 25px;
}
.footerrt .bmap a
{
    width: 100%;
    height: 54px;
    line-height: 54px;
    border: solid 1px #c6c6c6;
    display: block;
    font-size: 16px;
    color: #fff;
    padding-left: 32px;
    position: relative;
    float: right;
}
.footerrt .bmap a:after
{
    content: "+";
    position: absolute;
    right: 20px;
    color: #c6c6c6;
    font-size: 32px;
    font-weight: normal;
    top: 0;
}
.bot
{
    width: 100%;
    overflow: hidden;
    background: #2e2e2e;
    padding: 45px 0;
    border-top: solid 1px rgba(82,82,82,.6);
}
.botnr .botlf, .botnr .botrt
{
    padding: 0;
    line-height: 30px;
    color: #fff;
}
.botnr .botrt
{
    text-align: right;
}
.bot a
{
    color: #fff;
}/* banner_n
-------------------------------------------------------------- */
.banner_n
{
    width: 100%;
    height: 535px;
    background: url(/skin/images/aboutban.jpg) no-repeat top center;
    background-size: cover;
    margin-top: 100px;
    position: relative;
}
@media(max-width: 1680px)
{
    .banner_n
    {
        height: 438px;
    }
}
@media(max-width: 1440px)
{
    .banner_n
    {
        height: 375px;
    }
}
@media(max-width: 1360px)
{
    .banner_n
    {
        height: 354px;
    }
}
@media(max-width: 1280px)
{
    .banner_n
    {
        height: 333px;
    }
}
@media(max-width: 1152px)
{
    .banner_n
    {
        height: 300px;
    }
}
@media(max-width: 1024px)
{
    .banner_n
    {
        height: 267px;
    }
}
@media(max-width: 991px)
{
    .banner_n
    {
        height: 258px;
    }
}
@media(max-width: 768px)
{
    .banner_n
    {
        height: 200px;
    }
}
@media(max-width: 640px)
{
    .banner_n
    {
        height: 167px;
    }
}
@media(max-width: 540px)
{
    .banner_n
    {
        height: 141px;
    }
}/* position
-------------------------------------------------------------- */
.position
{
    width: 100%;
    overflow: hidden;
    border-bottom: solid 1px #e6e6e6;
}
.positionnr .positionrt
{
    text-align: right;
    font-size: 16px;
    color: #343434;
    line-height: 30px;
    padding: 35px 0 35px 41px;
    background: url(../png/wnpxyy.png) no-repeat left center;
}
.positionnr .positionrt a
{
    font-size: 16px;
    color: #343434;
}
.position a:hover
{
    color: #0aa8d5;
}
.nmenu
{
    overflow: hidden;
}
.nmenu ul
{
    overflow: hidden;
    margin: 0;
}
.nmenu ul li
{
    overflow: hidden;
    float: left;
    line-height: 100px;
    margin-right: 52px;
    text-align: center;
}
.nmenu ul li a
{
    font-size: 16px;
    color: #000;
    display: block;
    position: relative;
}
.nmenu ul li a:after
{
    content: "";
    width: 0;
    height: 2px;
    background: #0aa8d5;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all .6s cubic-bezier(.215,.61,.355,1) 0s;
    transition: all .6s cubic-bezier(.215,.61,.355,1) 0s;
}
.nmenu ul li:hover a:after, .nmenu ul li.active a:after
{
    width: 100%;
}/* ntit
-------------------------------------------------------------- */
.ntit
{
    width: 100%;
    overflow: hidden;
}
.ntit .ntiten
{
    width: 100%;
    overflow: hidden;
    font-family: Arial;
    color: #8d8d8d;
    text-transform: uppercase;
}
.ntit .ntitcn
{
    width: 100%;
    overflow: hidden;
    font-size: 32px;
    color: #343434;
    line-height: 40px;
    margin-top: 7px;
}/* nabout
-------------------------------------------------------------- */
.nabout
{
    margin-top: 22px;/*72px*/
    margin-bottom: 100px;
}
.nabout h3
{
    width: 100%;
    overflow: hidden;
    font-size: 36px;
    color: #343434;
    text-align: center;
    line-height: 45px;
}
.naboutmenu
{
    width: 100%;
    overflow: hidden;
    text-align: center;
}
.naboutmenu ul
{
    overflow: hidden;
    display: inline-block;
}
.naboutmenu ul li
{
    overflow: hidden;
    float: left;
    margin: 0 20px;
    line-height: 30px;
}
.naboutmenu ul li a
{
    font-size: 16px;
    color: #343434;
    font-weight: bold;
}
.naboutmenu ul li a:hover, .naboutmenu ul li.active a
{
    color: #0aa8d5;
}
.nabout .naboutnr
{
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    font-size: 16px;
    line-height: 35px;
    color: #585858;
}
.nabout .naboutnr p
{
    overflow: hidden;
    font-size: 16px;
    line-height: 35px;
    color: #585858;
}
.nabout .naboutnr img
{
    max-width: 100%;
    height: auto;
}
.nabout .naboutnr table
{
    width: 100%;
}
.nabout .naboutnr table tr td
{
    padding: 0 5px;
}/* nqywh
-------------------------------------------------------------- */
.nqywh
{
    width: 100%;
    overflow: hidden;
    margin-top: 28px;
}
.nqywh dl
{
    width: 100%;
    overflow: hidden;
    background: #f2f2f2;
    padding: 0 30px;
    margin: 26px 0;
}
.nqywh dl dt
{
    width: 12%;
    overflow: hidden;
    padding: 37px 0;
    float: left;
    font-size: 25px;
    color: #313131;
    line-height: 35px;
    position: relative;
}
.nqywh dl dt:after
{
    content: "";
    width: 1px;
    height: 60px;
    background: #d5d5d5;
    position: absolute;
    top: 24px;
    right: 0;
}
.nqywh dl dd
{
    width: 87%;
    overflow: hidden;
    padding: 37px 0 37px 40px;
    float: left;
    font-size: 16px;
    color: #313131;
    line-height: 35px;
}
.nqywh dl dd p
{
    font-size: 16px;
    color: #313131;
    line-height: 35px;
}
.nqywh dl:hover
{
    background: #0aa8d5;
}
.nqywh dl:hover dt
{
    color: #fff;
}
.nqywh dl:hover dd, .nqywh dl:hover dd p
{
    color: rgba(255,255,255,.9);
}/* nhonor
-------------------------------------------------------------- */
.nhonor
{
    margin-top: 60px;
    margin-bottom: 60px;
}
.nhonor h3
{
    width: 100%;
    overflow: hidden;
    text-align: center;
    font-size: 36px;
    color: #343434;
    line-height: 45px;
}
.nhonornr
{
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}
.nhonornr ul
{
    width: 100%;
    overflow: hidden;
}
.nhonornr ul li
{
    width: 24%;
    overflow: hidden;
    margin: 30px .5%;
    float: left;
    text-align: center;
    position: relative;
    height: 472px;
    border: solid 1px #e6e6e6;
}
.nhonornr ul li img
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: auto;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.nhonornr ul li:hover img
{
    transform: translate(-50%,-50%) scale(1.05);
}
.nhonornr ul li:nth-child(3n)
{
    margin-right: 0;
}
.nhonornr ul li img
{
    max-width: 100%;
    height: auto;
}
.nhzhbnr
{
    margin-top: 45px;
}
.nhzhbnr, .nhzhbnr ul
{
    width: 100%;
    overflow: hidden;
}
.nhzhbnr ul li
{
    width: 24%;
    overflow: hidden;
    margin: 15px .5%;
    float: left;
    text-align: center;
    position: relative;
    height: 135px;
    border: solid 1px #e6e6e6;
}
.nhzhbnr ul li img
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: auto;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.nhzhbnr ul li:hover img
{
    transform: translate(-50%,-50%) scale(1.05);
}/* ncase
-------------------------------------------------------------- */
.ncase
{
    margin-top: 45px;
    margin-bottom: 45px;
}
.ncase .ncasenr
{
    width: 100%;
    overflow: hidden;
    margin-top: 25px;
}
.ncase .ncasenr dl
{
    width: 375px;
    overflow: hidden;
    float: left;
    margin-right: 37.5px;
}
.ncase .ncasenr dl
{
    width: 375px;
    overflow: hidden;
    float: left;
    margin-right: 37.5px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.ncase .ncasenrr dl dt, .ncase .ncasenr dl dd
{
    width: 100%;
    overflow: hidden;
    text-align: center;
}
.ncase .ncasenr dl dd
{
    font-size: 16px;
    color: #000;
    line-height: 30px;
    padding: 12px 0;
    background: #ebebeb;
}
.ncase .ncasenr dl:nth-child(3n)
{
    margin-right: 0;
}/* npro
-------------------------------------------------------------- */
.bg
{
    background: #f9f9f9;
}
.npro
{
    margin-top: 60px;
    margin-bottom: 60px;
}
.npro dl
{
    width: 440px;
    overflow: hidden;
    float: left;
    margin: 30px 40px 30px 0;
    background: #f5f5f5;
    border-radius: 10px;
}
.npro dl:nth-child(3n)
{
    margin-right: 0;
}
.npro dl dt, .npro dl dd
{
    width: 100%;
    overflow: hidden;
}
.npro dl dt
{
    position: relative;
    height: 331px;
    border-radius: 0 0 10px 10px;
}
.npro dl dd
{
    font-size: 22px;
    color: #0aa8d5;
    font-weight: bold;
    line-height: 35px;
    padding: 28px 30px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.npro dl dt img
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: auto;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.npro dl:hover dt img
{
    transform: translate(-50%,-50%) scale(1.15);
}
.npro dl:hover
{
    background: #0aa8d5;
}
.npro dl:hover dd
{
    color: #fff;
}
.npro .nproimg
{
    width: 37%;
    overflow: hidden;
    background: #fff;
    text-align: center;
    border: solid 1px #e0e0e0;
}
.npro .nproimg img
{
    max-width: 100%;
    height: auto;
}
.npro h1
{
    width: 100%;
    overflow: hidden;
    color: #3c3c3c;
    font-size: 28px;
    line-height: 40px;
    font-weight: normal;
    text-align: center;
}
.nprofbnr
{
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    margin-top: 40px;
}
.nprofbnr p
{
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
}
.nprofbnr img
{
    max-width: 100%;
    height: auto;
}
.nprofbnr video
{
    max-width: 100%;
    height: auto;
}
.nprofbnr iframe
{
    max-width: 100%;
}
.nprofbnr ul
{
    width: 100%;
    overflow: hidden;
}
.nprofbnr ul li
{
    width: 100%;
    overflow: hidden;
    background: #f2f2f2;
    padding: 30px;
    margin: 26px 0;
    font-size: 16px;
    color: #313131;
    line-height: 30px;
}
.nprofbnr ul li a, .nprofbnr ul li p
{
    font-size: 16px;
    color: #313131;
    line-height: 30px;
}
.nprofbnr ul li:hover
{
    background: #0aa8d5;
}
.nprofbnr ul li:hover a
{
    color: #fff;
}/* nsb
-------------------------------------------------------------- */
.nsb
{
    margin-top: 60px;
    margin-bottom: 60px;
}
.nsb .nsbnr
{
    width: 100%;
    overflow: hidden;
}
.nsb .nsbnr ul
{
    width: 100%;
    overflow: hidden;
}
.nsb .nsbnr ul li
{
    width: 664px;
    height: 453px;
    overflow: hidden;
    float: left;
    background: url(/skin/images/sbbg.jpg) no-repeat top left;
    position: relative;
    margin: 40px 72px 40px 0;
}
.nsb .nsbnr ul li:nth-child(2n)
{
    margin-right: 0;
}
.nsb .nsbnr ul li .nsbimg
{
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
}
.nsb .nsbnr ul li .nsbimg img
{
    max-width: 100%;
    height: auto;
}
.nsb .nsbnr ul li:hover .nsbimg img
{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.nsb .nsbnr ul li .nsbtit
{
    width: 100%;
    overflow: hidden;
    font-size: 19px;
    line-height: 30px;
    color: #fff;
    position: absolute;
    left: 116px;
    bottom: 18px;
}
.nsb .nsbnr ul li .nsbmore
{
    width: 80px;
    overflow: hidden;
    line-height: 30px;
    font-size: 15px;
    color: #343434;
    line-height: 30px;
    border-bottom: solid 1px #343434;
    text-align: center;
    padding-bottom: 4px;
    position: absolute;
    right: 30px;
    bottom: 18px;
}
.nsb .nsbnr h1
{
    width: 100%;
    overflow: hidden;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
}
.nsb .nsbnr .sbfbimg
{
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-top: 30px;
}
.nsb .nsbnr .sbfbimg img
{
    max-width: 100%;
    height: auto;
}
.nsb .nsbnr .sbfbnr
{
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}
.nsb .nsbnr .sbfbnr p
{
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
}
.nsb .nsbnr .sbfbnr img
{
    max-width: 100%;
    height: auto;
}/* nnews
-------------------------------------------------------------- */
.nnews
{
    margin-top: 40px;/*60px*/
    margin-bottom: 60px;
}
.nnews dl
{
    width: 100%;
    overflow: hidden;
    margin: 35px 0;
    padding: 25px 0;
    border-bottom: solid 1px #0aa8d5;
}
.nnews dl dt
{
    width: 18%;
    overflow: hidden;
    float: left;
    position: relative;
    height: 189px;
}
.nnews dl dt img
{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.nnews dl:hover dt img
{
    transform: translate(-50%,-50%) scale(1.2);
}
.nnews dl dd
{
    width: 82%;
    overflow: hidden;
    float: right;
    padding-left: 56px;
    padding-top: 20px;
}
.nnews dl dd .nnewslf
{
    width: 82%;
    overflow: hidden;
}
.nnews dl dd .nnewsrt
{
    width: 16%;
    overflow: hidden;
    border-left: solid 1px #d2d2d2;
    padding-left: 52px;
}
.nnews dl dd .nnewstit
{
    width: 100%;
    overflow: hidden;
    font-size: 20px;
    color: #1e1e1e;
    line-height: 35px;
}
.nnews dl dd .nnewsms
{
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    color: #939393;
    margin-top: 20px;
}
.nnews dl dd hr
{
    width: 30px;
    overflow: hidden;
    border-bottom: solid 2px #084590;
    margin: 48px 0 0 0;
}
.nnews dl dd .nnewsdate
{
    width: 100%;
    overflow: hidden;
    font-size: 30px;
    line-height: 35px;
    color: #b1b1b1;
}
.nnews dl dd .nnewsyear
{
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    color: #b1b1b1;
    line-height: 25px;
}
.nnews dl dd .nnewstb
{
    margin-top: 20px;
}
.nnews dl:hover dd .nnewstit
{
    color: #0aa8d5;
}
.nnews h1
{
    width: 100%;
    overflow: hidden;
    font-size: 24px;
    color: #343434;
    font-weight: bold;
    text-align: center;
    margin: 0 0 16px 0;
    line-height: 30px;/*40px;*/
}
.nnews .fbtime
{
    width: 100%;
    overflow: hidden;
    font-size: 15px;
    line-height: 15px;/*30px*/
    color: #666;
    text-align: center;
    border-bottom: solid 1px #ebebeb;
    padding-bottom: 23px;
}
.nnews .fbnr
{
    width: 100%;
    overflow: hidden;
    margin-top: 10px;/*30px*/
    font-size: 18px;
    line-height: 35px;
    color: #333;
}
.nnews .fbnr p
{
    width: 100%;
    overflow: hidden;
    font-size: 18px;
    line-height: 30px;/*35px*/
    color: #333;
}
.nnews .fbnr img
{
    max-width: 100%;
    height: auto;
}
.edui-upload-video
{
    max-width: 650px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.fbnr video
{
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #ddd;
    max-width: 600px;
    margin: 0 auto;
}
.fbnr a
{
    width: 100%;
    overflow: hidden;
    font-size: 18px;
    line-height: 30px;
    color: #333;
}/* ncjzsnr
-------------------------------------------------------------- */
.ncjzsnr
{
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 40px;
}
.ncjzsnr ul
{
    width: 100%;
    overflow: hidden;
}
.ncjzsnr ul li
{
    width: 419px;
    overflow: hidden;
    margin-right: 71.5px;
    margin-top: 30px;
    margin-bottom: 30px;
    float: left;
}
.ncjzsnr ul li img
{
    max-width: 100%;
    height: auto;
}
.ncjzsnr ul li:nth-child(3n)
{
    margin-right: 0;
}/* ntit
-------------------------------------------------------------- */
.ntit
{
    width: 100%;
    overflow: hidden;
}
.ntit h3
{
    width: 100%;
    overflow: hidden;
    font-size: 30px;
    color: #000;
    line-height: 40px;
}
.ntit hr
{
    width: 40px;
    border: none;
    border-bottom: solid 2px #0aa8d5;
    margin-top: 20px;
}/* ncontact
-------------------------------------------------------------- */
.ncontact
{
    margin-top: 60px;
    margin-bottom: 80px;
}
.ncontact .ncontactnr
{
    width: 100%;
    overflow: hidden;
    border-top: solid 1px #d1d1d1;
    font-size: 18px;
    color: #333;
    line-height: 35px;
    padding: 40px 0 0 0;
    margin-top: 28px;
    margin-bottom: 40px;
}
.ncontact .ncontactnr p
{
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    color: #333;
    line-height: 35px;
}
.ncontact .ncontactnr p a
{
    font-size: 16px;
    color: #333;
}
.maprq
{
    margin-bottom: 40px;
}
.map
{
    height: 500px;
    overflow: hidden;
    padding: 0;
    margin-top: 30px;
}/* dede_pages

-------------------------------------------------------------- */
.pages
{
    clear: both;
    padding: 20px 0;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
}
.pages ul
{
    display: inline-block;
    margin: 0 auto;
    padding: 0;
}
.pages ul a
{
    color: #555;
    display: block;
    padding: 5px 11px;
    border: 1px solid #ddd;
    float: left;
    margin: 5px;
    font-size: 12px;
}
.pages ul a.page-num-current
{
    background: #0aa8d5;
    color: #fff;
    border: 1px solid #0aa8d5;
}
.pages ul a:hover
{
    background: #0aa8d5;
    color: #fff;
    border: 1px solid #0aa8d5;
}
.news-exp
{
    overflow: hidden;
    line-height: 30px;
    margin-top: 20px;
}
.news-exp .news-explf, .news-exp .news-exprt
{
    padding: 0;
}
.news-exp .news-explf i
{
    width: 33px;
    height: 33px;
    background: url(/skin/images/prev7.png) no-repeat center;
    border-radius: 50%;
    display: block;
    float: left;
    margin-right: 22px;
}
.news-exp .news-exprt i
{
    width: 33px;
    height: 33px;
    background: url(/skin/images/next7.png) no-repeat center;
    border-radius: 50%;
    display: block;
    float: right;
    margin-left: 22px;
}
.news-exp a
{
    width: 50%;
    float: left;
    overflow: hidden;
    font-size: 16px;
    color: #343434;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-exp a:last-child
{
    text-align: right;
}
.news-exp .news-exprt
{
    text-align: right;
}
.news-exp a:hover
{
    color: #0aa8d5;
    text-decoration: none;
}/*移动端导航*/
.a_txt, .rg
{
    display: none;
}
@media screen and (max-width: 1023px) and (min-width: 0)
{
    .nav, .tel
    {
        display: none;
    }
    .headernr
    {
        width: 98%;
    }
    .rg
    {
        display: block;
        padding-top: 34px;
        float: right;
        margin-right: 5px;
    }
    .rg a img
    {
        vertical-align: top;
    }
    .a_txt
    {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        overflow: hidden;
        z-index: 10000;
    }
    .a_txt .div1
    {
        position: absolute;
        width: 100%;
        height: 100%;
        background: #0b0d19;
        filter: alpha(opacity=0);
        opacity: 0;
        left: 0;
        top: 0;
        z-index: 1;
    }
    .a_txt .div2
    {
        position: absolute;
        width: 20%;
        left: 0;
        top: 5%;
        z-index: 100;
        text-align: center;
        filter: alpha(opacity=0);
        opacity: 0;
    }
    .a_txt .div3
    {
        position: absolute;
        width: 80%;
        right: 0;
        top: 0;
        background: #0b0d19;
        height: 100%;
        z-index: 100;
        right: -80%;
    }
    .a_txt .div3 ul
    {
        padding-left: 5%;
        padding-right: 5%;
    }
    .a_txt .div3 ul li
    {
        border-bottom: 1px solid #232530;
    }
    .a_txt .div3 ul li a
    {
        display: block;
        height: 45px;
        color: #fff;
        line-height: 45px;
        padding-left: 5%;
        font-size: 16px;
    }
    .a_txt .div3 ul li .a_js2
    {
        -webkit-transition: all 0s;
        -moz-transition: all 0s;
        transition: all 0s;
    }
    .a_txt .div3 ul li .a_js2_on
    {
        background: url(/skin/images/reduce.jpg) 95% center no-repeat;
        -webkit-transition: all 0s;
        -moz-transition: all 0s;
        transition: all 0s;
    }
    .a_txt .div3 ul li .a_txt2
    {
        display: none;
    }
    .a_txt .div3 ul li .a_txt2 a
    {
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
}
@media only screen and (min-width: 1360px) and (max-width: 1440px)
{
    .npro dl dt
    {
        height: 282px;
    }
    .nhonornr ul li
    {
        height: 404px;
    }
    .nhzhbnr ul li
    {
        height: 115px;
    }
}
@media only screen and (min-width: 1280px) and (max-width: 1359px)
{
    .npro dl dt
    {
        height: 265px;
    }
    .nhonornr ul li
    {
        height: 380px;
    }
    .nhzhbnr ul li
    {
        height: 108px;
    }
}
@media only screen and (min-width: 1152px) and (max-width: 1279px)
{
    .npro dl dt
    {
        height: 238px;
    }
    .nhonornr ul li
    {
        height: 342px;
    }
    .nhzhbnr ul li
    {
        height: 97px;
    }
}
@media only screen and (min-width: 1024px) and (max-width: 1151px)
{
    .npro dl dt
    {
        height: 212px;
    }
    .nhonornr ul li
    {
        height: 304px;
    }
    .nhzhbnr ul li
    {
        height: 86px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1023px)
{
    .npro dl dt
    {
        height: 205px;
    }
    .nhonornr ul li
    {
        height: 294px;
    }
    .nhzhbnr ul li
    {
        height: 84px;
    }
}
@media only screen and (min-width: 860px) and (max-width: 991px)
{
    .npro dl dt
    {
        height: 273px;
    }
    .nhonornr ul li
    {
        height: 333px;
    }
    .nhzhbnr ul li
    {
        height: 95px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 859px)
{
    .npro dl dt
    {
        height: 244px;
    }
    .nhonornr ul li
    {
        height: 297px;
    }
    .nhzhbnr ul li
    {
        height: 85px;
    }
}
@media only screen and (min-width: 640px) and (max-width: 767px)
{
    .npro dl dt
    {
        height: 203px;
    }
    .nhonornr ul li
    {
        height: 380px;
    }
    .nhzhbnr ul li
    {
        height: 70px;
    }
}
@media only screen and (min-width: 540px) and (max-width: 639px)
{
    .npro dl dt
    {
        height: 171px;
    }
    .nhonornr ul li
    {
        height: 320px;
    }
    .nhzhbnr ul li
    {
        height: 91px;
    }
}
@media only screen and (min-width: 425px) and (max-width: 539px)
{
    .npro dl dt
    {
        height: 135px;
    }
    .nhonornr ul li
    {
        height: 252px;
    }
    .nhzhbnr ul li
    {
        height: 71px;
    }
}
@media only screen and (min-width: 375px) and (max-width: 424px)
{
    .npro dl dt
    {
        height: 248px;
    }
    .nhonornr ul li
    {
        height: 222px;
    }
    .nhzhbnr ul li
    {
        height: 63px;
    }
}
@media only screen and (min-width: 320px) and (max-width: 374px)
{
    .npro dl dt
    {
        height: 211px;
    }
    .nhonornr ul li
    {
        height: 190px;
    }
    .nhzhbnr ul li
    {
        height: 53px;
    }
}
@media only screen and (min-width: 0) and (max-width: 319px)
{
    .npro dl dt
    {
        height: 210px;
    }
    .nhonornr ul li
    {
        height: 188px;
    }
    .nhzhbnr ul li
    {
        height: 50px;
    }
}
@media(max-width: 1600px)
{
    .nav .menu>li
    {
        padding: 0 35px;
    }
    .nqywh dl dt
    {
        font-size: 20px;
    }
}
@media(max-width: 1440px)
{
    .cont, .cont1
    {
        width: 88%;
    }
    .nav .menu>li
    {
        padding: 0 30px;
    }
    .npro dl
    {
        width: 31.333333%;
        margin: 30px 1%;
    }
    .npro dl dd
    {
        font-size: 20px;
        padding: 20px 25px;
    }
    .banner .prev
    {
        margin-top: -117px;
    }
    .banner .next
    {
        margin-top: 105px;
    }
    .news .newsnr dl dd .ddlf
    {
        padding: 0 30px 0 30px;
    }
    .naboutmenu ul li
    {
        margin: 0 10px;
    }
}
@media(max-width: 1360px)
{
    .mouse-index
    {
        bottom: 30px;
    }
    .nnews dl dd .nnewsrt
    {
        padding-left: 20px;
    }
}
@media(max-width: 1280px)
{
    .banner .prev
    {
        margin-top: -112px;
    }
    .banner .next
    {
        margin-top: 100px;
    }
    .mouse-index
    {
        bottom: 15px;
    }
    .cnen
    {
        padding-left: 30px;
    }
    .nav .menu>li
    {
        padding: 0 25px;
    }
    .news .newsnr dl dd .ddrt .newsdate span
    {
        font-size: 30px;
    }
    .news
    {
        padding-bottom: 100px;
        padding-top: 100px;
    }
    .nabout h3, .nhonor h3
    {
        font-size: 30px;
    }
    .npro dl dd
    {
        font-size: 18px;
        padding: 20px 20px;
    }
    .nqywh dl
    {
        padding: 0 20px;
    }
    .nqywh dl dt
    {
        font-size: 18px;
    }
    .footer
    {
        padding-bottom: 60px;
    }
    .footernr .footerlf
    {
        padding-right: 20px;
    }
}
@media(max-width: 1152px)
{
    .mouse
    {
        margin-top: 5px;
    }
    .mouse img
    {
        height: 25px;
    }
    .banner .prev
    {
        margin-top: -107px;
    }
    .banner .next
    {
        margin-top: 95px;
    }
    .nav .menu>li
    {
        padding: 0 20px;
    }
    .nqywh dl dt
    {
        width: 14%;
    }
    .nqywh dl dd
    {
        width: 85%;
    }
}
@media(max-width: 1024px)
{
    .cnen
    {
        padding-left: 20px;
    }
    .nav .menu>li
    {
        padding: 0 15px;
    }
}
@media(max-width: 1023px)
{
    .cnen:before
    {
        display: none;
    }
    .mouse-index
    {
        display: none;
    }
    .rslides_tabs, .rslides_nav
    {
        right: 6%;
    }
    .botnr .botlf, .botnr .botrt
    {
        width: 100%;
        text-align: center;
    }
    .bot
    {
        padding: 20px 0;
    }
}
@media(max-width: 991px)
{
    .nhzhbnr ul li
    {
        width: 31.33333333%;
    }
    .yyhynr dl
    {
        width: 33.3333%;
        height: 430px;
    }
    .yyhynr dl dt
    {
        margin-top: 60px;
    }
    .yyhynr dl:hover dt
    {
        margin-top: 70px;
    }
    .yyhynr dl dd h4
    {
        font-size: 20px;
    }
    .yyhynr dl:hover dd h4
    {
        font-size: 20px;
    }
    .schd .schdms, .news .schd ul
    {
        margin-top: 40px;
    }
    .aboutmore
    {
        margin-top: 50px;
    }
    .news .schd
    {
        width: 88%;
        padding: 0;
        float: none;
        margin: auto;
    }
    .news
    {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .news .newsnr
    {
        width: 88%;
        float: none;
        margin: auto;
    }
    .news .newsnr dl
    {
        padding: 20px;
    }
    .tit h3, .tit h3 a
    {
        font-size: 36px;
    }
    .top
    {
        display: none;
    }
    .about
    {
        margin-top: 80px;
    }
    .nabout h3, .nhonor h3
    {
        font-size: 26px;
    }
    .aboutrt .aboutnr
    {
        padding: 0;
        margin-top: 40px;
    }
    .pro
    {
        padding-top: 70px;
    }
    .nqywh dl dt, .nqywh dl dd
    {
        width: 100%;
    }
    .nqywh dl dt
    {
        padding: 20px 0 10px 0;
    }
    .nqywh dl dd
    {
        padding: 10px 0 20px 0;
    }
    .nqywh dl dt:after
    {
        display: none;
    }
    .npro dl
    {
        width: 48%;
    }
    .positionnr .positionrt, .nmenu
    {
        width: 100%;
    }
    .positionnr .positionrt
    {
        text-align: left;
        padding: 20px 0 20px 41px;
    }
    .nhonornr ul li
    {
        margin: 20px .5%;
    }
    .nmenu ul li
    {
        line-height: 50px;
        margin-right: 30px;
    }
    .news-exp a
    {
        width: 100%;
    }
    .news-exp a:last-child
    {
        text-align: left;
    }
    .nhonornr ul li
    {
        width: 31.333333%;
    }
    .map
    {
        height: 280px;
    }
    .nnews dl dd .nnewsdate
    {
        font-size: 24px;
    }
    .footernr .blogo
    {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .footernr .footerlf
    {
        width: 80%;
        padding-right: 20px;
    }
    .footernr .footerrt
    {
        width: 20%;
    }
}
@media(max-width: 859px)
{
    .nnews dl dd .nnewslf, .nnews dl dd .nnewsrt
    {
        width: 100%;
    }
    .nnews dl dd .nnewsrt
    {
        padding-left: 0;
        border-left: none;
    }
}
@media(max-width: 767px)
{
    .tit h3, .tit h3 a
    {
        font-size: 32px;
    }
    .yyhynr dl dd h4
    {
        font-size: 18px;
    }
    .yyhynr dl:hover dd h4
    {
        font-size: 18px;
    }
    .pronr
    {
        height: auto;
    }
    .yyhynr dl
    {
        width: 50%;
    }
    .nhonornr ul li
    {
        width: 48%;
    }
    .ntit h3
    {
        font-size: 26px;
    }
    .nprofbnr iframe
    {
        height: auto;
    }
    .footernr .footerlf
    {
        width: 100%;
        padding-right: 0;
    }
    .footernr .footerrt
    {
        width: 100%;
        margin-top: 20px;
    }
    .footernr .footerrt dl
    {
        float: left;
    }
    .footerrt .bmap a
    {
        width: 200px;
        float: left;
    }
}
@media(max-width: 640px)
{
    .rslides_tabs:after
    {
        display: none;
    }
    .rslides_tabs li
    {
        margin: 0;
    }
    .rslides img
    {
        width: 120%;
        margin-left: -10%;
    }
    .banner .next
    {
        margin-top: 80px;
    }
    .banner .prev
    {
        margin-top: -70px;
    }
    .news .newsnr dl dd .ddlf
    {
        padding: 0 20px;
    }
    .rslides_tabs
    {
        margin-top: -49px;
    }
    .news .newsnr dl dd .ddrt .newsdate span
    {
        font-size: 24px;
    }
    .nnews dl dt, .nnews dl dd
    {
        width: 100%;
    }
    .nnews dl dd
    {
        padding-left: 0;
        margin-top: 10px;
    }
    .footernr .footerlf ul li
    {
        width: 33.333333%;
    }
    .footernr .footerlf ul li:last-child
    {
        width: 100%;
        margin-top: 20px;
    }
}
@media(max-width: 639px)
{
    .nhzhbnr ul li
    {
        width: 48%;
    }
}
@media(max-width: 540px)
{
    .news .newsnr dl dd .ddrt
    {
        display: none;
    }
    .news .newsnr dl dd .ddlf
    {
        width: 100%;
        border-right: none;
    }
    .news .newsnr dl
    {
        padding: 10px;
        margin: 20px 0;
    }
    .news .newsnr dl dt, .news .newsnr dl dd
    {
        width: 100%;
    }
    .news .newsnr dl dd .ddlf
    {
        padding: 0;
    }
    .news .newsnr dl:hover dd .ddlf
    {
        border-right: none;
    }
    .aboutlf .aboutlist
    {
        background: none;
    }
}
@media(max-width: 424px)
{
    .npro dl
    {
        width: 100%;
        margin: 20px 0;
    }
}
@media(max-width: 375px)
{
    .rslides_tabs
    {
        margin-top: -60px;
    }
    .banner .next
    {
        margin-top: 65px;
    }
}