@charset "UTF-8";
*{
	scrollbar-width: thin;
}
body.on{
	overflow-y: hidden;
}
.menu-box{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 990;
	margin-top: 110px;
	/* background: white; */
	background: rgba(245, 245, 245, 1);
	display: none;
	transition: all 0s;
}
.menu-box.fixed{
	margin-top: 80px;
}
.menu-box.on{
	display: block;
}
.slogon{
	padding: 5rem 10rem 0 10rem;
	color: #255aa8;
}

.menu-box .menu-li{
	display: none;
}
.menu-box .menu-li.on{
	display: block;
}
.menu-li-one{
	display: flex;
	padding: 3.5rem 10rem;
	justify-content: space-between;
}

.menu-li-one>li>a{
	font-size: 1.25rem;
	font-weight: bold;
	color: #333333;
}

.menu-li-two{
	margin-top: 2rem;
	border-left: 1px solid #dddddd;
	padding-left: 1rem;
}

.menu-li-two>li{
	line-height: 1;
	font-size: 1.125rem;
	margin-bottom: 2.5rem;
}

.menu-li-two>li>a{
	color: #555555;
}

.menu-li-two li a:hover{
	color: #255aa8;
}

.menu-li-three{
	margin-top: 1.5rem;
	padding-left: 1rem;
}

.menu-li-three>li{
	line-height: 1;
	margin-bottom: 1.25rem;
}

.menu-li-three>li:last-child{
	margin-bottom: 0;
}

.menu-li-three>li>a{
	color: #888888;
}

.menu-li .menu-li-first{
	display: flex;
	justify-content: flex-start;
	padding: 5rem 10rem;
}


.menu-li .menu-li-first li{
	width: 20%;
	
}

.menu-li .menu-li-first>li{
	line-height: 1;
	font-size: 1.125rem;
}

.menu-li .menu-li-first>li>a{
	color: #555555;
}

.menu-li .menu-li-first li a:hover{
	color: #255aa8;
}
/* header */
.header-box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 110px;
	padding: 0 60px;
	background: rgba(255, 255, 255, 0);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999;
	transition: all 0s;
}

.header {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
}

.header-left .logo {
	height: 100%;
	display: flex;
	justify-content: left;
	align-items: center;
}

.header-right {
	display: flex;
	color: #ffffff;
	display: flex;
	justify-content: flex-end;
}


/* 搜索下拉 */
.search {
	transition: 0.5s;
	position: fixed;
	top: -100%;
	opacity: 0;
	width: 100%;
	background: rgba(255, 255, 255, 1);
	min-height: 10rem;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	padding: 10%;
}

.search .search-close {
	position: absolute;
	top: 15%;
	right: 10%;
}

.search .search-close span {
	transition: 0.4s;
	display: inline-block;
	font-size: 1.5rem;
	cursor: pointer;
	color: #333333;
	transition: all 0.3s;
}

@media all and (min-width: 768px) {
	.search .search-close span:hover {
		color: #255aa8;
		transform: rotate(180deg);
	}
}

.search .search-box {
	width: 80%;
}

.search .search-box form .search-main {
	background: #eeeeee;
	border-radius: 175rem;
	line-height: 1.75rem;
	overflow: hidden;
	padding: 1.5rem 2rem;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.search .search-box form .search-main .icon-search span {
	width: 1rem;
	color: #255aa8;
}

.search .search-box form .search-main .text {
	flex: 1;
	padding: 0rem 1rem;
}

.search .search-box form .search-main .text input {
	width: 100%;
	border: none;
	outline: none;
	background: none;
	border-left: 1px solid #d7d7d7;
	padding: 0 2rem;
	line-height: 2rem;
	font-size: 1.125rem;
}

.search .search-box form .search-main .text input::placeholder {
	color: #999999;
}

.search .search-box form .search-main .btn input {
	cursor: pointer;
	color: #666666;
	border: none;
	background: none;
	font-weight: bold;
	outline: none;
	font-size: 1.25rem;
}

.search .search-box form .search-main .btn input:hover {
	color: #255aa8;
}

/* 语言下拉 */
.m-language {
	display: none;
}

.language {
	position: relative;
}

.language-sub {
	display: none;
	position: absolute;
	top: 40px;
	left: 50%;
	z-index: 999;
	width: 500%;
	transform: translateX(-50%);
	text-align: center;
	border-radius: 10px;
	padding: 0.5rem 0;
	background: rgba(0, 0, 0, .5);
}

.language-sub a {
	color: #ffffff;
	font-size: 1.125rem;
	display: block;
	line-height: 2;
}

.language-sub a:hover {
	background: rgba(255, 255, 255, 0.7);
	color: #333333;
}

.language-sub::before {
	content: '';
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	border-top: 10px solid transparent;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-bottom: 10px solid rgba(0, 0, 0, .5);
}

.language:hover .language-sub {
	display: block;
}

.window {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 99;
	display: none;
}

.window.on {
	display: block;
}


/* 网站地图 */
.sitemap {
	transition: 0.5s;
	position: fixed;
	top: -100%;
	opacity: 0;
	width: 100%;
	background: rgba(255, 255, 255, 1);
	background: #255aa8;
	min-height: 10rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	padding: 10% 0 5%;
	height: 100%;
}

.sitemap .sitemap-box {
	width: 70%;
	margin: 0 auto;
	height: 100%;
}

.sitemap .sitemap-close {
	position: absolute;
	top: 10%;
	right: 10%;
}

.sitemap .sitemap-close span {
	transition: 0.4s;
	display: inline-block;
	font-size: 1.5rem;
	cursor: pointer;
	color: #ffffff;
	transition: all 0.3s;
}

@media all and (min-width: 768px) {
	.sitemap .sitemap-close span:hover {
		transform: rotate(180deg);
	}
}


.sitemap .sitemap-menu {
	width: 100%;
	height: 65%;
	color: #ffffff;
}

.sitemap .sitemap-menu ul {
	justify-content: space-between;
	align-items: flex-start;
}

.sitemap .sitemap-menu ul li {
	margin-bottom: 2rem;
}

.sitemap .sitemap-menu ul li h5 {
	font-size: 1.625rem;
	color: #FFFFFF;
	font-weight: normal;
	line-height: 1.5;
}

.sitemap .sitemap-menu ul li h5 span {
	display: none;
}

.sitemap .sitemap-menu ul li .sitemap-menu-sed {
	margin-top: 2.25rem;
}

.sitemap .sitemap-menu ul li p {
	font-size: 1.125rem;
	line-height: 2.25;
}

.sitemap .sitemap-menu ul li p a {
	opacity: 0.8;
	color: #ffffff;
}

.sitemap .sitemap-menu ul li p a:hover {
	text-decoration: underline;
	opacity: 1;
}

.sitemap .sitemap-foot {
	width: 100%;
	height: 35%;
	border-top: 1px rgba(255, 255, 255, 0.5) solid;
	color: #ffffff;
	padding-top: 2%;
	justify-content: space-between;
}

.sitemap .sitemap-foot .sitemap-add {
	width: 80%;
}

.sitemap .sitemap-foot .sitemap-add>.flex {
	justify-content: flex-start;
	padding: 1rem 0;
}

.sitemap .sitemap-foot p {
	line-height: 1.5;
	margin-right: 2rem;
	font-size: 1rem;
	opacity: 0.8;
}

.sitemap .sitemap-foot p span {
	margin-right: 0.5rem;
}

.sitemap .sitemap-ewm {
	width: 20%;
	justify-content: flex-end;
}

.sitemap .sitemap-ewm img {
	padding: 0.375rem;
	background-color: #ffffff;
}


/* menu */
.header-menu {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.header-menu>div {
	margin: 0 0 0 30px;
}

.header-menu>div:hover {
	cursor: pointer;
}

.header-menu>div span {
	font-size: 1.25rem;
}

.header-menu>div span:last-child {
	font-size: 1.375rem;
}



/* 菜单下拉 */
#nav_menu:after,
#nav_menu>ul:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

#nav_menu {
	line-height: 1;
}

#nav_menu>ul {
	height: 100%;
	justify-content: space-around;
}

#nav_menu>ul>li>ul::before {
	position: absolute;
	top: -6px;
	left: 0;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	border-top: 10px solid transparent;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-bottom: 10px solid rgba(255, 255, 255, .9);
	content: "";
}

#nav_menu>ul>li {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 1.25rem;
	position: relative;
	height: 100%;
}

#nav_menu>ul>li>a {
	text-decoration: none;
	transition: all .2s;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 0 2.5rem;
	display: flex;
	align-items: center;
	color: #FFFFFF;
	height: 100%;
	cursor: pointer;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-webkit-user-select: none;
	-moz-user-focus: none;
	-ms-user-select:none;
	user-select:none;
}

#nav_menu ul ul {
	position: absolute;
	left: -9999px;
	top: 85%;
	z-index: 999999;
}

/* #nav_menu li:hover>ul {
	left: auto;
} */

/* #nav_menu.align-right li:hover>ul {
	right: 0;
} */

#nav_menu ul ul ul {
	margin-left: 100%;
	top: 0;
}

#nav_menu ul ul li {
	height: 0;
	position: relative;
}

#nav_menu>ul>li>ul>li:first-child>a,
#nav_menu>ul>li>ul>li>ul>li:first-child>a,
#nav_menu>ul>li>ul>li>ul>li>ul>li:first-child>a {
	border-radius: 5px 5px 0 0;
}

#nav_menu>ul>li>ul>li:last-child>a,
#nav_menu>ul>li>ul>li>ul>li:last-child>a,
#nav_menu>ul>li>ul>li>ul>li>ul>li:last-child>a {
	border-radius: 0 0 5px 5px;
	overflow: hidden;
}

/* #nav_menu ul li:hover>ul>li {
	height: auto;
} */

#nav_menu ul ul li a {
	padding: 0.5rem 1rem;
	width: 15rem;
	font-size: 1.125rem;
	line-height: 20px;
	background: rgba(255, 255, 255, .9);
	text-decoration: none;
	color: #333;
	transition: all 0s;
	text-align: left;
	display: block;
}

#nav_menu ul ul ul li a {
	background: rgba(235, 235, 235, .95);
	font-size: 1.125rem;
	transition: all 0s;
} 

@media screen and (min-width: 769px) {

	#nav_menu ul ul li:hover>a,
	#nav_menu ul ul li a:hover {
		background: #255aa8;
		color: #FFFFFF;
	}
}

#nav_menu ul ul li.has-sub>a::after {
	position: absolute;
	top: 40%;
	right: 10px;
	width: 6px;
	height: 6px;
	border-bottom: 1px solid #666666;
	border-right: 1px solid #666666;
	content: "";
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* #nav_menu ul ul li.has-sub:hover>a::after {
	border-bottom-color: #ffffff;
	border-right-color: #ffffff;
} */

/* 互动 */
.header-box.on {	
	background: rgba(245, 245, 245, 1);
	box-shadow: 0 3px 5px rgba(0,0,0, 0.2);
}

.header-box.on .header {
	height: 100%;
}

.header-box.on .header .logo {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.header-box .fixed-img {
	display: none;
}

.header-box.on .fixed-img {
	display: block;
	height: 66%;
}

.header-box.on .logo-img {
	display: none;
}

.header-box.on #nav_menu ul ul {
	top: 5rem;
}

.header-box.on #nav_menu ul ul ul {
	top: 0rem;
}

.header-box.on #nav_menu>ul>li>a,
.header-box.on .header-right {
	color: #000000;
}



/* 固定 */
.header-box.fixed {
	position: fixed;
	background: rgba(245, 245, 245, 1);
	transition: all 0.2s;
	height: 80px;
}

.header-box.fixed .header {
	height: 100%;
}

.header-box.fixed .header .logo {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.header-box .fixed-img {
	display: none;
}

.header-box.fixed .fixed-img {
	display: block;
	height: 66%;
}

.header-box.fixed .logo-img {
	display: none;
}

.header-menu span:hover {
	opacity: 0.7;
}

.header-box.fixed #nav_menu ul ul {
	top: 5rem;
}

.header-box.fixed #nav_menu ul ul ul {
	top: 0rem;
}

.header-box.fixed #nav_menu>ul>li>a,
.header-box.fixed .header-right {
	color: #000000;
}

.header-box .header-right .header-menu,
.header-box .header-right .header-menu>div,
.header-box .header-right .header-menu span {
	transition: all 0s;
}


@media screen and (max-width: 1700px) {
	.header-box .header-left {
		width: 40%;
	}

	/* #nav_menu>ul>li {
		font-size: 1.25rem;
	} */
}

@media screen and (max-width: 1500px) {
	.header-box {
		padding: 0 40px;
	}

	.header-menu>div {
		margin: 0 0 0 20px;
	}

	#nav_menu>ul>li>a {
		padding: 0 2rem;
	}

	.sitemap {
		padding: 9% 0 5%;
	}

	.sitemap .sitemap-box {
		width: 80%;
	}

	.sitemap .sitemap-close,
	.search .search-close {
		top: 4rem;
		right: 5rem;
	}

	.search .search-box {
		width: 90%;
	}

	.sitemap .sitemap-menu ul li h5 {
		font-size: 1.5rem;
	}

	.sitemap .sitemap-menu ul li .sitemap-menu-sed {
		margin-top: 1.5rem;
	}

	.sitemap .sitemap-menu ul li p {
		font-size: 1.125rem;
		line-height: 2;
	}
}

@media screen and (max-width: 1300px) {
	.header-box {
		padding: 0 30px;
	}

	#nav_menu>ul>li>a {
		padding: 0 1.5rem;
	}

}

@media screen and (max-width: 1200px) {
	#nav_menu {
		display: none;
	}

	.header-box .header-left {
		width: 60%;
	}
}

@media screen and (max-width: 1000px) {
	.sitemap .sitemap-menu ul {
		overflow-y: auto;
	}

	.language {
		display: none;
	}

	.m-language {
		display: block;
		margin-top: 3rem;
		padding: 0 10%;
	}

	.m-language a {
		color: #FFFFFF;
		font-size: 1.25rem;
	}

	/*  */
	.sitemap {
		top: inherit;
		left: -100%;
	}

	.sitemap .sitemap-close {
		top: 5%;
		right: 5%;
	}

	.sitemap .sitemap-box {
		width: 100%;
	}

	.sitemap .sitemap-menu {
		margin-top: 2rem;
	}

	.sitemap .sitemap-menu ul li {
		width: 100%;
		border-bottom: 1px solid rgb(255, 255, 255, .5);
		margin: 0;
	}

	.sitemap .sitemap-menu ul li a {
		display: block;
	}

	.sitemap .sitemap-menu ul li h5 {
		display: flex;
		justify-content: space-between;
		cursor: pointer;
		padding: 1.5rem 10%;
	}

	.sitemap .sitemap-menu ul li h5 span {
		display: block;
	}

	.sitemap .sitemap-menu ul li h5 span i {
		font-style: normal;
		font-size: 1.5rem;
	}

	.sitemap .sitemap-menu ul li .sitemap-menu-sed {
		background: #0e4596;
		margin: 0;
		padding: 1rem 0;
	}

	.sitemap .sitemap-menu ul li .sitemap-menu-sed p {
		padding: 0 10%;
		line-height: 2.5;
	}

	.sitemap .sitemap-menu ul li h5 span .sitemap-menu-show {
		display: none;
	}

	.sitemap .sitemap-menu ul li p:hover {
		background: rgba(255, 255, 255, .2);
	}

	.sitemap .sitemap-menu ul li p a {
		padding-left: 1rem;
	}

	.sitemap .sitemap-menu ul li p a:hover {
		text-decoration: none;
	}

	.sitemap-foot {
		display: none;
	}

	.sitemap .sitemap-menu-sed {
		display: none;
		height: 0;
	}

	.sitemap .sitemap-menu-sed.on {
		display: block;
		height: auto;
	}

	.sitemap .sitemap-menu ul li h5 {
		position: relative;
	}


}

@media screen and (max-width: 768px) {
	.header-box {
		padding: 0 20px;
		height: 60px;
	}

	.header-box.fixed {
		height: 60px;
	}

	.header-box.fixed .fixed-img {
		height: auto;
	}

	.header-box .header-left {
		width: 70%;
	}

	.m-language a {
		font-size: 1.5rem;
	}

	.sitemap .sitemap-close,
	.search .search-close {
		top: 2rem;
		right: 2rem;
	}


	.search {
		padding: 10% 5%;
	}

	.search .search-box {
		width: 100%;
	}

	.search .search-box form .search-main .text input {
		font-size: 1.5rem;
	}


	.sitemap .sitemap-menu ul li h5 {
		font-size: 16px;
	}

	.sitemap .sitemap-menu ul li .sitemap-menu-sed p {
		line-height: 3;
	}

	.sitemap .sitemap-menu ul li p a {
		padding-left: 14px;
	}

	.sitemap .sitemap-menu ul li h5 span i {
		font-size: 2rem;
	}

}

@media screen and (max-width: 450px) {
	.header-box {
		height: 46px;
	}

	.header-box.fixed {
		height: 46px;
	}

	.sitemap .sitemap-menu ul li {
		padding: 0;
	}

	.sitemap .sitemap-menu ul li p {
		font-size: 14px;
	}

	.search {
		padding: 12% 5% 8%;
	}

}

.footer {
	background-color: #091a27;
	padding: 6rem 6rem 1rem;
}

.footer .footer-logo-img img {
	background-color: #ffffff;
	padding: 0.3rem;
}

.footer .footer-logo-img span {
	font-size: 1.125rem;
	line-height: 3;
	color: #ffffff;
	text-align: center;
	display: inline-block;
	margin-right: 1rem;
}


.footer-menu {
	justify-content: space-between;
	align-items: flex-start;
	min-height: 22rem;
}

.footer-menu-nav h5 {
	color: #ffffff;
	font-weight: normal;
	font-size: 1.25rem;
}

.footer-menu-li {
	margin-top: 3rem;
}

.footer-menu-li ul li a {
	color: #60737d;
	font-size: 1.125rem;
	padding: 0.25rem 0;
}

.footer-menu-li ul li a:hover {
	text-decoration: underline;
}

.footer-contact h5 {
	color: #ffffff;
	font-weight: normal;
	font-size: 1.375rem;
}

.footer-contact-con {
	margin-top: 3rem;
}

.footer-contact-con p {
	color: #60737d;
	font-size: 1.125rem;
	padding: 0.25rem 0;
}

.footer-contact-con p span {
	margin-right: 1rem;
}

.footer-copy {
	justify-content: space-between;
	border-top: 1px solid #22323b;
	color: #60737d;
	font-size: 1.125rem;
	padding: 2rem 0;
}

.footer-copy-con {
	justify-content: flex-start;
}

.footer-copy-con-txt {
	margin: 0.5rem 0;
}

.footer-link {
	line-height: 1.5;
}

.footer-link a,
.footer-copy-con-txt > *{
	margin-right: 1.5rem;
}
.footer-copy a {
	color: #60737d;
	line-height: 1;
}

.footer-copy a:hover {
	text-decoration: underline;
}

.footer-copy a img {
	margin-right: 1rem;
	display: inline-block;
}

.footer-copy a.wangbei {
	position: relative;
	padding-left: 1.5rem;

}

.footer-copy a.wangbei::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background: #60737d;
}

@media screen and (max-width: 768px) {
	.footer {
		padding: 5rem 3rem 2rem;
		
	}

	.footer .footer-menu {
		flex-wrap: wrap;
		
	}
	
	.footer .footer-menu-ewm{
		width: 100%;
	}
	
	.footer .footer-menu-logo img {
		margin: 0 auto;
	}

	.footer .footer-logo-img {
		text-align: center;
	}

	.footer .footer-logo-img span {
		font-size: 14px;
	}
	
	.footer .footer-menu-nav,
	.footer .footer-contact{
		margin-top: 2rem;
		padding-right: 2rem;
	}
	
	.footer-menu-li,
	.footer-contact-con{
	    margin-top: 1rem;
	}
	
	.footer-menu-nav h5,
	.footer-contact h5 {
	    font-size: 16px;
	}
	
	.footer-menu-li ul li a,
	.footer-contact-con p{
		font-size: 14px;
	}
	
	.footer-copy{
		margin-top: 2rem;
		font-size: 14px;
	}
	
	.footer-link{
		margin-top: 2rem;
	}
}

@media screen and (max-width: 450px) {
	.footer {
	    padding: 5rem 2rem 2rem;
	}
	
}