﻿
/*通用样式*/
body,html,div,p,table,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6{margin:0px;padding:0px;}
ul,ol,li,dl,dt,dd{list-style:none;}
img,a{border:none;}
em,i{font-style:normal;}
a{outline:none;text-decoration:none;-webkit-tap-highlight-color:rgba(255,0,0,0);}
a:active{opacity:0.85;}
html,body{font-size:62.5%;font-family:"微软雅黑","Arial","Helvetica";font-weight:normal;position:relative;margin:0px;padding:0px;width:100%;}
.clear{width:0px;height:0px;font-size:0px;line-height:0px;clear:both;overflow:hidden;}
.swiper-pagination-bullet{width: 0.15rem;height: 0.15rem;}


.container{font-size:0.26rem;}
/* 顶部导航菜单 */
.nav{width:100%;height:1rem;display:flex;justify-content:space-between;position: relative;z-index: 99;background:#fff;}
.nav_top{position: fixed;top: 0;left: 0;}
.nav_logo{width: 1.4rem;margin-left: 0.3rem;margin-top: 0.2rem}
.nav_logo a img{display: block;width: 100%;float: left;}
.nav_logo span{font-size: 0.24rem;font-weight: bold;color:#0d0d0d;line-height: 0.6rem;padding-left: 0.2rem; }

.nav_right{display:flex;}

.nav_menu_btn{width:0.4rem;padding:0.3rem 0.3rem;cursor: pointer;position: absolute;right: 0;z-index: 999;}
.nav_menu_btn .nav_menu_line{background: #f8b62b;width: 0.36rem;height: 2px;margin-top: 0.12rem; transition: 0.5s;cursor: pointer;}



.nav_menu{
    width:100%;
    background:#fff;
    height:0;
    -webkit-transition:0.5s;
    -moz-transition:0.5s;
    -ms-transition:0.5s;
    transition:0.5s;
    overflow:hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index:98;
	color: rgba(0,0,0,0.85);
}
.nav_menu.active{
    height:100%; /* 菜单高度 */
    padding-top:1.2rem;
}
 .on .nav_menu_line:nth-of-type(1){ transform:rotate(45deg) translateY(0.1rem);
}
 .on .nav_menu_line:nth-of-type(2){ transform: rotate(-45deg)translateY(-0.1rem);
}

#banner img{width:100%;display:block;}

.nav_menu.active a{
    display:block;
}
.nav_menu a{
    width:85%;
    display:none;
    height:0.85rem;
    line-height:0.85rem;
    color: rgba(0,0,0,0.85);
    margin:0 auto;
    opacity: 0;
	border-bottom: solid 0.01rem rgba(0,0,0,0.09);
	font-size: 0.24rem;
}


.nav_menu.active.nav_menu a:nth-of-type(1){
    opacity:1;
    -webkit-animation:fadeInDown 0.2s 0.22s ease both;
    -moz-animation:fadeInDown 0.2s 0.22s ease both;
    -ms-animation:fadeInDown 0.2s 0.22s ease both;
    animation:fadeInDown 0.2s 0.22s ease both;
}
.nav_menu.active.nav_menu a:nth-of-type(2){
    opacity:1;
    -webkit-animation:fadeInDown 0.2s 0.26s ease both;
    -moz-animation:fadeInDown 0.2s 0.26s ease both;
    -ms-animation:fadeInDown 0.2s 0.26s ease both;
    animation:fadeInDown 0.2s 0.26s ease both;
}
.nav_menu.active.nav_menu a:nth-of-type(3){
    opacity:1;
    -webkit-animation:fadeInDown 0.2s 0.3s ease both;
    -moz-animation:fadeInDown 0.2s 0.3s ease both;
    -ms-animation:fadeInDown 0.2s 0.3s ease both;
    animation:fadeInDown 0.2s 0.3s ease both;
}
.nav_menu.active.nav_menu a:nth-of-type(4){
    opacity:1;
    -webkit-animation:fadeInDown 0.2s 0.34s ease both;
    -moz-animation:fadeInDown 0.2s 0.34s ease both;
    -ms-animation:fadeInDown 0.2s 0.34s ease both;
    animation:fadeInDown 0.2s 0.34s ease both;
}
.nav_menu.active.nav_menu a:nth-of-type(5){
    opacity:1;
    -webkit-animation:fadeInDown 0.2s 0.38s ease both;
    -moz-animation:fadeInDown 0.2s 0.38s ease both;
    -ms-animation:fadeInDown 0.2s 0.38s ease both;
    animation:fadeInDown 0.2s 0.38s ease both;
}
.nav_menu.active.nav_menu a:nth-of-type(6){
    opacity:1;
    -webkit-animation:fadeInDown 0.2s 0.42s ease both;
    -moz-animation:fadeInDown 0.2s 0.42s ease both;
    -ms-animation:fadeInDown 0.2s 0.42s ease both;
    animation:fadeInDown 0.2s 0.42s ease both;
}
.nav_menu.active.nav_menu a:nth-of-type(7){
    opacity:1;
    -webkit-animation:fadeInDown 0.2s 0.46s ease both;
    -moz-animation:fadeInDown 0.2s 0.46s ease both;
    -ms-animation:fadeInDown 0.2s 0.46s ease both;
    animation:fadeInDown 0.2s 0.46s ease both;
}
.nav_menu.active.nav_menu a:nth-of-type(8){
    opacity:1;
    -webkit-animation:fadeInDown 0.2s 0.52s ease both;
    -moz-animation:fadeInDown 0.2s 0.52s ease both;
    -ms-animation:fadeInDown 0.2s 0.52s ease both;
    animation:fadeInDown 0.2s 0.52s ease both;
}



@-webkit-keyframes fadeInDown{
    0%{opacity:0;-webkit-transform:translateY(-20px)}
    100%{opacity:1;-webkit-transform:translateY(0)}
}
@-moz-keyframes fadeInDown{
    0%{opacity:0;-moz-transform:translateY(-20px)}
    100%{opacity:1;-moz-transform:translateY(0)}
}
@-ms-keyframes fadeInDown{
    0%{opacity:0;-ms-transform:translateY(-20px)}
    100%{opacity:1;-ms-transform:translateY(0)}
}
@keyframes fadeInDown{
    0%{opacity:0;transform:translateY(-20px)}
    100%{opacity:1;transform:translateY(0)}
}






/*版权*/
#banq{padding-top: 0.6rem;}
#banq .backtop{position: relative;}
#banq .backtop span{background: #fff;width: 0.8rem;height: 0.8rem;color: #f8b62b;text-align: center;display: block;margin: 0 auto;font-size: 0.8rem;line-height: 0.8rem;}
#banq .backtop hr{border: none;border-bottom: 1px dashed rgba(194,194,194,1.00);position: absolute;top: 12%;width: 100%;height: 1px;z-index: -1;}
#banq .contact {width:95%;margin:0 auto;}
#banq .contact .logo_di{width: 30%;overflow: hidden;margin-top: 0.2rem;}
#banq .contact .logo_di img{width: 100%;display: block;}
#banq .contact h1{font-size: 0.36rem;color: #121213;font-weight: normal;line-height: 0.36rem;margin: 0.32rem 0;}
#banq .contact p{font-size: 0.24rem;color: #666;line-height: 0.4rem;margin:  0.1rem 0;}


#banq .beian p{width: 100%;height: 0.72rem;font-size: 0.22rem;color: #fff;background: #f8b62b;line-height: 0.8rem;text-align: center;margin-top: 1.4rem;}
#banq .beian p span{color: #087443;}


.bot_nav{width:70%;height:0.72rem;background: rgba(250,250,250,0.94);position:fixed;bottom:0.72rem; box-shadow: 0px 0px 12px 0px rgba(26, 23, 23, 0.18);z-index:97;display:flex;justify-content:space-around;border-radius: 0.4rem;left: 15.5%;overflow: hidden;}
.bot_nav a {width:33.3%;height:0.72rem;color: #121213;}
.bot_nav a span{font-size: 0.38rem;line-height: 0.72rem;display: block;text-align: center;}