/*****************************header***************************/
.footer a{
	color: #fff;
}
.page img{
	width: 100%;
}
.header_wrap {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background: #fff;
	width: 100%;
	border-bottom: 1px solid #f1f1f1;
}

.header_wrap .inner_box {
	width: 100%;
	max-width: 1400px;
	padding: 0 30px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.header_wrap .top_nav {
	background: #e60012;
	color: #fff;
	width: 100%;
}

.header_wrap .top_nav .left_tell {
	line-height: 54px;
	font-size: 14px;
	background: url(../image/tell_icon.png) no-repeat left center;
	padding-left: 20px;
}

.header_wrap .top_nav .right_search {
	border: 1px solid #fff;
	height: 32px;
	line-height: 30px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.header_wrap .top_nav .right_search .search_input {
	padding: 0 10px;
	color: #fff;
	height: 100%;
	border: none;
	background: none;
}

.header_wrap .top_nav .right_search input.search_input::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #fff;
}

.header_wrap .top_nav .right_search input.search_input:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #fff;
}

.header_wrap .top_nav .right_search input.search_input::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #fff;
}

.header_wrap .top_nav .right_search input.search_input:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #fff;
}

.header_wrap .top_nav .right_search .search_btn {
	background: url(../image/search_icon.png) no-repeat center;
	width: 30px;
	border: none;
	border-left: 1px solid #fff;
	height: 100%;
}

.header_wrap .main_nav {
	height: 78px;
	display: flex;
}

.header_wrap .main_nav .logo {
	/*width: 330px;*/
	height: 50px;
}

.header_wrap .main_nav .nav {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	line-height: 78px;
}

.header_wrap .main_nav .nav li>a {
	padding: 0 25px;
	line-height: 78px;
	display: block;
	font-size: 18px;
	color: #666;
	position: relative;
	transition: all 0.3s linear;
}

.header_wrap .main_nav .nav li.current>a {
	color: #e60012;
}

.header_wrap .main_nav .nav li:hover>a {
	color: #e60012;
}

.header_wrap .main_nav .nav li>a:after {
	display: block;
	content: "";
	width: 100%;
	height: 5px;
	background: #e60012;
	position: absolute;
	bottom: 20px;
	left: 0;
	opacity: 0;
	transition: all 0.3s linear;
}

.header_wrap .main_nav .nav li.current>a:after {
	bottom: 0;
	opacity: 1;
}

.header_wrap .main_nav .nav li:hover>a:after {
	bottom: 0;
	opacity: 1;
}

@media only screen and (max-width: 1300px) {
	.header_wrap .main_nav .logo {
		/*width: 250px;*/
		height: 50px;
	}
	.header_wrap .main_nav .nav li>a {
		font-size: 16px;
	}
}

.header_wrap .main_nav .nav li .sub_nav {
	position: absolute;
	top: 132px;
	left: 0;
	width: 100%;
	height: auto;
	background: rgba(255, 255, 255, .98);
	z-index: 2000;
	transform: scaleY(0);
	transform-origin: top;
}

.header_wrap .main_nav .nav li:hover .sub_nav {
	transform: scaleY(1);
	transition: all 0.3s linear;
}

.header_wrap .main_nav .nav li .sub_nav .sub_inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

.header_wrap .main_nav .nav li .sub_nav dl dt {
	font-size: 17px;
	padding: 0 40px 0 30px;
	line-height: 78px;
	position: relative;
}

.header_wrap .main_nav .nav li .sub_nav dl dt:after {
	content: "";
	display: block;
	width: 2px;
	height: 2px;
	border-radius: 50%;
	background: #666;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -2px;
}

.header_wrap .main_nav .nav li .sub_nav dl dt a {
	color: #333;
}

.header_wrap .main_nav .nav li .sub_nav dl dt a:hover {
	color: #e60012;
}

.header_wrap .main_nav .nav li .sub_nav dl:last-child dt:after {
	display: none;
}

.header_wrap .main_nav .nav li .sub_nav dl dd {
	width: 100%;
	padding-bottom: 20px;
	font-size: 14px;
	text-align: left;
	padding-left: 30px;
	position: relative;
	color: #888;
  	line-height:30px;
}

.header_wrap .main_nav .nav li .sub_nav dl dd:last-child {
	margin-bottom: 30px;
}

.header_wrap .main_nav .nav li .sub_nav dl dd:before {
	position: absolute;
	top: 50%;
	margin-top: -6px;
	left: 10px;
	content: "";
	width: 9px;
	height: 1px;
	background: #888;
	display: block;
}

.header_wrap .main_nav .nav li .sub_nav dl dd a {
	color: #333;
}

.header_wrap .main_nav .nav li .sub_nav dl dd a:hover {
	color: #e60012;
}

.header_wrap .main_nav .hbg {
	width: 36px;
	height: 32px;
	background: url(../image/hbg_icon.png) no-repeat center center;
	border: 1px solid #e60012;
	border-radius: 4px;
	cursor: pointer;
	display: none;
}

.header_wrap .main_nav .hbg.show {
	background: url(../image/close_icon.png) no-repeat center center;
	background-size: 18px 18px;
	border:1px solid #bfbfbf;
}

@media only screen and (max-width: 1201px) {
	.nav_black_shadow{
		width: 100%;
		height: 100%;
		position: fixed;
		top:0;
		left:0;
		background:#e5e5e5;
		background-size:100% auto ;
		z-index: 2;
		display: none;
	}
	.header_wrap .main_nav .nav {
		display: none;
		position: fixed;
		height: 80%;
		top:133px;
		right:0;
		background: #fff;
		width: 100%;
		border-top:1px solid #dfdfdf;
		line-height: 40px;
		padding-bottom: 30px;
		background: #e5e5e5;
		padding-bottom: 70px;
		overflow-y: auto;
	}
	.header_wrap .main_nav .nav li{
		width: 100%;
		border-bottom: 1px solid #dfdfdf;
	}
	.header_wrap .main_nav .nav li{
		background: url(../image/jia.png) no-repeat 95% 22px;
		background-size:16px 16px ;
	}
	.header_wrap .main_nav .nav li.show{
		background: url(../image/jian.png) no-repeat 95% 22px #e60012;
		color:#fff;
		background-size:16px 16px ;
	}
	.header_wrap .main_nav .nav li.current a{
		color:#555;
	}
	.header_wrap .main_nav .nav li.show a{
		color:#fff;
	}
	.header_wrap .main_nav .nav li>a{
		display: inline-block;
		line-height: 60px;
	}
	.header_wrap .main_nav .nav li>a:after{
		display: none;
	}

	.header_wrap .main_nav .nav li .sub_nav{
		position: static;
		display: block;
		transform: scaleY(1);
	}
	.header_wrap .main_nav .nav li .sub_nav .sub_inner{
		display: block;
	}

	.header_wrap .main_nav .nav li .sub_nav dl dt a,
	.header_wrap .main_nav .nav li .sub_nav dl dd a{
		display: block;
		font-size: 14px;
	}
	.header_wrap .main_nav .nav li .sub_nav dl dt{
		line-height: 42px;
		display: none;
		border-top: none;
		width: 100%;
		margin: 0 auto;
		background: #e5e5e5;
	}
	.header_wrap .main_nav .nav li .sub_nav dl dt a:before{
		width: 4px;
		height: 4px;
		background: #aaa;
		border-radius: 50%;
		content: "";
		display: inline-block;
		margin-right: 10px;
		position: relative;
		top:-4px
	}
	.header_wrap .main_nav .nav li .sub_nav dl dt:after{
		display: none;
	}
	.header_wrap .main_nav .nav li .sub_nav dl dd{
		padding-bottom: 0;
		width: 80%;
		margin: 0 auto;
		line-height: 26px;
		display: none !important;

	}
	.header_wrap .main_nav .nav li .sub_nav dl dd:last-child{
		margin-bottom: 0;
	}
	.header_wrap .main_nav .hbg{
		display: block;
	}
}

@media only screen and (max-width: 640px) {
	.header_wrap .inner_box {
		padding: 0 10px;
	}
	.header_wrap .top_nav {
		display: none;
	}
	.header_wrap .main_nav .logo {
		/*width: 200px;*/
	}
	.header_wrap .main_nav .nav{
		top:78px;
	}
}


/*****************************header over***************************/


/*****************************footer***************************/

.footer {
	background: url(../image/footer_bg.png) no-repeat center center;
	background-size: cover;
	height: auto;
}

.footer .wrap_box {
	max-width: 1150px;
	padding: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	color: #fef9f9;
	font-size: 16px;
	padding-top: 40px;
	border-bottom: 1px solid #fff;
}

.footer .left_box {
	width: 52.5%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

.footer .left_box ul {
	overflow: hidden;
	width: 440px;
}

.footer .left_box li {
	line-height: 70px;
	width: 220px;
	float: left;
	cursor: pointer;
}

.footer .left_box p {
	font-size: 16px;
	color: #999999;
	padding-top: 48px;
}

.footer .center_box {
	width: 47.5%;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.footer .center_box .inner_box {
	width: 420px;
}

.footer .center_box h5 {
	line-height: 60px;
	font-size: 18px;
}

.footer .center_box .search_box {
	line-height: 40px;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.footer .center_box .search_box .search_input {
	width: 300px;
	line-height: 38px;
	padding: 0 20px;
	font-size: 16px;
	border: 1px solid #fff;
	display: block;
	background: none;
}

.footer .center_box .search_box .search_btn {
	width: 106px;
	line-height: 38px;
	text-align: center;
	color: #fff;
	font-size: 20px;
	border: 1px solid #fff;
	display: block;
	margin-left: 8px;
	background: none;
}

.footer .center_box p {
	line-height: 34px;
	color: #999
}

.footer .right_box p:first-child {
	color: #666;
}

.footer .right_box p a {
	color: #999;
}

.footer .right_box p:last-child {
	padding-top: 50px;
}

.footer .mt {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 88px;
}

.footer .mt a {
	margin: 0 12px;
}

@media only screen and (max-width: 901px) {
	.footer .wrap_box {
		padding-top: 20px;
	}
	.footer .center_box .inner_box {
		text-align: center;
		width: 100%;
	}
	.footer .left_box {
		display: none;
	}
	.footer .center_box {
		width: 100%;
		padding-bottom: 10px;
	}
	.footer .center_box h5 {
		display: none;
	}
	.footer .center_box .search_box {
		display: none;
	}
}


/*****************************footer over***************************/


/*****************************首页更多按钮***************************/

.more_box {
	margin-top: 70px;
	width: 60px;
	height: 60px;
	border: 1px solid #fff;
	line-height: 58px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	position: relative;
	transition: all .3s linear;
	overflow: hidden;
	margin: 70px auto 0;
	cursor: pointer;
}

.more_box span {
	position: absolute;
	top: 0;
	right: 0;
	width: 140px;
	line-height: 58px;
	background: url(../image/xiaaf.png) no-repeat 84% center;
	text-align: left;
	padding-left: 10px;
}

.more_box:hover {
	width: 142px;
}


/*****************************首页更多按钮***************************/

.main_title_box {
	width: 50%;
	text-align: right;
	padding: 4% 15% 4% 0;
}

.main_title_box .en {
	font-size: 100px;
	color: #ededed;
	letter-spacing: 2px;
	font-weight: bold;
}

.main_title_box .cha {
	font-size: 36px;
	letter-spacing: 2px;
	color: #666;
	font-weight: bold;
}

@media only screen and (max-width: 1501px) {
	.main_title_box .en {
		font-size: 78px;
	}
}

@media only screen and (max-width: 1251px) {
	.main_title_box .en {
		font-size: 65px;
	}
}

@media only screen and (max-width: 1001px) {
	.main_title_box .en {
		font-size: 50px;
	}
}

@media only screen and (max-width: 901px) {
	.main_title_box {
		width: 100%;
		text-align: center;
		padding: 4% 0 4% 0;
	}
	.main_title_box .en {
		font-size: 36px;
	}
	.main_title_box .cha {
		font-size: 20px;
	}
}