
/* @font-face {
  font-family: "思源黑体 Bold";font-weight: 700;src: url("//at.alicdn.com/wf/webfont/rS2gw5Ud34Yv/Dp7yscaEEv5W.woff2") format("woff2"),
  url("//at.alicdn.com/wf/webfont/rS2gw5Ud34Yv/AXGtogWPjEXF.woff") format("woff");
  font-display: swap;
} */

:root {
	--header-height: 120px;
}

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
a{
	outline: none;
}
a:active{
	outline: none;
}
a:focus{
	outline: none;
}
button{
	outline: none;
}
button:active{
	outline: none;
}
button:focus{
	outline: none;
}
body{
	position: relative;
	padding-top: 0px;
}

body > header {
	width: 100%;
	height: 120px;
	position: fixed;
	z-index: 10;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	max-width: 1920px;
	transition: background-color 0.3s ease-in-out;
	background: rgba(4,34,109, 0.2);
}
body > .head{
	background: rgba(0,0,0, 0.1);
}
/* body > header.scrolled {
	background-color:rgba(156, 170, 199, 0.5);
}
body > header:hover{
	background-color:rgba(156, 170, 199, 0.5);
} */
body > header .headerDiv{
	margin: auto;
	width: 100%;
	max-width: 1420px;
	padding: 0 10px;
	height: 120px;
	color: #fff;
	display: flex;
	align-items: center;
}
body > .head a{
	color: #333333;
}

body > header .logo, body > header nav, body > header .search, body > header nav ul li, body > header dl dt{
	display: inline-block;
}
body > header dl dt img {
	width: 18px;
}
body > header dl dt img.img3{
	width: 20px;
}
body > header dl dt img.img4{
	width: 22px;
}
body > header a{
	color: #fff;
}

body > header .logo{
	margin-right: 10px;
	display: flex;
}
body > header .logo a img{
	height: 60px;
	display: block;
}
body > header .logo a{
	position: relative;
	outline: none;
}

body > header nav{
	margin: 0 auto;
	font-size: 14px;
	line-height: 24px;
	flex: 1;
	display: flex;
	justify-content: flex-end;
}
body > header nav .select-language{
	display: flex;
	flex-direction: row;
	align-items: center;
	position: relative;
}
.select-language-down{
	display: none;
	position: fixed;
	left: 0;
	top: 100%;
	z-index: 12;
}
.select-language-down:after{
	content: '';
	position: absolute;
	left: 50%;
	margin-left: -10px;
	top: -20px;
	border: 10px solid;
	border-color: transparent transparent #FFFEFF transparent;
}
.select-language-down ul{
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
}
.select-language-down.active{
	display: block;
}
.select-language-down li{
	color: #333;
	padding: 5px 15px;
}
.select-language-down li.active{
	background: #EAEFFA;
}
.select-language-down li a{
	color: #333;
	display: flex;
	align-items: center;
	font-size: 16px;
}
.select-language-down li a img {
	width: 18px;
	margin-right: 10px;
}
body > header nav .select-language{
	cursor: pointer;
}
body > header nav .select-language .flag{
	width:18px;
}
body > header nav .select-language p{
	padding: 0 5px;
}

body > .head  nav .select-language .fa{
	color: #333;
}
body > .head  nav .select-language p{
	color: #333;
}
body > header nav select.sel > option{
	color: #000;
}
body > header nav>ul{
	display: none;
	position: absolute;
	left: 0;
	top: 100px;
	width: 100%;
	font-size: 16px;
	padding: 8px 0;
}
body > header nav>ul li{
	margin: 8px 25px;
	padding-bottom: 2px;
	border-bottom: 2px solid #ffffff00;
	transition: all 0.3s ease-in-out;
}
body > header nav>ul .focus,body > header nav>ul li:hover{
	font-size: 16px;
	border-bottom: 2px solid #fff;
}
body > .head nav ul .focus,body > .head nav ul li:hover{
	font-size: 16px;
	border-bottom: 2px solid #333;
}
body > header nav>ul li a{
	font-size: 16px;
}
body > header nav>ul li i {
	margin-left: 3px;
}
.mobile-menu {
	width: 30px;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-left: 15px;
}
.mobile-menu span{
	display: block;
	width: 100%;
	height: 3px;
	background: #FFFFFF;
	margin: 3px 0;
	border-radius: 1.5px;
	transition: all .3s linear;
}
.head .mobile-menu span{
	background: #143EB3;
}
.mobile-menu.active span:nth-child(1) {
    transform: rotate(32deg) translateX(2px);
    transform-origin: left;
}
.mobile-menu.active span:nth-child(2) {
	opacity: 0;
}
.mobile-menu.active span:nth-child(3) {
	transform: rotate(-32deg) translateX(2px);
	transform-origin: left;
}
/* 隐藏桌面导航 */
.main-nav {
	display: flex;
	position: static;
	flex-direction: row;
	justify-content: flex-end;
	flex: 1;
}
/* 激活状态样式 */
.main-nav.active {
	display: flex;
	top: 100%;
	background: none;
	flex-wrap: wrap;
}
/* @media screen and (max-width: 670px) {
	body > header nav>ul {
		display: none;
		position: absolute;
		background-color: #9b0054;
		left: 0;
		top: 100px;
		width: 100%;
		font-size: 16px;
		padding: 8px 0;
	}
	body > header nav>ul li {
		margin: 8px 32px;
	}
	body > header nav>ul .focus {
		font-size: 16px;
	}
	body > header {
		background-color:rgba(156, 170, 199, 0.5);
	}

	.navPoolFloatDiv {
	    top: 120px;
	    position: fixed;
	}  
	.navPoolFloatDiv .subnav {
	    column-count: 1;
	    padding: 10px;
	}
	
} */

body > header .search{
	margin-left: 2%;
	width: 24px;
	height: 24px;
	cursor: pointer;
}
body > header .search span{
	width: 100%;
	height: 100%;
	font-size: 24px;
	color: #fff;
	transform: rotate(-45deg);
}

body > header dl {
	margin-left: 10px;
	flex-direction: row;
	align-items: center;
	display: flex;
}

body > header dl dt{
	margin-left:20px;
}
body > header dl dt i{
	width: 24px;
	height: 24px;
	font-size: 22px !important;
}

/* 二级导航栏-产品分类 */
.navPoolFloatDiv {
	position: fixed;
	top: 120px;
	left: 0;
	width: 100%;
	max-height: 0;
	/* overflow: hidden; */
	transition: max-height 0.3s ease-out;
	background: rgba(0,0,0,0.4);
	z-index: 11;
	
	/* align-items: flex-start;
	transition: height 0.3s ease, padding-top 0.3s ease; */
}
.navPoolFloatDiv .triangle{
	width: 0;
	height: 0;
	border: 10px solid;
	border-color: transparent transparent #FFFEFF transparent;
	position: absolute;
	left: 0px;
	top: -20px;
	display: none;
}
.navPoolFloatDivCont{
	max-width: 1200px;
	margin: 0 auto;
}
.navPoolFloatDivCont ul li a{
	color: #fff;
	font-size: 16px;
	font-weight: normal;
}
.navPoolFloatDivCont .subnav {
    display: none;
    column-count: 4;
    padding: 0 20px;
}
.navPoolFloatDivCont .subnav>li{
	flex: 1;
}
.navPoolFloatDivCont .subnav>li .li ul li a{
	font-size: 14px;
	line-height: 40px;
}
.navPoolFloatDivCont .subnav>li .li ul li:first-child a{
	font-size: 16px;
}
.navPoolFloatDivCont .subnav.active {
    display: flex;
}
.navPoolFloatDiv.active {
    max-height: 50vh;
	border-top: 2px solid #DEDEDC;
}
.navPoolFloatDiv.active .navPoolFloatDivCont{
	padding: 20px 0;
}



/* 页面底部 */
.footer-container{
	position: relative;
	background-image: url('/_s_images/home_footer_bg.png');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 40px 0;
	overflow: hidden;
	max-width: 1920px;
	margin: 0 auto;
	width: 100%;
}
.content-wrapper, .content-bottom {
	max-width: 1300px;
	margin: 0 auto;
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}
.content-wrapper .logo-section,.content-wrapper .subscribe-section{
	padding: 0px 10px;
	margin-top: 20px;
	flex: 1;
	width: auto;
}
.content-wrapper .link-section{
	padding: 0px 10px;
	margin-top: 20px;
	width: auto;
	flex: 1;
}
.content-wrapper .logo-section img{
	width: 80%;
}
.content-wrapper .logo-section p{
	font-size: 16px;
	padding-top: 30px;
	width: 80%;
}
.link-section{
	
}
.link-section h3{
	
}
.link-section ul{
	list-style-type: none;
}
.link-section ul li{
	padding-top: 15px;
}
.link-section ul li a{
	color: #fff;
	opacity: 0.7;
}
.subscribe-section{
	
}
.subscribe-section form.allSubmitForm{
	display: flex;
	flex-direction: column;
	padding-top: 12px;
}
.subscribe-section form.allSubmitForm input,
.subscribe-section form.allSubmitForm textarea,
.subscribe-section form.allSubmitForm button{
	margin-top: 15px;
	padding: 15px;
	border: none;
	background-color: rgba(255, 255, 255, 0.2);
	outline: none;
	resize: none;
	color: #fff;
}
.subscribe-section form.allSubmitForm .tips{
	font-size: 12px;
}
.subscribe-section form.allSubmitForm input::placeholder,
.subscribe-section form.allSubmitForm textarea::placeholder,
.subscribe-section form.allSubmitForm button::placeholder{
	color: #fff;
	opacity: 0.7;
}
.subscribe-section form.allSubmitForm input:first-child{
	margin-top: 0;
}
.subscribe-section form.allSubmitForm textarea{
	height: 180px;
}
.subscribe-section form.allSubmitForm button[type="button"] {
	background-color: transparent;
	border: 1px solid white;
	cursor: pointer;
	padding: 10px 20px;
	transition: background-color 0.3s ease;
}
.subscribe-section form.allSubmitForm button[type="button"]:hover {
	background-color: white;
	color: blue;
}
.content-bottom div.l{
	padding-top: 52px;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.content-bottom div.r{
	padding: 0px 20px;
}
.content-bottom div.r div{
	padding: 20px 0px;
	padding-bottom: 0;
}
.content-bottom div.r div ul{
	display: flex;
}
.content-bottom div.r div ul li{
	padding-right: 26px;
}
.content-bottom div.r div ul li img{
	max-width: 100%;
	width: 22px;
}
.default-btn-arrow-radius{
	background: #838485;
	border-radius: 50%;
	display: flex ;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	padding-left: 2px;
}
.default-btn-arrow-radius i {
	color: #fff;
	font-size: 16px;
}
.scroll-top{
	position: fixed;right: 20px;
	bottom: 100px;
	z-index: 99;
	border: 3px solid #1239AE;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	background: #fff;
	transition: opacity .3s linear;
	pointer-events:none;
	opacity: 0;
}
.scroll-top i{
	color: #1239AE;
	font-size: 40px;
}
.scroll-top.active{
	pointer-events:auto;
	opacity: 1;
}

/* 自适应适配 */
@media screen and (max-width: 1200px){
	:root {
		--header-height: 80px;
	}
	body > header {
		height: 80px;
	}
	body > header .headerDiv{
		height: 80px;
	}
	body > header dl dt{
		margin-left: 15px;
	}
	body > header nav>ul li{
		margin: 8px 15px;
	}
	body > header nav>ul li a{
		font-size: 	14px;
	}
	
	body > header .logo a img{
		height: 50px;
	}
	.content-wrapper{
		flex-wrap: wrap;
	}
	.content-wrapper .logo-section,.content-wrapper .subscribe-section{
		width: 33.333%;
		flex: none;
	}
	.content-wrapper .link-section{
		width: 33.333%;
	}
	.navPoolFloatDivCont .subnav>li .li ul li a{
		font-size: 12px;
		line-height: 30px;
	}
	.navPoolFloatDivCont .subnav>li .li ul li:first-child a{
		font-size: 14px;
	}
	.navPoolFloatDivCont ul li a{
		font-size: 14px;
	}
	.content-wrapper .logo-section p{
		width: 90%;
	}
}
@media screen and (max-width: 1024px){
	body{
		padding-top: 80px;
	}
	body > header {
		background: #143EB3;
	}
	body > .head{
		background: #fff;
		box-shadow: 0 1px rgba(0,0,0,.1);
	}
	body > header dl {
		display: none;
	}
	body > header dl dt{
		margin-left: 10px;
	}
	body > header nav>ul li{
		margin: 8px 25px;
	}
	
	body > header nav .mobile-menu {
		display: flex;
	}
	.content-wrapper .logo-section,.content-wrapper .subscribe-section{
		width: 50%;
		flex: none;
	}
	.content-wrapper .link-section{
		width: 50%;
	}
	.content-wrapper .logo-section img{
		width: 50%;
	}
	.main-nav {
		display: none;
		position: absolute;
		left: 0;
		width: 100%;
		justify-content: flex-start;
	}
	.main-nav.active {
		background: #143EB3;
	}
	.head .main-nav.active {
		background: rgba(0, 0, 0, 0.4);
	}
	body > .head a{
		color: #fff;
	}
	body > .head nav ul .focus,body > .head nav ul li:hover{
		border-bottom: 2px solid #fff;
	}
}
@media (max-width: 768px) {
	:root {
		--header-height: 60px;
	}
	body{
		padding-top: 60px;
	}
	body > header {
		height: 60px;
	}
	body > header .headerDiv{
		height: 60px;
	}
	.link-section, .subscribe-section {
		flex: 1 0 100%;
	}
	body > header dl dt{
		margin-left: 8px;
	}
	body > header .logo a img{
		height: 40px;
	}
	
	.content-wrapper, .content-bottom {
		flex-direction: column;
	}
	.content-wrapper .logo-section,.content-wrapper .subscribe-section{
		width: auto;
		flex: 1;
	}
	.content-bottom div.l{
		padding: 0px 10px;
	}
	.content-bottom div.r{
		padding: 0px 10px;
	}
	.content-wrapper .logo-section img{
		width: 60%;
	}
	.scroll-top{
		width: 32px;
		height: 32px;
		right: 10px;
		bottom: 60px;
	}
	.scroll-top i{
		font-size: 30px;
		margin-bottom: 2px;
	}
}

/* 鼠标图片放大效果 */
.scale-img{
	overflow: hidden;
}
.scale-img img{
	transition: all .3s linear;
}
.scale-img:hover img{
	transform: scale(1.1);
}
/* 鼠标悬停阴影 */
.shadow-box,.shadow-box-deep{
	transition: all .3s linear;
}
.shadow-box:hover{
	box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

/* 鼠标悬停阴影向上位移 */
.shadow-y-box{
	transition: all .3s linear;
	position: relative;
	z-index: 9;
}
.shadow-y-box:hover{
	box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
	transform: translateY(-5px);
}