/*全局通用*/
html, body {
    background-color: rgba(255, 255, 255, 1);
    font-family: "宋体";
}
a,a:link,a:active{
	text-decoration: none;
	transition: all 0.5s;
	color: #333;
}
a._wiosn-header-sub-a{
	color:#fff;
}
.wrapper{
	max-width: 1380px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0 15px;
}
img{
	max-width:100%;
}
.wiosn_clear{
	clear: both;
	display: block;
	width: 100%;
	height: 1px;
	line-height: 1px;
	overflow: hidden;
}
.wiosn_block{
	min-height: 575px;
	padding: 25px 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	overflow: hidden;
}
/*分页*/
.pageinfo_box{
	text-align: center;
	justify-content: center;
	justify-items: center;
	display: flex;
	flex-wrap: wrap;
	padding: 1em 0;
}
.pageinfo_box a{
	display: inline-block;
	min-width: 2em;
	border: 1px #ccc solid;
	padding: 0.3em .8em;
	border-radius: 3px;
	box-shadow: 3px 3px 0 rgba(0, 0, 0, .05);
	font-size: 18px;
	background-color: #fff;margin: 0 .2em;
}
.pageinfo_box a.disabled{
	color: #999;
	background-color: #f1f1f1;
	border: 1px #e1e1e1 solid;
	box-shadow: none;
}
.pageinfo_box a.page_now{
	border: 1px #ccc solid;
	background-color: #f1f1f1;
	text-shadow: 2px 2px 0 rgba(0, 0, 0, .15);
	color: #000;
	box-shadow: 5px 5px 1px rgba(0, 0, 0, .08);
}
/*导航部分*/
.header{
	display: block;
	height: 60px;
	transition: all 0.5s;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99999999999;
	background-color: rgba(56, 49, 127, .8);
	/*background-color: rgba(255, 255, 255, 1);*/
}
.fixedo{
	background-color: rgba(56, 49, 127, 1);
}
.header .wrapper{
	display: flex;
	position: relative;
}
.top_nav{
	line-height: 60px;
	height: 60px;
	color: #fff;
	display: flex;
	flex: 1;
	list-style: none;
	flex-direction:row;
	justify-content: flex-end;
}
.top_nav .top_nav_item{
	display: block;
	position: relative;
	min-width: 120px;
	font-size: 16px;
	transition: all 0.5s;
	text-align: center;
}
.top_nav_sub_item{
	list-style-type: none;
}
.top_nav ol.top_nav_sub{
	background-color: rgba(255, 255, 255, 1.0);
	border-top: 3px solid #e3a204;
	position: relative;
	display: none;
	margin-top: -3px;
}
.top_nav .top_nav_item a,.top_nav .top_nav_stitle{
	color: #fff;
	display: block;
	cursor: pointer;
	position: relative;
	font-size: 16px;
	transition: all 0.5s;
}
.top_nav .hover a,.top_nav .hover .top_nav_stitle,.top_nav .active .top_nav_stitle{
	background-color: rgba(255,255,255,0);
	color: #e3a204;
}
.top_nav .active a:before,.top_nav .top_nav_item a:before,.top_nav .active .top_nav_stitle:before{
	display: block;
	content: " ";
	width: 0;
	height: 3px;
	background-color: #e3a204;
	position: absolute;
	transition: all 0.5s;
	left: 50%;
	opacity: 0;
	bottom: 0;
}
.top_nav .top_nav_sub_item a:before{
	height: 2px;
	bottom: 5px;
}
.top_nav .active .top_nav_item a:hover:before,.top_nav .top_nav_item a:hover:before,.top_nav .active .top_nav_stitle:hover:before{
	width: 100%;
	left: 0;
	opacity: 1;
}
.top_nav .top_nav_sub_item a{
	color: #333;
	line-height: 50px;
	height: 50px;
}
.top_nav .top_nav_sub_item a:hover:before{
	width: 50%;
	left: 25%;
}
.top_nav .top_nav_sub_item a:hover{
	color: #e3a204;
}
.top_nav .active .top_nav_sub_item a:before{
	width: 0;
	left: 50%;
}
.top_nav .hover ol{
	animation:0.5s top_nav_show;
	display: block;
}
@-webkit-keyframes top_nav_show {
    0%   { opacity: 0;}
    100% { opacity: 1;}
}
.logo{
	padding: 0;
	transition: all 0.5s;
    max-width: 280px;
    height: 60px;
    overflow: hidden;
}
.logo h1{
	transition: all 0.5s;
	color: #fff;
	background-image:linear-gradient(0deg, #fff, #ccc, #f1f1f1,#fff);
    background-clip:text;
    -webkit-background-clip:text;
    text-fill-color:transparent; 
    -webkit-text-fill-color:transparent;
    font-weight:500;
    height: 60px;line-height: 60px;
}
.logo h1 a{
    display: block;
    height: 60px;line-height: 60px;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, .3);
    box-sizing: border-box;
    background-size:contain;
    background-repeat: no-repeat;
}
.mobile_nav{
	background-color: rgba(0, 0, 0, .1);
	width: 45px;
	height: 40px;
	transition: all 0.5s;
	position: fixed;
	top: 10px;
	right: 15px;
	border-radius: 3px;
	padding: 10px;
	box-sizing: border-box;
}
.mobile_nav .line{
	background: rgba(255, 255, 255, 1);
	display: block;
	height: 3px;
	border-radius: 3px;
	margin-bottom: 5px;
	z-index: 9999999999999;
}
.mob_nav{
	position: fixed;
	transition: all 0.5s;
	left: 100%;
	width: 100%;
	top: 0;
	bottom: 0;
	right: 0;
	color: #fff;
}
.mob_nav .nav{
	position: absolute;
	box-shadow: 0 0 35px rgba(0, 0, 0, .3);
	left: 30%;
	top: 0;
	bottom: 0;
	right: 0;
	color: #333;
	list-style-type: none;
	height: auto;
	overflow-y: auto;
	padding: 15px;
	padding-top: 40px;
	background-color: #fff;
	display: block;
}
.mob_nav .nav li{
	list-style-type: none;
	padding-left: 1em;
	line-height: 30px;
	font-size: 14px;
}
.mob_nav a,.mob_nav .top_nav_stitle{
	color: #333;
	display: block;
	position: relative;
	padding-left: 15px;
}
.mob_nav a:before,.mob_nav .top_nav_stitle:before{
	display: block;
	position: absolute;
	left: 0;
	top: 8px;
	content: " ";
	width: 3px;
	height: 14px;
	border-radius: 5px;
	background-color: #ccc;
}
.mob_nav .active a:before,.mob_nav .active .top_nav_stitle:before{
	display: block;
	position: absolute;
	left: 0;
	top: 8px;
	content: " ";
	width: 3px;
	height: 14px;
	border-radius: 5px;
	background-color: #e3a204;
}
.mob_nav .top_nav_sub a:before{
	background-color: #ccc;
	width: 5px;
	height: 5px;
	top: 13px;
}
.mob_nav .close{
	display: inline-block;
	width: 30px;
	height: 30px;
	background-color: #fff;
	/*background-image: radial-gradient(circle at 30% 30% ,#ffff,#f1f1f1);
	border: 1px #ccc solid;
	box-shadow: 0 0 3px rgba(0,0,0,.05);*/
	border-radius: 5px;
	margin-top: 5px;
	margin-right: 5px;
	color: #333;
	z-index: 999999;
	position: relative;
	text-align: center;
	float: right;
}
/*底部导航*/
.footer{
	color: #aaa;
	background-color: rgba(0, 0, 0, .8);
}
.footer .bnav{
	list-style-type:none;
	font-size: 14px;
	line-height: 28px;
	padding: 10px 0;
}
.footer a{
	border-bottom: 1px #aaa dotted;
	color: #3fb150;
	padding: 3px 0;
}
.footer a:hover{
	color: #3fb150;
}
.footer .copyright{
	font-size: 14px;
	border-top: 1px #444 solid;
	color: #aaa;
	padding: 10px 0;padding-bottom: 15px;
}
.footer .site_qr {
	text-align: center;

}
.footer .qr{
	width: 140px;
	height: 140px;
	display: inline-block;
	margin: 15px auto;
	margin-bottom: 5px;
	border: 4px rgba(255, 155, 0, .3) solid;
}
.footer .scan_me{
	font-size: 12px;line-height: 20px;
	color: #111;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, .15);
}
.footer .tels {
	 font-family: "GrayDesign Regular", "arial, helvetica, sans-serif";
	 font-size: 34px;
	 color: #3fb150;
	 line-height: 44px;
	 display: block;
	 padding-bottom: 5px;
	 border: none !important
}
.footer .contact{
	font-size: 14px;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, .15);
}
.footer .h4{
	font-size: 16px;
	color: #fff;
}
.footer .copyright .fenlan{
	display: flex;
}
.footer .copyright .fenlan .fenlan_cinfo{
	flex: 1;
}

/*友情链接*/
.site_links_box{
	display: flex;
	padding: 8px 0;
	font-size: 14px;
}
.site_links_box .h6{
	color: #3fb150;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, .15);
	font-size: 14px;
	line-height: 28px;
	min-width: 80px;
}
.site_links{
	list-style: none;
	flex: 1;
}
.site_links a{
	padding: 0 .5em;
	text-decoration: none;
	display: block;
	flex: 1;
	color: #666;
	border: none;
}

/* 子页面通用样式  */
.nav_logs{
	height: 50px;
	margin-top: 4PX;
	width: auto;
	float: left;
}

/* 自适应专用 */
@media only screen and (max-width:767px) {
	html,body{
		max-width: 100%;
		overflow-x: hidden;
	}
	#apps{
		padding-top: 60px;
	}
	.swiper-button-next,.swiper-button-prev{
		display: none !important;
	}
	#nav_header{
		background-color: #000 !important;
		box-shadow: 0 0 5px rgba(0, 0, 0, .3);
	}
	.mobile_nav{
		background-color: rgba(0, 0, 0, 0);
	}
	.mobile_nav .line{
		background: rgba(0, 0, 0, 1);
	}
	.logo h1{
		color: #000;
		background-image:linear-gradient(0deg, #000, #333, #666,#000);

	}
	.logo h1 a{
		text-shadow: 2px 2px 0 rgba(0, 0, 0, .15);
	}
	.wiosn_block{
		min-height: auto;
	}
	.site_links_box{
		display: block;
		padding: 8px 0;
		font-size: 14px;
	}
	.site_links_box .h6{
		color: #f1f1f1;
		line-height: 36px;
		text-shadow: 1px 1px 0 rgba(0, 0, 0, .15);
	}
	.site_links{
		display: block;
		list-style: circle;
		list-style-position: inside;
	}
	.site_links a{
		padding: 0;
		color: #3fb150;;
		border-bottom: 1px #3fb150 dotted;
	}
	.nav_logs{
		height: 38px;
		margin-top: 10px;
		width: auto;
		float: left;
	}
}
/* 背景色变化 */
