/* ==========================================================================
   Global
   ========================================================================== */
    
    html {
        font-size: 62.5%;
    }
    body::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        border-radius: 5px;
        background-color: #F5F5F5;
    }



body::-webkit-scrollbar {
        width: 8px;
        background-color: #F5F5F5;
    }



body::-webkit-scrollbar-thumb {
        border-radius: 5px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
        background-color: #bdb9b9;
    }

div::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
    border-radius: 3px;
    background-color: #F5F5F5;
}



div::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}



div::-webkit-scrollbar-thumb {
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
    background-color: #bdb9b9;
}
    
    a { color: #333; }
    
    a:hover { color: #d51717; }

 a:focus { outline:none; -moz-outline:none; }     
    body { color: #333; font: 12px/1.7 microsoft yahei, Arial, Helvetica, sans-serif; }   
    @media only screen and (max-width: 768px) {
        body{font-size: 12px;}

    } 
    .wrapper {
        max-width:980px;
        /*min-width: 980px; */
        _width: 980px;
        padding: 0 10px;
        margin-left: auto;
        margin-right: auto;
    }    
    .wrapper:after,
    .row:after {
        content: "";
        display: table;
        clear: both;
    }
    /* arrow */    
    .arrow {
        position: absolute;
        top: 50%;
        margin-top: -4px;
    }    
    .arrow * {
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        border: 0 dashed transparent;
        overflow: hidden;
    }
    /* arrow-right */
    
    .arr-r * {
        border-left-style: solid;
        border-width: 4px 0 4px 4px;
    }    
    .arr-r em {
        left: 1px;
    }    
    .arr-r span {
        border-left-color: #3675bb;
    }    
    .tri {
        position: absolute;
        width: 0;
        height: 0;
        border: 0 dashed transparent;
        overflow: hidden;
    }

   /* ==================================
   menu
   ================================== */
    
    .menu {
        position: relative;
    }
    /* menu-hd */
    
    .menu-hd {
        position: relative;
        z-index: 1002;
        overflow: hidden;
        height: 30px;
        line-height: 30px;
        padding: 0 20px 0 6px;
    }
    /* menu-bd */
    
    .menu-bd {
        display: none;
        position: absolute;
        z-index: 1001;
        margin-top: -1px;
    }
    
    .menu-bd-panel {
        padding: 5px 0;
        border: 1px solid #eee;
        background: #fff;
        min-width: 96px;
    }
    
    .menu-bd-panel a {
        display: block;
        padding: 0 5px;
        line-height: 28px;
        white-space: nowrap;
        color: #6C6C6C
    }
    /* menu arrow */
    
    .menu-hd .fa-caret-down {
        -webkit-transition: .3s ease-in;
        -moz-transition: .3s ease-in;
        -o-transition: .3s ease-in;
        transition: .3s ease-in;
        position: absolute;
        height: 30px;
        line-height: 30px;
        top: 0;
        right: 6px;
    }
    /* menu hover */
    
    .menu-hover .menu-hd {
        z-index: 10002;
    }
    
    .menu-hover .menu-bd {
        z-index: 10001;
    }
    
    .menu-hover .menu-hd {
        padding: 0 19px 1px 5px;
        border-width: 0 1px;
        border-style: solid;
        border-color: #eee;
        background: #fff;
    }
    
    .menu-hover .menu-hd .fa-caret-down {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    
    .menu-hover .menu-bd-panel a:hover { background: #eee;  }

    /* ==========================================================================
   Header
   ========================================================================== */

header {}    
header .wrapper {position: relative; z-index: 99;}   




/* ==========================================================================
Nav
========================================================================== */
/* primary */
    
    .globalnav {
        position: absolute;
        z-index: 999;
        right: 0;
        top: 16px;
    }
    
    .globalnav li {
        float: left;
    }
    
    .globalnav li a {
        display: block;
        color: #444;
        padding: 0 20px;
        font-size: 14px;
        line-height: 42px;
        font-family: microsoft yahei;
    }
    
    .globalnav .nav-sep {
        width: 2px;
        height: 42px;
        background: url(../images/nav-sep.gif) no-repeat 0;
    }
    
    .globalnav .active a,
    .globalnav li .active1 {
        color: #a6937c;
    }
    
    .dropdown {
        position: absolute;
        z-index: 999;
        background: #fff;
        background: rgba(255, 255, 255, .9);
        display: none;
        padding: 15px 20px;
        border-bottom: 3px solid #0072bb;
        margin-left: -38px;
        top: 100%;
        min-width: 100px;
    }
  
    .dropdown:after {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border: 0 dashed transparent;
        overflow: hidden;
        border-top-style: solid;
        border-width: 5px 5px 0;
        border-top-color: #fff;
        left: 50%;
        margin-left: -5px;
        top: -5px;
    }
    .dropdown a {
        /*    white-space: nowrap;*/
        line-height: 30px;
        font-size: 14px; 
        float: left;
        padding: 0;
        color: #000;
        background: none;
        border-bottom: 0 none;
        width: 90%;
        display: block;
        text-align: center;
    }
    
    @media (max-width:920px) {
        .dropdown a {
            /*    white-space: nowrap;*/
            font-size: 12px;
            width: 100%;
            text-align: left;
        }
        .dropdown { min-width: calc(100% - 40px);padding-top: 0;}

    }
    
    .dropdown a .fa {
        font-size: 12px;
        line-height: 30px;
        color: #ccc;
        padding-right: 5px;
    }
    
    .dropdown a:hover,
    .dropdown a:hover .fa {
        color: #0160bd;
    }
    
    
   
    /* ==========================================================================
   Content
   ========================================================================== */

.hidden {display: none;}


/* ==========================================================================
   yzspart01
   ========================================================================== */
.jysypart01{background:url(../images/index_50.jpg) top center no-repeat; height:373px; margin-bottom:60px;}
.logo{height: 94px;padding-left: 90px; background:url(../images/a1.png) top left no-repeat;}
#owl-banner .owl-dots{height: 0px;overflow: hidden;}
.slideBox01{width:100%; height:240px; overflow:hidden; position:relative;  }
.slideBox01 .hd{ height:15px; overflow:hidden; position:absolute; right:5px; bottom:40px; z-index:1; }
.slideBox01 .hd ul{ overflow:hidden; zoom:1; float:left;  }
.slideBox01 .hd ul li{ float:left; margin-right:2px;  width:15px; height:15px; line-height:14px; text-align:center; background:#fff; cursor:pointer; }
.slideBox01 .hd ul li.on{ background:#f00; color:#fff; }
.slideBox01 .bd{ position:relative; height:100%; z-index:0;}
.slideBox01 .bd li{ zoom:1; vertical-align:middle; }
.slideBox01 .bd img{ width:100%; height:200px; display:block; border:1px solid #ddd;}
.slideBox01 .bd .tit{height: 30px; line-height: 30px;}

.jysypart02 .right{width: 260px; overflow: hidden; float: right;}
.jysypart02 .left{width: calc(100% - 300px); float: left;overflow: hidden;}
.jysypart02 .left .row01{width: 280px; float: left;}
.jysypart02 .left .row02{width: calc(100% - 300px); float: right;}
.ul02 li a{width: 100%;/*calc(100% - 120px);*/ display: inline-block;  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.ul02 li span{float: right;}
.xwtit{border-bottom: 1px dashed #898788;height: 30px; position: relative;margin-bottom: 10px;}
.xwtit a{float: right;color: #989898;text-transform:Uppercase;font-size: 12px;}


.jysypart03 .wrapper{ background:#ececec url(../images/index_10.jpg) top right no-repeat;position:relative;}
.slide-jysz-kf .hd{ height:30px; line-height:30px;padding:0 10px 0 20px;}
.slide-jysz-kf .hd ul{font-size: 16px;font-weight: bold; }
.slide-jysz-kf .hd ul li{ display: inline-block; padding:0 15px; cursor:pointer;  }
.slide-jysz-kf .hd ul li.on{}
.slide-jysz-kf .hd ul li:hover{color: #d51717; }
.slide-jysz-kf .bd{padding:20px;height: 120px;}
.slide-jysz-kf{padding-top: 10px;}
.jykfpicBox{ overflow:hidden; zoom:1; padding:0 10px; }
.jykfpicBox .sPrev,.jykfpicBox .sNext{ position:absolute;top:0;z-index: 99; display:block; width:30px; height:100%;}
.jykfpicBox .sNext{left:0; background:#ececec url(../images/index_11.jpg)  center no-repeat; }
.jykfpicBox .sPrev{right:0; background:#ececec url(../images/index_12.jpg) center no-repeat;}


.jykfpicBox ul{ overflow:hidden; zoom:1;   }
.jykfpicBox ul li{ margin:0 8px; float:left; _display:inline; overflow:hidden; text-align:center;  }
.jykfpicBox ul li .pic{ text-align:center; }
.jykfpicBox ul li .pic img{ width:120px; height:90px; display:block;background: #fff; padding:2px; border:1px solid #fff; }
.jykfpicBox ul li .pic a:hover img{ border-color:#d51717;  }
.jykfpicBox ul li .title{ line-height:24px;   }

@media only screen and (max-width: 920px) {
.jysypart01{margin-top:48px;padding-top: 10px;height: 260px;margin-bottom:20px;}
.logo{display: none;}
}

@media only screen and (max-width:768px) {
.jysypart02 .right,.jysypart02 .left,.jysypart02 .left .row01,.jysypart02 .left .row02{width:100%;float: none;}
.jysypart01{height: 120px;}
}



/* ==========================================================================
   Footer
   ========================================================================== */
footer {width: 100%; padding: 20px 0; line-height: 24px; background: #4b4b4b; color: #fff; }
.foot {position: relative; }
.foot a{color: #fff;}
.foot a.icp{right: 0;position: absolute;top:20px;}
.toggle-btn { display: none;}


@media only screen and (max-width: 920px) {
    .toggle-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 10px;
        transition: all 0.5s;
    }    
    .inner-cont > p img {
        width: 100%;
        height: auto;
        padding-bottom: 20px;
    }    
.gn-item:hover .toggle-btn {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@media only screen and (max-width:768px) {
.foot a.icp{position: relative;top: auto;}
}

