/*首屏秀fullpage 样式*/
.fullPage-wp{   
    -webkit-transform: translate3d(0,0,0);     
    transform: translate3d(0,0,0);     
}
.fullPage-wp:after {
    display: block;
    content: ' ';
    height: 0;
    clear: both;
}
.fullPage-wp.anim{
    -webkit-transition: all 500ms ease-out 0s;
    transition: all 500ms ease-out 0s; 
}
.fullPage-page{
    display: block;
    overflow: hidden;
}

.fullPage-dir-h {
    float: left;
}

/*首屏秀全局样式*/
html{ font-size:10px; background:#fff; }
ul{ padding:0; margin:0;}
li{ list-style:none;}
a{ text-decoration:none;}
em,i{ font-style:normal;}
.clear{ background: none;
border: 0;
clear: both;
display: block;
float: none;
font-size: 0;
margin: 0;
padding: 0;
overflow: hidden;
visibility: hidden;
width: 0;
height: 0;}
body{margin:0 auto; padding:0; width:100%; max-width:640px; overflow-x:hidden; min-height:320px;  }
*{ margin:0; padding:0;}
li,dd,p,dl{margin:0 auto; padding:0;}
.wp
{
    width:100%; max-width:640px; min-width:320px; margin:0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;    
    display:block;    
}

/*首屏秀动画前默认 不显示*/
.animate{ opacity:0; display:none;  position: relative; }
.animate.cur,.cur .animate{opacity:1; display:block; animation-fill-mode:forwards; -webkit-animation-fill-mode:forwards;}


/*首次加载页面切入效果*/
.homeShow{ animation: fade 0.8s ease both;-webkit-animation: fade 0.8s ease both; }

/*分享图标*/
.pageShare img{ display:block; width:0px; height:0px;}
/*整站公用样式*/
*{color:#333;}
html{ width:100%; max-width:640px; min-width:320px; margin:0 auto;}
.ke-content p img{ display:inherit;}
.ke-content p{ text-indent:0;}

a
{
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
-moz-tap-highlight-color:rgba(0, 0, 0, 0);
-ms-tap-highlight-color:rgba(0, 0, 0, 0);
-o-tap-highlight-color:rgba(0, 0, 0, 0);
tap-highlight-color:rgba(0, 0, 0, 0);
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
color: #999;
}

input:-moz-placeholder, textarea:-moz-placeholder {
color:#999;
}

input::-moz-placeholder, textarea::-moz-placeholder {
color:#999;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
color:#999;
}


/*加载中*/
.loading{ width:100%; margin:auto; background:#000;   height:100%; text-align:center; position:fixed; z-index:999999;  color:#fff; max-width:640px; min-width:320px; margin:0 auto;}


/*上下指示箭头*/
.pageShow{ position:fixed; bottom:7px; z-index:200; width:100%; margin:0 auto; max-width:640px; min-width:320px; text-align:center; height:14px;}
.ud_show img  
{
   
	margin:-7px 0 0 0px;
	width:24px;
	height:14px;
	margin:0 auto;
	background-position:0 -82px;
	-webkit-animation:topShow 1.5s infinite ease-in-out;
	-moz-animation:topShow 1.5s infinite ease-in-out;
	-o-animation:topShow 1.5s infinite ease-in-out;
	animation:topShow 1.5s infinite ease-in-out;
}
/*左右箭头*/
/*
.pageShow{ position:fixed; right:7px; z-index:200; width: 24px; margin:0 auto; top: 50%;margin-top: -12px;-webkit-transform: rotate(270deg);transform: rotate(270deg); text-align:center; height:14px; }
.ud_show img  
{
   
	margin:-7px 0 0 0px;
	width:24px;
	height:14px;
	margin:0 auto;
	background-position:0 -82px;
	-webkit-animation:topShow 1.5s 5 ease-in-out;
	-moz-animation:topShow 1.5s 5 ease-in-out;
	-o-animation:topShow 1.5s 5 ease-in-out;
	animation:topShow 1.5s 5 ease-in-out;
	animation-fill-mode:forwards;
	-webkit-animation-fill-mode:forwards;
}
*/

/*上下浮动效果动画*/
@-webkit-keyframes topShow{
	0%,30%{
		opacity:0;
		-webkit-transform:translate(0,10px)
	}

	60%{
		opacity:1;
		-webkit-transform:translate(0,0)
	}

	100%{
		opacity:0;
		-webkit-transform:translate(0,-8px)
	}

}

@-o-keyframes topShow{
	0%,30%{
		opacity:0;
		-o-transform:translate(0,10px)
	}

	60%{
		opacity:1;
		-o-transform:translate(0,0)
	}

	100%{
		opacity:0;
		-o-transform:translate(0,-8px)
	}

}

@-moz-keyframes topShow{
	0%,30%{
		opacity:0;
		-moz-transform:translate(0,10px)
	}

	60%{
		opacity:1;
		-moz-transform:translate(0,0)
	}

	100%{
		opacity:0;
		-moz-transform:translate(0,-8px)
	}

}

@keyframes topShow{
	0%,30%{
		opacity:0;
		transform:translate(0,10px)
	}

	60%{
		opacity:1;
		transform:translate(0,0)
	}

	100%{
		opacity:0;
		transform:translate(0,-8px)
	}

}


@-webkit-keyframes rotating{
	from{
		-webkit-transform:rotate(0deg)
	}

	to{
		-webkit-transform:rotate(360deg)
	}

}

@keyframes rotating{
	from{
		transform:rotate(0deg)
	}

	to{
		transform:rotate(360deg)
	}

}

@-moz-keyframes rotating{
	from{
		-moz-transform:rotate(0deg)
	}

	to{
		-moz-transform:rotate(360deg)
	}

}

/*渐显动画*/
@-webkit-keyframes fade {
  from {
    opacity: 0;
   
  }

  to {
    opacity: 1;
   
  }
}

@keyframes fade {
  from {
    opacity: 0;
   
  }

  to {
    opacity: 1;
   
  }
}

.fade {
  -webkit-animation-name: fade;
  animation-name: fade;
}

/*自适应设置*/
@media screen and (min-width:320px) {  html { font-size:75%;}}
@media screen and (min-width:360px) {  html { font-size:84.4%;}}
@media screen and (min-width:480px) {  html { font-size:112%;}}
@media screen and (min-width:568px) {  html { font-size:131%;}}
@media screen and (min-width:639px) {  html { font-size:150%;}}
/*
@media screen and (min-width:320px) {  html { font-size:75%;}}
@media screen and (min-width:360px) {  html { font-size:87%;}}
@media screen and (min-width:480px) {  html { font-size:112%;}}
@media screen and (min-width:568px) {  html { font-size:131%;}}
@media screen and (min-width:639px) {  html { font-size:150%;}}
*/
/*主体内容*/

/*改变苹果原有样式*/
input[type="text"],input[type="button"], input[type="submit"], input[type="reset"] {
-webkit-appearance: none;}
textarea {-webkit-appearance: none;}  

.iconfont{color: #f00;
    font-family:"iconfont","微软雅黑"!important;
    font-style:normal; 
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;}
    
/*------页面 公用样式(头部 底部)---------*/
html{}
.wp img{ width:100%; display:block;}

/*头部*/
.header{ position:fixed; top:0; width:100%; margin:0 auto; max-width:640px; min-width:320px; z-index:99;  text-align:center; background:#f8f8f8; height: 3.83rem; line-height:3.83rem; font-size:1.166rem;}
.header .logo{ width:25%; float:left; height:3.83rem;}
.header .logo img{ height:100%; width:auto; display:block;}
.header .menu_btn{ width:75%; color:#fff; float:right;}
.header .tsite{font-size:1.166rem;}
.header .tsite a{ color:#303030; position:relative; width: 28.75%; text-decoration:none; text-align:center; display:inline-block;}
.header .tsite a.cur{ color:#303030;}
.header .tsite a:before{ content:""; width:0.041rem; height:1.25rem; background:#a7a7a7; position:absolute; top:1.375rem; right:0;}
/*.header .tsite a:after{content:""; width:0.041rem; height:1.25rem; background:#a7a7a7; position:absolute; top:1.375rem; right:1px;}*/
.header .downmenu{ width: 12.08%;  color: #878787; text-align:center; position:relative; z-index:9999; display:inline-block; line-height:3.83rem; float:right; cursor:pointer;}
.header .downmenu.cur{ background:#549514; opacity:0.9; height:3.33rem;}
/*下拉样式*/
.menu{ width:100%; top:0rem; position:fixed; height:100%; z-index:19; max-width:640px; min-width:320px;  }
.menu img{ width:100%;}
.menu .slideMenu{ margin: 0 auto; margin-top:5.7rem; height:100%;}
.menu .slideMenu li a{ }
.menu .slideMenu li{  }
.menu .slideMenu li img{  }

/*公用底部*/
.g_ft{margin-top: 2.5rem; margin-bottom: 2.916rem; width: 100%; line-height: 1.25rem; padding-top: 1rem; position: relative;  background:#f3f3f3; color: #666; text-align:center;  padding-bottom:1rem; }
.g_ft a.top{ font-weight: bold; margin-bottom: 1rem;  color: #212121; font-size: 1rem; display: inline-block; text-align: center; }
.g_ft a.top img{ height: 1rem; vertical-align: middle; width: 1.458rem; display: inline-block; padding-left: 0.1rem; }
.g_ft a,.g_ft p{ color: #666; font-size: 0.75rem;line-height: 1.25rem;}
.g_ft .ft_a a{ width: 7.5rem; color: #212121; display: inline-block; height:2.33rem; line-height: 2.33rem; border: 1px solid #b6b6b6; margin-right: 0.458rem;  }
.g_ft p{ font-size: 0.83rem; color: #212121; line-height: 1.166rem; }

/*浮动菜单*/
.kefu{ position:fixed; background: #fff;  bottom: 0; width: 100%; max-width: 640px; min-width: 320px; margin: 0 auto; outline: 1px solid #d7d7d7; z-index:9999;}
.kefu li{ width: 25%; float: left; position: relative; height: 2.916rem; text-align: center; background: #4c8810; }
.kefu li:before{ content: ''; position: absolute; z-index:1; right: 0; top: 0; width: 1px; height: 2.916rem; background:#6a9a3a; display: block; }
.kefu li a{ line-height: 2.9rem; font-size: 1rem; color: #fff; }
.kefu li a img{vertical-align: middle; padding-right: 0.25rem; width: 1.25rem;}

/*返回中心按钮*/
.u_back{ width:12.1rem; line-height:2.75rem; border-radius: 1.8rem; background:#b10b19; text-align:center; margin:0 auto; font-size:1.5rem;  color:#fff; margin-top:1.25rem;}
/*分页样式*/
.cpage{ clear: both; margin-top: 1.25rem; margin-bottom: 3.75rem; }
.cpage a{ width: 9.583rem; height: 2.333rem; line-height: 2.333rem; text-align: center; color: #00a0e9; font-size: 1.166rem; display: inline-block; border: 0.083rem solid #00a0e9; }
.cpage .next{ float: right; background: #00a0e9; color: #fff; }
.cpage span{ width: 5.833rem;display: inline-block;text-align: center; color: #999999; font-size: 1.166rem; }
.cpage span em{ color: #00a0e9; }


