:root{
	--main-color:#B12F24;
	--main-color-rgb: 177, 47, 36;
	--sub-color:#0B522E;
	--sub-color-rgb: 11, 82, 46;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.commonTitle {
	width: 100%;
	height: auto;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 30px;
}
.commonTitle.pos {
	position: absolute;
	left: 5%;
	top: 10%;
}
.commonTitle.c {
	text-align: center;
}
.commonTitle.w {
	color: #ffffff;
}
.commonTitle.w b {
	color: #ffffff;
}
.commonTitle p {
	font-size: 20px;
	opacity: .7;
}
.commonTitle b {
	font-size: 30px;
	line-height: 1.4;
	color: var(--main-color);
	font-weight: normal;
}
.commonTitle.mb25 {
	margin-bottom: 25px;
}
.commonTitle.oa b {
	font-size: 46px;
	font-weight: bold;
}
.commonTitle.t2 {
	display: none;
}
/*************/
.header.active .homePage, .header.active .hNav .hotTel, .header.active .hNav .lang {
	border: 1px solid rgba(var(--main-color-rgb), .5);
	color: var(--main-color);
}
.header.active .hNav .searchBox {
	border: 1px solid rgba(var(--main-color-rgb), .5);
}
.header.active .searchIcon {
	color: var(--main-color);
}
.header.active .homePage {
	color: var(--main-color);
}
.header.active .searchInput input {
	color: var(--main-color);
}
.header.active .menu_btn {
	background: transparent;
}
.header.active .menu_btn span, .header.active .menu_btn span:after, .header.active .menu_btn span:before {
	background-color: var(--main-color);
}
.header {
	width: 100%;
	height: auto;
	position: fixed;
	padding: 25px 5%;
	display: flex;
	justify-content: space-between;
	/*align-items: center;*/
	z-index: 100;
	-webkit-transition: all .35s;
}
.layout .header.active {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.logo {
	width: 180px;
	display: block;
	-webkit-transition: all .35s;
	position: relative;
	top: 10px;
}
.logo img.active{
	display: none;
}
.header.active .logo img{
	display: none;
}
.header.active .logo img.active{
	display: block;
}
.hNav {
	position: relative;
	right: 0;
	top: 0;
	display: flex;
}
.hNav .hotTel {
	border: 1px solid rgba(255, 255, 255, .5);
	display: flex;
	color: #ffffff;
	border-radius: 50px;
	padding: 0 10px;
	align-items: center;

	line-height: 38px;
	height: 40px;
	overflow: hidden;
}
.hNav .hotTel .icon {
	font-size: 22px;
	margin-right: 5px;
}
.hNav .hotTel .txt {
	font-size: 20px;
}
.hNav .lang {
	border: 1px solid rgba(255, 255, 255, .5);
	display: block;
	color: #ffffff;
	border-radius: 50px;
	padding: 0 10px;
	position: relative;
	margin-left: 15px;
	line-height: 38px;
	cursor: pointer;
	display: block;
}
.hNav .lang:hover {
	background: #ffffff;
	color: var(--main-color);
}
.hNav .lang .list {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	top: 100%;
	display: none;
}
.hNav .lang:hover .list {
	display: block;
}
.hNav .lang .list a {
	width: 100%;
	color: #ffffff;
	text-align: center;
	display: block;
}
.hNav .searchBox {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, .5);
	position: relative;
	line-height: 40px;
	text-align: center;
	border-radius: 50px;
	margin-left: 15px;
	overflow: hidden;
	margin-right: 80px;
	-webkit-transition: all .5s;
}
.hNav .searchBox:hover {
	width: 200px;
}
.homePage {
	padding: 0 25px;
	line-height: 38px;
	position: relative;
	display: block;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, .5);
	color: #ffffff;
	margin-right: 15px;
}
.homePage:hover {
	background: #ffffff;
	color: var(--main-color);
}
.menu_btn {
	position: absolute;
	right: 0;
	display: block;
	width: 60px;
	height: 60px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	color: transparent;
	border: none;
	top: -10px;
	background: rgba(255, 255, 255, .1);
	cursor: pointer;
}
.menu_btn span {
	top: 29px;
	left: 20px;
	width: 20px
}
.menu_btn span,
.menu_btn span:after,
.menu_btn span:before {
	position: absolute;
	height: 2px;
	background-color: #ffffff;
	border-radius: 1px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease
}
.menu_btn span:after,
.menu_btn span:before {
	content: "";
	left: 0;
	-webkit-transform: translateY(0) rotate(0)
}
.menu_btn span:before {
	top: -6px;
	width: 14px
}
.menu_btn span:after {
	top: 6px;
	width: 12px
}
.menu_btn.active span {
	background-color: transparent
}
.menu_btn.active span:before {
	-webkit-transform: translateY(6px) rotate(-45deg)
}
.menu_btn.active span:after {
	-webkit-transform: translateY(-6px) rotate(45deg)
}
.menu_btn.active span:after,
.menu_btn.active span:before {
	width: 20px
}
.searchIcon {
	width: 38px;
	height: 38px;
	color: #ffffff;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	line-height: 38px;
	text-align: center;
	font-size: 14px;
	
}
.searchInput {
	position: absolute;
	width: calc(100% - 40px);
	left: 0;
	top: 0;
	-webkit-transition: all .5s;
}
.searchInput input {
	display: block;
	border: none;
	background: transparent;
	width: 100%;
	outline: none;
	color: #ffffff;
	height: 38px;
	text-indent: 20px;
}
.searchInput input::-webkit-input-placeholder {
	color: #ffffff;
}
.menu_btn:hover {
	background: rgba(255, 255, 255, .3);
}
.nav {
	width: 40vw;
	height: 100%;
	position: fixed;
	right: -40vw;
	top: 0;
	background: #ffffff;
	box-shadow: 0 0 30px rgba(0, 0, 0, .1);
	z-index: 100;
	padding: 50px 75px;
	-webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
}
.nav.active {
	right: 0;
}
.nav ul {
	border-top: 3px solid var(--main-color);
}
.nav ul li {
	position: relative;
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding: 15px 0;
}
.nav ul li > a {
	display: block;
	width: 100%;
	font-size: 24px;
	line-height: 1.7;
	text-transform: uppercase;
}
.nav ul li .list {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
}
.nav ul li .list a {
	font-size: 16px;
	line-height: 2;
	margin-right: 25px;
	text-transform: uppercase;
}
.nav ul li a:hover {
	color: var(--main-color);
}
.closeIcon {
	width: 70px;
	height: 70px;
	position: absolute;
	right: 75px;
	top: 0;
	line-height: 70px;
	text-align: right;
	color: rgba(0, 0, 0, .3);
	font-size: 30px;
	cursor: pointer;
}

/**/
.copyright {
	background: var(--sub-color,#02b2cc);
	padding: 50px 0 20px;
}
.fTop {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	color: #ffffff;
	justify-content: space-between;
}
.fNav {
	width: calc(100% - 320px);
}
.fWechat {
	width: 300px;
	text-align: center;
	line-height: 1.6;
}
.fWechat ul {
	display: flex;
	justify-content: space-between;
}
.fWechat ul li {
	width: 140px;
}
.fWechat img {
	margin-bottom: 10px;
}
.fNav ul {
	display: flex;
}
.fNav ul li {
	/*width: 15%;*/
}
.fNav ul li + li{
	margin-left: 5%;
}
.fNav ul li:last-child {
	width: auto;
	margin-right: 0;
}
.fNav ul li a {
	display: block;
	color: rgba(255, 255, 255, .7);
	line-height: 40px;
	text-align: left;
	text-transform: uppercase;
}
.fNav ul li a:hover {
	color: #ffffff;
}
.fNav ul li a:first-child {
	font-weight: bold;
	color: #ffffff;
}
.fCenter {
	width: 100%;
	padding: 5px 0;
	border-top: 1px solid rgba(255, 255, 255, .5);
	border-bottom: 1px solid rgba(255, 255, 255, .5);
	margin-top: 25px;
}
.fCenter ul {
	display: flex;
	color: rgba(255, 255, 255, .7);
}
.fCenter ul li {
	width: auto;
	display: flex;
	position: relative;
	margin-right: 45px;
}
.fCenter ul li .icon {
	width: 40px;
	height: auto;
	line-height: 40px;
	text-align: left;
	font-size: 20px;
}
.fCenter ul li .txt {
	line-height: 40px;
}
.footer {
	padding: 15px 0;
	line-height: 20px;
	color: rgba(255, 255, 255, .5);
	font-size: 12px;
}
.footer a {
	color: rgba(255, 255, 255, .5);
}
.footer a.member{
	color: transparent;
}
.footer a:hover {
	color: rgba(255, 255, 255, 1);
}
.backTop:hover {
	background: var(--main-color);
}
@media screen and (max-width: 1024px) {
	.nav {
		width: 90vw;
		padding: 50px 35px;
		right: -90vw;
	}
	.closeIcon {
		width: 50px;
		height: 50px;
		right: 35px;
		line-height: 50px;
		font-size: 20px;
	}
	.nav ul li > a {
		font-size: 20px;
	}
	/**/
	.fNav ul li {
		width: 20%;
	}

}
@media screen and (max-width: 800px) {
	.commonTitle.oa b {
		font-size: 32px;
	}
	/*header*/
	.hNav .searchBox, .homePage, .hNav .hotTel {
		display: none;
	}
	.menu_btn {
		top: 0;
		position: unset;
	}
	.header {
		padding: 0;
	}
	.logo{
		width: 140px;
		display: flex;
		align-items: center;
		left: 20px;
		position: unset;
		margin-left: 20px;
	}
	.nav ul li > a {
		font-size: 18px;
		font-weight: bold;
	}
	.nav ul li {
		padding: 15px 0;
	}
	.nav ul li .list a {
		font-size: 14px;
		margin-right: 15px;
	}
	/*footer*/
	.copyright {
		padding: 30px 0 10px;
	}
	.copyright .w1400 {
		overflow: hidden;
	}
	.fTop {
		display: block;
		float: left;
		width: 300px;
	}
	.fNav {
		display: none;
	}
	.fWechat {
		width: 100%;
	}
	.fWechat ul {
		justify-content: center;
	}
	.fWechat ul li {
		margin: 0 15px;
		width: 120px;
	}
	.fCenter ul {
		flex-wrap: wrap;
		display: block;
	}
	.fCenter {
		width: calc(100% - 320px);
		float: right;
		margin: 0;
		border: none;
	}
	.footer {
		padding: 0;
		float: left;
		padding-top: 15px;
		margin-top: 15px;
		border-top: 1px solid rgba(255, 255, 255, .5);
		width: 100%;
	}

}
@media screen and (max-width: 767px) {
	.commonTitle.t2 {
		display: block;
	}
	.commonTitle.t1 {
		display: none;
	}
	.commonTitle.l {
		text-align: left;
	}
	.commonTitle.m {
		margin-bottom: 0;
	}
	.commonTitle {
		margin-bottom: 20px;
	}



	/**/
	.fTop, .fCenter {
		width: 100%;
	}
	.fWechat {
		padding: 0;
		margin-bottom: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .3);
		padding-bottom: 25px;
	}
	.footer {
		margin-top: 0;
	}
	.fWechat p {
		font-size: 12px;
	}
	.fCenter ul li {
		width: 100%;
		margin-right: 0;
	}
	.fWechat ul li {
		width: 110px;
	}
	.backTop {
		display: none;
	}
}