hr {
	width: 100%;
	height: 1px;
	background: #ccc;
}

._flex {
	display: flex;
	flex-wrap: wrap;
}

._flex_center {
	justify-content: space-between;
	align-items: center;
}

._flex_between {
	justify-content: space-between;
}

._flex_col_3 {
	width: 24%;
}

._flex_col_6 {
	width: 50%;
}

._flex_col_8 {
	width: 66%;
}

._flex_col_4 {
	width: 31.333333%;
}

._mt30 {
	margin-top: 30px;
}

._mt50 {
	margin-top: 50px;
}

._maxw1200 {
	max-width: 1200px;
	margin: auto;
}

._maxw1080 {
	max-width: 1080px;
	margin: auto;
}

._maxw900 {
	max-width: 900px;
	margin: auto;
}

._links ul {
	display: flex;
	justify-content: flex-end;
}

._relative {
	position: relative;
}

.layout {
	width: 96%;
	margin: 0 auto;
}

.head-right {
	display: flex;
}

.head-search {
	margin-right: 20px;
}

	.head-search i {
		color: #333;
	}

.head-search-wrap {
	display: none;
}

.nav-bar {
	position: relative;
	transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	z-index: 33;
	background: #fff;
	/*padding: 10px 0;*/
}

.navActive .nav-bar {
	position: fixed;
	top: 0;
	width: 100%;
	box-shadow: 0 0px 8px #333;
}

.head-logo img {
	max-width: 150px;
}

.nav-subs, .nav-sub {
	display: none;
	transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
}

.nav-sub {
	position: absolute;
	width: 100%;
	max-width: 1180px;
	background: #EEEEEE;
	left: 50%;
	transform: translateX(-50%);
	top: 100%;
	box-sizing: border-box;
	padding: 20px 30px;
	flex-wrap: wrap;
	z-index: 2;
}

.nav-subs {
	position: absolute;
	background: rgba(0,0,0,.8);
	right: 0;
	top: 100%;
	box-sizing: border-box;
	z-index: 2;
	padding: 10px 5px;
}

.nav-wrap {
	display: flex;
}

.nav-item {
	padding: 0 30px;
	display: flex;
	align-items: center;
}

	.nav-item > a {
		display: block;
		font-size: 18px;
		line-height: 100px;
		color: #333;
		text-transform: uppercase;
		position: relative;
	}

		.nav-item > a:after {
			content: "";
			display: block;
			width: 0;
			height: 2px;
			position: absolute;
			bottom: 0;
			left: 50%;
			transform: translateX(-50%);
			background: #fff;
			transition: all 0.5s ease-out;
			-moz-transition: all 0.5s ease-out;
			-webkit-transition: all 0.5s ease-out;
			-o-transition: all 0.5s ease-out;
		}

	.nav-item:hover > a:after {
		width: 100%;
	}

._child_ico:after {
	font-family: 'fontawesome';
	content: "\f0d7";
	font-size: 12px;
	display: inline-block;
	padding-left: 10px;
	color: #333;
	line-height: 20px;
}

.nav-item:hover ._child_ico:after {
	content: "\f0d8";
}

.nav-item:hover .nav-subs {
	display: block;
}

.nav-item:hover .nav-sub {
	display: flex;
}

.nav-sub-title {
	width: 33.333333%;
	padding: 20px;
}

	.nav-sub-title > a {
		font-size: 24px;
		line-height: 28px;
		text-align: center;
		color: #333;
		display: block;
		position: relative;
	}

		.nav-sub-title > a span {
			display: block;
			padding: 10px 0;
		}

	.nav-sub-title img {
		transition: all .5s ease-in-out;
	}

	.nav-sub-title:hover img {
		opacity: .6;
	}

._index {
	position: relative;
}

._index_banner .swiper-button-prev:after, ._index_banner .swiper-button-next:after {
	display: none;
}

._index_banner .swiper-button-prev {
	left: 32px;
}

._index_banner .swiper-button-next {
	right: 32px;
}

._index_banner .swiper-button-prev, ._index_banner .swiper-button-next {
	width: auto;
}

	._index_banner .swiper-button-prev:hover i, ._index_banner .swiper-button-next:hover i {
		background: rgba(255,255,255,1);
	}

	._index_banner .swiper-button-prev i, ._index_banner .swiper-button-next i {
		color: #fff;
		background: rgba(255,255,255,.4);
		border-radius: 100%;
		width: 60px;
		line-height: 60px;
		text-align: center;
		font-size: 24px;
	}

	._index_banner .swiper-button-prev:hover i, ._index_banner .swiper-button-next:hover i {
		background: rgba(255,255,255,1);
		color: #333;
	}

._index_banner {
	overflow: hidden;
	position: relative;
}

	._index_banner .swiper-slide img {
		transform: scale(1.08);
		transition: all 3s ease-out;
		-moz-transition: all 3s ease-out;
		-webkit-transition: all 3s ease-out;
		-o-transition: all 3s ease-out;
	}

	._index_banner .swiper-slide-active img {
		transform: scale(1);
	}

	._index_banner .swiper-pagination {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	._index_banner .swiper-pagination-bullet {
		width: 12px;
		height: 12px;
		border: 2px solid #fff;
		background: inherit;
		opacity: 0.7;
	}

	._index_banner .swiper-pagination-bullet-active {
		width: 14px;
		height: 14px;
		border-color: #fff;
		opacity: 1;
	}

	._index_banner .swiper-slide {
		position: relative;
	}

._index_banner_txt {
	position: absolute;
	right: 100px;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,.6);
	padding: 30px 8px;
}

	._index_banner_txt.active {
		animation: _InRight 1s ease;
		/*animation-fill-mode: forwards;*/
	}

	._index_banner_txt h2 {
		font-size: 70px;
		line-height: 1.2;
		border-bottom: 2px solid #fff;
		color: #fff;
		text-align: center;
	}

		._index_banner_txt h2 sup {
			font-size: 30px;
			font-weight: normal;
			margin-left: 5px;
		}

	._index_banner_txt p {
		font-size: 30px;
		padding: 0 30px;
		color: #fff;
		line-height: 50px;
		text-align: center;
		letter-spacing: 1px;
		padding-top: 10px;
	}



._index {
	padding: 50px 0;
}

._index_company_intr {
	padding-top: 50px;
}

._index_company_txt {
	font-size: 30px;
	line-height: 1.8;
	text-align: center;
	max-width: 1400px;
	margin: 0 auto;
}

._promote_list {
	max-width: 1500px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

._promote_item {
	width: 30.333333%;
	margin: 1.5%;
	padding: 30px 30px;
	box-shadow: 0 0 15px #ddd;
}

._index_promote {
	padding-top: 20px;
}

._promote_item_info h3 {
	font-size: 32px;
	font-weight: normal;
	line-height: 36px;
	padding: 10px 0;
	text-align: center;
}

._promote_item_img {
	overflow: hidden;
}

	._promote_item_img img {
		transition: all .5s ease-in-out;
	}

._promote_item:hover img {
	transform: scale(1.05);
}

._index_case_img {
	width: 50%;
}

._index_title {
	text-align: center;
	margin-bottom: 40px;
}

	._index_title h2 {
		font-size: 50px;
		line-height: 1.3;
		font-weight: normal;
		color: #333;
	}

	._index_title small {
		margin-top: 15px;
		font-size: 20px;
		color: #666;
	}

._index_case_desc {
	width: 50%;
	background: #f6f6f6;
	padding: 40px 60px;
}

._index_case_img {
	overflow: hidden;
}

	._index_case_img img {
		transition: all .5s ease-in-out;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

._index_case_item:hover img {
	transform: scale(1.05);
}

._index_case_title {
	margin-bottom: 15px;
}

	._index_case_title h3 {
		font-size: 30px;
		font-weight: normal;
		line-height: 1.3;
		color: #555;
	}

._index_case_txt {
	font-size: 16px;
	color: #777;
	line-height: 1.7;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

._index_case_btn {
	margin-top: 30px;
}

	._index_case_btn a {
		display: block;
		width: 150px;
		background: #444444;
		text-align: center;
		line-height: 40px;
		border-radius: 5px;
		color: #fff;
		border: 1px solid #444;
	}

		._index_case_btn a:hover {
			background: #fff;
			color: #444;
		}

._index_case1 .layout {
	max-width: 1500px;
}

._index_case1 ._index_case_desc {
	background: #fff;
}

.footer-wrapper {
	background: #202020;
}

.foot-logo > a img {
	filter: brightness(0) invert(1)
}

.foot-wrap {
	padding: 50px 0 30px;
}

	.foot-wrap .layout {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		max-width: 1500px;
		margin: 0 auto
	}

	.foot-wrap .foot-item {
		width: 30%;
	}

	.foot-wrap .foot-contcat {
		width: 40%;
	}

.foot-logo img {
	max-width: 220px;
}

.foot-company-info {
	font-size: 16px;
	color: #f9f9f9;
	line-height: 20px;
}

.social-share {
	display: flex;
	margin-top: 20px;
	flex-wrap: wrap;
}

	.social-share a {
		border: 1px solid #fff;
		margin-right: 10px;
		border-radius: 3px;
		margin-bottom: 10px;
	}

	.social-share i {
		display: block;
		width: 60px;
		line-height: 60px;
		text-align: center;
		font-size: 30px;
		transition: all .5s ease-in-out;
	}

		.social-share i:hover {
			transform: rotateZ(360deg);
		}

.foot-item h3 {
	font-size: 26px;
	color: #fff;
	margin-bottom: 10px;
	line-height: 40px;
}

.foot-pro-cate {
	display: flex;
	justify-content: center;
}

.foot-link-list a {
	display: block;
	color: #fff;
	font-size: 26px;
	line-height: 30px;
	padding: 8px 0;
	font-weight: bold;
	position: relative;
}

	.foot-link-list a:after {
		content: "";
		display: block;
		position: absolute;
		width: 0;
		height: 2px;
		background: #fff;
		left: 0;
		bottom: 0;
		transition: all .5s ease-in-out;
	}

	.foot-link-list a:hover:after {
		width: 100%;
	}

.foot-contcat-list li {
	padding: 5px 0;
}

.foot-contcat-list a, .foot-contcat-list i {
	display: inline;
	color: #fff;
	font-size: 20px;
	line-height: 28px;
	padding: 5px 0;
}

.foot-contcat-list i {
	font-style: normal;
	margin-right: 5px;
}

.foot {
	padding: 20px 0;
	border-top: 1px solid #333;
}

	.foot .layout {
		max-width: 1500px;
		margin: 0 auto;
	}

.copyright {
	font-size: 16px;
	color: #fff;
	line-height: 20px;
}

._links a {
	display: block;
	font-size: 16px;
	color: #fff;
	line-height: 20px;
}

._links li {
	padding: 0 5px;
}


/* language */
.change-language-title span {
	color: #333;
	font-size: 14px;
}

.lang-wrap {
	position: relative;
}

.prisna-wp-translate-seo {
	display: none;
	font-family: Arial, Helvetica, sans-serif;
}

.mobile-head-language .prisna-wp-translate-seo, .change-language .prisna-wp-translate-seo {
	display: block
}

.change-language .change-language-title, .change-language .change-language-title a {
	font-size: 10pt;
	color: #fff;
}

.change-language .change-language-title {
	padding: 0;
}

	.change-language .change-language-title a:after {
		font-family: 'fontawesome';
		content: "\f0d7";
		font-size: 12px;
		display: inline-block;
		padding-left: 2px;
		color: #333;
	}

.change-language:hover .change-language-title a:after {
	-moz-transform: rotate(-360deg);
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.change-language .change-language-cont {
	position: absolute;
	top: 35px;
	right: 0;
	width: 360px;
	background: #FFF;
	padding: 20px 10px 20px 20px;
	transform: scale3d(0.9, 0.9, 1);
	opacity: 0;
	visibility: hidden;
	z-index: 999;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	border: 1px solid #eee;
	border-radius: 5px;
	overflow-y: scroll;
	max-height: 80vh;
}

.change-language:hover .change-language-cont {
	transform: scale3d(1, 1, 1);
	opacity: 1;
	visibility: visible;
}

.change-language .change-language-cont li {
	display: inline-block;
	vertical-align: top;
	width: 30%;
	margin: 0 0 10px;
	font-size: 10pt;
	overflow: hidden;
	padding: 0 10px 0 0;
}

.change-language .change-language-cont .lang-item-hide {
	display: none !important;
}

.change-language .change-language-cont .lang-more {
	position: relative;
	display: block;
	text-align: center;
	cursor: pointer;
	line-height: 30px;
}

.change-language .change-language-cont .more-active {
	font-size: 20px;
}

.language-flag span {
	position: relative;
	display: inline-block;
	vertical-align: top;
	*display: inline;
	*zoom: 1;
	white-space: nowrap;
	padding: 0 0 0 33px;
	overflow: hidden;
}

.change-language ::-webkit-scrollbar {
	width: 5px;
}

.change-language ::-webkit-scrollbar-track {
	background-color: #fff;
}

.change-language ::-webkit-scrollbar-thumb {
	background-color: rgba(0,0,0,.3);
	border-radius: 3px;
}

.change-language .language-cont:hover::-webkit-scrollbar-thumb {
	display: block
}

.language-flag .country-flag {
	position: absolute;
	left: 0;
	top: 50%;
	display: inline-block;
	vertical-align: top;
	*display: inline;
	*zoom: 1;
	background-repeat: no-repeat;
	background-image: url(../ico/all-m.gif);
	width: 22px;
	height: 16px;
	margin: -8px 5px 0;
}

li.language-flag a {
	position: relative;
}

.language-flag-af .country-flag {
	background-position: 0 0px !important;
}

.language-flag-am .country-flag {
	background-position: 0 -16px !important;
}

.language-flag-ar .country-flag {
	background-position: 0 -32px !important;
}

.language-flag-az .country-flag {
	background-position: 0 -48px !important;
}

.language-flag-be .country-flag {
	background-position: 0 -64px !important;
}

.language-flag-bg .country-flag {
	background-position: 0 -80px !important;
}

.language-flag-bn .country-flag {
	background-position: 0 -96px !important;
}

.language-flag-bs .country-flag {
	background-position: 0 -112px !important;
}

.language-flag-ca .country-flag {
	background-position: 0 -128px !important;
}

.language-flag-ceb .country-flag {
	background-position: 0 -144px !important;
}

.language-flag-co .country-flag {
	background-position: 0 -160px !important;
}

.language-flag-cs .country-flag {
	background-position: 0 -176px !important;
}

.language-flag-cy .country-flag {
	background-position: 0 -192px !important;
}

.language-flag-da .country-flag {
	background-position: 0 -208px !important;
}

.language-flag-de .country-flag {
	background-position: 0 -224px !important;
}

.language-flag-el .country-flag {
	background-position: 0 -240px !important;
}

.language-flag-en .country-flag {
	background-position: 0 -256px !important;
}

.language-flag-eo .country-flag {
	background-position: 0 -272px !important;
}

.language-flag-es .country-flag {
	background-position: 0 -288px !important;
}

.language-flag-et .country-flag {
	background-position: 0 -304px !important;
}

.language-flag-eu .country-flag {
	background-position: 0 -320px !important;
}

.language-flag-fa .country-flag {
	background-position: 0 -336px !important;
}

.language-flag-fi .country-flag {
	background-position: 0 -352px !important;
}

.language-flag-fr .country-flag {
	background-position: 0 -368px !important;
}

.language-flag-fy .country-flag {
	background-position: 0 -384px !important;
}

.language-flag-ga .country-flag {
	background-position: 0 -400px !important;
}

.language-flag-gd .country-flag {
	background-position: 0 -416px !important;
}

.language-flag-gl .country-flag {
	background-position: 0 -432px !important;
}

.language-flag-gu .country-flag {
	background-position: 0 -448px !important;
}

.language-flag-ha .country-flag {
	background-position: 0 -464px !important;
}

.language-flag-haw .country-flag {
	background-position: 0 -480px !important;
}

.language-flag-hi .country-flag {
	background-position: 0 -496px !important;
}

.language-flag-hmn .country-flag {
	background-position: 0 -512px !important;
}

.language-flag-hr .country-flag {
	background-position: 0 -528px !important;
}

.language-flag-ht .country-flag {
	background-position: 0 -544px !important;
}

.language-flag-hu .country-flag {
	background-position: 0 -560px !important;
}

.language-flag-hy .country-flag {
	background-position: 0 -576px !important;
}

.language-flag-id .country-flag {
	background-position: 0 -592px !important;
}

.language-flag-ig .country-flag {
	background-position: 0 -608px !important;
}

.language-flag-is .country-flag {
	background-position: 0 -624px !important;
}

.language-flag-it .country-flag {
	background-position: 0 -640px !important;
}

.language-flag-iw .country-flag {
	background-position: 0 -656px !important;
}

.language-flag-ja .country-flag {
	background-position: 0 -672px !important;
}

.language-flag-jw .country-flag {
	background-position: 0 -688px !important;
}

.language-flag-ka .country-flag {
	background-position: 0 -704px !important;
}

.language-flag-kk .country-flag {
	background-position: 0 -720px !important;
}

.language-flag-km .country-flag {
	background-position: 0 -736px !important;
}

.language-flag-kn .country-flag {
	background-position: 0 -752px !important;
}

.language-flag-ko .country-flag {
	background-position: 0 -768px !important;
}

.language-flag-ku .country-flag {
	background-position: 0 -784px !important;
}

.language-flag-ky .country-flag {
	background-position: 0 -800px !important;
}

.language-flag-la .country-flag {
	background-position: 0 -816px !important;
}

.language-flag-lb .country-flag {
	background-position: 0 -832px !important;
}

.language-flag-lo .country-flag {
	background-position: 0 -848px !important;
}

.language-flag-lt .country-flag {
	background-position: 0 -864px !important;
}

.language-flag-lv .country-flag {
	background-position: 0 -880px !important;
}

.language-flag-mg .country-flag {
	background-position: 0 -896px !important;
}

.language-flag-mi .country-flag {
	background-position: 0 -912px !important;
}

.language-flag-mk .country-flag {
	background-position: 0 -928px !important;
}

.language-flag-ml .country-flag {
	background-position: 0 -944px !important;
}

.language-flag-mn .country-flag {
	background-position: 0 -960px !important;
}

.language-flag-mr .country-flag {
	background-position: 0 -976px !important;
}

.language-flag-ms .country-flag {
	background-position: 0 -992px !important;
}

.language-flag-mt .country-flag {
	background-position: 0 -1008px !important;
}

.language-flag-my .country-flag {
	background-position: 0 -1024px !important;
}

.language-flag-ne .country-flag {
	background-position: 0 -1040px !important;
}

.language-flag-nl .country-flag {
	background-position: 0 -1056px !important;
}

.language-flag-no .country-flag {
	background-position: 0 -1072px !important;
}

.language-flag-ny .country-flag {
	background-position: 0 -1088px !important;
}

.language-flag-pa .country-flag {
	background-position: 0 -1104px !important;
}

.language-flag-pl .country-flag {
	background-position: 0 -1120px !important;
}

.language-flag-ps .country-flag {
	background-position: 0 -1136px !important;
}

.language-flag-pt .country-flag {
	background-position: 0 -1152px !important;
}

.language-flag-ro .country-flag {
	background-position: 0 -1168px !important;
}

.language-flag-ru .country-flag {
	background-position: 0 -1184px !important;
}

.language-flag-sd .country-flag {
	background-position: 0 -1200px !important;
}

.language-flag-si .country-flag {
	background-position: 0 -1216px !important;
}

.language-flag-sk .country-flag {
	background-position: 0 -1232px !important;
}

.language-flag-sl .country-flag {
	background-position: 0 -1248px !important;
}

.language-flag-sm .country-flag {
	background-position: 0 -1264px !important;
}

.language-flag-sn .country-flag {
	background-position: 0 -1280px !important;
}

.language-flag-so .country-flag {
	background-position: 0 -1296px !important;
}

.language-flag-sq .country-flag {
	background-position: 0 -1312px !important;
}

.language-flag-sr .country-flag {
	background-position: 0 -1328px !important;
}

.language-flag-st .country-flag {
	background-position: 0 -1344px !important;
}

.language-flag-su .country-flag {
	background-position: 0 -1360px !important;
}

.language-flag-sv .country-flag {
	background-position: 0 -1376px !important;
}

.language-flag-sw .country-flag {
	background-position: 0 -1392px !important;
}

.language-flag-ta .country-flag {
	background-position: 0 -1408px !important;
}

.language-flag-te .country-flag {
	background-position: 0 -1424px !important;
}

.language-flag-tg .country-flag {
	background-position: 0 -1440px !important;
}

.language-flag-th .country-flag {
	background-position: 0 -1456px !important;
}

.language-flag-tl .country-flag {
	background-position: 0 -1472px !important;
}

.language-flag-tr .country-flag {
	background-position: 0 -1488px !important;
}

.language-flag-uk .country-flag {
	background-position: 0 -1504px !important;
}

.language-flag-ur .country-flag {
	background-position: 0 -1520px !important;
}

.language-flag-uz .country-flag {
	background-position: 0 -1536px !important;
}

.language-flag-vi .country-flag {
	background-position: 0 -1552px !important;
}

.language-flag-xh .country-flag {
	background-position: 0 -1568px !important;
}

.language-flag-yi .country-flag {
	background-position: 0 -1584px !important;
}

.language-flag-yo .country-flag {
	background-position: 0 -1600px !important;
}

.language-flag-zh-CN .country-flag {
	background-position: 0 -1616px !important;
}

.language-flag-zh-TW .country-flag {
	background-position: 0 -1632px !important;
}

.language-flag-zu .country-flag {
	background-position: 0 -1648px !important;
}

._index_case_title h5 {
	font-size: 22px;
	font-weight: normal;
	color: #555;
	margin-top: 10px;
}

@media (max-width: 1600px) {
	.layout {
		max-width: 1400px;
	}
}

@media (max-width: 1440px) {
	.product_slider .swiper-button-prev {
		left: 30px;
	}

	.product_slider .swiper-button-next {
		right: 30px;
	}

	._index_case_desc {
		padding: 30px 50px;
	}

	._index_case_title h3 {
		font-size: 24px;
	}

	._index_case_title h5 {
		font-size: 18px;
	}
}


/*inner*/

.inner-main-wrapper .layout {
	max-width: 1500px;
}

._inner_about {
	padding: 30px 0 30px;
}

._inner_about_items {
	padding: 50px;
}

._inner_title {
	margin-bottom: 20px;
}

	._inner_title h2 {
		font-size: 40px;
		color: #333;
		line-height: 1.4;
		text-align: center;
	}

._inner_about_desc p, ._inner_sample_desc p, ._fea_pro_desc p, ._inner_insert_desc p {
	font-size: 18px;
	line-height: 1.7;
	padding: 10px 0;
	color: #777;
}

._inner_insert_desc p {
	font-size: 24px;
}

._inner_insert_desc ._flex_col_3 {
	text-align: center;
	margin-bottom: 20px;
}

._inner_insert_desc span {
	font-size: 18px;
	line-height: 1.7;
	padding: 5px 0;
	color: #777;
}

._inner_insert_desc._bg {
	background-image: url(../images/insect-screen-bg.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 30%;
}

._inner_insert_desc table {
	border: 0;
	margin-top: 40px;
}

._inner_insert_desc td {
	font-size: 24px;
	color: #777;
	text-align: center;
	padding: 20px 0;
	border: 0;
	border-bottom: 1px solid #ccc;
}

._inner_insert_desc tr:nth-child(2n+1) {
	background: #FBFBFB;
}

._fea_pro_desc p {
	font-size: 24px;
}

._fea_pro_list ._fea_pro_desc p {
	font-size: 18px;
}

._video {
	background: #e6e6e6;
	padding: 50px 0;
}

._inner_about ._flex_col_bg {
	background: #f1f1f1;
	padding: 30px 40px;
}

._history {
	padding: 50px 0;
}

	._history ._inner_about_desc ._flex_col_6 img {
		height: 100%;
		object-fit: cover;
	}

._feature ._inner_about_desc ._flex_col_6 img {
	height: 100%;
	object-fit: cover;
}

p._two_child img {
	width: 48%;
	border-radius: 30px;
	margin-bottom: 2%;
}

._factory ._inner_about_desc {
	padding-top: 20px;
}

	._factory ._inner_about_desc span {
		display: block;
		font-size: 18px;
		text-align: center;
		line-height: 22px;
		padding: 10px 0;
	}

	._factory ._inner_about_desc ._flex_col_4 {
		margin-bottom: 20px;
	}

._inner_ce {
	padding: 30px 0;
}

._inner_ce_items {
	padding: 50px 0;
	border-bottom: 1px solid #ccc;
}

._inner_ce_desc span {
	display: block;
	font-size: 18px;
	text-align: center;
	line-height: 22px;
	padding: 10px 0;
}

._inner_ce_desc ._flex_col_4 {
	margin-bottom: 20px;
}

	._inner_ce_desc ._flex_col_4 img {
		border: 1px solid #ccc;
	}

._inner_ce_items:last-child {
	border: 0;
}

._inner_sample {
	padding: 50px 0;
}

._inner_sample_items {
	padding-bottom: 50px;
}

._inner_sample_desc ._flex_col_4 {
	margin: 1%;
}

	._inner_sample_desc ._flex_col_4 p {
		text-align: center;
	}

._inner_pro {
	padding: 30px 0;
}

._inner_pro_items {
	padding: 50px 0;
	border-bottom: 1px solid #ccc;
}

	._inner_pro_items:last-child {
		border: 0;
	}

._inner_insert_items {
	padding: 60px 0 40px;
}

._inner_insert_full {
	padding: 0;
}

._fea_pro_desc {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

._fea_pro_list {
	display: flex;
	flex-wrap: wrap;
	padding-top: 20px;
}

._fea_pro_item {
	width: 31.333333%;
	margin: 1%;
}

._fea_pro_img img {
	width: 100%;
}

._fea_pro_desc h3 {
	font-size: 24px;
	margin-top: 10px;
	line-height: 1.5;
	color: #444;
}

._inner_banner {
	position: relative;
}

._inner_banner_desc {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}

._inner_banner_title {
	background: rgba(0, 0, 0, .6);
	padding: 20px 30px;
	color: #fff;
}

	._inner_banner_title h1 {
		font-size: 50px;
		line-height: 60px;
	}

		._inner_banner_title h1._line {
			border-bottom: 1px solid #fff;
		}

	._inner_banner_title p {
		font-size: 30px;
		padding-top: 20px;
		line-height: 40px;
	}


._inner_banner_desc a {
	display: block;
	margin-top: 30px;
	font-size: 28px;
	padding: 20px 20px;
	line-height: 1.5;
	color: #fff;
	background: rgba(0,0,0,.6);
	position: relative;
	z-index: 1;
}

	._inner_banner_desc a:after {
		content: "";
		width: 100%;
		height: 0;
		display: block;
		position: absolute;
		left: 0;
		bottom: 0;
		background: #fff;
		z-index: -1;
		transition: all 0.5s ease-out;
		-moz-transition: all 0.5s ease-out;
		-webkit-transition: all 0.5s ease-out;
		-o-transition: all 0.5s ease-out;
	}

	._inner_banner_desc a:hover:after {
		height: 100%;
	}

	._inner_banner_desc a:hover {
		color: #333;
	}

._sample ._inner_banner_desc h4 {
	font-size: 50px;
	padding: 40px 100px;
}

._ce ._inner_banner_desc h4 {
	font-size: 50px;
	padding: 40px 100px;
}

._inner_banner_txt {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0,0,0,.6);
	padding: 30px 60px;
}

	._inner_banner_txt.active {
		animation: _InRight 1s ease;
		/*animation-fill-mode: forwards;*/
	}

	._inner_banner_txt h2 {
		font-size: 70px;
		line-height: 1.2;
		border-bottom: 2px solid #fff;
		color: #fff;
		text-align: center;
	}

		._inner_banner_txt h2 sup {
			font-size: 30px;
			font-weight: normal;
			margin-left: 5px;
		}

	._inner_banner_txt p {
		font-size: 50px;
		padding: 0 30px;
		color: #fff;
		line-height: 50px;
		text-align: center;
		letter-spacing: 1px;
		padding-top: 30px;
	}

._inner_pro_one {
	padding: 30px 0;
}

._inner_pro_one_desc table {
	border: 0;
	margin-top: 40px;
}

._inner_title h4 {
	font-size: 30px;
	text-align: center;
	font-weight: normal;
	margin-top: 20px;
	color: #444;
}

._inner_pro_one_desc td {
	font-size: 24px;
	color: #777;
	text-align: center;
	padding: 20px 0;
	border: 0;
	border-bottom: 1px solid #ccc;
}

._inner_pro_one_desc tr:nth-child(2n+1) {
	background: #FBFBFB;
}

._inner_bg_grey {
	background: #eee;
}

	._inner_bg_grey img {
		max-width: 180px;
	}

	._inner_bg_grey span {
		display: block;
		font-size: 18px;
		color: #333;
		line-height: 24px;
		padding: 10px 0;
	}

	._inner_bg_grey ._flex_col_3 {
		text-align: center;
		margin-bottom: 20px;
	}

	._inner_bg_grey ._flex_col_4 {
		text-align: center;
	}

		._inner_bg_grey ._flex_col_4 img {
			max-width: 80px;
		}

._inner_pro_one_items {
	padding: 50px 0;
}

._inner_pro_one_desc p {
	font-size: 30px;
	line-height: 1.8;
	text-align: center;
	max-width: 1400px;
	margin: 0 auto;
}

._inner_pro_one_list {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

._inner_pro_one_item {
	width: 23%;
	margin: 1%;
	padding: 30px 40px;
	box-shadow: 0 0 10px #ccc;
}

._inner_pro_one_img img {
	width: 100%;
	padding: 30px 0;
}

._inner_pro_one_btn {
	display: flex;
	justify-content: center;
}

	._inner_pro_one_btn a {
		display: block;
		border: 2px solid #333;
		font-size: 16px;
		line-height: 34px;
		padding: 0 20px;
		color: #333;
		position: relative;
		z-index: 1;
	}

		._inner_pro_one_btn a:after {
			display: block;
			content: "";
			position: absolute;
			width: 0;
			height: 100%;
			top: 0;
			left: 0;
			z-index: -1;
			background: #333;
			transition: all .5s ease-out;
		}

		._inner_pro_one_btn a:hover {
			color: #fff;
		}

			._inner_pro_one_btn a:hover:after {
				width: 100%;
			}

._inner_pro_one_desc h3 {
	font-size: 30px;
	text-align: center;
	line-height: 1.5;
}

._inner_pro_wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 30px;
}

._inner_pro_left {
	width: 24%;
}

._inner_pro_left_item {
	padding: 30px 0;
	border-bottom: 1px solid #ccc;
}

	._inner_pro_left_item:first-child {
		padding-top: 0;
	}

	._inner_pro_left_item:last-child {
		border-bottom: 0;
	}

	._inner_pro_left_item h3 {
		font-size: 24px;
		line-height: 1.5;
		color: #444;
	}

	._inner_pro_left_item ul {
		padding-top: 10px;
	}

	._inner_pro_left_item li a {
		display: block;
		font-size: 16px;
		line-height: 1.6;
		padding: 5px 0;
	}

._inner_pro_right {
	width: 74%;
}

._inner_pro_list {
	display: flex;
	flex-wrap: wrap;
}

._inner_pro_item {
	width: 31.333333%;
	margin: 1%;
}

._inner_pro_img img {
	width: 100%;
}

._inner_pro_desc h3 {
	font-size: 20px;
	color: #555;
	line-height: 1.5;
	padding: 10px 0;
	text-align: center;
}

._inner_pro_desc p {
	font-size: 14px;
	line-height: 1.6;
	color: #777;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.page {
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

	.page a {
		display: block;
		width: 40px;
		text-align: center;
		line-height: 30px;
		border: 1px solid #ccc;
		color: #333;
	}

		.page a.active, .page a:hover {
			background: #333;
			border-color: #333;
			color: #fff;
		}

._inner_show_img {
	overflow: hidden;
}

._inner_pro_show_wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 30px 0;
	border-bottom: 1px solid #ccc;
}

._inner_show_title h1 {
	font-size: 32px;
	line-height: 1.5;
	color: #333;
}

._inner_show_txt {
	padding: 20px 0 40px;
	font-size: 20px;
	line-height: 1.8;
	color: #777;
}

._inner_show_img {
	width: 40%;
}

._inner_show_desc {
	width: 58%;
}

._inner_show_btn {
	display: flex;
	flex-wrap: wrap;
}

	._inner_show_btn a {
		display: block;
		width: auto;
		text-align: center;
		margin-right: 20px;
		line-height: 40px;
		border-radius: 3px;
		color: #fff;
		background: #333;
		font-size: 20px;
		padding: 5px 20px;
	}

		._inner_show_btn a:first-child {
			text-transform: uppercase;
		}

._inner_show_list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
	margin-top: 15px;
}

._inner_show_item {
	width: 11.5%;
	margin: .5%;
}

._inner_show_img img {
	width: 100%;
}

._inner_show_detail {
	padding: 30px 0;
}

.inquiry_wrapper {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 99;
	left: 0;
	top: 0;
}

.inquiry_bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
	z-index: 2;
	left: 0;
	top: 0;
}

.inquiry_form {
	position: absolute;
	background: #fff;
	width: 800px;
	padding: 80px 50px 60px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}

input, textarea {
	outline: 0;
}

.inquiry_form_item input, .inquiry_form_item textarea {
	width: 100%;
	padding: 0 10px;
	margin-bottom: 20px;
	line-height: 40px;
	border: 1px solid #ddd;
	border-radius: 3px;
}

.inquiry_form_save {
	display: flex;
	justify-content: center;
}

	.inquiry_form_save input {
		background: #333;
		color: #fff;
		text-align: center;
		padding: 0 20px;
		line-height: 34px;
		border-radius: 3px;
		font-size: 20px;
	}

.inquiry_form_close {
	position: absolute;
	right: 30px;
	top: 20px;
	font-size: 30px;
}

	.inquiry_form_close:hover {
		color: red;
	}

._inner_banner_btn {
	width: 100%;
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 1;
}

#outerdiv {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.7);
	z-index: 100;
	width: 100%;
	height: 100%;
	display: none;
	overflow-y: auto;
}

#innerdiv {
	position: absolute;
}


.head-search-wrap {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 99;
}

.search-wrap {
	background: #fff;
	width: 100%;
	padding: 40px 20%;
	box-shadow: 0 0px 5px #ccc;
}

.search-ipt {
	width: 100%;
	line-height: 50px;
	border: 0;
	border-bottom: 1px solid #ccc;
	text-transform: uppercase;
	font-size: 30px;
	color: #666;
	padding: 0 5px;
}

.search-attr {
	display: block;
	text-align: right;
	color: #555;
	font-size: 14px;
	margin-top: 10px;
}

#btn-search-close {
	background: url(../ico/search_btn_close.png);
	width: 50px;
	height: 50px;
	display: block;
	position: absolute;
	right: 20px;
	top: 20px;
}

	#btn-search-close:hover {
		background-position-y: 50px;
		animation: xuanzhuan 1s ease;
		animation-fill-mode: forwards;
	}


._inner_cv_info p, ._inner_cv_desc p {
	font-size: 24px;
	line-height: 1.7;
	padding: 10px 0;
	color: #777;
}

._inner_cv_desc p {
	font-size: 18px;
}

._inner_cv_desc ._flex_col_6 {
	width: 49%;
	padding-top: 20px;
}

._inner_cv_desc > span {
	display: block;
	text-align: center;
	width: 100%;
	font-size: 24px;
	line-height: 1.7;
	padding: 10px 0;
	color: #777;
}

._inner_bg_white {
	background: #fff;
	padding: 30px 40px;
	border-radius: 10px;
}


._inner_nf_title h2 {
	font-size: 30px;
	color: #333;
	line-height: 1.4;
	text-align: center;
}

._inner_banner_info {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0,0,0,.6);
	padding: 30px 60px;
}

	._inner_banner_info.active {
		animation: _InRight 1s ease;
		/*animation-fill-mode: forwards;*/
	}

	._inner_banner_info h2 {
		font-size: 70px;
		line-height: 1.2;
		color: #fff;
		text-align: center;
	}

		._inner_banner_info h2 sup {
			font-size: 30px;
			font-weight: normal;
			margin-left: 5px;
		}

	._inner_banner_info p {
		font-size: 30px;
		padding: 0 30px;
		color: #fff;
		line-height: 50px;
		text-align: center;
		letter-spacing: 1px;
		padding-top: 20px;
	}

	._inner_banner_info span {
		display: block;
		font-size: 40px;
		padding: 0 30px;
		color: #fff;
		line-height: 50px;
		text-align: center;
		letter-spacing: 1px;
		padding-top: 20px;
		font-weight: bold;
	}

#_menu, #_close, #_lang, .nav-bar .nav-wrap > .nav-item > .fa, ._body_bg {
	display: none;
}

._inner_show_detail .layout > div {
	padding: 30px 0;
	border-bottom: 1px solid #ccc;
}

._inner_show_detail .layout h3 {
	font-size: 30px;
	text-align: center;
	margin-bottom: 20px;
	line-height: 1.6;
	color: #333;
}

._inner_show_detail ._inner_desc_title h3 {
	font-size: 30px;
	text-align: left;
	margin-bottom: 0;
	line-height: 1.6;
	color: #333;
}

._inner_desc_list {
	display: flex;
	flex-wrap: wrap;
}

._inner_desc_item {
	width: 21%;
	margin: 1% 2%;
}

	._inner_desc_item img {
		width: 100%;
	}

	._inner_desc_item span {
		display: block;
		text-align: center;
		font-size: 16px;
		line-height: 24px;
		padding: 5px 0;
	}

._inner_pro_show_wrapper {
	border-bottom: 0;
}

._inner_show_detail img {
	transition: .3s;
}

._inner_show_detail ._inner_desc_list img:hover {
	transform: scale(1.05);
}

._inner_desc_list h4 {
	width: 100%;
}


@keyframes _InRight {
	0% {
		right: -100%;
	}

	100% {
		right: 100px;
	}
}

@keyframes xuanzhuan {
	0% {
		transform: rotateZ(0);
	}

	100% {
		transform: rotateZ(360deg);
	}
}

@keyframes ToLeft {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(0);
	}
}

._inner_sample_items._grey {
	background: #f1f1f1;
}

._join ._inner_sample_items {
	padding: 50px 0;
}

._join ._inner_sample_desc h4 {
	font-size: 22px;
	line-height: 1.7;
	padding: 10px 0;
	color: #555;
	font-weight: bold;
	text-transform: capitalize;
}

._join ._inner_sample_desc p {
	font-size: 22px;
}

._inner_join_title h2 {
	font-size: 40px;
	color: #333;
	line-height: 1.4;
}

._join ._flex_col_6 {
	width: 49%;
}

._inner_banner_btn a {
	animation: _SmallBig 0.8s infinite alternate;
}

	._inner_banner_btn a:hover {
		animation: none;
	}

._inner_pro_left_item i.fa {
	display: none;
}

.inner-main-wrapper .layout {
	width: 90%;
}

._inner_banner_title h1 {
	width: max-content;
}


@media (max-width: 1600px) {
	.inner-main-wrapper .layout {
		max-width: 1100px;
	}
}

@media (max-width: 1440px) {
	.nav-item {
		padding: 0 20px;
	}

	._inner_banner_title h1 {
		font-size: calc(50 / 1440* 100vw);
		line-height: 1.2;
	}
}

@media (max-width: 1366px) {
	.nav-item {
		padding: 0 10px;
	}
}

@media (max-width: 1200px) {
	.head-logo img {
		max-width: 100px;
	}

	.nav-item > a {
		font-size: 16px;
	}

	._index_banner_txt p {
		font-size: 20px;
		line-height: 24px;
	}

	._inner_banner_desc a {
		font-size: 20px;
	}
}

@media (max-width: 1080px) {
	.nav-wrap {
		display: none;
		position: fixed;
		width: 70%;
		background: #fff;
		height: 100%;
		left: 0;
		top: 0;
		flex-wrap: wrap;
		align-content: flex-start;
		overflow-y: scroll;
		animation: ToLeft 1s ease;
		animation-fill-mode: forwards;
		z-index: 99;
	}

	._body_bg {
		position: fixed;
		width: 100%;
		background: rgba(0,0,0,.7);
		height: 100%;
		left: 0;
		top: 0;
		z-index: 80;
	}

	.nav-item {
		width: 100%;
		justify-content: space-between;
		flex-wrap: wrap;
	}

		.nav-item > a {
			line-height: 60px;
		}

	.nav-sub-title img {
		display: none;
	}

	.lang-wrap, .lang-wrap .medium-title, ._child_ico {
		display: none;
	}

	#_menu, #_lang, .nav-bar .nav-wrap > .nav-item > .fa {
		display: block;
	}

	#_lang {
		margin-right: 20px;
	}

	.head-logo img {
		padding: 10px 0;
	}

	.head-right i.fa {
		font-size: 22px;
	}

	.nav-sub {
		position: static;
		transform: translateX(0);
		width: 100%;
		padding: 0 5px;
	}

	.nav-sub-title {
		width: 100%;
		padding: 5px 0;
	}

		.nav-sub-title > a {
			font-size: 16px;
			text-align: left;
		}

	#_close {
		background-color: #fff;
		background-image: url(../ico/search_btn_close.png);
		width: 50px;
		height: 50px;
		position: fixed;
		left: calc(70% + 5px);
		top: 0;
		z-index: 99;
	}

	#_close_lang {
		background-color: #fff;
		background-image: url(../ico/search_btn_close.png);
		width: 50px;
		height: 50px;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 99;
	}

	.change-language .change-language-cont {
		opacity: 1;
		visibility: hidden;
		position: fixed;
		width: 100%;
		background-color: #fff;
		z-index: 99;
		visibility: visible;
		transform: scale3d(1, 1, 1);
		top: 0;
		max-height: 300px;
		overflow-y: scroll;
		padding-top: 50px;
	}
}

@media (max-width: 768px) {
	._index_case_desc {
		padding: 20px 30px;
	}

	._index_case_title h3 {
		font-size: 20px;
	}

	._index_case_title h5 {
		font-size: 14px;
	}

	._index_case_txt {
		font-size: 14px;
	}

	._index {
		padding: 20px 0;
	}

	._index_company_txt {
		font-size: 20px;
	}

	._promote_item {
		width: 47%;
		padding: 10px 10px;
	}

	._promote_item_info h3 {
		font-size: 20px;
		line-height: 24px;
	}

	._index_title h2 {
		font-size: 30px;
	}

	._index_title {
		margin-bottom: 20px;
	}

		._index_title small {
			font-size: 16px;
		}

	._index_banner_txt {
		position: absolute;
		padding: 10px 8px;
	}

		._index_banner_txt h2 {
			font-size: 20px;
			line-height: 1.5;
		}

			._index_banner_txt h2 sup {
				font-size: 16px;
			}

		._index_banner_txt p {
			font-size: 14px;
			line-height: 18px;
		}

	._index_banner .swiper-slide img {
		height: 300px;
		object-fit: cover;
	}

	._index_banner .index-swiper-buttons {
		display: none;
	}

	.foot-wrap .foot-item {
		width: 100%;
	}

	.foot-pro-cate {
		justify-content: left;
		margin-bottom: 10px;
	}

	.foot-wrap .foot-contcat {
		width: 100%;
	}

	.foot-link-list a {
		font-size: 20px;
		line-height: 24px;
	}

	.foot ._flex_col_6 {
		width: 100%;
	}

	._inner_pro_one_item {
		width: 48%;
		padding: 15px 20px;
	}

	._inner_pro_one_desc p {
		font-size: 16px;
	}

	._inner_pro_one_items {
		padding: 20px 0;
	}

	._inner_insert_desc td {
		font-size: 16px;
	}

	._inner_insert_desc span {
		font-size: 14px;
	}

	._more_detail h2 {
		padding-top: 20px;
	}

	._flex_col_5 {
		width: 32.333333% !important;
	}

	._inner_insert_items {
		padding: 20px 0 20px;
	}

	._inner_banner {
		height: 300px;
	}

		._inner_banner img {
			height: 100%;
			object-fit: cover;
		}

	._inner_banner_title h1 {
		font-size: 20px;
	}

	._inner_banner_desc a {
		font-size: 16px;
		margin-top: 10px;
	}

	._join ._inner_sample_items {
		padding: 20px 0;
	}

	._inner_join_title h2 {
		font-size: 30px;
	}

	._inner_about_desc p, ._inner_sample_desc p, ._fea_pro_desc p, ._inner_insert_desc p {
		font-size: 16px;
		padding: 5px 0;
	}

	._mt30 {
		margin-top: 10px;
	}

	._mt50 {
		margin-top: 20px;
	}

	.foot ._flex_col_6 {
		text-align: center;
		margin-bottom: 10px;
	}

	._links ul {
		justify-content: center;
	}

	._inner_title h2 {
		font-size: 20px;
	}

	._inner_title {
		margin-bottom: 10px;
	}

	._inner_pro_items {
		padding: 20px 0;
	}

	._fea_pro_item {
		width: 100%;
		margin: 0;
		margin-bottom: 10px;
	}

	._fea_pro_desc h3 {
		font-size: 16px;
	}

	._fea_pro_list ._fea_pro_desc p {
		font-size: 14px;
	}

	._flex_col_3 {
		width: 49%;
	}

	._inner_bg_grey img {
		max-width: 60px;
	}

	._inner_bg_grey span {
		font-size: 14px;
	}

	._inner_title h4 {
		font-size: 16px;
		margin-top: 10px;
	}

	._inner_pro_one_desc table {
		margin-top: 20px;
	}

	._inner_pro_one_desc td {
		font-size: 16px;
		min-width: 50px;
	}

	._inner_bg_grey span {
		font-size: 14px;
		line-height: 16px;
	}

	._inner_bg_grey ._flex_col_4 img {
		max-width: 60px;
	}

	._inner_about_desc iframe {
		height: 350px;
	}

	._inner_about_items {
		padding: 20px 0;
	}

	._inner_about_desc._inner_about_desc1 p {
		font-size: 16px !important;
	}

	._feature ._flex._flex_between:nth-child(odd) {
		flex-direction: column-reverse;
	}

	._flex_col_6 {
		width: 100%;
	}

	._factory ._inner_about_desc ._flex_col_4 {
		width: 48%;
	}

	._factory ._inner_about_desc span {
		font-size: 14px;
		line-height: 18px;
		padding: 5px 0;
	}

	._inner_ce_desc ._flex_col_4 {
		width: 48%;
	}

	._inner_ce_desc span {
		font-size: 14px;
		line-height: 18px;
	}

	._inner_sample_desc ._flex_col_4 {
		width: 48%;
	}

	._inner_pro_left {
		width: 100%;
	}

	._inner_pro_right {
		width: 100%;
	}

	._inner_pro_item {
		width: 48%;
		margin: 1%;
	}

	._inner_show_img {
		width: 100%;
	}

	._inner_show_desc {
		width: 100%;
		margin-top: 20px;
	}

	._inner_show_title h1 {
		font-size: 20px;
	}

	._inner_show_txt {
		padding: 10px 0 20px;
		font-size: 16px;
	}

	._inner_show_btn a {
		font-size: 16px;
		padding: 5px 10px;
	}

	._inner_desc_item {
		width: 46%;
	}

	._inner_show_detail ._inner_desc_title h3 {
		font-size: 20px;
	}

	._inner_show_detail .layout > div {
		padding: 15px 0;
	}

	._inner_pro_left_item {
		position: relative;
	}

		._inner_pro_left_item i.fa {
			display: block;
			position: absolute;
			font-size: 20px;
			line-height: 36px;
			top: 0;
			right: 0;
			width: 20px;
		}

		._inner_pro_left_item ul {
			display: none;
		}

	._table_wrap {
		overflow-x: scroll;
	}

	._index_case_desc {
		width: 100%;
	}

	._index_case_img {
		width: 100%;
	}
}

@media (max-width: 640px) {
	._index_case_wrapper ._index_case_item:nth-child(2n) {
		flex-direction: column-reverse
	}

	._promote_item_info h3 {
		font-size: 16px;
		line-height: 20px;
	}

	._index_company_txt {
		font-size: 16px;
		line-height: 1.6;
	}

	._index_title h2 {
		font-size: 24px;
	}

	._index_banner_txt {
		right: 50%;
		transform: translate(50%, -50%);
	}

		._index_banner_txt p {
			padding: 0;
		}
}

@keyframes _SmallBig {
	0% {
		filter: opacity(1);
		transform: scale(1.05);
	}

	100% {
		filter: opacity(.8);
		transform: scale(0.95);
	}
}


@media (max-width: 480px) {
	._flex_col_5 {
		width: 49% !important;
	}

	.inner-main-wrapper .layout {
		width: 100%;
		padding: 0 30px;
	}

	.nav-bar .layout {
		padding: 0 20px;
	}

	._inner_join_title h2 {
		font-size: 20px;
	}

	._inner_pro_one_item {
		width: 100%;
		margin: 0;
		margin-bottom: 10px;
	}

	._inner_sample_desc ._flex_col_4 {
		width: 100%;
		margin: 0;
		margin-bottom: 10px;
	}
}
 




@media (max-width: 768px) {

	._flex_col_8 {
		width: 100%;
	}

	._flex_col_4 {
		width: 100%;
	}
}