/* start 动画 */
	/* 企业介绍-企业文化-图片翻转-正面的 */
	@-webkit-keyframes overturn-correct {
		from {
			-webkit-transform: perspective(1400px);
			transform: perspective(1400px);
		}
		40% {
			-webkit-transform: perspective(1400px) rotate3d(0, 1, 0, 60deg);
			transform: perspective(1400px) rotate3d(0, 1, 0, 60deg);
			opacity: 1;
		}
		50% {
			-webkit-transform: perspective(1400px) rotate3d(0, 1, 0, 90deg);
			transform: perspective(1400px) rotate3d(0, 1, 0, 90deg);
			opacity: 0;
		}
		to {
			-webkit-transform: perspective(1400px) rotate3d(0, 1, 0, 180deg);
			transform: perspective(1400px) rotate3d(0, 1, 0, 180deg);
			opacity: 0;
		}
	}
	
	/* 企业介绍-企业文化-图片翻转-相反的 */
	@-webkit-keyframes overturn-opposite {
		from {
			-webkit-transform: perspective(1400px) rotate3d(0, 1, 0, -180deg);
			transform: perspective(1400px) rotate3d(0, 1, 0, -180deg);
			opacity: 0;
		}
		50% {
			-webkit-transform: perspective(1400px) rotate3d(0, 1, 0, -90deg);
			transform: perspective(1400px) rotate3d(0, 1, 0, -90deg);
			opacity: 0;
		}
		60% {
			-webkit-transform: perspective(1400px) rotate3d(0, 1, 0, -60deg);
			transform: perspective(1400px) rotate3d(0, 1, 0, -60deg);
			opacity: 1;
		}
		to {
			-webkit-transform: perspective(1400px);
			transform: perspective(1400px);
			opacity: 1;
		}
	}
/* end 动画 */

/* css-公用的-start */
	*{
		margin: 0;
		padding: 0;
		font-family:'Adobe 黑体 Std';
	}
	
	li {
		list-style: none;
	}
	
	a{
		text-decoration:none
	}
	
	img{
		vertical-align: bottom;
	}
	
	.wrapper{
		overflow: hidden;
	}
	
	.w {
		width: 73.569%;
		margin: 0 auto;
	}
	
	.aligncenter, p img{
		height:	auto;
		display: block;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	
	/* 文本字体-标题 */
	.title p{
		font-family: "SourceHanSansCN-Bold";
	}
	
	/* 文本字体-标题-中文-首页 */
	.title-chinese p{
		font-family: 'SourceHanSansCN-Heavy';
	}
	
	/* 文本字体-标题-中文-其他页面 */
	.title-chinese samp{
		font-family: 'SourceHanSansCN-Normal';
	}
	
	/* 文本字体-标题-英文 */
	.title-english p{
		font-family: '方正兰亭-细-黑简体';
	}
	
/* css-公用的-end */

/* 滚动条-公用的-start */
	.scroll-bar{
		overflow: auto;
	}
	
	.scroll-bar::-webkit-scrollbar {
		display: none;
	}
/* 滚动条-公用的-end */

/* 字体-公用的-start */
	/* 思源黑体 */
	@font-face {
		font-family: "SourceHanSansCN-Heavy";
		src: url('fonts/SourceHanSansCN-Heavy.otf') format('opentype');
	}
	
	@font-face {
		font-family: "SourceHanSansCN-Bold";
		src: url('fonts/SourceHanSansCN-Bold.otf') format('opentype');
	}
	
	@font-face {
		font-family: "SourceHanSansCN-Normal";
		src: url('fonts/SourceHanSansCN-Normal.otf') format('opentype');
	}
	
	@font-face {
		font-family: "SourceHanSansCN-Medium";
		src: url('fonts/SourceHanSansCN-Medium.otf') format('opentype');
	}
	
	@font-face {
		font-family: "SourceHanSansCN-Regular";
		src: url('fonts/SourceHanSansCN-Regular.otf') format('opentype');
	}
	
	/* 方正字体 */
	@font-face {
		font-family: "方正兰亭-细-黑简体";
		src: url('fonts/方正兰亭细黑简体.OTF') format('opentype');
	}
	
	/* 其它 */
	@font-face {
		font-family: "Abel-Regular";
		src: url('fonts/Abel-Regular.ttf') format('opentype');
	}
	
/* 字体-公用的-end */

/* 视频-公用-start */
	.video-js{
		width: 100%;
		height: auto;
		line-height: 0;
		background-color: rgba(0, 255, 255, 1);
	}
	
	.video-js,
	.video-js .vjs-tech,
	.video-js .vjs-poster{
		border-radius: 15px;
	}
	
	.vjs-has-started .vjs-control-bar{
		border-radius: 0px 0px 15px 15px;
	}
	
	.video-js .vjs-tech{
		position: static;
	}
	
	.video-js .vjs-big-play-button{
		height: 0px;
		width: 16.854%;
		border-width: 0px;
		padding: 8.427% 0%;
		background-color: rgba(0, 0, 0, 0);
		background-image: url('images/introduce-video-1.png');
		background-size: 100% 100%;
		background-repeat:no-repeat;
		background-position: center;
	}
	
	.video-js:hover .vjs-big-play-button{
		background-color: rgba(0, 0, 0, 0);
	}
	
	.video-js .vjs-big-play-button .vjs-icon-placeholder{
		display: none;
	}
	
	.video-js .vjs-play-progress:before,
	.vjs-slider-horizontal .vjs-volume-level:before{
		top: 64%;
	}
/* 视频-公用-end */

/* 头部 */
	.header-wrapper{
		width: 100%;
		border-bottom: 2px solid rgba(230, 0, 18, 1);
	}
	
	.header-wrapper .header{
		width: 100%;
		height: 90px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.header-wrapper .header .custom-logo-link{
		width: 8.929%;
		display: block;
	}
	
	.header-wrapper .header .custom-logo-link img{
		width: 100%;
		height: 100%;
	}
	
	.header-wrapper .header .menu-wrapper{
		height: 100%;
		display: block;
		width: 71.429%;
		position: relative;
	}
	
	.header-wrapper .header .menu-wrapper .menu{
		width: 100%;
		height: 100%;
		display: grid;
		grid-template-columns: repeat(6, 1fr);
	}
	
	/* 菜单-顶级 */
	.header-wrapper .header .menu-wrapper .menu > .menu-item{
		width: 100%;
		height: 100%;
		position: relative;
	}
	
	.header-wrapper .header .menu-wrapper .menu .menu-item a{
		width: 100%;
		height: 100%;
		display: flex;
		font-size: 16px;
		text-align: center;
		align-items: center;
		justify-content: center;
		color: rgba(0, 0, 0, 1);
	}
	
	.header-wrapper .header .menu-wrapper .menu > .menu-item > a::after{
		width: 20px;
		font-size: 15px;
		content: '\e664';
		line-height: 20px;
		transition: all 1s;
		font-family: 'iconfont';
		color: rgba(230, 0, 18, 1);
	}
	
	/* 菜单-子级 */
	.header-wrapper .header .menu-wrapper .menu .menu-item .sub-menu{
		display: none;
		width: 120.008%;
		background-color: rgba(255, 255, 255, 1);
		position: absolute;
		top: calc(100% + 2px);
		right: -10.004%;
		z-index: 999;
	}
	
	.header-wrapper .header .menu-wrapper .menu .menu-item .sub-menu .menu-item{
		width: 70%;
		padding: 5% 0%;
		margin: 0% auto;
		border-left: 1px solid rgba(231, 231, 231, 1);
	}
	
	.header-wrapper .header .menu-wrapper .menu .menu-item .sub-menu .menu-item a{
		font-size: 15px;
		line-height: 24px;
		position: relative;
		color: rgba(95, 94, 94, 1);
	}
	
	/* 菜单-幕布 */
	.header-wrapper .header .menu-wrapper .curtain{
		width: 200%;
		display: none;
		background-color: rgba(255, 255, 255, 1);
		position: absolute;
		top: calc(100% + 2px);
		left: -50%;
		z-index: 99;
	}
	
	/* 功能区 */
	.header-wrapper .header .functional-area{
		height: 100%;
		display: flex;
		width: 12.858%;
		align-items: center;
		justify-content: flex-end;
	}
	
	.header-wrapper .header .functional-area .line{
		width: 1px;
		display: block;
		margin: 0% 4.167%;
		padding: 5.554% 0%;
		background-color: rgba(230, 0, 18, 1);
	}
	
	.header-wrapper .header .functional-area .search{
		cursor: pointer;
		text-align: center;
		position: relative;
	}
	
	.header-wrapper .header .functional-area .search button{
		width: 30px;
		font-size: 24px;
		border-width: 0px;
		line-height: 30px;
		text-align: center;
		color: rgba(109, 109, 109, 1);
		background-color: rgba(0, 0, 0, 0);
	}
	
	.header-wrapper .header .functional-area .search .input-wrapper{
		width: 700%;
		display: none;
		position: absolute;
		top: -1px;
		right: 100%;
	}
	
	.header-wrapper .header .functional-area .search .input-wrapper input{
		width: 98%;
		height: 34px;
		outline: none;
		padding: 0 6px;
		font-size: 14px;
		border-style: none;
		border: 1px solid rgba(240, 240, 240, 1);
		background-color: rgba(255, 255, 255, 1);
	}
	
	.header-wrapper .header .functional-area .language-wrapper{
		width: 85px;
		height: 100%;
		display: flex;
		position: relative;
		align-items: center;
		justify-content: flex-end;
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language{
		display: flex;
		cursor: pointer;
		align-items: center;
		justify-content: flex-end;
		color: rgba(109, 109, 109, 1);
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language p{
		line-height: 1;
		font-size: 16px;
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language span:first-child{
		width: 30px;
		font-size: 24px;
		line-height: 30px;
		text-align: center;
		color: rgba(109, 109, 109, 1);
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language span:last-child{
		width: 20px;
		display: block;
		font-size: 16px;
		line-height: 20px;
		text-align: center;
		transition: all 1s;
		color: rgba(109, 109, 109, 1);
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language-menu{
		display: none;
		width: 184.665%;
		text-align: center;
		color: rgba(0, 0, 5, 1);
		padding-bottom: 13.191%;
		background-color: rgba(255, 255, 255, 1);
		position: absolute;
		top: calc(100% + 2px);
		right: -42.334%;
		z-index: 999;
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language-menu .wpml-ls-item a{
		width: 100%;
		display: block;
		font-size: 15px;
		text-align: center;
		padding: 7.144% 0%;
		color: rgba(0, 0, 0, 1);
	}
	
	/* 移动端菜单 */
	.header-wrapper .header .functional-area .menu-h5-wrapper{
		display: none;
	}
	
	/* 菜单顶级-悬停 */
	.header-wrapper .header .menu-wrapper .menu.current-hover-item > .menu-item > a::after{
		transform: rotate(-180deg);
		-webkit-transform: rotate(-180deg);
	}
	
	/* 菜单子级-悬停 */
	.header-wrapper .header .menu-wrapper .menu.current-hover-item .menu-item .sub-menu .menu-item.current-hover-item a{
		color: rgba(230, 0, 18, 1);
	}
	
	.header-wrapper .header .menu-wrapper .menu.current-hover-item .menu-item .sub-menu .menu-item.current-hover-item a::after{
		width: 3px;
		content: '';
		height: 100%;
		background-color: rgba(230, 0, 18, 1);
		position: absolute;
		top: 0%;
		left: -2px;
	}
	
	/* 移动端-打开菜单 */
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5.menu-expand-item{
		left: 0%;
	}
	
	/* 移动端-展开子级 */
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu > .menu-item.current-hover-item > a::after{
		transform: rotate(0deg);
	}
	
	/* 搜索悬停 */
	.header-wrapper .header .functional-area .search .input-wrapper.current-hover-item{
		display: block;
	}
	
	/* 语言展开-三角-动画 */
	.header-wrapper .header .functional-area .language-wrapper .language span:last-child.rotate-show{
		transform: rotate(-180deg);
		-webkit-transform: rotate(-180deg);
	}
	
	/* 语言悬停 */
	.header-wrapper .header .functional-area .language-wrapper .language-menu .wpml-ls-item.current-hover-item a{
		color: rgba(230, 0, 18, 1);
	}
	
	/* 菜单-英文样式 */
	.header-wrapper .header.en .menu-wrapper{
		width: 78.213%;
	}
	
	.header-wrapper .header.en .menu-wrapper .menu .menu-item a{
		font-size: 15px;
	}
	
	.header-wrapper .header.en .menu-wrapper .menu .menu-item .sub-menu .menu-item{
		width: 83%;
	}
	
	.header-wrapper .header.en .menu-wrapper .menu .menu-item .sub-menu .menu-item a{
		font-size: 14px;
		padding: 0px 5px;
		line-height: 22px;
		white-space: nowrap;
	}
	
/* 公用的-面包屑导航 */
	.communal-crumb{
		width: 100%;
		height: 100%;
		border-bottom: 1px solid rgba(224, 224, 224, 1);
	}
	
	.communal-crumb .content-wrapper{
		width: 100%;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.communal-crumb .content-wrapper .upper-wrapper{
		width: 50%;
		height: 100%;
		display: flex;
		font-size: 16px;
		align-items: center;
		justify-content: flex-start;
		color: rgba(109, 109, 109, 1);
	}
	
	.communal-crumb .content-wrapper .upper-wrapper p{
		height: 100%;
		display: flex;
		color: inherit;
		font-size: inherit;
		align-items: center;
		margin-right: 0.715%;
		justify-content: center;
	}
	
	.communal-crumb .content-wrapper .upper-wrapper a{
		height: 100%;
		display: flex;
		max-width: 30%;
		color: inherit;
		font-size: inherit;
		align-items: center;
		justify-content: center;
	}
	
	.communal-crumb .content-wrapper .upper-wrapper a samp{
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	
	.communal-crumb .content-wrapper .upper-wrapper a:last-child{
		color: rgba(47, 47, 47, 1);
	}
	
	.communal-crumb .content-wrapper .upper-wrapper .icon{
		margin: 0% 0.715%;
		transform: rotate(90deg);
		-webkit-transform: rotate(90deg);
	}
	
	.communal-crumb .content-wrapper .upper-wrapper .icon span{
		font-size: 18px;
		color: rgba(109, 109, 109, 1);
	}
	
	.communal-crumb .content-wrapper .below-wrapper{
		width: 50%;
		height: 100%;
	}
	
	.communal-crumb .content-wrapper .below-wrapper .menu{
		width: 100%;
		height: 100%;
		display: grid;
		grid-gap: 10px;
		grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
	}
	
	.communal-crumb .content-wrapper .below-wrapper .menu .menu-item{
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
	}
	
	.communal-crumb .content-wrapper .below-wrapper .menu .menu-item a{
		width: 100%;
		font-size: 16px;
		overflow: hidden;
		text-align: center;
		white-space: nowrap;
		text-overflow: ellipsis;
		color: rgba(111, 111, 111, 1);
	}

	/* 面包屑导航-选中 */
	.communal-crumb .content-wrapper .below-wrapper .menu .menu-item.current-menu-item::after{
		width: 50%;
		content: '';
		height: 3px;
		background-color: rgba(230, 0, 18, 1);
		position: absolute;
		left: 25%;
		bottom: -2px;
	}
	
	.communal-crumb .content-wrapper .below-wrapper .menu .menu-item.current-menu-item a{
		color: rgba(0, 0, 0, 1);
	}

/* 产品页的-面包屑导航 */
	.product-crumb{
		width: 100%;
		height: 100%;
		padding: 1.7345% 0% 1.209%;
		background-color: rgba(245, 245, 245, 1);
	}
	
	.product-crumb .content-wrapper{
		width: 100%;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.product-crumb .content-wrapper .upper-wrapper .title-chinese{
		line-height: 1;
		font-size: 24px;
		text-align: center;
		color: rgba(0, 0, 0, 1);
	}
	
	.product-crumb .content-wrapper .below-wrapper{
		width: 50%;
		height: 100%;
		display: flex;
		font-size: 16px;
		align-items: center;
		justify-content: flex-end;
		color: rgba(109, 109, 109, 1);
	}
	
	.product-crumb .content-wrapper .below-wrapper p{
		height: 100%;
		display: flex;
		color: inherit;
		font-size: inherit;
		align-items: center;
		margin-right: 0.715%;
		justify-content: center;
	}
	
	.product-crumb .content-wrapper .below-wrapper a{
		height: 100%;
		display: flex;
		max-width: 30%;
		color: inherit;
		font-size: inherit;
		align-items: center;
		justify-content: center;
	}
	
	.product-crumb .content-wrapper .below-wrapper a samp{
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
	
	.product-crumb .content-wrapper .below-wrapper a:last-child{
		color: rgba(47, 47, 47, 1);
	}
	
	.product-crumb .content-wrapper .below-wrapper .icon{
		margin: 0% 0.715%;
		transform: rotate(90deg);
		-webkit-transform: rotate(90deg);
	}
	
	.product-crumb .content-wrapper .below-wrapper .icon span{
		font-size: 18px;
		color: rgba(109, 109, 109, 1);
	}
	
/* 详情页的-面包屑导航 */
	.detail-pages-crumb{
		width: 100%;
		background-color: rgba(255, 255, 255, 1);
		border-bottom: 1px solid rgba(224, 224, 224, 1);
	}
	
	.detail-pages-crumb .content-wrapper{
		width: 100%;
		height: 60px;
		display: flex;
		font-size: 16px;
		align-items: center;
		justify-content: flex-start;
		color: rgba(109, 109, 109, 1);
	}
	
	.detail-pages-crumb .content-wrapper p{
		height: 100%;
		display: flex;
		color: inherit;
		font-size: inherit;
		align-items: center;
		margin-right: 0.715%;
		justify-content: center;
	}
	
	.detail-pages-crumb .content-wrapper a{
		height: 100%;
		display: flex;
		color: inherit;
		max-width: 20%;
		font-size: inherit;
		align-items: center;
		justify-content: flex-start;
	}
	
	.detail-pages-crumb .content-wrapper a samp{
		overflow:hidden;
		white-space:nowrap;
		text-overflow:ellipsis;
	}
	
	.detail-pages-crumb .content-wrapper a:last-child{
		width: 27.143% !important;
		color: rgba(47, 47, 47, 1);
	}
	
	.detail-pages-crumb .content-wrapper .icon{
		margin: 0% 0.358%;
		transform: rotate(90deg);
		-webkit-transform: rotate(90deg);
	}
	
	.detail-pages-crumb .content-wrapper .icon span{
		font-size: 18px;
		color: rgba(109, 109, 109, 1);
	}
	
/* 底部 */
	.footer-wrapper{
		width: 100%;
		border-top: 3px solid rgba(230, 0, 18, 1);
	}
	
	.footer-wrapper .upper-wrapper{
		width: 100%;
		padding: 2.628% 0% 3.679%;
		background-color: rgba(32, 32, 32, 1);
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper{
		width: 60%;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper .menu{
		width: 100%;
		display: grid;
		grid-gap: 25px;
		grid-template-columns: repeat(5, 1fr);
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper .menu > .menu-item > a{
		display: block;
		font-size: 16px;
		width:fit-content;
		line-height: 45px;
		text-align: center;
		position: relative;
		white-space: nowrap;
		width:-moz-fit-content;
		width:-webkit-fit-content;
		color: rgba(255, 255, 255, 1);
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper .menu > .menu-item > a::after{
		width: 100%;
		content: '';
		height: 1px;
		background-color: rgba(230, 0, 18, 1);
		position: absolute;
		bottom: 0%;
		left: 0%;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper .menu .menu-item > .sub-menu{
		width: 100%;
		margin-top: 8.065%;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper .menu .menu-item > .sub-menu a{
		width: 100%;
		display: block;
		font-size: 15px;
		line-height: 40px;
		white-space: nowrap;
		color: rgba(255, 255, 255, 1);
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper{
		width: 40%;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .logo{
		width: 21.429%;
		margin-left: 78.571%;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .logo img{
		width: 100%;
		height: 100%;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us{
		width: 37.500%;
		margin-left: 62.5%;
		margin-top: 8.572%;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .label{
		line-height: 1;
		font-size: 18px;
		color: rgba(255, 255, 255, 1);
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .content{
		width: 100%;
		display: grid;
		margin-top: 4.762%;
		grid-row-gap: 10px;
		align-items: center;
		justify-content: space-between;
		grid-template-columns: repeat(4, 1fr);
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .content .item{
		width: 40px;
		height: 40px;
		position: relative;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .content .item a{
		width: 100%;
		height: 100%;
		display: block;
		transition: all 0.5s;
		background-size: 100% 100%;
		background-repeat:no-repeat;
		background-position: center;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .content .item .qr-code{
		width: 200%;
		padding: 25%;
		display: none;
		position: relative;
		align-items: center;
		justify-content: center;
		background-color: rgba(255, 255, 255, 1);
		position: absolute;
		top: 140%;
		right: -75%;
		z-index: 999;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .content .item .qr-code::after{
		width: 0%;
		height: 0%;
		content: '';
		display: block;
		border-top: 5px solid transparent;
		border-right: 5px solid transparent;
		border-bottom: 5px solid rgba(255, 255, 255, 1);
		border-left: 5px solid transparent;
		position: absolute;
		top: -10px;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .content .item .qr-code img{
		width: 100%;
		height: 100%;
	}
	
	.footer-wrapper .below-wrapper{
		width: 100%;
		padding: 0.526% 0%;
		background-color: rgba(23, 23, 23, 1);
	}
	
	.footer-wrapper .below-wrapper .content-wrapper{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.footer-wrapper .below-wrapper .content-wrapper .contact-way{
		width: 50%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	
	.footer-wrapper .below-wrapper .content-wrapper .contact-way .item{
		display: flex;
		font-size: 15px;
		line-height: 24px;
		align-items: center;
		margin-right: 5.715%;
		justify-content: flex-start;
		color: rgba(174, 174, 174, 1);
	}
	
	.footer-wrapper .below-wrapper .content-wrapper .contact-way .item:last-child{
		margin-right: 0%;
	}
	
	.footer-wrapper .below-wrapper .content-wrapper .contact-way .item .label{
		margin-right: 5px;
	}
	
	.footer-wrapper .below-wrapper .content-wrapper .copyright{
		width: 50%;
		font-size: 15px;
		text-align: right;
		line-height: 24px;
		color: rgba(174, 174, 174, 1);
	}
	
	.footer-wrapper .below-wrapper .content-wrapper .copyright a{
		color: inherit;
		font-size: inherit;
		line-height: inherit;
	}
	
	/* 底部菜单-悬停 */
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper .menu .menu-item > .sub-menu > .menu-item.current-hover-item a{
		color: rgba(230, 0, 18, 1);
	}
	
	/* 底部图标-悬停 */
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .content .item.current-hover-item a{
		transform: scale(1.15);
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .content .item.current-hover-item .qr-code{
		display: flex;
	}
	
/* 响应 1680 */
@media screen and (max-width: 1680px) {
/* 头部 */
	.header-wrapper .header{
		height: 80px;
	}
	
	/* 菜单-顶级 */
	.header-wrapper .header .menu-wrapper .menu .menu-item a{
		font-size: 15px;
	}
	
	.header-wrapper .header .menu-wrapper .menu > .menu-item > a::after{
		width: 19px;
		font-size: 14px;
		line-height: 19px;
	}
	
	/* 菜单-子级 */
	.header-wrapper .header .menu-wrapper .menu .menu-item .sub-menu .menu-item a{
		font-size: 14px;
		line-height: 22px;
	}
	
	/* 功能区 */
	.header-wrapper .header .functional-area .search button{
		width: 28px;
		font-size: 22px;
		line-height: 28px;
	}
	
	.header-wrapper .header .functional-area .search .input-wrapper input{
		height: 32px;
		font-size: 13px;
	}
	
	.header-wrapper .header .functional-area .language-wrapper{
		width: 80px;
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language p{
		font-size: 15px;
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language span:first-child{
		width: 28px;
		font-size: 22px;
		line-height: 28px;
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language span:last-child{
		width: 19px;
		font-size: 15px;
		line-height: 19px;
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language-menu .wpml-ls-item a{
		font-size: 14px;
	}
	
	/* 菜单-英文样式 */
	.header-wrapper .header.en .menu-wrapper .menu .menu-item a{
		font-size: 14px;
	}
	
	.header-wrapper .header.en .menu-wrapper .menu .menu-item .sub-menu .menu-item a{
		font-size: 13px;
		line-height: 20px;
	}
	
/* 公用的-面包屑导航 */
	.communal-crumb .content-wrapper{
		height: 55px;
	}
	
	.communal-crumb .content-wrapper .upper-wrapper{
		font-size: 15px;
	}
	
	.communal-crumb .content-wrapper .upper-wrapper .icon span{
		font-size: 17px;
	}
	
	.communal-crumb .content-wrapper .below-wrapper .menu .menu-item a{
		font-size: 15px;
	}
	
/* 产品页的-面包屑导航 */
	.product-crumb .content-wrapper{
		height: 55px;
	}
	
	.product-crumb .content-wrapper .upper-wrapper .title-chinese{
		font-size: 22px;
	}
	
	.product-crumb .content-wrapper .below-wrapper{
		font-size: 15px;
	}
	
	.product-crumb .content-wrapper .below-wrapper .icon span{
		font-size: 17px;
	}
	
/* 详情页的-面包屑导航 */
	.detail-pages-crumb .content-wrapper{
		height: 55px;
		font-size: 15px;
	}
	
	.detail-pages-crumb .content-wrapper .icon span{
		font-size: 17px;
	}
	
/* 底部 */
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper .menu{
		grid-gap: 20px;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper .menu > .menu-item > a{
		font-size: 15px;
		line-height: 40px;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper .menu .menu-item > .sub-menu a{
		font-size: 14px;
		line-height: 35px;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .label{
		font-size: 17px;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .content .item{
		width: 35px;
		height: 35px;
	}
	
	.footer-wrapper .below-wrapper .content-wrapper .contact-way .item{
		font-size: 14px;
		line-height: 22px;
	}
	
	.footer-wrapper .below-wrapper .content-wrapper .copyright{
		font-size: 14px;
		line-height: 22px;
	}
}

/* 响应 1440 */
@media screen and (max-width: 1440px) {
/* 头部 */
	.header-wrapper .header{
		height: 70px;
	}
	
	/* 菜单-顶级 */
	.header-wrapper .header .menu-wrapper .menu .menu-item a{
		font-size: 14px;
	}
	
	.header-wrapper .header .menu-wrapper .menu > .menu-item > a::after{
		width: 18px;
		font-size: 13px;
		line-height: 18px;
	}
	
	/* 菜单-子级 */
	.header-wrapper .header .menu-wrapper .menu .menu-item .sub-menu .menu-item a{
		font-size: 13px;
		line-height: 20px;
	}
	
	/* 功能区 */
	.header-wrapper .header .functional-area .search button{
		width: 26px;
		font-size: 20px;
		line-height: 26px;
	}
	
	.header-wrapper .header .functional-area .search .input-wrapper input{
		height: 30px;
		font-size: 12px;
	}
	
	.header-wrapper .header .functional-area .language-wrapper{
		width: 75px;
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language p{
		font-size: 14px;
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language span:first-child{
		width: 26px;
		font-size: 20px;
		line-height: 26px;
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language span:last-child{
		width: 18px;
		font-size: 14px;
		line-height: 18px;
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language-menu .wpml-ls-item a{
		font-size: 13px;
	}
	
	/* 菜单-英文样式 */
	.header-wrapper .header.en .menu-wrapper .menu .menu-item a{
		font-size: 13px;
	}
	
	.header-wrapper .header.en .menu-wrapper .menu .menu-item .sub-menu .menu-item a{
		font-size: 12px;
		line-height: 18px;
	}
	
/* 公用的-面包屑导航 */
	.communal-crumb .content-wrapper{
		height: 50px;
	}
	
	.communal-crumb .content-wrapper .upper-wrapper{
		font-size: 14px;
	}
	
	.communal-crumb .content-wrapper .upper-wrapper .icon span{
		font-size: 16px;
	}
	
	.communal-crumb .content-wrapper .below-wrapper .menu .menu-item a{
		font-size: 14px;
	}
	
/* 产品页的-面包屑导航 */
	.product-crumb .content-wrapper{
		height: 50px;
	}
	
	.product-crumb .content-wrapper .upper-wrapper .title-chinese{
		font-size: 20px;
	}
	
	.product-crumb .content-wrapper .below-wrapper{
		font-size: 14px;
	}
	
	.product-crumb .content-wrapper .below-wrapper .icon span{
		font-size: 16px;
	}
	
/* 详情页的-面包屑导航 */
	.detail-pages-crumb .content-wrapper{
		height: 50px;
		font-size: 14px;
	}
	
	.detail-pages-crumb .content-wrapper .icon span{
		font-size: 16px;
	}
	
/* 底部 */
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper .menu{
		grid-gap: 15px;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper .menu > .menu-item > a{
		font-size: 14px;
		line-height: 35px;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper .menu .menu-item > .sub-menu a{
		font-size: 13px;
		line-height: 30px;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .label{
		font-size: 16px;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .content .item{
		width: 30px;
		height: 30px;
	}
	
	.footer-wrapper .below-wrapper .content-wrapper .contact-way .item{
		font-size: 13px;
		line-height: 20px;
	}
	
	.footer-wrapper .below-wrapper .content-wrapper .copyright{
		font-size: 13px;
		line-height: 20px;
	}	
}

/* 响应 1280 */
@media screen and (max-width: 1280px) {
/* 头部 */
	.header-wrapper .header{
		height: 60px;
	}
	
	/* 菜单-顶级 */
	.header-wrapper .header .menu-wrapper .menu .menu-item a{
		font-size: 13px;
	}
	
	.header-wrapper .header .menu-wrapper .menu > .menu-item > a::after{
		width: 17px;
		font-size: 12px;
		line-height: 17px;
	}
	
	/* 菜单-子级 */
	.header-wrapper .header .menu-wrapper .menu .menu-item .sub-menu .menu-item a{
		font-size: 12px;
		line-height: 18px;
	}
	
	/* 功能区 */
	.header-wrapper .header .functional-area .search button{
		width: 24px;
		font-size: 18px;
		line-height: 24px;
	}
	
	.header-wrapper .header .functional-area .search .input-wrapper input{
		height: 28px;
	}
	
	.header-wrapper .header .functional-area{
		width: 13.938%;
	}
	
	.header-wrapper .header .functional-area .language-wrapper{
		width: 70px;
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language p{
		font-size: 13px;
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language span:first-child{
		width: 24px;
		font-size: 18px;
		line-height: 24px;
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language-menu .wpml-ls-item a{
		font-size: 12px;
	}
	
	/* 菜单-英文样式 */
	.header-wrapper .header.en .menu-wrapper .menu .menu-item a{
		font-size: 12px;
	}
	
/* 公用的-面包屑导航 */
	.communal-crumb .content-wrapper{
		height: 45px;
	}
	
	.communal-crumb .content-wrapper .upper-wrapper{
		font-size: 13px;
	}
	
	.communal-crumb .content-wrapper .upper-wrapper .icon span{
		font-size: 15px;
	}
	
	.communal-crumb .content-wrapper .below-wrapper .menu .menu-item a{
		font-size: 13px;
	}
	
/* 产品页的-面包屑导航 */
	.product-crumb .content-wrapper{
		height: 45px;
	}
	
	.product-crumb .content-wrapper .upper-wrapper .title-chinese{
		font-size: 18px;
	}
	
	.product-crumb .content-wrapper .below-wrapper{
		font-size: 13px;
	}
	
	.product-crumb .content-wrapper .below-wrapper .icon span{
		font-size: 15px;
	}
	
/* 详情页的-面包屑导航 */
	.detail-pages-crumb .content-wrapper{
		height: 45px;
		font-size: 13px;
	}
	
	.detail-pages-crumb .content-wrapper .icon span{
		font-size: 15px;
	}
	
/* 底部 */
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper .menu{
		grid-gap: 10px;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper .menu > .menu-item > a{
		font-size: 13px;
		line-height: 30px;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper .menu .menu-item > .sub-menu a{
		font-size: 12px;
		line-height: 25px;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .label{
		font-size: 15px;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .content .item{
		width: 25px;
		height: 25px;
	}
	
	.footer-wrapper .below-wrapper .content-wrapper .contact-way .item{
		font-size: 12px;
		line-height: 18px;
	}
	
	.footer-wrapper .below-wrapper .content-wrapper .copyright{
		font-size: 12px;
		line-height: 18px;
	}	
}

/* 响应 1000 */
@media screen and (max-width: 1000px) {
/* 头部 */
	.header-wrapper .header .custom-logo-link{
		width: 14.160%;
	}
	
	.header-wrapper .header .menu-wrapper{
		display: none;
	}
	
	/* 功能区 */
	.header-wrapper .header .functional-area{
		width: 70%;
	}
	
	.header-wrapper .header .functional-area .line{
		margin: 0%;
		padding: 2.023% 0%;
	}
	
	.header-wrapper .header .functional-area .search{
		margin-right: 2.529%;
	}
	
	.header-wrapper .header .functional-area .search .input-wrapper input{
		height: 26px;
	}
	
	.header-wrapper .header .functional-area .language-wrapper{
		width: auto;
		margin: 0% 2.529%;
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language p{
		display: none;
	}
	
	.header-wrapper .header .functional-area .language-wrapper .language-menu{
		width: 300%;
		right: -100%;
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper{
		display: block;
		position: relative;
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper span{
		font-size: 25px;
		color: rgba(109, 109, 109, 1);
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5{
		width: 40%;
		height: 100%;
		transform: translateX(0%);
		transition: all 0.5s ease;
		background-color: rgba(255, 255, 255, 1);
		position: relative;
		position: fixed;
		top: 0%;
		left: -40%;
		z-index: 9999;
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu a{
		display: block;
		line-height: 35px;
		color: rgba(0, 0, 0, 1);
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu > .menu-item > a{
		display: flex;
		padding: 0% 5%;
		font-size: 14px;
		align-items: center;
		justify-content: space-between;
		border-bottom: 1px solid rgba(242, 242, 242, 1);
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu > .menu-item > a::after{
		font-size: 16px;
		content: '\e664';
		transition: all 1s;
		font-family: 'iconfont';
		transform: rotate(-90deg);
		color: rgba(230, 0, 18, 1);
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu > .menu-item > .sub-menu{
		display: none;
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5 .menu > .menu-item > .sub-menu > .menu-item > a{
		font-size: 13px;
		padding-left: 10%;
		position: relative;
	}
	
	/* 语言菜单-选中 */
	.header-wrapper .header .functional-area .language-wrapper .language-menu .wpml-ls-item.wpml-ls-current-language a{
		color: rgba(230, 0, 18, 1);
	}
	
/* 公用的-面包屑导航 */
	.communal-crumb .content-wrapper{
		height: auto;
		display: block;
	}
	
	.communal-crumb .content-wrapper .upper-wrapper{
		width: 100%;
		height: 40px;
		font-size: 12px;
	}
	
	.communal-crumb .content-wrapper .upper-wrapper .icon span{
		font-size: 14px;
	}
	
	.communal-crumb .content-wrapper .below-wrapper{
		width: 100%;
		height: 40px;
	}
	
	.communal-crumb .content-wrapper .below-wrapper .menu .menu-item{
		justify-content: center;
	}
	
	.communal-crumb .content-wrapper .below-wrapper .menu .menu-item a{
		font-size: 12px;
	}
	
/* 产品页的-面包屑导航 */
	.product-crumb .content-wrapper{
		height: 40px;
	}
	
	.product-crumb .content-wrapper .upper-wrapper .title-chinese{
		font-size: 16px;
	}
	
	.product-crumb .content-wrapper .below-wrapper{
		font-size: 12px;
	}
	
	.product-crumb .content-wrapper .below-wrapper .icon span{
		font-size: 14px;
	}
	
/* 详情页的-面包屑导航 */
	.detail-pages-crumb .content-wrapper{
		height: 40px;
		font-size: 12px;
	}
	
	.detail-pages-crumb .content-wrapper .icon span{
		font-size: 14px;
	}
	
/* 底部 */
	.footer-wrapper .upper-wrapper .content-wrapper .menu-wrapper{
		display: none;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper{
		width: 100%;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .logo{
		width: 14.160%;
		margin: 0% auto;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us{
		width: 17.700%;
		margin: 2.655% auto 0%;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .label{
		font-size: 14px;
		text-align: center;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .content{
		margin-top: 10%;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us .content .item{
		width: 20px;
		height: 20px;
	}
	
	.footer-wrapper .below-wrapper{
		padding: 1.303% 0%;
	}
	
	.footer-wrapper .below-wrapper .content-wrapper .contact-way{
		display: none;
	}
	
	.footer-wrapper .below-wrapper .content-wrapper .copyright{
		width: 100%;
		text-align: center;
	}
}

/* 响应 750 */
@media screen and (max-width: 750px) {
/* css-公用的-start */
	.w {
		width: 90%;
	}
	
/* css-公用的-end */

/* 头部 */
	.header-wrapper .header .custom-logo-link{
		width: 18.301%;
	}
	
	/* 功能区 */
	.header-wrapper .header .functional-area .line{
		margin: 0%;
		padding: 2.988% 0%;
	}
	
	.header-wrapper .header .functional-area .search{
		margin-right: 2.241%;
	}
	
	.header-wrapper .header .functional-area .language-wrapper{
		margin: 0% 2.241%;
	}
	
	.header-wrapper .header .functional-area .menu-h5-wrapper .menu-h5{
		width: 70%;
		left: -70%;
	}
	
/* 公用的-面包屑导航 */
	.communal-crumb .content-wrapper .below-wrapper .menu{
		grid-gap: 5px;
	}
	
/* 底部 */
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .logo{
		width: 18.301;
	}
	
	.footer-wrapper .upper-wrapper .content-wrapper .follow-us-wrapper .follow-us{
		width: 26.144%;
		margin-top: 3.922%;
	}
	
	.footer-wrapper .below-wrapper{
		padding: 2.353% 0%;
	}
}