/*** @author Jerek <luyufan1@163.com>**/
:root {
	--blue: #0e6cf1;
	--darkblue: #012fa7;
	--darkred: #e61c12;
	--hoverred: #c6150f;
	--red: #ef394b;
	--green: #09b918;
	--black: #000000;
	--white: #ffffff;
	--gray: #6c757d;
	--darkgray: #eeeeee;
	--dark: #333333;
	--darksub: #777777;
	--light: #f8f9fa;
	--darklight: #f6f6f6;
	--breakpoint-xs: 0;
	--breakpoint-sm: 576px;
	--breakpoint-md: 768px;
	--breakpoint-lg: 992px;
	--breakpoint-xl: 1200px;
}

* {
	word-wrap: break-word !important;
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scrollbar-width: thin;
}

html ::-webkit-scrollbar {
	width: 5px;
	height: 1px;
}

html ::-webkit-scrollbar-thumb {
	border-radius: 3px;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: var(--darkred);
}

html ::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 3px;
	background: #ededed;
}


@font-face {
	font-family: 'OpenSans';
	src: url('../fonts/opensans.ttf') format('truetype');
}

@font-face {
	font-family: 'Silkab';
	src: url('../fonts/Silka-Bold.ttf') format('truetype');
}

@font-face {
	font-family: 'Silkal';
	src: url('../fonts/Silka-ExtraLight.ttf') format('truetype');
}

.font-b {
	font-family: 'Silkab', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
	font-weight: 600;
}

.font-l {
	font-family: 'Silkal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
	font-weight: 300;
}

body {
	font-size: 16px;
	overflow-x: hidden;
	font-family: 'Silkal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
	font-weight: 400;
	color: var(--dark);
}

a {
	color: var(--dark);
}

a:hover {
	text-decoration: none;
	color: var(--hoverred);
}

:focus {
	outline: none !important;
	box-shadow: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-weight: 600 !important;
}

@media (min-width: 1400px) {

	.container,
	.container-sm,
	.container-md,
	.container-lg,
	.container-xl {
		max-width: 1370px;
	}
}

@media (min-width: 1600px) {

	.container,
	.container-sm,
	.container-md,
	.container-lg,
	.container-xl {
		max-width: 1570px;
	}
}

.btn-light {
	background-color: var(--darkgray);
}

.btn-danger {
	color: #fff;
	background-color: var(--darkred);
	border-color: var(--darkred);
}

.btn-danger:hover {
	background-color: var(--hoverred) !important;
	border-color: var(--hoverred);
}

.btn-outline-secondary {
    color: #5e666d;
    border-color: #5e666d;
}

.btn-outline-secondary:hover {
	background-color: var(--dark) !important;
	border-color: var(--dark) !important;
}

.btn-outline-white {
	border-color: var(--white);
	color: var(--white);
}

.btn-outline-white:hover {
	border-color: var(--black);
	background-color: var(--black);
	color: var(--white);
}

.layui-layer-border {
	box-shadow: 0px 10px 15px rgba(0, 0, 0, .15) !important;
}

.layui-layer-btn .layui-layer-btn0 {
	border-color: var(--hoverred) !important;
	background-color: var(--hoverred) !important;
	border-radius: 3px !important;
}

.layui-layer-btn .layui-layer-btn0:hover {
	color: var(--white) !important;
}

.overflow1 {
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.overflow2 {
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.imgauto {
	width: 100%;
	display: block;
	overflow: hidden;
}

img.grayscale {
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
}

.imgiframe {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 66.25%;
	overflow: hidden;
	margin-bottom: 0px;
}

.imgiframe iframe {
	position: absolute;
	border: 0px;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.clearfix,
.clear {
	clear: both !important;
}

.br5 {
	border-radius: 5px;
	overflow: hidden;
}

.imgZoom {
	overflow: hidden;
}

.imgZoom img {
	transition: all 0.8s;
	cursor: pointer;
}

.imgZoom:hover img {
	-moz-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

.logo-icons {
	position: relative;
}

.logo-icons::after {
	background-image: url('../images/logo.png');
	background-repeat: no-repeat;
	display: none;
	content: "";
	position: absolute;
	z-index: 10;
	width: 20px;
	height: 20px;
	background-size: 20px;
	right: 100px;
	top: -10px;
}

.line1 {
	border-top: 1px solid #eee;
}

.m-t10 {
	margin-top: 10px !important;
}

.m-t20 {
	margin-top: 20px !important;
}

.m-t30 {
	margin-top: 30px !important;
}

.m-t50 {
	margin-top: 50px !important;
}

.m-t60 {
	margin-top: 60px !important;
}

.m-t120 {
	margin-top: 120px !important;
}

.f18 {
	font-size: 18px !important;
}

.f24 {
	font-size: 24px !important;
}

.f30 {
	font-size: 30px !important;
}

.f34 {
	font-size: 34px !important;
}

.f46 {
	font-size: 46px !important;
}

.f48 {
	font-size: 47px !important;
}

.p-b20 {
	padding-bottom: 20px !important;
}

.p-b30 {
	padding-bottom: 30px !important;
}

.p-b60 {
	padding-bottom: 60px !important;
}

.p-t20 {
	padding-top: 20px !important;
}

.p-t30 {
	padding-top: 30px !important;
}

.p-t60 {
	padding-top: 60px !important;
}

.p-t80 {
	padding-top: 80px !important;
}

.p-t100 {
	padding-top: 100px !important;
}

.p-t120 {
	padding-top: 120px !important;
}

.p-b80 {
	padding-bottom: 80px !important;
}

.p-b100 {
	padding-bottom: 100px !important;
}

.p-tb60 {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}

.p-tb80 {
	padding-top: 80px !important;
	padding-bottom: 80px !important;
}

.p-tb100 {
	padding-top: 100px !important;
	padding-bottom: 100px !important;
}

.p-tb130 {
	padding-top: 130px !important;
	padding-bottom: 130px !important;
}

.bgf {
	background-color: #FFFFFF !important;
}

.bg2 {
	background-color: var(--darklight) !important;
}

.bg3 {
	background-color: #111 !important;
}

.red {
	color: #ff0000;
}

.fw-bold {
	font-weight: 600;
}

.hide {
	display: none;
}

.white-text,
.white-text a,
.white-text p,
.white-text p a {
	color: #fff !important;
}

.darkblue {
	color: var(--darkred);
}

.text-muted {
	color: var(--gray) !important;
}

.scrollbar::-webkit-scrollbar {
	width: 5px;
	height: 1px;
}

.scrollbar::-webkit-scrollbar-thumb {
	background-color: #ccc;
}

.scrollbar::-webkit-scrollbar-track {
	background: #ededed;
}

.no-bullets {
	list-style-type: none !important;
}

.no-style,
.no-style li,
.no-style ol {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.no-style2,
.no-style2 li,
.no-style2 ol {
	margin: 0 !important;
	padding: 0 !important;
}

.no-style2 li,
.no-style2 ol {
	margin-left: 5px !important;
	padding-left: 5px !important;
}

@keyframes scale-animation {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

@keyframes blur-to-clear {
	0% {
		filter: blur(10px);
	}

	100% {
		filter: blur(0px);
	}
}

.wraper-auto {
	padding: 0 50px;
	max-width: 100%;
}

.btn-quotebg {
	background-size: cover;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.btn-quotebg:before {
	display: block;
	content: "";
	position: absolute;
	z-index: 3;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.btn-quotebg .pulsing-image {
	position: relative;
	z-index: 2;
}

.btn-quotebg .foot-content-box {
	position: absolute;
	z-index: 4;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.btn-more-light {
	color: #222222;
	border-color: #dddddd;
	background-color: #f3f3f3;
	padding: 5px 15px;
	font-size: 16px;
}

.btn-more-light:hover {
	background-color: var(--darkred);
	border-color: var(--darkred);
	color: #ffffff;
}

.i-xs {
	width: 12px;
	height: 12px;
}

.i-sm {
	width: 16px;
	height: 16px;
}

.i-md {
	width: 20px;
	height: 20px;
}

.i-lg {
	width: 24px;
	height: 24px;
}

.i-xl {
	width: 30px;
	height: 30px;
}

.ki {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	display: inline-block;
	position: relative;
	min-width: 16px;
	min-height: 16px;
}

.ki-check-circle-fill {
	background-image: url(../images/check-circle-fill.png);
}

.ki-cloud-upload {
	background-image: url(../images/cloud-upload.png);
}

.ki-lock {
	background-image: url(../images/lock.png);
}

.ki-tags-fill {
	background-image: url(../images/tags-fill.png);
}

.ki-globe {
	background-image: url(../images/globe.png);
}

.ki-play {
	background-image: url(../images/play.png);
}

.ki-chevron-up,
.ki-chevron-down {
	background-image: url(../images/chevron-up.png);
}

.accordion-2col-header:hover .ki-chevron-down,
.accordion-2col-header.active .ki-chevron-down,
.accordion:hover .ki-chevron-up {
	background-image: url(../images/chevron-down.png);
}

.accordion.on .ki-chevron-up {
	background-image: url(../images/chevron-down.png);
	transform: rotate(180deg);
}

.accordion .ki {
	position: absolute;
	top: 20px;
	right: 20px;
}

.ki-del {
	background-image: url(../images/ki-del.png);
	width: 27px;
	height: 27px;
	background-size: cover;
}

.ki-pinpai {
	background-image: url(../images/icons-pinpai.png);
	width: 27px;
	height: 27px;
	background-size: auto 26px;
}

.ki-twitter {
	background-position: 0 0;
}

.ki-tiktok {
	background-position: -27px 0;
}

.ki-instagram {
	background-position: -54px 0;
}

.ki-youtube-play {
	background-position: -81px 0;
}

.ki-linkedin {
	background-position: -108px 0;
}

.home-top-banner .btn-lg .ki {
	margin-right: 10px;
}

.footer-change-country .btn-language .ki,
.home-top-banner .form-falock .ki {
	margin-right: 5px;
	top: 4px;
}

.all-nav .sub .ki {
	margin-left: 5px;
	top: 4px;
}

.item2 {
	padding: 15px;
	background: #FFFFFF;
	display: none;
	position: relative;
	z-index: 1999;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
}

.item-close {
	cursor: pointer;
	right: 30px;
	top: 30px;
	position: absolute;
	z-index: 999;
	width: 18px;
	height: 18px;
	background-image: url('../images/close.png');
	background-repeat: no-repeat;
	background-position: center;
}

.search-box {
	padding: 20px 0;
	border-radius: 0px;
	position: fixed;
	z-index: 2200;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	top: 0px;
	left: 0px;
}

.search-box .container {
	max-width: 1200px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.menu-mobile {
	padding: 20px 0;
	border-radius: 0px;
	position: fixed;
	z-index: 2200 !important;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	top: 0px;
	left: 0px;
	overflow-y: auto;
	transform: none !important;
}

.footer-change-country .btn-language {
	text-transform: none !important;
}

.btn-language {
	text-transform: uppercase;
}

.btn-language img {
	margin-right: 2px;
	height: 14px;
	border: 1px #ccc solid;
}

.language-box {
	padding: 20px 0;
	border-radius: 0px;
	position: fixed;
	z-index: 2200;
	width: 360px;
	box-sizing: border-box;
	top: 0px !important;
	transform: translate(0%, 0%) !important;
	right: 0px;
	bottom: 0px;
	left: auto !important;
}

.language-box h3 {
	font-size: 19px;
	padding-bottom: 20px;
	padding-left: 30px;
	border-bottom: 1px solid #eeeeee;
}

.language-box .container {
	padding-left: 30px;
	padding-right: 30px;
	overflow-y: auto;
	max-height: 80vh;
}

.item-language {
	margin-top: 15px;
	background-color: #f9f9f9;
	padding: 10px 15px;
	border-radius: 3px;
	font-size: 14px;
	font-weight: normal;
}

.item-language img {
	margin-right: 15px;
	height: 20px;
}

.item-language:hover {
	background-color: #eeeeee;
}

/*header*/
.top-header {
	position: relative;
	z-index: 229;
}

.top-header .btn-danger {
	font-size: 14px;
	padding: 12px 15px !important;
}

.btn-lg,
.fileinput-button {
	font-weight: 500;
	padding: 15px 25px !important;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.fileinput-button {
	font-size: 18px;
}

.btn-lg:hover,
.form-upload a:hover .btn-lg {
	background-color: var(--hoverred) !important;
}

.btn-lg:before {
	display: block;
	content: "";
	background-color: var(--hoverred) !important;
	transition: all 0.4s ease-in-out;
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	z-index: -1;
}

.btn-lg:hover:before,
.form-upload a:hover .btn-lg:before {
	width: 100%;
}

.btn-primary:before {
	display: none;
}

.logo-default {
	height: 40px;
}

.latest-events-box {
	background-color: #333;
	color: var(--white);
	height: 40px;
	font-size: 14px;
	font-weight: 500;
	align-items: center !important;
	overflow: hidden;
}

.swiper.topadbox {
	height: 40px !important;
}

.swiper.topadbox .swiper-slide {
	align-items: center !important;
	justify-content: center !important;
	display: flex;
}

.swiper.topadbox .swiper-slide a {
	color: var(--darkred) !important;
	text-decoration: underline;
	padding-left: 10px;
}

.swiper.topadbox .swiper-slide a:hover {
	color: var(--darkred) !important;
}

.fix-header {
	left: 0;
	position: fixed;
	right: 0;
	top: -40px;
	width: 100%;
	transition: all 0.3s;
	border-bottom: 1px solid var(--darkgray);
	-webkit-backdrop-filter: saturate(180%) blur(6px);
	backdrop-filter: saturate(180%) blur(6px);
	background: rgba(255, 255, 255, 0.9);
}

.nav-right .item {
	margin-left: 20px;
}

.nav-right .item:first-of-type {
	margin-left: 0px;
}

.nav-right .btn-search span {
	font-size: 0px;
}

button.btn-search,
button.btn-language,
button.btn-menubox {
	border: 0px !important;
	background: none !important;
}

.modal-overlay {
	display: none;
	z-index: 1000;
}

.modal-overlay .modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	border-radius: 50px;
	width: 80%;
	border-color: #dddddd;
}

.modal-content input {
	border: 0px;
	border-radius: 50px;
	padding: 12px 20px;
	width: 100%;
	font-size: 16px;
	box-sizing: border-box;
}

.modal-close {
	position: absolute;
	top: -3px;
	right: 20px;
	cursor: pointer;
	font-size: 32px;
	color: #999;
}

.modal-close:hover {
	color: #333;
}

.box-quick-quote span {
	padding: 0 5px;
}

.wraper-auto {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
}

.head-logo {
	box-sizing: border-box;
	text-align: left;
}

.nav-right {
	box-sizing: border-box;
	text-align: right;
}

.head-center {
	flex-grow: 1;
	box-sizing: border-box;
	text-align: center;
}

/*home-banner*/
.item-certified-ico {
	margin: 0 10px;
	font-size: 15px;
}

.item-certified-ico .ki {
	margin-right: 5px;
}

.home-top-banner .form-upload {
	background-color: #ffffff;
	border-radius: 10px;
	width: 660px;
	margin: 30px auto 20px auto;
	border: 1px solid #f6f6f6;
	box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
}

.home-top-banner .form-upload:hover .btn {
	background-color: var(--darkred);
	border-color: var(--darkred);
}

.home-top-banner .form-upload .btn .fa {
	margin-right: 5px;
}

.home-top-banner .form-upload .pad20 {
	padding: 20px;
}

.home-top-banner .form-upload h4 {
	margin-top: 20px !important;
	font-size: 18px;
	color: #555;
	font-weight: 500 !important;
}

.home-top-banner .form-upload b {
	padding: 0 5px;
}

.home-top-banner .form-falock {
	display: inline-block;
	font-size: 14px;
	color: var(--gray);
	position: relative;
	padding-left: 0px;
	font-weight: 500;
}

.home-top-banner .form-falock .fa {
	position: initial;
	margin-right: 5px;
}

.home-top-banner .paragraph {
	color: #999;
	font-size: 14px;
}

.home-top-banner {
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 50px;
	padding-bottom: 80px;
}

.home-top-banner h1 {
	font-size: 3rem !important;
	margin-bottom: 30px !important;
}

.home-top-banner .subtitle {
	font-size: 19px;
	color: #666;
	font-weight: 400;
	margin-bottom: 50px !important;
}

.home-top-banner .subtitle b {
	padding: 0 5px;
	color: var(--dark);
}

.home-top-banner .btn-lg {
	font-size: 20px !important;
	font-family: 'Silkab';
	padding: 18px 40px !important;
}

/*主导航菜单*/
.navBar {
	position: relative;
	z-index: 210;
}

.navBar.show {
	height: 94px;
}

.navBar.show ul {
	display: none;
}

.all-nav {
	text-align: center;
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.all-nav .m {
	position: relative;
	display: inline-block;
}

.all-nav h3 {
	margin: 0px;
	padding: 0px;
}

.all-nav h3 a {
	zoom: 1;
	display: block;
	color: var(--dark);
	font-size: 17px;
	padding: 0 20px;
	height: 94px;
	line-height: 94px;
	position: relative;
	text-transform: capitalize;
}

.all-nav h3 a::before {
	display: block;
	content: "";
	background-color: var(--darkred);
	width: 0px;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.all-nav .on h3 a {
	color: var(--darkred);
}

.all-nav .on h3 a::before {
	width: 100%;
}

.all-nav .sub {
	display: none;
	width: 240px;
	padding: 15px;
	position: absolute;
	z-index: 220;
	left: -30px;
	top: 94px;
	background: #ffffff;
	border-radius: 5px;
	border: 1px solid var(--darkgray);
	box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
}

.all-nav .sub li,
.all-nav .sub-menu2 dd {
	text-align: left;
	position: relative;
}

.all-nav .sub li .fa,
.all-nav .sub-menu2 dd .fa {
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	transition: all 0.3s;
	display: none;
}

.all-nav .sub li a,
.all-nav .sub-menu2 dd a {
	color: #333;
	display: block;
	padding: 5px 12px;
	transition: all 0.3s;
	zoom: 1;
	font-size: 15px;
	font-weight: 500;
	text-transform: capitalize;
}

.all-nav .sub li a:hover,
.all-nav .sub-menu2 dd a:hover {
	color: var(--darkred);
	text-decoration: underline;
}

.all-nav .sub li a:hover .fa,
.all-nav .sub-menu2 dd a:hover .fa {
	color: var(--darkred);
	font-weight: bold;
	right: 15px;
}

.all-nav .sub-m1 .sub {
	width: 740px;
	left: 50%;
	transform: translateX(-50%);
}

.all-nav .sub-m2 .sub {
	/*position: fixed;*/
	width: auto;
	/*left: 50%;*/
	/*transform: translateX(-50%);*/
	/*top: 142px;*/
	padding: 0px;
	background-color: #ffffff;
}

.d-flex2 {
	display: flex;
}

.sub-box-left {
	padding: 50px 50px 70px 50px;
	flex-basis: 800px;
	box-sizing: border-box;
	text-align: left;
	background-color: #f4f4f4;
}

.sub-box-left .title {
	font-weight: bold;
	font-size: 19px;
	padding-bottom: 20px;
}

.sub-box-left .note {
	color: var(--gray);
	padding-bottom: 20px;
}

.sub-box-left .more a {
	position: relative;
	color: var(--darkred);
}

.sub-box-left .more .bi {
	right: -30px;
	position: absolute;
	transition: all 0.3s;
}

.sub-box-left .more a:hover .bi {
	transform: rotateZ(45deg);
	right: -35px;
}

.sub-box-right {
	padding: 35px 20px;
	text-align: left;
	border-right: 1px solid var(--darkgray);
	display: flex;
}

.all-nav .sub dl {
	padding: 0px;
	width: 240px;
	margin-right: 50px;
}

.all-nav .sub dl:last-of-type {
	margin-right: 0px;
}

.all-nav .sub dl dt {
	font-weight: 600;
	padding: 0 12px 5px 12px;
	font-size: 13px;
}

.all-nav .sub dl dt,
.all-nav .sub dl dt a {
	color: #999;
}

.all-nav .sub dl dd {
	margin: 0px !important;
}

.all-nav .sub dl dd .bi {
	position: relative;
	color: var(--darkred);
	margin-left: 10px;
	top: 1px;
}

.all-nav .bi-new {
	font-style: normal;
	padding: 0px 2px;
	border-radius: 3px;
	font-size: 13px;
	background-color: #E6F1FC;
}

.sub-box-right2 {
	text-align: left;
	display: flex;
	padding-top: 20px;
}

.all-nav .sub .sub-box-right2 dl {
	margin-right: 0px;
}

.all-nav .sub .sub-box-right2 dl:last-of-type {
	width: auto;
	padding-left: 20px !important;
	margin-left: 20px !important;
	border-left: 1px solid var(--darkgray);
}

.all-nav .sub .sub-box-right2 .sub-menu2 dd {
	display: block;
	width: 220px;
	float: left;
}

.all-nav .sub-menu2 {
	margin-top: 10px;
}

.sub-right-list {
	text-align: left;
	padding: 50px;
	flex-basis: 30%;
}

.sub-right-list dl {
	width: 100% !important;
}

.sub-right-list dd img {
	margin-right: 15px;
}

.trusted-title {
	color: var(--darksub);
}

/*Home*/
.index-main-title {
	margin: 0 15rem;
	padding-bottom: 35px;
}

.index-main-title h2 {
	margin-bottom: 20px;
	font-weight: 600;
	color: var(--dark);
	font-family: 'Silkab';
}

.quality-fuwu .col-xl-8 p {
	font-size: 16px;
	color: var(--gray);
	font-weight: normal !important;
}

.index-main-title p,
.main-title p {
	font-size: 16px;
	color: var(--gray);
	font-weight: normal !important;
	margin-bottom: 0;
}

.index-main-text {
	font-weight: normal;
	font-size: 17px;
	padding-top: 25px;
}

.index-main-text p {
	margin-bottom: 0;
}

.our-services-box {
	padding-top: 60px;
	padding-bottom: 80px;
}

.item-cnc-service {
	background: linear-gradient(to bottom, #f9f9f9, #f6f6f6);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.item-cnc-service .pic {
	overflow: hidden;
	transition: all 0.3s;
	position: relative;
}

.item-cnc-service .title {
	font-weight: bold;
	padding-top: 20px;
	font-size: 17px;
}

.item-cnc-service:hover {
	-webkit-box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.1);
}

.item-cnc-service:hover .title a {
	color: var(--darkred);
}

/*banner*/
.home-banner {
	width: 100%;
	padding: 100px 0;
	overflow: hidden;
	position: relative;
	background-color: #eeeeee;
	background-size: cover;
	background-repeat: no-repeat;
}

.home-banner .bdvideo {
	width: 100%;
	position: absolute;
	z-index: 1;
	top: 0px;
	left: 0px;
	bottom: 0px;
	border: 0px;
}

.video-banner::before {
	display: block;
	content: "";
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: rgba(0, 0, 0, .5);
}

.video-banner .container {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
	position: relative;
	z-index: 3;
}

.video-banner .home-banner-text h2,
.video-banner .home-banner-note,
.video-banner .title,
.video-banner .iso-title,
.video-banner .home-banner-text span {
	color: var(--white) !important;
}

.video-banner .btn-outline-secondary {
	border-color: var(--white) !important;
	color: var(--white) !important;
}

.video-banner .btn-outline-secondary:hover {
	background-color: var(--black) !important;
	border-color: var(--black) !important;
}

.home-banner-text h2 {
	color: var(--black);
	font-weight: 600;
	line-height: 60px;
}

.home-banner-text .iso-title {
	font-size: 15px;
	margin-top: 50px;
}

.home-banner-text span {
	color: var(--darkred);
}

.home-banner-note {
	font-size: 20px;
	font-weight: 400;
	color: var(--dark);
	padding: 30px 0 50px 0;
}

.home-banner .btn {
	padding: 15px 50px;
}

.swiper-trusted {
	overflow: hidden;
	position: relative;
}

.trusted-list .title {
	width: 100px;
}

.trusted-image img {
	padding: 2px;
	box-sizing: border-box;
	height: 48px;
	overflow: hidden;
}

.trusted-image2 img {
	background-color: #fff;
	padding: 2px;
	box-sizing: border-box;
	width: 48px;
	height: 48px;
	border-radius: 13px;
	overflow: hidden;
}

.sub-m2 dl {
	width: 260px !important;
	margin: 0px !important;
}

.sub-m2 .sub-menu2 {
	border: 0px !important;
	padding: 0px !important;
}

.menu-item-box {
	padding: 35px 20px !important;
	flex-basis: 45% !important;
}

.menu-item-news {
	max-width: 360px;
	background-color: var(--darkgray);
	border-radius: 10px;
	padding-bottom: 30px;
	overflow: hidden;
	position: relative;
}

.menu-item-news:last-of-type {
	margin-left: 30px;
}

.menu-item-news .text {
	padding: 20px;
}

.menu-item-news .text .title {
	font-size: 15px;
	line-height: 20px;
	font-weight: 600;
	color: var(--dark);
}

.menu-item-news a .more {
	color: var(--darkred);
	position: absolute;
	bottom: 20px;
	left: 20px;
}

.menu-item-news .more .fa {
	transition: all 0.3s;
	opacity: 0;
}

.menu-item-news a:hover .more .fa {
	margin-left: 10px;
	opacity: 1;
}

/*home-industries*/
.slide-industries {
	position: relative;
}

.slide-industries .item-pic {
	border-radius: 10px;
	overflow: hidden;
}

.slide-industries .hd {
	position: relative;
	width: 40%;
	float: left;
}

.slide-industries .hd ul {
	margin: 0;
	padding: 0;
}

.slide-industries .hd ul li {
	position: relative;
	font-size: 22px;
	font-weight: 600;
	cursor: pointer;
	list-style: none !important;
	margin: 0;
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
}

.slide-industries .hd ul li .bi {
	position: absolute;
	right: 0;
	top: 18px;
	width: 32px;
	height: 32px;
	text-align: center;
}

.slide-industries .hd ul li .bi::before {
	top: 0px;
	position: relative;
	font-size: 20px;
	transition: all 0.3s;
}

.slide-industries .hd ul li .content {
	display: none;
	font-weight: normal;
	font-size: 16px;
	margin-top: 20px;
}

.slide-industries .hd ul li.on .content {
	display: block;
}

.slide-industries .hd ul li.on {
	border-top: 1px solid #ddd;
	border-bottom: 2px solid var(--darkred);
}

.slide-industries .hd ul li.on .title {
	color: var(--darkred);
}

.slide-industries .hd ul li.on .bi::before {
	transform: rotate(180deg);
}

.slide-industries .bd {
	width: 60%;
	padding-left: 50px;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
}

.slide-industries .bd ul {
	position: sticky;
	top: 170px;
}

.slide-industries .more {
	margin-top: 20px;
	margin-bottom: 10px;
}

.working-list .item {
	height: 100%;
	padding: 0 15px;
}

.working-list .item .num {
	position: relative;
	justify-content: center;
	align-items: center;
	display: flex;
	margin: 0 auto;
	width: 80px;
	height: 80px;
}

.working-list .item .title {
	font-size: 20px;
	font-weight: bold;
	padding: 20px 0 10px 0;
	transition: all 0.3s;
}

.working-list .item .text {
	color: var(--gray);
	font-size: 15px;
}

.working-list .row {
	position: relative;
}

.working-list .row::before {
	height: 3px;
	border-top: 3px dotted #ccc;
	position: absolute;
	z-index: -1;
	display: block;
	content: "";
	top: 40px;
	width: 80%;
	left: 10%;
}

.working-list .item.active .num span,
.working-list .item:hover .title {
	color: var(--darkred);
}

.working-list .item:hover .num::after {
	background-color: var(--darkred);
}

.working-list .item:hover .num span {
	color: var(--white);
}

/*home-about*/
.index-about {
	padding-top: 80px;
	background-attachment: fixed;
}

.index-about .content {
	line-height: 26px;
	padding-left: 50px;
}

.index-about .content h2 {
	text-transform: uppercase;
	font-size: 18px;
	color: var(--darkred);
}

.index-about .content h3 {
	font-size: 2rem;
	margin-bottom: 20px;
	margin-top: 10px;
	font-family: 'Silkab';
}

.index-about .content p {
	margin-bottom: 0px;
	color: var(--gray);
}

.about-option {
	border-top: 1px solid #ddd;
	padding-top: 20px;
	margin-top: 40px;
}

.about-option .item-option {
	border: 1px solid #ddd;
	margin-top: 25px;
	align-items: center;
	font-weight: 600;
	font-size: 15px;
	color: #111;
	border-radius: 5px;
	overflow: hidden;
}

.about-option .item-option span {
	background-color: #ffeeef;
	padding: 17px;
	margin-right: 15px;
	border-radius: 5px;
	border: 1px solid #fff;
}

.about-option .item-option span img {
	width: 20px;
	height: 20px;
}

.index-about .about-pic {
	overflow: hidden;
	position: relative;
	border-radius: 5px;
}

.homeabout-btn {
	color: var(--darkred);
	font-size: 18px;
	font-weight: 600;
	padding-top: 20px;
	display: block;
}

.btn-video-about {
	background-color: rgba(1, 47, 167, 0.8);
	width: 75px;
	height: 50px;
	border-radius: 10px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: absolute;
	z-index: 6;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
	transition: all 0.3s;
}

.btn-video-about:hover {
	background-color: var(--darkred);
}

.item-num {
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 5px;
	padding: 20px 20px 0 20px;
	height: 100%;
	margin-top: 20px;
}

.item-num .title {
	font-size: 30px;
	font-weight: bold;
	color: var(--darkred);
	position: relative;
}

.item-num .title span {
	position: relative;
}

.item-num p {
	line-height: 16px;
	margin-bottom: 0 !important;
	margin-top: 10px;
	font-size: 14px;
	color: var(--gray);
}

.num-box .row {
	margin-left: -5px;
	margin-right: -5px;
}

.num-box .col-xl-3 {
	padding-right: 5px;
	padding-left: 5px;
}

.video-about {
	position: absolute;
	z-index: 20;
	padding: 0;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	top: 0;
	left: 0;
	box-sizing: border-box;
	display: none;
}

.video-about .item-close {
	right: -50px;
	top: -50px;
	background-color: rgba(0, 0, 0, 0.15);
	background-image: url('../images/close2.png');
	width: 30px;
	height: 30px;
}

.video-about .item-close:hover {
	background-color: var(--darkred);
}

/*page-cate*/
.page-cate {
	border-bottom: 1px solid #eee;
	margin-top: -60px;
	text-align: center;
	margin-bottom: 80px;
}

.page-cate ul li {
	display: inline-block;
}

.page-cate a {
	padding: 0 20px;
	height: 70px;
	line-height: 70px;
	font-size: 19px;
	display: block;
	position: relative;
}

.page-cate a::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 2;
	width: 0px;
	height: 2px;
	background-color: var(--darkred);
	bottom: 0px;
	left: 0px;
	transition: all 0.3s;
}

.page-cate .active a,
.page-cate ul li a:hover {
	color: var(--darkred);
}

.page-cate .active a::before,
.page-cate ul li a:hover::before {
	width: 100%;
}

/* cases-slide */
.swiper-box-cases {
	width: 100%;
	overflow: visible !important;
	padding: 60px 0;
	position: relative;
}

.swiper-box-cases .swiper-slide {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.4s ease;
}

.swiper-box-cases .swiper-button-prev,
.swiper-box-cases .swiper-button-next {
	background: rgba(0, 0, 0, 0.5);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	opacity: 0;
}

.swiper-box-cases .swiper-button-prev:hover,
.swiper-box-cases .swiper-button-next:hover {
	background: #e61c12;
	transform: scale(1.1);
}

.swiper-box-cases .swiper-button-prev::after,
.swiper-box-cases .swiper-button-next::after {
	font-size: 16px;
	font-weight: bold;
	color: #fff;

}

.swiper-box-cases:hover .swiper-button-prev,
.swiper-box-cases:hover .swiper-button-next {
	opacity: 1;
}

.swiper-box-cases .swiper-pagination-bullet {
	background: #ccc;
	opacity: 0.5;
	width: 10px;
	height: 10px;
	transition: all 0.3s ease;
}

.swiper-box-cases .swiper-pagination-bullet-active {
	background: #e61c12;
	opacity: 1;
	width: 25px;
	border-radius: 5px;
}

@media (max-width: 768px) {

	.swiper-box-cases .swiper-button-prev,
	.swiper-box-cases .swiper-button-next {
		width: 35px;
		height: 35px;
	}

	.swiper-box-cases .swiper-button-prev::after,
	.swiper-box-cases .swiper-button-next::after {
		font-size: 14px;
	}

}

/*home-case*/
.cases-left-cate {
	margin-top: 10px;
	margin-right: 20px;
	overflow: hidden;
	position: sticky;
	top: 130px;
}

.cases-left-cate h3 {
	background-color: var(--darkred);
	color: var(--white);
	padding: 20px 30px;
	font-size: 18px;
	margin-bottom: 0px;
}

.cases-left-cate ul li a {
	background-color: #eee;
	padding: 10px 20px;
	border-radius: 5px;
	display: block;
	margin-top: 10px;
	font-weight: normal;
}

.cases-left-cate ul li a span {
	margin-left: 10px;
}

.cases-left-cate ul li a:hover,
.cases-left-cate ul li.active a {
	background-color: var(--darkred);
	color: var(--white);
}

.cases-left {
	padding-right: 50px;
}

.cases-cate {
	padding-bottom: 0px;
}

.cases-cate a {
	color: #fff;
	display: inline-block;
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 6px 15px;
	border-radius: 5px;
	margin: 10px 10px 0 10px;
	font-size: 15px;
	background-color: rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
}

.cases-cate a:hover {
	background-color: var(--darkred);
	border-color: rgba(1, 47, 167, 0.8);
}

.item-cases {
	margin-top: 24px;
}

.item-cases p {
	padding: 20px 10px;
	margin-bottom: 0;
	transition: all 0.3s;
}

.item-cases:hover p {
	background-color: var(--darkred);
}

.case-more {
	margin-top: 50px;
	padding-bottom: 30px;
}

.case-more .btn {
	padding: .7rem 2.8rem;
	font-size: 19px;
}

.cases-videobg {
	height: 100%;
	aspect-ratio: 1200/800 !important;
	position: relative;
}

.cases-videobg img {
	position: relative;
	z-index: 1;
}

.cases-videobg video {
	width: 100%;
	height: 100%;
	background-color: #000000;
}

.cases-video-btn {
	background-color: rgba(0, 0, 0, .5);
	position: absolute;
	z-index: 4;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.cases-video-btn .bi {
	color: var(--white);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 30px;
}

.custom-spinner {
	width: 50px;
	height: 50px;
	margin: 0 auto;
	border: 3px solid #e0e0e0;
	border-top: 3px solid var(--darkred);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.filter-section {
	padding: 50px 0;
	background: linear-gradient(to bottom, #f0f0f0 0%, #ffffff 100%);
}

.filter-group {
	align-items: center;
	margin-bottom: 15px;
}

.filter-group label {
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	font-weight: 600;
	color: #333;
}

.filter-tags {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.filter-tags a {
	display: inline-block;
	padding: 6px 15px;
	background: white;
	border: 1px solid #eeeeee;
	border-radius: 5px;
	color: #333333;
	text-decoration: none;
	font-size: 15px;
	transition: all 0.3s;
}

.filter-tags a:hover,
.filter-tags a.active {
	background: #ffeeef;
	color: var(--darkred);
	border-color: var(--darkred);
}

.filter-search {
	flex-direction: column;
	align-items: flex-start;
}

.filter-search input {
	width: 230px;
	height: 40px;
	font-size: 15px;
	padding: 0 15px;
	border: 1px solid #ddd;
	border-radius: 5px 0 0 5px;
	outline: none;
}

.filter-search button {
	width: 50px;
	height: 40px;
	background: var(--darkred);
	color: white;
	border: 1px solid var(--darkred);
	border-radius:0 5px 5px 0;
	cursor: pointer;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
}

.filter-search button:hover {
	background-color: var(--hoverred);
	border-color: var(--hoverred);
}

.cases-list {
	min-height: 400px;
}

#cases-container .col-lg-3 {
	margin-bottom: 30px !important;
}

.case-item {
	height: 100%;
	padding-bottom: 50px;
	overflow: hidden;
}

.case-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.case-image {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}

.case-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.case-link:hover .case-image img {
	transform: scale(1.05);
}

.case-link:hover .case-title {
	color: var(--darkred);
}

.video-icon {
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 40px;
	height: 30px;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 20px;
	z-index: 2;
}

.case-link:hover .video-icon {
	background-color: var(--darkred);
}

.case-content {
	padding: 15px 0;
}

.case-date {
	font-size: 13px;
	color: #999;
	margin-bottom: 5px;
}

.case-title {
	font-weight: 600;
	font-size: 17px;
	line-height: 26px;
	color: var(--black);
}

.case-description {
	margin-bottom: 10px;
	color: #666;
	font-size: 15px;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-word;
	overflow-wrap: break-word;
}

.case-material {
	padding-top: 15px;
	font-size: 14px;
	color: var(--darkred);
}

.case-material i {
	margin-right: 5px;
}

.case-tags {
	font-size: 14px;
	margin: 15px 10px 0 0;
	display: inline-block;
	border: 1px solid #dddddd;
	padding: 2px 6px;
	border-radius: 3px;
	color: var(--dark);
}


.btn-case-show {
	padding: 12px 40px;
	border-radius: 30px;
	font-size: 16px;
	background-color: var(--hoverred);
	border: none;
	cursor: pointer;
	transition: all 0.3s;
}

.pagination-wrapper {
	text-align: center;
	padding: 40px 0;
}

.search-highlight {
	color: var(--darkred) !important;
}

.partners-list {
	padding: 15px 20px;
	width: 100%;
	box-sizing: box-sizing;
}

.partners-list .row {
	margin-right: -10px !important;
	margin-left: -10px !important;
}

.partners-list .col-sm-2 {
	margin-bottom: 10px;
	padding-right: 5px;
	padding-left: 5px;
}

.partners-list img {
	width: 100%;
}

/*footer*/
.scroll {
	width: 48px;
	height: auto;
	text-align: center;
	position: fixed;
	z-index: 889;
	right: 48px;
	bottom: 100px;
	font-size: 14px;
}

.kefu-thumb {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	cursor: pointer;
}

.kefu-list ul,
.kefu-list ul li {
	margin: 0px;
	padding: 0px;
	list-style: none;
	position: relative;
}

.kefu-list ul li,
.scroll-top {
	height: 48px;
	width: 48px;
	border-radius: 12px;
	margin-top: 20px;
	background-color: var(--white);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
}

.chat-square {
	background-color: rgb(17, 163, 83) !important;
}

.kefu-list ul li .bi,
.scroll-top .bi {
	font-size: 24px;
	position: relative;
	top: 6px;
	color: var(--white);
	cursor: pointer;
}


.kefu-list ul li .pic {
	display: none;
	position: absolute;
	width: 190px;
	border-radius: 15px;
	top: 50%;
	transform: translateY(-50%);
	right: 58px;
	padding: 15px;
	text-align: left;
	background-color: #FFFFFF;
	color: var(--dark);
	box-shadow: 0 0 10px rgb(0 0 0 / 15%);
}

.kefu-list ul li .pic p {
	color: var(--green);
	font-weight: bold;
}

.kefu-list ul li .pic img {
	width: 100%;
}

.kefu-list ul li .down {
	position: absolute;
	right: -10px;
	width: 10px;
	height: 10px;
	background-color: #FFFFFF;
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
	top: 50%;
	margin-top: -5px;
}

.kefu-list ul li:hover .pic {
	display: block;
}


.scroll-top .bi {
	color: var(--black);
	cursor: pointer;
}

.kefu-list ul li .kefu-form-box {
	display: none;
	position: absolute;
	bottom: 0;
	right: 48px;
	padding-right: 6px;
	text-align: left;
}

.kefu-list ul li .down {
	position: absolute;
	z-index: 5;
	right: -2px;
	width: 10px;
	height: 10px;
	background-color: #FFFFFF;
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
	bottom: 18px;
}

.kefu-list ul li .kefu-form-box .pic {
	width: 360px;
	box-sizing: border-box;
	border-radius: 10px;
	color: var(--dark);
	background-color: var(--white);
	box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.15);
	position: relative;
}

.kefu-text {
	padding: 20px 20px 10px 20px;
}

.kefu-text h3 {
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: -0.02em;
	color: rgba(0, 0, 0, 0.85);
	margin-bottom: 8px;
}

.kefu-text dl dd {
	display: flex;
	border-top: 1px solid #eee;
	margin-top: 15px;
	padding-top: 15px;
	margin-bottom: 0px;
}

.kefu-text dl dd:first-of-type {
	border-top: 0px;
	margin: 0px;
	padding: 0px;
}

.kefu-text .p-l10 {
	padding-left: 10px;
}

.kefu-list ul li p {
	margin-bottom: 0px;
}

.kefu-list ul li p a {
	color: var(--darkred);
	display: inline-block;
	margin-top: 10px;
	font-size: 14px;
}

.kefu-list ul li p a:hover {
	text-decoration: underline;
}

.kefu-list ul li:hover .kefu-form-box {
	display: block;
}

.scrolltop {
	background-color: var(--darkred);
	color: #FFFFFF;
	border-radius: 30px;
	width: 50px;
	height: 50px;
	position: fixed;
	z-index: 199;
	right: 15px;
	bottom: 170px;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	display: flex;
	font-size: 24px;
}

.footbg {
	background-color: #000000;
	color: #FFFFFF;
	padding-top: 70px;
	font-size: 14px;
}

.foot-menu .li2,
.foot-menu .li6 {
	display: none;
}

.foot-menu .title {
	font-size: 18px;
	font-weight: 500;
	color: var(--white);
}

.foot-menu p,
.foot-menu p a,
.footbg .copyright a {
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s;
	font-size: 15px;
	margin-bottom: 10px;
}

.foot-menu p a:hover,
.footbg .copyright a:hover,
.foot-link a:hover {
	color: var(--white) !important;
}

.footbg .li-contact a {
	color: var(--darkred);
	font-weight: bold;
}

.foot-menu li {
	float: left;
	width: 16%;
	box-sizing: border-box;
	padding-right: 30px !important;
}

.foot-menu .li-contact img {
	height: 40px;
}

.footer-alang a span {
	color: #ffffff !important;
}

.foot-tel {
	font-size: 24px;
	font-weight: bold;
}

.foot-menu li:last-of-type {
	padding-right: 0 !important;
	float: right;
	width: calc(33% + 0px);
}

.foot-menu li .title {
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 500;
	color: var(--white);
}

.foot-menu li p,
.foot-menu li p a,
.footbg .copyright a {
	transition: all 0.3s;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.62);
	font-weight: normal;
}

.foot-menu li p a:hover,
.foot-link a:hover {
	color: var(--hoverred) !important;
}

.form-dingyue .btn {
	font-size: 13px;
	padding-left: 5px;
	padding-right: 5px;
}

.form-dingyue .email {
	font-size: 14px;
	margin-right: 5px;
	width: 76% !important;
}

.visit-list {
	margin-top: 20px;
}

.visit-list a {
	font-size: 26px;
	display: block;
	margin-right: 20px;
}

.visit-list a:last-of-type {
	margin-right: 0px !important;
}

.chat-square {
	transition: all 0.3s;
}

.chat-square .bi {
	display: block;
	animation: iconPulse 2s ease-in-out infinite;
}

.chat-square:hover,
.scroll-top:hover {
	box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.15);
	background: #11a353 !important;
}

.scroll-top:hover .bi {
	color: #ffffff !important;
}

@keyframes iconPulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

}

.fa-tiktok {
	background-image: url('../images/tiktok.svg');
	background-repeat: no-repeat;
	filter: invert(100%);
	width: 20px;
	height: 20px;
	position: relative;
	top: 3px;
}

.visit-list-contact .fa-tiktok {
	filter: none !important;
}

.list-paddingleft-2 {
	padding-left: 0px !important;
}

.list-paddingleft-2  ul.check-list {
	padding: 20px 0 0 40px !important;
}

.foot-link {
	color: var(--gray) !important;
	display: flex;
	margin-top: 20px;
}

.foot-link a {
	position: relative;
	display: block;
	padding-left: 10px;
	padding-right: 10px;
	color: rgba(255, 255, 255, 0.6) !important;
}

.foot-link a::before {
	content: "|";
	color: var(--dark);
	display: block;
	position: absolute;
	right: 0;
	top: 0;
}

.foot-link a:last-of-type::before {
	display: none;
}

.footbg .copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	padding: 20px 0;
	margin-top: 30px;
}

.footer-change-country a {
	padding: 3px 5px;
	border-radius: 3px;
}

.footer-change-country .bi-globe {
	padding-right: 5px;
}

.footer-change-country a:hover {
	background-color: #343a40;
}

.baiselogo {
	height: 40px;
}



/*page-s*/
.breadcrumb {
	background: none;
	padding: 0px;
	margin: 0;
}

.breadcrumb-line {
	padding-top: 20px;
	position: relative;
	z-index: 5;
	height: 60px;
	border-top: 1px solid #f4f4f4;
	font-size: 13px;
}

.breadcrumb-line .breadcrumb-item+.breadcrumb-item::before {
	color: #dddddd !important;
}

/*category*/
.category-list {
	display: flex;
	padding-left: 0;
}

.category-list li {
	margin-right: 20px;
}

.category-list li.active a {
	color: var(--hoverred);
}

/*page-banner*/
.page-banner {
	padding: 50px 0;
	border-top: 1px solid #f4f4f4;
}

.page-banner p {
	color: var(--gray);
}

.list-banner p {
	font-size: 17px;
	margin-bottom: 0px;
}

.list-banner {
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
	position: relative;
}

.list-banner::before {
	display: block;
	content: "";
	position: absolute;
	z-index: 0;
	background-color: rgba(0, 0, 0, .8);
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

/*Company*/
.pages-number {
	border-top: 1px solid #eee;
}

.num-item {
	margin: 100px 0;
	border-right: 1px solid #eee;
	text-align: center;
	justify-content: center;
}

.num-item .child {
	display: flex;
	justify-content: center;
}

.pages-number .col-xl-3:last-of-type .num-item {
	border: 0px;
}

.num-item .num-nub {
	font-size: 60px;
	color: var(--darkred);
	font-weight: bold;
}

.num-item .num-inf {
	color: var(--grays);
	font-size: 18px;
}

.num-item .num-add {
	font-size: 20px;
	font-weight: bold;
	padding: 15px 0 0 10px;
}

.page-title {
	padding-right: 50px;
}

.page-title h5 {
	font-weight: normal !important;
	line-height: 30px;
	font-size: 17px;
}

.page-about {
	padding-top: 40px;
	padding-bottom: 60px;
}

.page-about .item-num {
	background: none;
	padding: 0px;
	text-align: center;
}

.page-about .item-num .title {
	font-size: 42px;
}

.page-about .item-num p {
	color: var(--white);
	font-size: 18px;
}

.about-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 2;
	top: -60px;
	min-height: 300px;
}

.about-video .btn-list {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
}

.about-video .isWX {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 9;
	display: none;
}

.about-video img {
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
	object-fit: cover
}

.about-video video {
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
	object-fit: cover
}

.about-video .text {
	position: absolute;
	z-index: 3;
	top: 50%;
	transform: translateY(-50%);
	max-width: 600px;
	color: #fff;
}

.certifiedSwiper {
	padding-bottom: 50px;
}

.certifiedSwiper .swiper-slide {
	width: auto;
	text-align: center;
	border-radius: 10px;
	overflow: hidden;
}

.certifiedSwiper .swiper-slide img {
	display: block;
	height: 418px;
	object-fit: cover;
}

.certifiedSwiper .swiper-slide .title {
	padding: 20px 10px;
	font-size: 18px;
	transition: all 0.3s;
}

.certifiedSwiper .swiper-slide:hover .title {
	background-color: #000;
}

.material-banner {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 2;
	top: -60px;
}

.material-banner .text {
	width: 100%;
}

.material-banner .text .item {
	width: 50%;
	position: relative;
	float: left;
}

.material-banner .text .item .content {
	position: absolute;
	z-index: 2;
	width: 70%;
	padding: 50px 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
}

.material-banner .btn {
	font-weight: 600;
	margin-top: 20px;
}

.lazy,
.material-swfload {
	background: #eee url(../images/zoomloader.gif) no-repeat center center;
}

.material-slider .swiper-slide p {
	display: inline-block;
	position: absolute;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%);
	background-color: #fff;
	color: var(--black);
	font-weight: 600;
	padding: 3px 10px;
}

.material-slider-nav {
	bottom: 20px !important;
}

.material-slider-nav .swiper-pagination-bullet-active {
	background-color: var(--black) !important;
}

.btnslider .swiper-button-next,
.btnslider .swiper-button-prev {
	background-color: var(--black) !important;
	width: 44px;
	border-radius: 5px;
	transition: all 0.3s;
}

.btnslider .swiper-button-next {
	right: -100px;
}

.btnslider .swiper-button-prev {
	left: -100px;
}

.btnslider:hover .swiper-button-next {
	right: 30px;
}

.btnslider:hover .swiper-button-prev {
	left: 30px;
}

.btnslider .swiper-button-next:after,
.btnslider .swiper-button-prev:after {
	color: var(--white) !important;
	font-size: 20px;
}

.item-culture {
	background-color: var(--darklight);
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
}

.item-culture .text {
	padding: 35px 30px;
}

.item-culture .text .title {
	font-size: 24px;
	margin-bottom: 15px;
}

.pd-about {
	padding-top: 0px;
	padding-bottom: 80px;
}

.page-about .about-pic img {
	border-radius: 10px;
	overflow: hidden;
}

.page-about ul li p {
	margin-bottom: 0px;
}

.item-fzlc {
	background-color: var(--white);
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 30px;
}

.about-fzlc .item-fzlc:last-of-type {
	margin-bottom: 0px;
}

.item-fzlc:hover {
	background-color: #f9f9f9;
	border-color: var(--darkred);
	box-shadow: 0 5px 15px rgba(1, 47, 167, .05);
}

.item-fzlc .years {
	width: 18%;
	margin-right: 6%;
	font-size: 24px;
	font-weight: bold;
	color: var(--darkred);
	border-right: 1px solid #eee;
	text-transform: capitalize;
}

.item-fzlc .text {
	width: 74%;
}

.item-fzlc .text .title {
	font-size: 22px;
}

.item-fzlc .text .note {
	color: var(--dark);
	font-size: 17px;
}

.item-fzlc .name p {
	padding-top: 3px;
	margin-bottom: 0px;
	color: #999;
	font-size: 13px;
}

.item-kfpj {
	padding: 70px 30px 46px 30px;
}

.item-kfpj.logo-icons::after {
	top: auto;
	bottom: -10px;
}

.item-kfpj .image {
	width: 18%;
}

.item-kfpj .note {
	position: relative;
	z-index: 2;
}

.item-kfpj .text {
	width: 74%;
	position: relative;
}

.item-kfpj .text::before {
	display: block;
	content: "";
	position: absolute;
	z-index: 0;
	top: -30px;
	left: -30px;
	width: 50px;
	height: 50px;
	background-image: url('../images/yinhao.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.item-kfpj .text .photo {
	margin-right: 10px;
}

.item-kfpj .text .photo img {
	height: 50px;
	width: 50px;
	border-radius: 50%;
	display: block;
	overflow: hidden;
}

.item-kfpj .image img {
	max-width: 100%;
}

.item-kfpj:hover .text .photo img {
	box-shadow: 0 5px 15px rgba(1, 47, 167, .15);
}

.about-team {
	background-color: #ccc;
	height: 500px;
	margin-top: 80px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	position: relative;
}

.about-team::before {
	display: block;
	content: "";
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .55);
}

.about-team video {
	width: 100%;
}

.about-team .text {
	position: absolute;
	z-index: 5;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--white);
}

.about-team .text h2 {
	font-size: 19px;
	font-weight: normal;
}

.about-team .text p {
	font-size: 32px;
}

.btn-suj {
	display: inline-block;
	padding: 12px 30px;
	color: #ffffff !important;
	position: relative;
	font-size: 17px;
}

.btn-suj::before {
	display: block;
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50px;
	background-color: var(--darkred);
	transition: all 0.3s;
}

.btn-suj .ki {
	position: relative;
	transition: all 0.3s;
	right: -5px;
	top: 2px;
}

.btn-suj:hover::before {
	width: 50px;
	left: auto;
	right: 0;
}

.btn-suj:hover .ki {
	margin-left: 20px;
	right: -13px;
}

/*Equipment*/
.item-equipment .text h2 {
	margin: 20px 0;
	font-size: 20px;
}

.item-equipment .description {
	font-size: 15px;
	color: var(--gray);
}

.item-equipment .position {
	color: #999;
}

.item-equipment .image {
	border-radius: 8px;
	overflow: hidden;
}

.item-equipment .description2::before,
.tubiao-ico .description::before {
	content: '';
	width: 10px;
	height: 10px;
	display: block;
	border-top: 1px solid #f0f0f0;
	border-right: 1px solid #f0f0f0;
	position: absolute;
	left: 30px;
	top: -6px;
	background: #fff;
	transform: rotateZ(-45deg);
}

.tubiao-ico .description {
	position: relative;
}

.tubiao-ico .description::before {
	background-color: var(--darklight);
	top: auto;
	bottom: -6px;
}

.photo-box {
	margin-top: 20px;
	padding: 0 10px;
}

/*Photo show*/
.myPhoto {
	position: relative !important;
	overflow: hidden;
	top: 20px;
	left: 0px;
	right: 0px;
	width: 100%;
	box-sizing: border-box;
}

.myphoto-box {
	position: relative;
	padding-bottom: 20px;
}

.swiper-photo-nav {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	opacity: 0;
	transition: all 0.3s;
}

.swiper-photo-nav .swiper-button-next,
.swiper-photo-nav .swiper-button-prev {
	width: 50px !important;
	height: 50px !important;
	border-radius: 10px;
	background-color: rgba(0, 0, 0, .15);
	color: #fff;
	background-size: 16px;
	left: 3%;
}

.swiper-photo-nav .swiper-button-next {
	right: 3%;
	left: auto;
}

.swiper-photo-nav .swiper-button-next:after,
.swiper-photo-nav .swiper-button-prev:after {
	font-size: 17px !important;
}

.swiper-photo-nav:hover .swiper-button-next,
.swiper-photo-nav:hover .swiper-button-prev {
	background-color: var(--darkred);
}

.myPhoto .swiper-slide {
	width: auto;
	height: 100%;
	background-color: #333;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, .8);
	box-sizing: border-box;
}

.myPhoto .swiper-slide img {
	width: 100% !important;
	opacity: 0.8;
}

.myPhoto .swiper-slide-thumb-active {
	background-color: #ffffff;
	border: 1px solid var(--darkred);
}

.myPhoto .swiper-slide-thumb-active img {
	opacity: 1;
}

.myPhoto2:hover .swiper-photo-nav {
	opacity: 1;
}

.myPhoto2 {
	position: relative;
	cursor: pointer;
	border-radius: 10px;
}

.myPhoto2 .swiper-slide .title,
.quality-title {
	position: absolute;
	bottom: -100px;
	left: 0;
	background-color: rgba(0,0,0, 0.5);
	color: var(--white);
	font-weight: 600;
	padding: 10px 10px;
	width: 100%;
	text-align: center;
	transition: all 0.4s ease-in-out;
}

.myPhoto2 .swiper-slide:hover .title,
.quality-title:hover {
	bottom: 0;
}

.photo-num {
	position: absolute;
	z-index: 100;
	right: 30px;
	top: 30px;
	padding: 0px 8px;
	background-color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
	font-weight: 600;
	border-radius: 20px;
	color: #000;
}

/*Contact*/
.contact-box {
	border-radius: 10px;
	overflow: hidden;
}

.contact-left {
	font-size: 17px;
	padding: 50px 70px;
}

.contact-left h2 {
	font-weight: 600;
	font-size: 32px;
	text-transform: capitalize;
}

.contact-left h3 {
	font-size: 36px;
	font-weight: normal;
}

.contact-left h4 {
	margin-top: 20px;
	margin-bottom: 20px;
}

.contact-left .bi {
	background-color: #212529;
	color: var(--white);
	display: inline-block;
	width: 30px;
	text-align: center;
	border-radius: 5px;
	font-size: 15px;
}

.contact-left p {
	color: var(--dark);
	font-size: 15px;
}

.contact-left .f24 {
	font-size: 20px !important;
	margin-bottom: 5px;
}

.contact-thumb {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
}

.contact-faq .bg2 {
	padding-top: 80px;
	background: none !important;
	border-top: 1px solid #eeeeee;
}

.contact-faq .title {
	font-size: 24px;
	color: var(--black);
}

.contact-faq h3 {
	padding-bottom: 15px;
}

.what_about {
	padding-right: 50px;
}

.what_about a {
	color: var(--darkred);
}

.what_about i {
	padding-left: 5px;
}

.faqs-content {
	font-size: 15px !important;
}

.faqs-content .tubiao {
	background-color: #ddd;
	padding: 8px 20px;
	border-radius: 50px;
	margin-top: 10px;
	display: inline-block;
}

.faqs-content .tubiao img {
	max-width: 40px;
	display: inline-block;
}

.grayimg img {
	filter: grayscale(100%);
}

/*Message*/
.form-book {
	background-color: var(--darklight);
	border-radius: 10px;
	padding: 50px 70px;
}

#dr_zixunleixing {
	cursor: pointer;
}

.form-book .form-group {
	display: flex;
}

.form-book .form-control {
	border: 0px;
	margin-top: 20px;
	height: calc(1.5em + 0.75rem + 10px) !important;
	border: 1px solid #eee;
}

.form-book .form-content {
	height: calc(100% - 85px) !important;
	padding-top: 13px;
}

.form-book .form-upload {
	background: var(--white);
	margin-top: 20px;
	border-radius: .25rem;
	padding: 20px;
	border: 1px solid #eee;
}

.form-book .form-upload h3 {
	font-size: 19px;
	padding-top: 15px;
}

.form-book .finecms-file-ts {
	margin-top: 15px;
	color: var(--darksub);
}

.form-falock {
	display: inline-block;
	font-size: 13px;
	color: var(--gray);
	position: relative;
}

.form-falock .ki {
	top: 3px;
	margin-right: 5px;
}

.form-book .form-actions .btn {
	padding-left: 30px;
	padding-right: 30px;
}

.form-book .form-actions .btn-outline-secondary {
	margin-left: 30px;
}

.btn-lg,
.btn-group-lg>.btn {
	font-size: 1.15rem !important;
}

/*pagination*/
.pagination a {
	border: 1px solid #eee;
	padding: 5px 20px;
	border-radius: 5px;
	margin-right: 10px;
	display: inline-block;
}

.pagination li.active a {
	border-color: var(--darkred);
	background-color: var(--darkred);
	color: var(--white);
}

.pagination li:last-of-type a {
	margin-right: 0px;
}

.tag-green {
	margin-top: 20px;
	display: inline-flex;
}

.tags-list li {
	margin-bottom: 30px !important;
}

.tags-list .pic {
	margin-right: 30px;
	flex: 0 0 200px;
}

.tags-list .text .title {
	font-size: 19px;
	padding-bottom: 5px;
}

.list-num2 span {
	display: inline-flex;
	width: 30px;
	text-align: center;
	flex: 0 0 30px;
}

.list-num2 a {
	background: linear-gradient(to left, #ffffff, #eeeeee);
	transition: all 0.3s;
}

.list-num2 i {
	font-size: 13px;
	color: #999;
}

.list-num2 a:hover {
	color: #ffffff !important;
	background: linear-gradient(to left, #ffffff, #012fa7);
}

.numbgs1 a {
	background: linear-gradient(to left, #ffffff, #f29494);
}

.numbgs2 a {
	background: linear-gradient(to left, #ffffff, #ffe1cb);
}

.numbgs3 a {
	background: linear-gradient(to left, #ffffff, #e5ecfc);
}

/*news-list*/
.col-list .row {
	margin-right: -20px;
	margin-left: -20px;
}

.col-list .col-xl-3,
.col-list .col-xl-4 {
	padding-left: 20px;
	padding-right: 20px;
}

.help-list {
	margin-top: 20px;
}

.help-list .col-xl-4 {
	margin-bottom: 20px;
}

.item-help {
	padding: 20px 30px;
	border-radius: 5px;
	height: 100%;
}

.item-help .title {
	font-weight: 600;
	font-size: 19px;
	line-height: 26px;
	color: var(--black);
}

.item-help .note {
	padding: 15px 0;
	color: #999;
}

.item-article {
	background-color: #f6f6f6;
	height: 100%;
	border-radius: 5px;
	overflow: hidden;
}

.item-article .article-image {
	position: relative;
}

.item-article .article-image img {
	position: relative;
	z-index: 1;
}

.item-article .article-image .ki-play {
	position: absolute;
	z-index: 5;
	right: 30px;
	bottom: 30px;
	width: 46px;
	height: 30px;
	background-size: 25px;
	border-radius: 5px;
	overflow: hidden;
	color: #ffffff;
	background-color: rgba(255, 255, 255, .35);
}

.item-article .article-image:hover .ki-play {
	background-color: rgba(1, 47, 167, 0.9);
}

.item-article .text {
	padding: 10px 20px 30px 20px;
}

.item-article .update-time {
	color: var(--gray);
	padding: 15px 0;
	font-size: 13px;
}

.contact-faq h5.title {
	padding-top: 20px;
	padding-bottom: 10px;
	color: var(--black);
}

.item-material2 h2,
.item-article .article-title {
	font-weight: 600;
	font-size: 17px;
	line-height: 26px;
	color: var(--black);
}

.article-title2 {
	font-size: 22px !important;
}

.item-article .article-description {
	padding-top: 15px;
	color: var(--gray);
	font-size: 15px;
}

.item-article:hover .article-title {
	color: var(--darkred);
}

.item-article .btn-more-light {
	font-weight: bold;
	color: var(--black);
	margin-top: 10px;
}

.item-article .btn-more-light:hover {
	color: #ffffff;
}

.item-article2 img {
	border-radius: 5px;
}

.item-article2 .title {
	font-weight: 600;
	line-height: 24px;
}

.item-case {
	margin-top: 20px;
}

.article-tag a {
	background-color: #eee;
	color: var(--dark);
	padding: 0 10px;
	border-radius: 3px;
	font-size: 14px;
	margin-top: 5px;
	display: inline-block;
}

.article-tag a:hover {
	color: var(--darkred);
	background-color: rgba(1, 47, 167, 0.1);
}

/*news-show*/
.article-content-h1 {
	border-bottom: 1px solid #eee;
	padding-bottom: 60px;
}

.article-content-h1 h1 {
	font-size: 2rem;
	font-family: 'Silkab';
	color: var(--black);
}

.pages-navs {
	background-color: #eee;
	width: 100%;
	padding: 10px;
}

.pageshow-title {
	margin-top: 30px;
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.pageshow-title span {
	padding-bottom: 20px;
	display: inline-block;
	border-bottom: 2px solid var(--darkred);
}

.show-content {
	line-height: 28px;
	position: sticky;
	top: 130px;
}

.show-content h2 {
	margin-top: 30px;
}

.show-content img {
	max-width: 100%;
	display: block;
	overflow: hidden;
}

.show-content p {
	margin-bottom: 1.5rem;
}

.article-date {
	color: var(--gray);
	margin-top: 20px;
}

.article-date b {
	color: var(--darkred);
}

.show-content .note,
.show-description {
	margin: 20px 0px;
	overflow: hidden;
}

.show-description {
	overflow: hidden;
	margin-top: 0px;
	margin-bottom: 50px;
	font-size: 19px;
	line-height: 34px;
	position: relative;
}

.show-description .pic {
	margin-bottom: 20px;
}

.show-description .text {
	padding: 20px;
	font-size: 16px;
	line-height: 28px;
	border: 1px solid #eee;
	background-color: rgb(247, 247, 248);
}

.show-content .note p:last-of-type,
.show-description p {
	margin-bottom: 0px;
}

.previous-next {
	border-top: 1px solid #eee;
	padding-top: 30px;
	font-size: 15px;
}

.previous-next p {
	margin-bottom: 0;
}

.previous-next span {
	color: #999;
}

.show-article-right {
	position: sticky;
	top: 170px;
	padding-left: 100px;
}

.show-article-right h3 {
	margin-bottom: 30px;
	font-size: 24px;
	color: var(--black);
}

.item-related-article {
	display: flex;
	border-bottom: 1px solid #eee;
	margin-top: 15px;
	padding-bottom: 15px;
}

.item-related-article img {
	height: 80px;
	border-radius: 5px;
}

.item-related-article .title {
	margin-left: 15px;
	font-weight: 500;
}

.list-thumb2 {
	margin-top: 15px;
	font-weight: 500;
}

.list-thumb2 span {
	background-color: var(--dark);
	color: #fff;
	display: inline-block;
	width: 26px;
	margin-right: 8px;
	text-align: center;
}

/*search-index*/
.w-100px {
	width: 100px;
}

.search-input {
	border: 0px;
	border-radius: 0px;
	border-bottom: 2px solid #eeeeee;
	font-size: 24px;
}

.search-box-main {
	border: 1px solid #eee;
	padding: 2rem 3rem;
}

.search-box-main .btn {
	margin-right: 5px;
}

.left-search-box {
	padding-top: 20px;
}

.item-search-list {
	margin-top: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #eee;
}

.item-search-list .image {
	margin-right: 20px;
}

.item-search-list .article-title {
	font-size: 17px;
	font-weight: 600;
}

.item-search-list .article-title strong {
	font-weight: 600;
}

.item-search-list .article-cate a {
	color: var(--darkred);
	padding: 0 5px;
	background-color: rgba(1, 47, 167, .1);
	margin-right: 10px;
}

.item-search-list .article-tag {
	margin-top: 10px;
}

.tag3 a {
	padding: 5px 10px;
	font-size: 16px;
}

/*MSG*/
.card-msg {
	padding: 3rem;
}

.card-msg .fc-msg-icon {
	background-color: var(--darklight);
	color: var(--darkred);
	padding: 20px;
	margin-bottom: 20px;
	font-size: 30px;
	border-radius: 50%;
}

.item-quality {
	gap: 60px;
	margin-top: 60px;
}

.item-quality .image {
	width: 50%;
	border-radius: 5px;
	overflow: hidden;
}

.item-quality .text {
	width: 50%;
	box-sizing: border-box;
}

.item-quality .text .more a {
	font-weight: bold;
	font-size: 17px;
	color: var(--darkred);
}

.quality-list {
	padding-top: 60px;
	padding-bottom: 100px;
}

.quality-list .item-quality:nth-child(even) {
	flex-direction: row-reverse;
}

.quality-image {
	position: relative;
}

.swiper-quality .swiper-slide,
.quality-image img {
	border-radius: 10px;
	overflow: hidden;
}

.quality-title {
	position: absolute;
	z-index: 3;
	bottom: 30px;
	background-color: #fff;
}

.quality-left h3 {
	padding-bottom: 10px;
}

.quality-left p {
	font-size: 17px;
}

.swiper-quality-nav .swiper-pagination-bullet {
	width: 20px;
	height: 3px;
	border-radius: 0px;
	background-color: var(--white);
	opacity: 1;
}

.swiper-quality-nav .swiper-pagination-bullet-active {
	background-color: var(--darkred);
}

.list-nth-child .col-xl-9:nth-child(even) .item-quality {
	flex-direction: row-reverse;
}

.item-quality .text h2 {
	margin-bottom: 20px;
	font-size: 26px;
}

.item-quality .note {
	font-size: 16px;
	color: var(--dark);
	line-height: 28px;
}

.item-quality .note p a {
	color: var(--darkred);
}

.item-quality .note p a:hover {
	color: var(--black);
}

.quality-fuwu .item-culture {
	padding: 40px;
}

.quality-fuwu .item-culture .text {
	padding: 0px;
}

.quality-fuwu .item-culture .image {
	width: 160px;
}

.quality-fuwu .item-culture .image img {
	width: 100%;
}

.quality-fuwu .item-culture .title {
	margin-top: 15px;
	margin-bottom: 20px;
}

.quality-fuwu .item-culture .note p {
	font-weight: 600;
	margin-bottom: 10px;
}

.quality-fuwu .item-culture .note p a {
	color: var(--darkred);
}

.quality-fuwu .item-culture .note p a:hover {
	color: var(--hoverred);
}

.ul-style ul {
	padding-left: 20px !important;
}

.get-quick-quote {
	border-radius: 10px;
	margin-bottom: 80px;
	overflow: hidden;
	background-color: #eee;
	position: relative;
}

.get-quick-quote .text {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 100px;
	transform: translateY(-50%);
}

.faqs-swiper .swiper-slide {
	width: auto;
	cursor: pointer;
	padding: 10px 20px;
	font-size: 19px;
	font-weight: 600;
	position: relative;
}

.faqs-swiper .swiper-slide-thumb-active {
	color: var(--darkred);
}

.faqs-swiper .swiper-slide-thumb-active::before {
	display: block;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: var(--darkred);
	width: 100%;
	height: 2px;
}

.faqs-swiper {
	border-bottom: 1px solid #ddd;
}

.faqs-swiper2 .swiper-slide .title,
.slide-faqs .hd ul li .title {
	font-size: 18px;
	font-weight: bold;
	color: var(--black);
}

.slide-faqs {
	position: relative;
}

.slide-faqs .hd {
	position: relative;
	width: 100%;
}

.slide-faqs .hd ul {
	margin: 0;
	padding: 0;
}

.slide-faqs .hd ul li {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	list-style: none !important;
	margin: 0;
	padding: 26px 0;
	border-bottom: 1px solid #ddd;
}

.post_code b {
	flex: none;
	line-height: 40px;
}

.post_code .fc-code img {
	margin-top: 5px;
}

.contact-faqs .hd ul li {
	border: 0px;
	border-top: 1px solid #ddd;
}

.what_about {
	font-size: 16px;
	color: var(--black);
}

.what_about img {
	width: 100%;
	border-radius: 5px;
}

.slide-faqs .hd ul li .ki {
	position: absolute;
	right: 0;
	top: 25px;
	text-align: center;
}

.slide-faqs .hd ul li .content {
	display: none;
	font-weight: normal;
	font-size: 16px;
	margin-top: 25px;
	padding-bottom: 30px;
}

.slide-faqs .hd ul li .content br,
.slide-faqs .hd ul li .content br::after {
	content: "";
	display: block;
	width: 100%;
	height: 10px;
}

.slide-faqs .hd ul li.on .content {
	display: block;
	color: var(--gray);
}

.slide-faqs .hd ul li .title {
	padding-right: 100px;
	margin-bottom: 0px;
}

.slide-faqs .hd ul li .title:hover {
	color: var(--darkred);
}

.slide-faqs .hd ul li.on .ki {
	transform: rotate(180deg);
}

.faqs-left {
	position: sticky;
	top: 170px;
}

.faqs-left p {
	color: var(--gray);
}

/*Materials*/
.material-box {
	padding-top: 30px;
}

.material-left {
	-ms-flex: 0 0 29%;
	flex: 0 0 29%;
	max-width: 29%;
}

.material-right {
	-ms-flex: 0 0 71%;
	flex: 0 0 71%;
	max-width: 71%;
}

.material-right .col-xl-8 {
	-ms-flex: 0 0 60%;
	flex: 0 0 60%;
	max-width: 60%;
}

.material-right .col-xl-4 {
	-ms-flex: 0 0 40%;
	flex: 0 0 40%;
	max-width: 40%;
}

.material-text .f30 {
	font-weight: 700;
}

.material-text h1 {
	margin-top: 5px;
}

.show-materials-left {
	position: sticky;
	top: 170px;
	max-width: 400px;
	transition: top .5s;
	transition-delay: .1s;
}

.material-text ul li {
	margin-bottom: 50px !important;
}

.material-text ul li:last-of-type {
	margin-bottom: 0px !important;
}

.material-text p {
	margin-bottom: 0px;
}

.item-material .material-image {
	position: relative;
	overflow: hidden;
}

.item-material .material-image::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0px;
	transition: all 0.5s;
}

.item-material .material-image:hover::before {
	background-color: rgba(0, 0, 0, .8);
	width: 100%;
}

.item-material .material-image .btn-box {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	padding: 0 20px;
	box-sizing: border-box;
	text-align: center;
	opacity: 0;
	transition: all 0.3s;
}

.item-material .material-image:hover .btn-box {
	opacity: 1;
}

.item-material .btn-box .btn {
	display: inline-block;
}

.item-material .btn-box .btn:last-of-type {
	margin-left: 15px;
}

.material-rightad {
	background-color: #000000;
	background-image: url("../images/material_rightad.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	padding: 50px;
	border-radius: 10px;
	position: sticky;
	top: 170px;
}

.material-rightad .title {
	font-weight: bold;
	font-size: 20px;
}

.material-jiagongfuwu {
	padding-right: 100px;
}

.material-jiagongfuwu h2 {
	font-size: 24px;
	font-weight: bold;
}

.material-jiagongfuwu h3 {
	font-size: 2rem !important;
}

.material-jiagongfuwu p {
	font-size: 16px;
	line-height: 25px;
	color: var(--gray);
}

.material-jiagongfuwu a {
	color: var(--darkred);
	font-weight: 600;
}

.material-jiagongfuwu a:hover {
	color: var(--hoverred);
}

.item-material-top .title {
	color: var(--black);
}

.material-canshu h3 {
	margin-bottom: 30px;
}

.material-canshu .row1 {
	margin-left: -50px;
	margin-right: -50px;
}

.material-canshu .col-xl-6 {
	padding-right: 50px;
	padding-left: 50px;
}

.item-material-top .col-xl-9 {
	color: #76787a;
}

.material-canshu .item-material-top:last-of-type p {
	margin-bottom: 0px;
}

.nrgl-renwu .photo {
	background-color: var(--darklight);
	height: 60px;
	width: 60px;
	border-radius: 50%;
	margin-right: 15px;
	background-size: 100%;
	overflow: hidden;
}

.nrgl-renwu .name {
	font-weight: bold;
}

.nrgl-renwu .position {
	font-size: 13px;
}

.nrgl-renwu .description {
	background-color: var(--darklight);
	padding: 15px;
	font-size: 15px;
	border-radius: 5px;
}

.properties-title {
	border-bottom: 1px solid #ddd;
	padding: 15px 0;
	font-weight: 600;
	font-size: 19px;
	margin-top: 50px;
}

.properties-table {
	-webkit-font-smoothing: antialiased;
	margin: 0px;
	padding: 1rem 0px;
	display: flex;
	border-bottom: 1px solid #eee;
	overflow-anchor: none !important;
	overflow-wrap: break-word !important;
}

.properties-name,
.properties-content {
	margin-right: 1rem;
	font-size: 16px;
	flex: 1;
	color: rgba(0, 0, 0, .7);
}

.properties-content {
	margin-right: 0px;
	font-weight: 400;
	color: var(--black);
}

.get-quick-bg {
	background-color: #eee;
	padding: 20px;
	border-radius: 5px;
	margin-top: 20px;
	font-weight: 600;
}

.get-btn-down {
	padding-top: 20px;
	border-top: 1px solid #ffffff;
	background: linear-gradient(to top, #ffffff, #eeeeee);
	border-radius: 0 0 5px 5px;
}

.get-btn-down .btn:last-of-type {
	margin-left: 10px;
}

.get-btn-down .fa {
	margin-right: 5px;
}

.show-materials-left .br5 {
	border-radius: 5px 5px 0 0;
}

.material-tag {
	border-top: 1px solid #dddddd;
	padding-top: 30px;
}

.outBox {
	position: relative;
	text-align: center;
}

.outBox .hd {
	background-color: var(--hoverred);
	border-radius: 35px;
	padding: 10px;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
}

.outBox .hd ul li {
	display: block;
	padding: 0 15px !important;
	cursor: pointer;
	overflow: hidden;
	float: left;
}

.outBox .hd ul li {
	border-radius: 25px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	font-size: 20px;
}

.outBox .hd ul li a {
	padding: 8px 15px;
	display: block;
	color: var(--white);
}

.outBox .hd ul li.on {
	background-color: var(--darkred);
	font-weight: 600;
}

.outBox .hd ul {
	margin: 0 auto;
	text-align: center;
	padding: 0px !important;
}

.inBox {
	margin-top: 30px;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
}

.inBox .inHd {
	width: 16%;
	float: left;
	text-align: left;
	margin-top: 80px;
}

.inBox .inHd ul {
	overflow-y: auto;
	zoom: 1;
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

.inBox .inHd ul li {
	cursor: pointer;
	padding: 8px 20px !important;
	border-left: 2px solid #ddd;
	font-size: 18px;
	font-weight: 500;
}

.inBox .inHd ul li.on {
	color: var(--darkred);
	border-color: var(--darkred);
}

.inBox .inHd ul li:hover {
	color: var(--darkred);
}

.inBox .inBd {
	width: 80%;
	float: right;
	background-color: #f6f6f6;
	border-radius: 10px;
}

.inBox .inBd ul {
	padding: 30px;
	zoom: 1;
	margin: 0px;
	overflow: hidden;
}

.inBox .inBd .note {
	width: 43%;
	padding-right: 30px;
	text-align: left;
	box-sizing: border-box;
}

.inBox .inHd ul li,
.outBox .hd ul li,
.inBox .inBd .note h3 {
	text-transform: capitalize;
}

.inBox .ul-right-image {
	width: 57%;
	overflow: hidden;
}

.inBox .inBd .note h3 {
	font-size: 20px;
}

.inBox .inBd .note .btn-outline-secondary {
	margin-left: 15px;
}

.inBox .inBd .note .btn-outline-secondary:hover a {
	color: #fff !important;
}

.inBox .inBd .note .btn-outline-secondary:hover {
	background-color: var(--dark) !important;
	border-color: var(--dark) !important;
}

.item-cltxs {
	padding-top: 10px;
}

.item-cltxs .bold {
	width: 33.3333%;
	padding-right: 20px;
	font-weight: bold;
}

.item-cltxs .cltxs-note {
	width: 66.6666%;
}

.item-cltxs .cltxs-note,
.cltxs-text {
	color: var(--gray);
	font-size: 15px;
}

.image-cell img {
	width: 100%;
	border-radius: 10px;
}

.table-list-material {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ddd;
}

.table-list-material .name {
	font-weight: bold;
	font-size: 20px;
	padding-bottom: 10px;
}

.table-list-material .thumb img {
	border-radius: 5px;
}

.table-list-material p {
	margin-bottom: 0px;
	font-size: 15px;
}

.table-list-material .btn-prices span {
	display: none;
	height: 26px;
	line-height: 26px;
}

.btn-materials a {
	font-weight: 600;
	color: var(--darkred);
}

.btn-materials a:hover {
	color: var(--black);
}

.xingji-dollar {
	display: inline-block;
	width: 100px;
	height: 26px;
	background-color: #f9f9f9;
	background-image: url('../images/xingji-dollar.png');
	background-repeat: no-repeat;
	background-position: 0 0;
}

.xingji-ico2 {
	background-position: 0 -26px;
}

.xingji-ico3 {
	background-position: 0 -52px;
}

.xingji-ico4 {
	background-position: 0 -78px;
}

.xingji-ico5 {
	background-position: 0 -104px;
}

.industries-banner {
	background-color: #000000;
	position: relative;
	height: 600px;
	overflow: hidden;
}

.industries-banner .breadcrumb-line {
	border-top: 0px;
}

.industries-banner .breadcrumb-line .container {
	padding-left: 0px;
	padding-right: 0px;
}

.industries-banner .item {
	width: 50%;
	height: 100%;
	background-color: #212529;
	float: right;
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	position: relative;
	z-index: 20;
}

.surface-banner .item::before {
	display: none;
}

.item-tubiao-box {
	position: absolute;
	z-index: 5;
	bottom: 50px;
	left: 50px;
	right: 50px;
}

.industries-banner .item .tubiao {
	background-color: rgba(0, 0, 0, .8);
	padding: 8px 10px;
	border-radius: 50px;
	display: flex;
}

.industries-banner .item .tubiao img {
	width: auto !important;
	padding: 0 10px;
	max-height: 50px;
	opacity: 0.8;
	position: static;
}

.industries-banner .progress {
	margin-top: 5px;
	height: 0.8rem !important;
	border-radius: 20px !important;
}

.industries-banner .progress-bar {
	background-color: #09b918;
}

.industries-banner .banner-box {
	position: absolute;
	z-index: 10;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	bottom: 0px;
}

.industries-banner .banner-box .btn,
.about-video .btn {
	font-weight: 500;
	font-size: 20px;
	padding: 18px 25px;
}

.industries-banner .content {
	color: var(--white);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.industries-banner .content h1 {
	margin-bottom: 1rem;
}

.industries-banner .content ul {
	padding-left: 20px;
	margin-top: 15px;
	color: rgba(255, 255, 255, .8);
}

.industries-banner .content p {
	margin-bottom: 0px;
}

.industries-banner .content p a {
	color: #ffffff;
}

.industries-banner .content .form-falock {
	display: block;
	margin-top: 20px;
}

.industries-trusted {
	position: absolute;
	bottom: 50px;
}

.industries-trusted .title {
	width: 170px;
	padding-right: 30px;
	font-size: 12px;
	color: rgba(255, 255, 255, .5);
}

.industries-trusted .trusted-image {
	margin-right: 25px;
}

.industries-trusted .trusted-image img {
	background: none;
	padding: 0px;
	border-radius: 0px;
}

.h2-title {
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--black);
	font-family: 'Silkab';
}

.h4-title {
	font-size: 30px !important;
	font-weight: 600;
	font-family: 'Silkab';
	color: var(--black) !important;
}

.content .h4-title {
	padding-left: 10px;
	padding-bottom: 15px;
}

.capabilities-main {
	padding-top: 100px;
	padding-bottom: 60px;
}

.item-gltw {
	background-color: #f9f9f9;
	height: 100%;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.item-gltw .content {
	padding: 30px 30px 70px 30px;
}

.item-gltw .content p {
	color: var(--gray);
	font-size: 15px;
}

.item-gltw h2 {
	font-size: 19px;
	margin-bottom: 15px;
	color: var(--black);
	font-weight: 600;
	text-transform: capitalize;
}

.item-gltw h2 a {
	color: var(--black);
}

.item-gltw ul {
	margin: 0px;
	padding: 5px 0 0;
}

.item-gltw ul li {
	margin-top: 10px !important;
	color: var(--dark);
	position: relative;
	font-size: 15px;
}

.item-gltw:hover {
	background-color: #ffffff;
	box-shadow: 0 5px 15px rgba(1, 47, 176, .15);
}

.item-gltw .more-fuwu {
	left: 30px;
	bottom: 30px;
	font-size: 15px;
}

.item-material2 .content {
	padding: 30px;
}

.item-material2 h2 .fa {
	font-size: 14px;
	color: var(--darkred);
	border: 1px solid var(--darkred);
	margin-right: 5px;
	top: -2px;
	position: relative;
	padding: 2px 5px;
	border-radius: 5px;
}

.item-material2 .content p a {
	font-weight: 600;
	color: var(--dark);
}

.item-material2 .content p a:hover {
	color: var(--hoverred);
}

.item-capabilities ul li {
	font-size: 14px !important;
}

.item-capabilities ul li p {
	font-size: 15px !important;
}

/* home service */
.home-service-slide {
	text-align: left;
}

.home-service-slide .hd {
	border-bottom: 1px solid #ddd;
	position: relative;
}

.home-service-slide .hd ul {
	text-align: center;
	display: flex;
	gap: 16px;
	justify-content: center;
}

.home-service-slide .hd ul li {
	display: block;
	padding: 0 15px 30px 15px !important;
	position: relative;
	font-size: 18px;
	color: var(--dark);
	font-weight: bold;
	font-family: 'Silkab';
	cursor: pointer;
}

.home-service-slide .hd ul li:before {
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 3px;
	content: "";
	background-color: var(--darkred);
	transition: width 0.3s ease-out;
}

.home-service-slide .hd ul li.on {
	color: var(--darkred);
}

.home-service-slide .hd ul li.on:before,
.home-service-slide .hd ul li:hover:before {
	width: 100%;
}

.home-service-slide .bd ul {
	zoom: 1;
	width: 100% !important;
	padding: 30px;
	margin-bottom: 0px;
	color: var(--gray);
	font-size: 15px;
}

.home-service-slide .bd .title {
	font-size: 24px;
	margin-bottom: 22px;
	color: var(--dark);
}

.home-service-slide .bd p {
	color: var(--gray);
}

.home-service-slide .bd ul li {
	margin-bottom: 20px;
	text-indent: -21px;
	padding-left: 6px;
}

ul.check-list {
	list-style: none;
	padding: 20px 0 0 40px !important;
}

ul.check-list li::before {
	content: "";
	display: inline-block;
	transform: rotate(45deg);
	height: 14px;
	width: 7px;
	margin-right: 10px;
	margin-left: 2px;
	border-bottom: 2px solid #343741;
	border-right: 2px solid #343741;
	top: -1px;
}

.home-service-slide .bd .pic {
	position: relative;
}

.home-service-slide .bd .pic img {
	position: relative;
	z-index: 2;
	transition: all 0.3s ease-out;
}

.home-service-slide .bd .pic::before {
	content: "";
	display: block;
	background-color: rgba(0, 0, 0, 0);
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	transition: all 0.3s ease-out;
}

.home-service-slide .bd .pic:hover::before {
	background-color: rgba(0, 0, 0, .05);
}

.home-service-slide .bd .pic:hover img {
	-webkit-transform: scale(0.9, 0.9);
	transform: scale(0.9, 0.9);
}

.more-fuwu {
	position: absolute;
	bottom: 0px;
	left: 15px;
	font-weight: bold;
	font-size: 17px;
	line-height: 20px;
	color: var(--darkred);
}

.more-fuwu2 a {
	font-weight: bold;
	font-size: 17px;
	color: var(--darkred);
}

.more-fuwu2 a:hover {
	color: var(--hoverred);
}

.jgxm-list {
	margin-right: -20px;
	margin-top: 20px;
}

.jgxm-list .jgxm-title .bi {
	color: var(--green);
	width: 40px;
}

.jgxm-list .jgxm-title {
	width: calc(100% / 5 - 20px);
	margin-right: 20px;
	margin-top: 20px;
	min-height: 110px;
	float: left;
	display: flex;
	border-radius: 5px;
	padding: 30px;
	background-color: #f6f6f6;
}

.myparts-box {
	padding: 40px 20px;
}

.myparts {
	position: relative;
	padding-bottom: 100px !important;
}

.myparts-nav {
	width: 100px;
	height: 50px;
	border-radius: 30px;
	background-color: #eeeeee;
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
}

.myparts-nav .swiper-button-next:after,
.myparts-nav .swiper-button-prev:after {
	font-size: 20px !important;
	font-weight: bold;
	color: var(--black)
}

.btn-quote2 {
	font-size: 20px;
	font-weight: 600;
	padding: 14px 20px;
	display: block;
	margin: 30px auto 0 auto;
}

.item-cases2 {
	position: relative;
	overflow: hidden;
}

.item-cases2 .title {
	font-weight: 600;
	overflow: hidden;
	width: 100%;
	padding: 15px;
	z-index: 5;
	background-color: #f6f6f6;
	text-align: center;
}

.item-cases2:hover .title {
	color: var(--darkred);
}

.item-service-industry img {
	border-radius: 5px;
}

.item-service-industry .text {
	padding: 20px 0;
}

.item-service-industry ul {
	padding-left: 20px;
}

.item-service-industry .title {
	font-size: 20px;
}

.item-why {
	background-color: #f6f6f6;
	text-align: center;
	border-radius: 5px;
	padding: 30px 20px 20px 20px;
	height: 100%;
}

.item-why .title {
	font-size: 20px;
}

.item-why .bi {
	font-size: 40px;
	color: var(--darkred);
}

/*services*/
.et-hero-tabs {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 70px;
	position: relative;
	background: #fff;
	text-transform: capitalize;
}

.capabilities-main.show {
	padding-top: 200px !important;
}

.et-slide {
	position: relative;
}

.et-hero-tabs h1,
.et-slide h1 {
	font-size: 2rem;
	margin: 0;
	letter-spacing: 1rem;
}

.et-hero-tabs-container {
	display: flex;
	flex-direction: row;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 70px;
	padding-left: 10%;
	padding-right: 10%;
	box-sizing: border-box;
	border-bottom: 1px solid #eee;
	-webkit-backdrop-filter: saturate(180%) blur(6px);
	backdrop-filter: saturate(180%) blur(6px);
	background: rgba(255, 255, 255, 0.9);
	z-index: 10;
}

.et-hero-tabs-container--top {
	position: fixed;
	top: 94px;
}

.et-hero-tab {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	color: var(--black);
	transition: all 0.5s ease;
	font-weight: 600;
}

.et-hero-tab:hover {
	color: var(--darkred);
	transition: all 0.5s ease;
}

.et-hero-tab-slider {
	position: absolute;
	bottom: 0;
	width: 0;
	height: 3px;
	background: var(--darkred);
	transition: left 0.3s ease;
}

.content .table {
	font-size: 16px;
	color: var(--dark);
	border-bottom: 2px solid #dee2e6;
}

.content .table th {
	border-top: 0px;
	font-weight: 600;
	font-size: 17px;
}

.content .table p {
	margin-bottom: 0px !important;
	margin: 0;
	padding: 0;
	display: inline-block;
}

.content .table .blod {
	font-weight: 600;
}

.content .table .blod a {
	color: var(--black);
}

.content .table th {
	color: var(--black);
}

.content .table td:nth-of-type(odd) {
	width: 300px;
	position: relative;
}

.table-show table {
	color: #76787a;
	font-size: 16px;
	width: 100%;
	border: 1px solid #dee2e6;
}

.table-show table b,
.table-show table strong {
	font-weight: 600;
	color: var(--black);
}

.table-show table p {
	margin-bottom: 0px;
}

.table-show table th {
	padding: .75rem;
	text-align: center;
	border-right: 1px solid #dee2e6;
}

.table-show table td {
	padding: .75rem;
	vertical-align: top;
	text-align: center;
	border-top: 1px solid #dee2e6;
	border-right: 1px solid #dee2e6;
}

.table-show table td:last-of-type {
	border-right: 0px;
}

.table-show .tight li p {
	margin-bottom: 0px;
}

.content .table td:nth-of-type(even) {
	background: #F5F7F8;
	padding: 1.25rem .95rem;
}

.content .table2 td:nth-of-type(odd) {
	width: auto;
	position: static;
}

.content .table2 td:nth-of-type(odd) p {
	position: static;
	top: auto;
	transform: none;
}

.table-show table td,
.table-show table th,
.content .table td,
.content .table th,
.table2 td,
.table2 th {
	vertical-align: middle;
}

.content .table2 td:nth-of-type(even) {
	background: none;
}

.content .table-width th {
	width: 33.3333%;
}

.materials-list-item h2 {
	font-size: 19px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eeeeee;
}

.materials-list-item li {
	width: calc(100% / 2 - 20px);
	float: left;
	margin-top: 20px !important;
}

.materials-list-item li img {
	margin-right: 10px;
}

.tishibg {
	padding: 20px 20px 20px 45px;
	box-sizing: border-box;
	border-radius: 5px;
	font-size: 16px;
	margin-top: 50px;
	width: 100%;
	position: relative;
	background-color: rgba(255, 238, 239, .5);
}

.tishibg a {
	font-weight: bold;
	color: var(--darkred);
}

.tishibg a:hover {
	color: var(--hoverred);
}

.tishibg .bi {
	color: var(--darkred);
	font-size: 20px;
	position: absolute;
	left: 20px;
	top: 16px;
}

.btn-submission {
	color: var(--green);
	font-size: 40px;
}

.btn-menu {
	display: none;
}

.btn-menu .bi {
	display: block;
	width: 38px;
	height: 25px;
	background-image: url('../images/fa-menu.png');
	background-repeat: no-repeat;
	background-size: auto 25px;
	background-position: center right;
}

/* mobile css */
.mobilenav {
	margin-top: 35px !important;
}

.mobilenav .link {
	cursor: pointer;
	display: block;
	padding: 15px;
	font-size: 17px;
	font-weight: 600;
	border-top: 1px solid #eee;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.mobilenav .link a {
	color: var(--black);
}

.mobilenav li {
	cursor: pointer;
}

.mobilenav li .ki {
	position: absolute;
	top: 20px;
	right: 15px;
	transform: rotate(180deg);
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease
}

.mobilenav li.open .link,
.mobilenav li.open .link a {
	color: var(--darkred);
}

.mobilenav li.open .ki {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
	color: var(--darkred);
}

.submenu {
	display: none;
	margin-top: 2px;
	font-size: 16px;
	padding: 15px 0;
	border-radius: 5px 5px 0 0;
}

.submenu a {
	display: block;
	text-decoration: none;
	color: var(--dark);
	height: 36px;
	line-height: 36px;
	font-size: 15px;
	padding-left: 15px;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.submenu a:hover,
.submenu li.current a {
	background: var(--darkred);
	color: #FFF;
}

.submenu p a {
	font-size: 13px;
	padding-left: 30px;
	line-height: 30px;
}

.submenu li b a {
	color: var(--dark);
}

.submenu2 a {
	display: inline-block;
	height: auto;
	line-height: 20px !important;
	margin-bottom: 8px;
	color: #6c757d;
}

.files img,
.files canvas {
	max-width: 33%;
}

.surface-content {
	font-size: 16px;
	color: var(--gray);
}

.surface-content a {
	color: var(--darkred);
}

.item-parts-ljsl .title {
	font-size: 17px;
	font-weight: bold;
	padding-top: 15px;
}

/* cookies*/
.cookie-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 9998;
}

.cookienotice {
	position: fixed;
	z-index: 100001;
	border: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 14px;
	line-height: 18px;
	background-color: #fff;
	width: 460px;
	overflow: hidden;
	padding: 25px;
	box-sizing: border-box;
	border-radius: 0px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 10px;
}

.cookienotice a {
	color: var(--darkred);
	font-weight: 600;
}

.title-cookies {
	font-weight: 600;
	font-size: 20px;
	padding-bottom: 10px;
}

.cookienotice .btn {
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	border: 0px;
	padding: 10px;
	min-width: 48%;
}

.cookies-note {
	margin-bottom: 20px;
	max-height: 75px;
	line-height: 25px;
	overflow-y: auto;
}

.cookienotice .btn-more-light {
	margin-right: 10px;
	background-color: #eaeff8;
	color: #333333;
}

/* language css */
.language-cn .box-quick-quote span {
	padding: 0;
}

.language-es .video-banner .home-banner-text h2 {
	font-size: 36px !important;
	line-height: 50px;
}

.notification {
	width: 300px;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 15px;
	overflow: hidden;
	padding: 15px 40px 15px 15px;
	margin-top: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
	position: fixed;
	z-index: 1000;
	right: 20px;
	bottom: 20px;
	z-index: 1000;
}

.notification.scroll {
	right: 48px;
	bottom: 280px;
}

.notification.show {
	opacity: 1;
	transform: translateY(0);
}

.notification.hide {
	opacity: 0;
	transform: translateY(-20px);
	transition: all 1.2s ease-out;
}

.notification-content {
	font-size: 14px;
	color: #2c3e50;
	line-height: 1.5;
}

.notification-content a {
	color: #012fa7;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s;
}

.notification-content a:hover {
	color: #0e6cf1;
	text-decoration: underline;
}

.notification-close {
	position: absolute;
	top: 12px;
	right: 12px;
	background: transparent;
	border: none;
	color: #95a5a6;
	cursor: pointer;
	font-size: 14px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.notification-close:hover {
	background: rgba(0, 0, 0, 0.05);
	color: #e74c3c;
}

.toggle-btn {
	position: absolute;
	z-index: 3;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	line-height: 48px;
	cursor: pointer;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.5);
}


@media (max-width: 768px) {
	.notification {
		width: 260px;
		right: 15px;
		bottom: 15px;
	}
}

@media (max-width: 480px) {
	.notification {
		width: 230px;
		padding: 12px 35px 12px 12px;
		right: 10px;
		bottom: 10px;
	}

	.notification-close {
		top: 10px;
		right: 10px;
	}
}

.table a,
.lang-alink a,
.lang-alink p a,
.lang-alink h2 a,
.lang-alink h3 a {
	color: var(--darkred);
}

[class*="language-"]:not(.language-en) .lang-alink p a {
	display: inline-block;
	margin: 0 5px;
	color: var(--darkred);
}

[class*="language-"]:not(.language-en) .lang-alink strong {
	padding: 0 3px;
}

[class*="language-"]:not(.language-en) .lang-alink td strong {
	padding: 0px;
}

.table a:hover,
.lang-alink a:hover,
.lang-alink p a:hover {
	color: #ff0000;
}

.footer-alang a {
	margin: 10px 0 0 10px !important;
	text-transform: uppercase;
	font-size: 14px !important;
	display: inline-block;
	font-weight: 600 !important;
}

.footer-alang a img {
	width: 20px;
	height: 12px;
	margin-right: 5px;
}

/* HTML5 CSS3 */
@media screen and (min-width: 320px) and (max-width: 767px) {

	.navBar,
	.swiper-trusted .swiper-button-next,
	.index-about h3,
	.working-list .row::before,
	.wraper-auto .btn-language,
	.head-center,
	.btnbox.btn-search,
	.cases-cate,
	.show-mobile-content .photo-num,
	.show-mobile-content .swiper-photo-nav,
	.et-hero-tabs,
	.logo-icons::after,
	.item-kfpj .text::before,
	.solutions-box,
	#current-search-tag,
	.index-cases .index-main-title p {
		display: none !important;
	}

	.swiper-box-cases {
		overflow: hidden !important;
	}

	.btn-menu {
		display: block !important;
	}
	
	.btn-menu .bi {
		margin-top: 5px;
	}

	h2,
	.h2 {
		font-size: 1.5rem;
	}

	.more-fuwu,
	.index-main-title p,
	.main-title p {
		font-size: 14px;
	}

	.home-top-banner .form-upload {
		width: 100%;
	}

	.home-top-banner .form-falock {
		font-size: 12px;
	}

	.home-top-banner .subtitle,
	.form-falock .fa {
		font-size: 15px;
	}

	.working-list .item .title {
		font-size: 18px;
	}
	
	.more-fuwu {
		position: initial;
	}
	
	.more-fuwu .btn {
		width: 100%;
	}
	
	ul.check-list {
		padding: 20px 0 0 20px !important;
	}
	
	.our-services-box {
		padding-bottom: 0;
	}
	
	.home-service-slide .bd ul {
		padding: 0;
	}
	
	.home-service-slide .hd ul {
		display: block;
	}
	
	.home-service-slide .hd ul li {
		padding: 10px 20px !important;
		border: 1px solid #eee;
		font-size: 16px;
		font-weight: 600;
		text-align: left;
	}
	
	.home-service-slide .hd ul li:before {
		width: 3px;
		height: 0;
		transition: height 0.3s ease-in-out;
	}
	
	.home-service-slide .hd ul li.on:before, .home-service-slide .hd ul li:hover:before {
		width: 3px;
		height: 100%;
	}

	.inBox .inBd .note .btn-outline-secondary {
		margin-left: 0px;
		margin-top: 20px;
		width: 100%;
		padding: 10px;
	}

	.filter-search input {
		width: 256px;
		font-size: 13px;
	}

	.filter-search button {
		width: 50px;
	}

    .mobile-hide,
	.filter-cases .mobile-hide {
		display: none !important;
	}

	.item-certified-list {
		flex-wrap: wrap;
	}

	.index-cases .btn {
		margin-top: 15px !important;
	}

	.index-cases .index-main-title {
		padding-bottom: 0px !important;
	}

	.box-quick-quote span {
		font-size: 0px;
		padding-right: 0px;
	}

	#tab-case .btn {
		margin-top: 15px !important;
	}

	.scroll {
		right: -50px;
	}

	.menu-mobile .btn-lg {
		width: 100%;
		font-weight: bold;
		font-size: 18px !important;
	}

	.fix-header {
		top: 0px !important;
	}

	.industries-banner .item::before {
		content: "";
		display: block;
		position: absolute;
		z-index: 2;
		width: 100%;
		height: 100%;
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.3));
		top: 0px;
		left: 0px;
	}

	.item-cases2 .text .note {
		max-height: 200px;
		overflow-y: auto;
	}
	
	.item-cases2 .overflow1 {
		-webkit-line-clamp: none;
	}

	.cases-left {
		padding-right: 15px;
	}

	.cases-left-cate {
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.language-box .item-close {
		top: 20px;
	}

	.item-kfpj .image {
		width: 50%;
		margin-bottom: 20px;
	}
	
	.outBox .hd {
		position: relative;
	}
	
	.inBox .inHd {
		margin-top: 0px;
	}

	.inBox .inHd,
	.inBox .inBd {
		width: 100%;
	}

	.inBox .inBd .note {
		width: 100%;
		padding-right: 0px;
	}

	.inBox .inHd ul,
	.inBox .inBd ul {
		padding: 0px;
	}

	.inBox .inBd {
		border-left: 0px;
		background: none;
	}

	.inBox .inHd ul {
		display: flex;
		overflow-y: hidden;
		padding-bottom: 10px;
		margin-bottom: 30px;
		height: 50px !important;
	}

	.inBox .inHd ul li {
		display: flex;
		white-space: nowrap;
		justify-content: center;
		align-items: center;
		float: left;
		height: 40px;
		border: 1px solid #ddd;
		padding: 0 10px !important;
		margin-right: 5px !important;
		border-radius: 5px;
	}

	.inBox .inHd ul li:last-of-type {
		margin-right: 0px !important;
	}
	
	.outBox .hd ul li a {
		font-size: 17px;
	}

	.inBox .inBd .note h3 {
		font-size: 20px;
	}

	.ul-right-main {
		display: flex;
		flex-direction: column;
	}

	.inBox .ul-right-image {
		width: 100%;
	}

	.ul-right-main .note {
		order: 2;
		padding-top: 30px;
	}

	.ul-right-main .note .public-btn {
		width: 100%;
		background-color: var(--darkred);
		padding: 10px;
        margin-top: 30px;
	}

	.ul-right-main .note .public-btn span {
		color: var(--white);
	}

	.ul-right-main .ul-right-image {
		order: 1;
		overflow: hidden;
	}

	.item-cltxs .bold,
	.item-cltxs .cltxs-note {
		width: 100%;
	}

	.item-cltxs {
		display: block !important;
	}

	.index-about {
		margin-top: 60px;
		padding-top: 20px !important;
	}

	.index-about h2.f24 {
		font-size: 20px !important;
	}
	
	.about-option {
		border: 0px;
		padding: 0px;
		margin-top: 20px;
	}

	#tab-machining .row {
		margin-left: 0px !important;
		margin-right: 0px !important;
	}

	#tab-machining.tab-row .row {
		margin-left: -15px !important;
		margin-right: -15px !important;
	}

	.table-font .thumb {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.table-font .thumb img {
		width: 100%;
	}

	.table-font .title {
		padding-left: 0px;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.table-font .description {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		padding-top: 15px;
		color: var(--gray);
	}

	.table-list-material .description p {
		font-size: 15px;
		padding-top: 10px;
		color: var(--gray);
	}

	.item-equipment .position {
		line-height: 20px;
	}

	.item-search-list .image,
	.item-search-list .article-text {
		flex: none;
		margin: 0px;
	}

	.item-search-list .image {
		width: 20%;
	}

	.item-search-list .article-text {
		width: 80%;
		padding-left: 10px;
	}

	.item-search-list .image img {
		width: 100%;
	}

	.item-search-list .article-tag,
	.item-search-list .article-description {
		display: none;
	}

	.pagination {
		display: inline-block;
	}

	.pagination li {
		float: left;
	}

	.pagination a {
		margin-top: 10px;
	}

	.post_code {
		margin-top: 10px;
	}

	.post_code .col-md-4 {
		margin-bottom: 30px;
	}

	.cookienotice {
		width: 100%;
	}

	.cookbtn {
		display: flex;
		flex-direction: column-reverse;
		width: 100%;
		gap: 10px;
	}

	.cookienotice .d-flex {
		display: block !important;
	}

	.cookienotice .btn-more-light,
	.cookienotice .btn-danger {
		width: 100%;
	}

	.cookienotice .btn-more-light {
		margin: 0 0 15px 0;
	}

	.scroll.show {
		right: 15px;
	}

	.btn-materials span {
		display: none;
	}

	.btn-materials a {
		border: 1px solid var(--gray);
		padding: 7px 15px;
		font-size: 16px;
		display: block;
		width: 100%;
		border-radius: .25rem;
		color: var(--dark);
	}

	.btn-get-quick .btn {
		padding: 7px 15px;
		font-size: 16px;
		display: block;
		width: 100%;
		font-weight: 600;
	}

	.quality-list-mobile .item-quality {
		margin-bottom: 50px;
	}

	.material-jiagongfuwu {
		padding-right: 0px;
	}

	.table-list-material .btn-prices {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.table-list-material .btn-prices span {
		display: block;
		font-weight: bold;
		padding-right: 10px;
	}

	.myparts-box {
		padding: 0px 15px 40px 15px;
	}

	.list-nth-child .col-xl-9:nth-child(even) .item-quality {
		margin-top: 50px;
	}

	.jgxm-list {
		margin-right: 0px;
	}

	.jgxm-list .jgxm-title {
		width: 100%;
		min-height: 82px;
		margin-right: 0px;
	}

	.scrolltop {
		bottom: 50px;
	}

	.foot-menu li.li-contact,
	.foot-menu li.li-ftlogo {
		float: none;
		width: 100%;
		clear: both;
		margin-bottom: 30px !important;
	}

	.foot-menu li.li-contact {
		padding-top: 30px !important;
	}

	.foot-menu li,
	.foot-menu li.li9 {
		width: 100%;
		margin-top: 0px !important;
		padding-right: 0px !important;
	}

	.footbg {
		padding-top: 50px;
	}

	.collapsible .collapsible-content {
		display: none;
	}

	.collapsible .collapsible-header {
		cursor: pointer;
		position: relative;
		padding-right: 20px;
		padding-bottom: 15px;
		margin-bottom: 15px !important;
		font-size: 17px !important;
		font-weight: bold;
		border-bottom: 1px solid rgba(255, 255, 255, .15);
	}

	.collapsible .title:after {
		content: '';
		background: url('../images/chevron-up2.png') no-repeat center;
		display: block;
		width: 20px;
		height: 20px;
		position: absolute;
		right: 0;
		top: 4px;
		background-size: 20px
	}

	.collapsible.active .title:after {
		transform: rotate(180deg);
	}

	.collapsible.active {
		margin-bottom: 20px !important;
	}

	.language-box {
		width: 100%;
		height: 100%;
		left: 0px;
		top: 0px;
		transform: none !important;
	}

	.industries-banner .banner-box {
		position: static;
	}

	.industries-banner .content {
		padding-right: 15px;
		z-index: 2;
	}

	.industries-banner .item {
		width: 100%;
		top: 0;
		position: absolute;
		z-index: 1;
	}

	.industries-banner .item::before {
		background: rgba(0, 0, 0, 0.7);
		z-index: 2;
	}

	.surface-banner .item,
	.surface-banner .item::before {
		display: none;
	}

	.mobile-table-auto {
		overflow-x: auto;
	}

	.mobile-table-auto table {
		width: 1000px;
	}

	.item-tubiao-box {
		bottom: 15px;
	}

	.industries-banner .item .tubiao {
		background: none;
	}

	.btn-language {
		background-color: rgba(255, 255, 255, .15);
	}

	.box-quick-quote .btn {
		font-weight: 600;
		font-size: 14px;
		line-height: 14px;
		padding: 8px 5px !important;
	}

	.home-banner-note {
		font-size: 17px;
	}

	.certified-ico .text-center {
		margin-top: 10px;
		font-size: 15px;
		text-align: left !important;
		justify-content: left !important;
	}

	.home-banner .bdvideo {
		bottom: 0px;
		width: auto;
		height: 680px;
		display: block;
		position: static;
	}

	.video-banner .container {
		position: absolute !important;
		z-index: 3 !important;
		top: 0px;
	}

	.home-banner-text .iso-title {
		margin-bottom: 20px;
	}

	.banner-mobile {
		height: 400px;
	}

	.banner-mobile .text {
		padding-right: 10px;
		transform: translateY(-45%);
	}

	.about-banner-mobile {
		height: 260px;
	}

	.show-about {
		margin-top: 0px;
	}

	.show-about .content {
		margin: 0px !important;
		padding: 0px !important;
	}

	.show-about .d-flex {
		display: block !important;
	}

	.btn-video-about {
		width: 50px;
		height: 40px;
	}

	.banner-mobile h1,
	.industries-banner .content h1 {
		font-size: 1.6rem;
	}

	.industries-banner .banner-box .btn,
	.btn-lg {
		font-size: 16px !important;
		padding: 18px 20px !important;
	}

	.about-video .btn-list {
		top: 50%;
		left: 0%;
		transform: none;
		width: 100%;
		padding: 0 20px;
	}

	.about-video .btn {
		font-size: 15px !important;
		padding: 12px 15px !important;
		width: 100%;
		margin: 10px 0 0 0 !important;
	}

	.page-cate a {
		margin: 0 5px !important;
		padding: 0px !important;
		height: 50px !important;
		line-height: 50px !important;
		font-size: 14px !important;
	}

	.industries-banner .item .tubiao img {
		max-height: 40px;
	}

	.et-hero-tabs-container--top {
		top: 75px;
	}

	.et-hero-tabs-container {
		padding-left: 0px;
		padding-right: 0px;
	}

	.et-hero-tab {
		text-align: center;
	}

	.materials-list-item li {
		width: auto;
		margin-right: 15px !important;
		margin-top: 10px !important;
		text-align: left;
	}

	.materials-list-item li img {
		display: none;
	}

	.material-left,
	.material-right {
		-ms-flex: 100%;
		flex: 100%;
		max-width: 100%;
	}

	.material-right,
	.mhide33 {
		margin-top: 50px;
	}
	
	#tab-materials .m-t30 {
		margin-top: 0px !important;
		padding-bottom: 0px !important;
	}

	.contact-left,
	.form-book {
		padding: 20px;
	}

	.contact-left {
		padding-top: 40px;
	}

	.form-book .form-actions .btn {
		width: 100%;
	}

	.form-book .form-actions .btn-outline-secondary {
		margin-left: 0px;
		margin-top: 20px;
	}

	.show-article-right {
		padding-left: 0px;
		margin-top: 50px;
	}

	.show-mobile-content {
		padding-top: 0px !important;
	}

	.show-mobile-content .myPhoto {
		top: 10px;
		margin-top: 0px;
	}

	.show-mobile-content .myPhoto2,
	.show-mobile-content .myPhoto .swiper-slide {
		border-radius: 0px;
	}

	.show-mobile-content .myPhoto2 .swiper-slide .title {
		top: auto;
		left: 0px;
		bottom: 0px;
		right: 0px;
		line-height: 16px;
		padding: 10px;
		transform: none !important;
		display: none;
	}

	.item-equipment .text {
		padding-right: 0px;
	}

	.item-material2 .content {
		padding: 30px 20px 20px 20px;
	}

	.item-equipment.p-tb80 {
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}

	.get-quick-quote {
		height: 420px;
	}

	.get-quick-quote .text {
		z-index: 2;
		top: 230px;
		left: 15px;
		right: 15px;
		transform: none;
		text-align: center;
	}

	.get-quick-quote .imgage {
		width: auto !important;
		height: 200px;
		position: absolute;
		z-index: 1;
		top: 30px;
		left: 50%;
		transform: translateX(-50%);
	}

	.get-quick-quote .imgage .imgauto {
		width: 700px;
		margin-left: -140px;
	}

	.quality-fuwu .col-xl-4 {
		margin-top: 20px;
	}

	.quality-fuwu .item-culture {
		padding: 30px;
	}

	.about-team .text {
		left: 0px;
		padding: 20px;
		transform: translate(0%, -50%);
		box-sizing: border-box;
	}

	.page-title {
		padding-right: 0px;
		padding-bottom: 30px;
	}

	.item-fzlc .years,
	.item-fzlc .text {
		width: 100%;
	}

	.item-fzlc.d-flex {
		display: block !important;
	}

	.item-fzlc .years {
		border-right: 0px;
		border-bottom: 1px solid #eee;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}

	.item-fzlc {
		padding: 0px;
		border: 0px;
		border-radius: 0px;
	}

	.h4-title {
		font-size: 24px !important;
	}

	.material-rightad {
		padding: 30px;
	}

	.material-canshu .row1,
	.col-list .row {
		margin-left: -15px;
		margin-right: -15px;
	}

	.material-canshu .col-xl-6,
	.col-list .col-xl-3,
	.col-list .col-xl-4 {
		padding-left: 15px;
		padding-right: 15px;
	}

	.material-canshu .border-left {
		border: 0px;
		margin-top: 50px;
	}

	.material-banner-mobile .text {
		display: block;
	}

	.material-banner-mobile .text .item {
		width: 100%;
		flex: none;
		position: static;
	}

	.material-banner-mobile .text .item .content {
		position: static;
		transform: none;
		padding: 100px 30px 60px 30px;
		width: 100%;
	}

	.material-load {
		display: none;
	}

	.material-banner-mobile .swiper-horizontal {
		margin-top: 0px;
	}

	.material-banner-mobile .material-slider .swiper-slide p {
		left: 10px;
		top: 10px;
		bottom: auto;
		transform: none;
		background-color: rgba(255, 255, 255, .5)
	}

	.slide-faqs .hd ul li .title {
		padding-right: 50px;
	}

	.contact-faq .bg2 {
		padding: 30px 20px 20px 20px;
	}

	.contact-faq .what_about {
		margin-top: 20px;
	}

	.et-main .p-t120 {
		padding-top: 50px !important;
	}

	.item-quality {
		gap: 0px;
		margin-top: 0px;
		display: block !important;
	}

	.item-quality .image,
	.item-quality .text {
		width: 100%;
		box-sizing: border-box;
	}

	#tab-surface .item-quality .image,
	#tab-surface .item-quality .text {
		padding-left: 0px;
		padding-right: 0px;
	}

	.item-quality .text {
		margin-top: 30px;
	}

	.item-quality .image img {
		border-radius: 5px;
	}

	.index-main-title {
		margin: 0px;
	}

	.slide-industries .hd,
	.slide-industries .bd {
		width: 100%;
		float: none;
		padding: 0px;
		position: static;
	}

	.slide-industries .bd,
	.index-about .about-pic {
		margin-top: 20px;
	}

	.home-banner {
		padding: 50px 0;
		background-position: center center;
	}

	.home-banner-text .f48 {
		font-size: 32px !important;
	}

	.home-banner-text {
		padding-right: 0px;
	}

	.home-banner .btn {
		width: 100%;
		padding: 8px 15px;
		font-size: 16px !important;
	}

	.home-banner::before {
		display: block;
		content: "";
		position: absolute;
		z-index: 0;
		top: 0px;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, .05);
		-webkit-backdrop-filter: saturate(180%) blur(6px);
		backdrop-filter: saturate(180%) blur(6px);
	}

	.home-banner .btn-outline-secondary {
		margin-left: 0px !important;
		margin-top: 20px;
	}

	.trusted-list .title {
		width: 100%;
		display: none;
	}
	
	.trusted-title {
		padding-bottom: 20px;
	}
	
	.swiper-box-cases {
		padding-top: 10px;
	}

	.service-huoban {
		text-align: center;
	}

	.service-huoban .swiper-horizontal {
		margin-top: 10px;
	}

	.footer-change-country.text-right {
		text-align: left !important;
		margin-top: 10px;
	}

	.index-about .col-6 {
		margin-bottom: 10px;
	}

	.index-about .index-main-title h2 {
		margin-bottom: 0px;
		font-size: 30px !important;
	}

	.working-list .item {
		padding-bottom: 30px;
	}

	.home-banner-text h2 {
		font-size: 30px !important;
		line-height: 40px;
	}

	.top-header .latest-events-box {
		font-size: 12px;
	}

	.logo-default {
		height: 28px;
	}

	.li-ftlogo img {
		margin-top: 20px !important;
	}

	.wraper-auto {
		padding: 15px;
	}

	.wraper-auto .box-quick-quote {
		display: none;
	}

	.item-certified-ico {
		margin-bottom: 5px;
		font-size: 14px;
	}

	.home-top-banner .btn-lg {
		font-size: 18px !important;
		padding: 15px 25px !important;
	}

	.home-top-banner .btn-lg .ki {
		height: 26px;
	}

	.home-top-banner h1 {
		font-size: 2.5rem !important;
	}

	.home-top-banner .paragraph {
		font-size: 12px;
	}

	.home-top-banner .form-upload h4 {
		font-size: 16px;
	}

	.top-header {
		border-bottom: 1px solid var(--darkgray);
	}

	.index-about .content {
		padding-left: 0px;
		margin-top: 50px;
		font-size: 15px;
	}

	.latest-events-box {
		height: 50px;
		display: none !important;
	}

	.swiper.topadbox .swiper-slide {
		display: block !important;
		padding-top: 6px;
	}

	.item-culture .text .note {
		color: var(--dark);
	}

	.material-right .col-xl-8,
	.material-right .col-xl-4 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.material-right .col-xl-4 {
		margin-top: 50px;
	}

	.form-book .form-upload .col-xl-12 {
		padding-left: 0px !important;
		padding-right: 0px !important;
		font-size: 12px;
	}

	.fileinput-button {
		padding: 5px 10px !important;
		font-size: 14px !important;
	}

	.contact-faq h3,
	.article-content-h1 h1 {
		padding-top: 20px;
	}

	.lift-target img {
		margin-bottom: 20px;
	}

	.content-matebox p {
		font-size: 14px;
		line-height: 25px;
	}


	.h2-title,
	.foot-content-box .f34,
	.material-jiagongfuwu h3,
	.material-canshu h3,
	.material-text .f30,
	.contact-left h2,
	.pageshow-title span,
	.show-article-right h3,
	.about-team .text p,
	.item-equipment .text h2,
	.get-quick-quote .text h3,
	.index-main-title h2,
	.page-title h2,
	.lift-target h2,
	.article-content-h1 h1,
	.contact-faq .title {
		font-size: 1.3rem !important;
	}

	.page-banner h1 {
		font-size: 2rem !important;
	}

	.material-banner-mobile .text h1,
	.col-list h1,
	.page-about .item-num .title {
		font-size: 2.2rem !important;
	}

	.language-box h3,
	.tishibg,
	.cases-show-box,
	.content .table,
	.contact-faq .what_about {
		font-size: 14px !important;
	}

	.faqs-swiper2 .swiper-slide .title,
	.slide-faqs .hd ul li .title,
	.more-fuwu2 a,
	.item-gltw .content p,
	.item-article .article-title,
	.page-about .item-num p,
	.item-equipment .description,
	.item-culture .text .note,
	.item-quality .text h2,
	.item-gltw h2,
	.btn-quote2,
	.material-jiagongfuwu h2,
	.contact-left h4,
	.page-title h5 {
		font-size: 16px !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	.et-hero-tab {
		font-size: 17px;
	}

	.cases-left {
		padding-right: 15px;
		padding-bottom: 50px;
	}

	.about-team .text {
		width: 700px !important;
	}

	.head-center,
	.working-list .row::before {
		display: none;
	}

	.btn-menu {
		display: block;
	}

	.wraper-auto {
		padding: 20px 50px;
	}

	.home-banner .bdvideo {
		width: auto;
		height: 800px;
	}

	.index-main-title {
		margin: 0 10rem;
	}

	.index-about .content {
		padding-right: 0px;
		margin-bottom: 50px;
		font-size: 15px;
	}

	.working-list .item {
		margin-bottom: 20px;
	}

	.language-box {
		width: 600px;
		left: 300px;
	}

	.faqs-left {
		margin-bottom: 50px;
	}

	.industries-banner {
		height: 460px;
	}

	.industries-banner .content {
		width: 77%;
	}

	.industries-banner .content h1 {
		font-size: 2rem;
	}

	.jgxm-list .jgxm-title {
		width: calc(100% / 3 - 20px);
	}

	.banner-mobile {
		height: 400px;
	}

	.table-list-material .description p {
		font-size: 17px;
		padding: 20px 0;
		color: var(--gray);
	}

	.table-list-material .btn-prices span {
		display: block;
		font-weight: bold;
		padding-right: 10px;
	}

	.material-canshu .border-left {
		border: 0px !important;
		margin-top: 50px;
	}

	.show-article-right {
		padding-left: 0px;
		margin-top: 50px;
	}

	.about-fzlc .page-title,
	.fuwu-mobile .col-lg-6 {
		margin-bottom: 30px;
	}

	.item-equipment .text {
		padding-right: 0px;
	}
}

@media (min-width: 1200px) and (max-width: 1760px) {
	.all-nav h3 a {
		padding: 0 5px;
		font-size: 14px;
	}

	.top-header .btn-danger {
		font-size: 15px;
	}

	.home-banner-text .f48,
	.home-top-banner h1 {
		font-size: 40px !important;
	}

	.about-team .text {
		width: 800px !important;
	}

	.home-banner {
		padding: 55px 0;
		background-position: center;
	}

	.home-banner-note {
		padding: 30px 0;
	}

	.home-banner .bdvideo {
		width: auto;
		height: 800px;
	}

	.cases-cate a {
		padding: 8px 13px;
		margin: 10px 5px 0 5px;
	}

	.index-main-title {
		margin: 0 10rem;
	}

	.mobile-w100 .col-xl-9 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.industries-banner .content {
		padding-right: 50px;
	}

	.industries-banner .content h1 {
		font-size: 2.2rem;
	}

	.index-about .content {
		padding-right: 0px;
	}

	.index-about .about-pic {
		margin-top: 20px;
	}

	.left-banner-w {
		-ms-flex: 0 0 60%;
		flex: 0 0 60%;
		max-width: 60%;
	}
}