@charset "utf-8";

.header {
	height: 100px;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	justify-content: space-between;
	z-index: 999;
	background: transparent;
	transition: all .4s;
}

.header_wrap {
	height: 100px;
	position: relative;
	z-index: 100;
}

.header .logo {
	flex: 1;
}

.header .logo img {
	max-height: 55px;
}

.header .logo .img2 {
	display: none;
}

.nav .nav_li {
	padding: 0 32px;
}

.nav .nav_li .nav1 a {
	color: #222;
	display: block;
	line-height: 80px;
	position: relative;
	text-transform: capitalize;
	transition: all 0s;
	font-size: 20px;
	white-space: nowrap;
	font-family: 'RajdhaniSemiBold';
}

.nav .nav_li .nav1 a i {
	font-size: 10px;
	margin-left: 4px;
	vertical-align: middle;
}

.nav .nav_li .nav1 a:hover,
.nav .nav_li.cur .nav1 a {
	color: var(--theme-color);
}

.nav .nav_li .nav2_wrap {
	display: none;
	position: absolute;
	top: 0;
	background: #fff;
	left: -50%;
	width: 200%;
	z-index: -1;
	padding: 100px 60px 20px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
}

.nav .nav_li .nav2_wrap:after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	top: 80px;
	left: 0;
	position: absolute;
	background: #eee;
}

.nav .nav_li .nav2 {
	color: #3a3a3a;
	display: flex;
	flex-wrap: wrap;
	width: 1400px;
	margin: auto;
}

.nav .nav_li .nav2 a {
	padding: 12px 15px;
	width: 50%;
	display: block;
}

.nav .nav_li .nav2 a h4 {
	font-size: 18px;
	font-family: 'RobotoMedium';
	text-transform: capitalize;
}

.nav .nav_li .nav2 a p {
	font-size: 14px;
	color: #666;
}

.nav .nav_li .nav2 a:hover h4 {
	color: var(--theme-color);
}

.nav .nav_li .nav2.nav2_product a {
	width: 25%;
}

.nav .nav_li .nav2.nav2_product .img img {
	width: 100%;
}

.nav .nav_li .nav2.nav2_product .tit {
	display: flex;
	align-items: center;
	margin-top: 10px;
}

.nav .nav_li .nav2.nav2_product .tit h4 {
	flex: 1;
}

.nav .nav_li .nav2.nav2_product .tit i {
	font-size: 12px;
}

.nav .nav_li .nav2.nav2_product .desc {
	font-size: 14px;
}

.nav .nav_li .nav2.nav2_product a:hover .tit i {
	color: var(--theme-color);
}

.nav_info {
	height: 48px;
	align-items: center;
	justify-content: flex-end;
}

.nav_info .contact {
	position: relative;
}

.nav_info .contact a.btn {
	background: var(--theme-color);
	color: #fff;
	font-family: 'RajdhaniSemiBold';
	font-size: 18px;
	width: 120px;
	height: 36px;
	display: flex;
	line-height: 36px;
	border-radius: 100px;
	text-align: center;
	transition: all .4s;
	justify-content: center;
	align-items: center;
}

.nav_info .contact a.btn i {
	font-size: 10px;
	margin-left: 6px;
	transform: rotate(180deg);
	display: block;
	transition: all .5s;
}

.nav_info .contact a.btn:hover {
	background: #333;
}

.nav_info .contact a.btn:hover i {
	transform: rotate(0deg);
}

.nav_info .contact .list {
	background: #fff;
	border-radius: 10px;
	position: absolute;
	width: 160%;
	left: -30%;
	top: 36px;
	box-shadow: 0 0 5px rgba(0, 0, 0, .1);
	padding: 10px 20px;
	display: none;
	z-index: 2000;
}

.nav_info .contact .list .item a {
	display: block;
	font-family: 'RobotoMedium';
	font-size: 14px;
	padding: 5px 0;
}

.nav_info .contact .list .item:first-child a {
	border-bottom: 1px dashed #ccc;
}

.nav_info .contact .list .item a:hover {
	color: var(--theme-color);
}

.nav_info .contact:hover .list {
	display: block;
}

.nav_info .search {
	margin-left: 5%;
}

.nav_info .search i {
	font-size: 18px;
	cursor: pointer;
}

.layer_search {
	position: fixed;
	z-index: 998;
	background: #fff;
	top: 0px;
	left: 0;
	height: 100%;
	width: 100%;
	display: none;
	padding-top: 160px;
}

.layer_search form {
	position: relative;
	width: 800px;
	margin: auto;
}

.layer_search form input {
	outline: none;
	width: 100%;
	height: 70px;
	border: 1px solid #aaa;
	border-radius: 100px;
	padding: 0 40px 0 20px;
	background: transparent;
	margin: auto;
	font-size: 20px;
}

.layer_search form input::placeholder {
	font-size: 16px;
	color: #999;
}

.layer_search form button {
	outline: none;
	border: none;
	position: absolute;
	right: 20px;
	top: 12px;
	background: transparent;
	cursor: pointer;
}

.layer_search form button i {
	font-size: 26px;
	color: #c5c5c5;
}

.layer_search form button i:hover {
	color: var(--theme-color);
}

.layer_search .close {
	right: 10%;
	top: 120px;
	position: absolute;
}

.layer_search .close i {
	font-size: 36px;
	display: block;
	transition: all .4s;
	cursor: pointer;
}

.layer_search .close i:hover {
	transform: rotate(180deg);
	color: var(--theme-color);
}

.nav_info .lang_box .lang img {
	margin-right: 6px;
	width: 15px;
	height: 15px;
}

.nav_info .lang_box .lang i {
	font-size: 10px;
	margin-left: 3px;
	transform: rotate(180deg);
	transition: all .3s;
}

.nav_info .lang_box {
	position: relative;
	z-index: 100;
	margin: 0 3%;
}

.nav_info .lang_box .lang {
	display: flex;
	align-items: center;
	height: 28px;
	cursor: pointer;
	transition: all 0s;
	font-size: 14px;
}

.nav_info .lang_box .dlang {
	position: absolute;
	left: 0;
	top: 28px;
	width: 145px;
	background: #fff;
	padding: 5px 15px 10px;
	display: none;
	border-radius: 3px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
}

.nav_info .lang_box .dlang a {
	display: flex;
	align-items: center;
	color: #666;
}

.nav_info .lang_box .dlang a:hover {
	color: var(--theme-color);
}

.nav_info .lang_box .dlang a img {
	height: 16px;
	margin-right: 6px;
}

.nav_info .lang_box:hover .dlang {
	display: block;
}

.nav_info .lang_box:hover .lang i {
	transform: rotate(0deg);
}

.header.header_on {
	background: rgba(234, 237, 250, .9);
	backdrop-filter: saturate(180%) blur(6px);
}

/* banner */
.banner {
	position: relative;
	overflow: hidden;
}

.banner .item_img img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

.banner .item .item_con {
	position: absolute;
	left: 0;
	top: -5%;
	width: 100%;
	height: 100%;
	padding-bottom: 0;
}

.banner .item .item_con .wrapper {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-weight: 700;
}

.banner .item .item_con .info {
	display: flex;
	flex-direction: column;
	color: #ffffff;
}

.banner .item .item_con .tit {
	font-size: 80px;
	font-family: 'RajdhaniSemiBold';
	text-transform: capitalize;
	line-height: 1;
	text-shadow: 3px 1px 7px #000000;
}

.banner .item .item_con .tit span {
	color: var(--theme-color);
	display: block;
	line-height: 1;
}

.banner .item .item_con .desc {
	font-size: 42px;
	margin: 50px 0 50px;
	text-shadow: 3px 1px 7px #000000;
}

.banner .swiper-pagination {
	text-align: left;
	bottom: 50px;
	left: 5%;
	width: auto;
}

.banner .swiper-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff;
	margin: 0 6px;
	opacity: 1;
	position: relative;
	opacity: 1;
}

.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--theme-color);
}

.banner_ico {
	position: absolute;
	left: 50%;
	bottom: 20px;
	z-index: 30;
	width: 42px;
	height: 42px;
	border: 1px solid #000;
	transform: rotate(-45deg);
	display: flex;
	justify-content: center;
	align-items: center;
	animation: downico 2s ease-out infinite;
	color: #000;
	transition: all .6s;
	cursor: pointer;
	border-radius: 5px;
}

.banner_ico i {
	transform: rotate(-45deg);
	display: block;
	font-size: 20px;
}

@keyframes downico {
	0% {
		bottom: 20px;
	}

	50% {
		bottom: 50px;
	}

	100% {
		bottom: 20px;
	}
}

.banner_ico:hover {
	border-color: var(--theme-color);
	background: var(--theme-color);
	color: #fff;
}






/* tit_box1 */

.tit_box1 {
	padding: 90px 0 80px;
}

.tit_box1_center {
	text-align: center;
}

.tit_box1 .tit h4 {
	font-size: 50px;
	line-height: 1;
	text-transform: capitalize;
	font-family: 'RobotoBold';
	display: inline-block;
	position: relative;
	z-index: 1;
}

.tit_box1 .tit h4:after {
	content: '';
	width: 12vw;
	height: 15px;
	background: var(--theme-color);
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.tit_box2 {
	padding: 50px 0 30px;
}

.tit_box2 .tit {
	flex: 1;
}

.tit_box2 .tit h4 {
	color: #2d2d2d;
	font-family: 'RobotoMedium';
	font-size: 54px;
	text-transform: capitalize;
	line-height: 1.3;
}

.tit_box2 .tit h4 em {
	color: var(--theme-color);
}

.tit_box2_fff .tit h4 {
	color: #fff;
}

.tit_box2-center {
	text-align: center;
}

.tit_box3 {
	margin-bottom: 15px;
}

.tit_box3 .tit h4 {
	font-size: 18px;
	font-family: 'RobotoMedium';
	color: #000;
	line-height: 1;
	text-transform: uppercase;
}

.tit_box3 .tit p {
	font-size: 14px;
	color: #666;
	margin-top: 10px;
	line-height: 1.4;
}

.tit_box3 .btn {
	margin-top: 22px;
}

.tit_box3 .btn a {
	font-size: 14px;
	text-transform: uppercase;
	height: 42px;
	line-height: 38px;
	padding: 0 14px;
	color: var(--theme-color);
	border: 2px solid var(--theme-color);
	display: inline-block;
	border-radius: 100px;
	font-family: 'RobotoBold';
	transition: all .4s;
}

.tit_box3 .btn a:hover {
	background: var(--theme-color);
	color: #fff;
}


.bg1 {
	background: #f9f9f9;
	overflow: hidden;
}

.bg2 {
	background: var(--theme-color);
}

.bg3 {
	background: #f5f5f5;
}

/* product */

.product_wrap {
	background: url("../images/bg1.png") no-repeat right top;
}

.product_con {
	margin: 0 -5px;
}

.product_con .item {
	flex: 1;
	padding: 0 5px;
	transition: all .5s;
}

.product_con .item .item_img {
	position: relative;
}

.product_con .item .item_img .img {
	width: 100%;
	height: 460px;
	background-size: cover;
	background: url("../images/img_bg1.jpg") no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
}

.product_con .item .item_img .img img {
	height: 244px;
	left: 50%;
	bottom: 30%;
	position: absolute;
	transition: all .5s;
	transform: translateX(-50%);
	-webkit-box-reflect: below -15px linear-gradient(rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, .1) 100%);
}

.product_con .item .item_img .desc_btn {
	transform: scale(0);
	transition: all .5s;
	position: absolute;
	right: 0;
	overflow: hidden;
}

.product_con .item .item_con {
	padding: 0 10px;
	position: relative;
	transition: all .4s;
	padding-bottom: 70px;
}

.product_con .item .item_con .tit {
	font-size: 40px;
	color: var(--theme-color);
	font-family: 'RajdhaniSemiBold';
}

.product_con .item.cur .item_con .tit {}

.product_con .item .item_con .desc {
	font-size: 22px;
	line-height: 1.3;
	height: 58px;
}

.product_con .item .item_con .ico {
	position: absolute;
	left: 10px;
	bottom: 30px;
	transition: all .4s;
}

.product_con .item.cur {
	flex: 2.2;
}

.product_con .item.cur .item_con {
	padding-left: 0;
}

.product_con .item.cur .item_img .desc_btn {
	display: block;
	transform: scale(1);
	width: calc(50% + 20px);
	padding: 50px 20px;
}

.product_con .item.cur .item_img .desc_btn .desc p {
	margin-bottom: 30px;
	position: relative;
	padding-left: 15px;
}

.product_con .item.cur .item_img .desc_btn .desc p:before {
	border-style: solid;
	border-color: transparent;
	border-width: 6px 0 6px 6px;
	border-left-color: var(--theme-color);
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 7px;
}

.product_con .item.cur .item_con .ico {
	/* left: calc(100% - 70px); */
}

.product_con .item.cur .item_img .img img {
	position: absolute;
	height: auto;
	left: 20px;
	transform: translateX(0);
	-webkit-box-reflect: below -15px linear-gradient(rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, .1) 100%);
}

/* product_con_other */

.product_con_other {
	display: flex;
	justify-content: center;
	margin: 0 -10px;
	padding: 100px 0;
	padding-bottom: 0;
	overflow: hidden;
}

.product_con_other a {
	display: block;
	padding: 0 10px;
}

.product_con_other .item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.product_con_other a:first-child {}

.product_con_other .item .item_con {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 70px;
	text-align: center;
	z-index: 10;
}

.product_con_other .item .item_con .tit {}

.product_con_other .item .item_con .tit h4 {
	font-size: 54px;
	font-family: 'RobotoBold';
	line-height: 1;
	position: relative;
	z-index: 1;
	display: inline-block;
	text-transform: capitalize;
}

.product_con_other .item .item_con .tit h4:after {
	content: '';
	width: 259px;
	height: 15px;
	background: var(--theme-color);
	display: block;
	position: absolute;
	left: 2px;
	bottom: -1px;
	z-index: -1;
}

.product_con_other a:last-child .item .item_con .tit h4:after {
	width: 150px;
}

.product_con_other .item .item_con .desc {
	font-size: 24px;
	margin-top: 20px;
}

.product_con_other .item .item_con .ico {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.product_con_other .item .item_con .ico i {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	transition: all .4s;
}

.product_con_other .item:hover .item_con .ico i {
	background: var(--theme-color);
	color: #fff;
}


/* solutions_wrap */

.solutions_wrap {
	background: url("../images/bg2.jpg") no-repeat center #eff0f1;
	overflow: hidden;
	position: relative;
	padding-bottom: 120px;
	background-size: cover;
}

.solutions_wrap .tit_box1 .tit h4:after {
	right: 4px;
	bottom: 3px;
	width: 13vw;
}

.solutions_con {
	margin: 0 1% 0 6.5%;
}

.solutions_con .hd .item {
	width: 150px;
	height: 150px;
	border-radius: 5px;
	padding: 20px;
	text-align: center;
	margin-right: 20px;
	cursor: pointer;
	transition: all .4s;
	position: relative;
}

.solutions_con .hd .item.cur {
	background: var(--theme-color);
	color: #fff;
}

.solutions_con .hd .item.cur .ico img {
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(5deg) brightness(180%) contrast(101%);
}

.solutions_con .hd .item .tit {
	line-height: 1.3;
	margin-top: 10px;
	transition: all 0s;
}

.solutions_con .bd {
	padding-top: 110px;
}

.solutions_con .bd .item_wrap {
	display: none;
}

.solutions_con .bd .item_wrap:first-child {
	display: block;
}

.solutions_con .bd .item {
	position: relative;
	z-index: 10;
}

.solutions_con .bd .item .item_con {
	width: 48%;
	transition: all .4s;
}

.solutions_con .bd .item .item_con .tit {
	font-size: 40px;
	font-family: 'RobotoBold';
}

.solutions_con .bd .item .item_con .desc {
	font-size: 20px;
	padding: 10px 0 75px;
}

.solutions_con .bd .item .item_img {
	position: absolute;
	right: 0;
	bottom: -75px;
	transition: all .4s;
}

.solutions_con .bd .item_img_bg {
	position: absolute;
	right: 0;
	bottom: 0;
}

/* 修改 2025-6-24 */
.abs {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.indus-box {
	/* padding: 6.6146vw 0 6.7708vw */
}

.indus-box .top {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.indus-box .info {
	width: 41.5625vw;
	font-size: 0.8333vw;
	line-height: 1.875;
	color: rgba(0, 0, 0, 0.8)
}

.indus-box .main {
	position: relative;
	/* margin-top: 3.75vw; */
	border-radius: 1.0417vw;
	overflow: hidden
}

.indus-box .imgBg {
	position: relative;
	height: 39.0625vw;
}

.indus-box .imgBg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, #1356a6 0%, rgba(30, 80, 230, 0) 50%);
}

.indus-box .imgBg img {
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.indus-box .list {
	display: flex
}

.indus-box .item {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 20%;
	box-sizing: border-box;
	height: 100%;
	padding: 0 1.8229vw 3.2292vw;
	border-right: 1px solid rgba(255, 255, 255, 0.4);
	transform: all .3s;
}

.indus-box .item:last-child() {
	border-right: none
}

.indus-box .item:hover {
	background: linear-gradient(0deg, #1356a6 5%, rgba(30, 80, 230, 0) 100%)
}

.indus-box .item:hover .txt {
	display: block
}

.indus-box .item:hover .view-more {
	display: flex
}

.indus-box img {
	display: block;
	height: 5.2083vw;
	margin: 0 auto 0.7813vw
}

.indus-box .name {
	font-size: 1.25vw;
	line-height: 1.5833;
	color: #fff;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	height: 3.2em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.indus-box .txt {
	font-size: 16px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 1.6667vw;
	display: none;
	transition: .3s linear;
	height: 12em;
	overflow: hidden;
	/* display: -webkit-box; */
	text-overflow: ellipsis;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
}

.indus-box p {
	margin-bottom: 0.5208vw
}

.indus-box .view-more {
	margin-top: 3.3333vw;
	display: none;
	transition: .3s linear
}

/* about */

.about_con {
	padding-bottom: 90px;
}

.about_con .tit_box1 .tit h4 {
	line-height: 1.3;
}

.about_con .tit_box1 .tit h4:after {
	bottom: 4vw;
	left: 14vw;
	width: 14vw;
}

.about_con .desc {
	text-align: center;
	font-size: 20px;
	margin-top: -20px;
}

.about_con .desc {
	height: 8em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

.about_con .nums_list {
	margin: 0 -40px;
	padding: 60px 0 90px;
	justify-content: center;
}

.about_con .nums_list .item {
	padding: 0 40px;
}

.about_con .nums_list .item p{
    text-transform: capitalize;
}

.about_con .nums_list .item .nums {
	font-size: 60px;
	font-family: 'RajdhaniSemiBold';
	line-height: 1.4;
}

.about_con .nums_list .item .nums span {
	font-size: 96px;
	line-height: 1;
}

.about_con .more_box {
	justify-content: center;
}

.about_con .more_box .more_style5 .txt {
	border: 1px solid var(--theme-color);
}

.about_con .more_box .video_btn {
	background: #333;
	border-radius: 100px;
	height: 42px;
	padding: 0 33px;
	display: flex;
	align-items: center;
	color: var(--theme-color);
	font-family: 'RobotoBold';
	margin-left: 40px;
	cursor: pointer;
	transition: all .4s;
}

.about_con .more_box .video_btn i {
	transform: rotate(180deg);
	margin-left: 5px;
	font-size: 12px;
}

.about_con .more_box .video_btn:hover {
	background: var(--theme-color);
	color: #fff;
}


/* services_con */

.service .tit_box1 .tit h4:after {
	bottom: 6px;
	width: 371px;
}

.services_con {
	margin: 0 -16px;
}

.services_con a {
	display: block;
	padding: 0 16px;
	width: 25%;
}

.services_con .item {
	background: #f2f2f2;
	padding: 50px;
	border-radius: 10px;

	height: 100%;
}

.services_con a:nth-child(2n) .item {
	background: #fff;
}

.services_con .item .item_img {
	display: flex;
	justify-content: center;
}

.services_con .item .item_img img {
	transition: all 1s;
}

.services_con .item .item_con {
	text-align: center;
	margin-top: 30px;
}

.services_con .item .item_con .tit {
	font-size: 36px;
	font-family: 'RobotoBold';
	line-height: 1.1;
	height: 79px;
}

.services_con .item .item_con .desc {
	margin: 10px 0 15px;
	height: 76px;
}

.services_con .item .item_con .btn {
	font-family: 'RobotoBold';
	font-size: 14px;
	color: var(--theme-color);
	text-transform: uppercase;
	opacity: 0;
	transition: all .4s;
}

.services_con .item:hover .item_img img {
	transform: rotateY(360deg);
}

.services_con .item:hover .item_con .btn {
	opacity: 1;
}

.service_more {
	padding: 60px 0 100px;
	text-align: center;
	display: block;
}

.service_more p {
	font-size: 24px;
}

.service_more .btn {
	height: 45px;
	background: var(--theme-color);
	color: #fff;
	display: inline-block;
	padding: 0 22px 0 28px;
	border-radius: 100px;
	line-height: 45px;
	font-family: 'RobotoBold';
	font-size: 14px;
	text-transform: uppercase;
	margin-top: 15px;
	transition: all .4s;
}

.service_more .btn i {
	margin-left: 15px;
	font-size: 18px;
}

.service_more .btn:hover {
	background: #333;
	color: #fff;
}

/* video */

.index03wrap.ind_video {
	padding: .7rem 0 .85rem;
	background-color: #fff;
}

.index03wrap .tit_box1 {
	padding: 30px 0 80px;
}

.index03wrap .tit_box1 .tit h4:after {
	width: 4vw;
}

.ind_video_con {
	overflow: hidden;
}

.ind_video_con .swiper-slide a {
	cursor: pointer;
}

.ind_video_con .swiper-slide .pic {
	overflow: hidden;
	position: relative;
}

.ind_video_con .swiper-slide img {
	width: 100%;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-ms-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
}

.ind_video_con .swiper-slide .pic .filter {
	background-color: rgb(0, 0, 0, .8);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0;
	filter: alpha(opacity=0);
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-ms-transition-duration: 0.4s;
}

.ind_video_con .swiper-slide:hover .pic .filter {
	opacity: 1;
	filter: alpha(opacity=100);
}

.ind_video_con .swiper-slide .txt {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 5;
	line-height: 25px;
	font-size: 14px;
	color: #fff;
	padding: 75px 60px 0px;
	box-sizing: border-box;
	background: url(../images/bf.png) no-repeat center 0;
	opacity: 0;
	filter: alpha(opacity=0);
	transform: translate(0%, -50%) scale(1.5, 1.5);
	-webkit-transform: translate(0%, -50%) scale(1.5, 1.5);
	-moz-transform: translate(0%, -50%) scale(1.5, 1.5);
	-ms-transform: translate(0%, -50%) scale(1.5, 1.5);
	-o-transform: translate(0%, -50%) scale(1.5, 1.5);
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-ms-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
}


.ind_video_con .swiper-slide:hover .txt {
	opacity: 1;
	filter: alpha(opacity=100);
	transform: translate(0%, -50%) scale(1, 1);
	-webkit-transform: translate(0%, -50%) scale(1, 1);
	-moz-transform: translate(0%, -50%) scale(1, 1);
	-ms-transform: translate(0%, -50%) scale(1, 1);
	-o-transform: translate(0%, -50%) scale(1, 1);
}

.ind_video_con .swiper-slide p {
	height: 55px;
	line-height: 55px;
	padding: 0 10 px;
	box-sizing: border-box;
	display: block;
	font-size: 20px;
	color: #333;
	background: url(../images/service_text.png);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	word-break: break-all;
	transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-ms-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	text-align: center;
	/* background-color: #fff; */
}

.about02wrap .ind_video_con .swiper-slide p {
	color: white;
}

.ind_video_con .swiper-slide:hover img {
	transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
}

.ind_video_con .swiper-slide p {
	background: var(--theme-color);
	color: white;
}

.index03wrap .page {
	width: 100%;
	box-sizing: border-box;
	position: relative;
	display: flex;
	display: -webkit-flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-content: center;
	margin-top: 40px;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
	width: auto !important;
}

.index03wrap .page .swiper-button-next:after,
.index03wrap .page .swiper-button-prev:after {
	font-size: 26px !important;
}

.index03wrap .page .swiper-button-next,
.index03wrap .page .swiper-button-prev {
	position: relative;
	bottom: 0;
	top: 0;
	margin: 0;
	padding: 0;
	background-image: none;
	font-size: 26px;
	color: var(--theme-color);
	height: auto;
	width: auto;
	outline: none;
}

.index03wrap .page .swiper-horizontal>.swiper-pagination-bullets,
.index03wrap .page .swiper-pagination-bullets.swiper-pagination-horizontal,
.index03wrap .page .swiper-pagination-custom,
.index03wrap .page .swiper-pagination-fraction {
	bottom: 0;
}

.index03wrap .swiper-pagination {
	position: relative;
	margin: 0 90px;
}

.index03wrap .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background-color: #bbbbbb;
	margin: 0 6px;
	opacity: 1;
}

.index03wrap .swiper-pagination-bullet-active {
	background-color: var(--theme-color);
}

@media only screen and (max-width: 1200px) {
	.ind_video_con .swiper-slide p {
		height: 40px;
		line-height: 40px;
		padding: 0 4px;
		font-size: 14px;
	}
}

@media only screen and (max-width: 760px) {
	.index03wrap.ind_video .page {
		margin-top: 10px;
	}

	.ind_video_con {
		padding: 0 2% 30px;
	}

	.ind_video_con .swiper-slide .pic .filter,
	.ind_video_con .swiper-slide .pic .txt {
		display: none;
	}
}

/*视频中心 e*/

/* 荣誉 s */
.ind_hor {
	padding-bottom: 1rem;
}

.ind_hor .con {
	width: 14rem;
	margin: 0.6rem auto 0;
	padding-bottom: 0.75rem;
	background: url(../images/ind_hor_bg.png) no-repeat center;
	background-size: 100% auto;
	background-position: bottom center;
	max-width: 100%;
}

.ind_hor .con .swiper {
	width: 85%;
	margin: 0 auto;
}

.ind_hor .con ul li {}

.ind_hor .con ul li a {}

.ind_hor .con ul li .rect-13782 {
	padding-bottom: 137.82%;
}

.ind_hor .con ul li img {}

.ind_hor .con ul li p {
	margin-top: 0.12rem;
	font-size: 16px;
	color: #262626;
	text-align: center;
}

.ind_hor .swiper-button-prev::after,
.ind_hor .swiper-button-next::after {
	display: none;
}

.ind_hor .swiper-button-prev,
.ind_hor .swiper-button-next {
	top: calc((100% - 0.75rem) / 2);
	width: 20px;
	height: 63px;
	margin-top: -31.5px;
	background: url(../images/hor_btn.png) no-repeat center;
	background-position: 0 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.ind_hor .swiper-button-next {
	left: auto;
	right: -24px;
	background-position: -24px 0;
}

.ind_hor .swiper-button-prev {
	right: auto;
	left: -24px;
}

.ind_hor .swiper-button-next:hover,
.ind_hor .swiper-button-prev:hover {
	background-position-y: -66px;
}

.pst-rel {
	position: relative;
}

*[class*="rect-"] {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	overflow: hidden;
}

*[class*="rect-"] ._full {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	*height: auto;
	object-fit: cover;
}

li *[class*="pic"]>img {
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

li:hover *[class*="pic"]>img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

/*动画效果 所有属性获得过度*/
* {
	transition-property: all;
}

.com-img {
	overflow: hidden;
}

.com-img img {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
}

.com-img:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
}

/* 荣誉 e */

/* parent */
.z_index_hz {
	background: url(/template/default/images/i_img5.jpg) center no-repeat;
	background-size: cover;
	padding-bottom: 150px;
	padding-top: 140px;
}

.z_index_hz .tit_box1 {
	padding: 0 0 100px;
}

.z_index_hz .tit_box1 .tit h4:after {
	width: 5.5vw;
}

.z_hz_swiper,
.z_indexcase_swiper {
	width: 86%;
	margin: 0 auto;
	overflow: hidden;
}

.z_hz_swiper ul li {
	width: 20%;
	float: left;
	text-align: center;
	margin-bottom: 1vw;
}

.z_hz_swiper ul li a {
	display: flex;
	width: 100%;
	height: 100px;
	align-items: center;
	justify-content: center;
}

.z_hz_swiper ul li img {
	max-width: 90%;
	transition: ease 1s;
}

.z_hz_hd li {
	display: inline-block;
	outline: none;
	cursor: pointer;
	width: 12px;
	margin: 0 5px;
	height: 12px;
	background: #A1A4AD;
	border-radius: 50%;
	opacity: 1;
}

.z_hz_hd li.on {
	background: var(--theme-color);
}

.swiper_btn_warp {
	position: relative;
}

.swiper_btn_warp .iconfont {
	display: block;
	color: #868686;
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: ease 1s;
	outline: none;
	width: 50px;
	line-height: 50px;
	text-align: center;
	height: 50px;
	background: rgba(241, 241, 241, 0);
	border: 1px solid #8C8C8C;
	border-radius: 50%;
}

.swiper_btn_warp .iconfont:hover {
	border-color: var(--theme-color);
	background: var(--theme-color);
	color: #fff;
}

.swiper_btn_warp .prev {
	left: 0;
}

.swiper_btn_warp .next {
	right: 0;
	transform: rotate(180deg);
	transform: scaleX(-1);
}

.z_hz_hd {
	text-align: center;
	width: 100%;
	margin-top: 4vw;
}

.z_hz_hd li {
	display: inline-block;
	outline: none;
	cursor: pointer;
	width: 12px;
	margin: 0 5px;
	height: 12px;
	background: #A1A4AD;
	border-radius: 50%;
	opacity: 1;
}

.z_hz_hd li.on {
	background: var(--theme-color);
}

/* news */
.news {
	padding-bottom: 75px;
}

.news .more_style5.add_more {
	width: 100%;
	margin-top: 3vw;
	justify-content: center;
}

.news .more_style5.add_more .txt {
	border: 1px solid var(--theme-color);
}

.news .tit_box1 .tit {
	flex: 1;
}

.news .tit_box1 .tit h4:after {
	width: 7vw;
}

.news .tit_box1 .more_style5 .txt {
	border: 1px solid var(--theme-color);
}

.news_nav {}

.news_nav ul {}

.news_nav ul li {
	margin-right: 1vw;
}

.news_nav ul li a {
	display: block;
	width: auto;
}

.news_nav ul li a .txt {
	width: 100%;
	padding: 5px 15px;
}

.news_nav ul li.active a .txt {
	color: #fff;
	background-color: var(--theme-color);
}

.ind_news {}

.ind_news_list {
	opacity: 0;
	height: 0;
	transition: all 0.3s;
}

.ind_news_list.active {
	opacity: 1;
	height: 100%;
}

.news_list_hd {
	flex: 1;
	min-width: 0;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}

.news_list_hd .item {
	position: relative;
	display: block;
	height: 100%;
}

.news_list_hd .item h4 {
	font-size: 20px;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 100px 100px 20px 20px;
	color: #fff;
	background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
}

.news_list_hd .item .img {
	height: 100%;
}

.news_list_hd .item .img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.news_list_hd .swiper-pagination {
	text-align: right;
	z-index: 10;
	left: auto;
	right: 20px;
	bottom: 20px;
}

.news_list_hd .swiper-pagination span {
	opacity: 1;
	background: #fff;
}

.news_list_hd .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--theme-color);
}

.news_list_bd,
.news_list_ft {
	padding-left: 40px;
	width: 25.92%;
}

.news_list_bd .img {
	overflow: hidden;
	border-radius: 10px;
}

.news_list_bd .tit {
	font-size: 20px;
	line-height: 1.2;
	margin: 20px 0 25px;
}

.news_list_bd .btn_time {
	margin-top: 35px;
	font-size: 14px;
}

.news_list_bd .btn_time .btn {
	flex: 1;
	text-transform: uppercase;
	font-family: 'RobotoBold';
}

.news_list_ft a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid #e7e7e7;
	border-radius: 10px;
	padding: 30px;
	height: 100%;
}

.news_list_ft .time {
	font-size: 14px;
}

.news_list_ft .tit {
	font-size: 20px;
	line-height: 1.2;
	margin: 20px 0 30px;
}

.news_list_ft .img {
	border-radius: 10px;
	overflow: hidden;
}

.news_list_bd:hover .tit,
.news_list_ft:hover .tit {
	color: var(--theme-color);
}


/*page_product_list */

.page_product_list_wrap {
	position: relative;
	padding: 90px 0;
	/* margin-bottom: 90px; */
}

.page_product_list {
	padding-bottom: 1px;
	overflow: hidden;
}

.page_product_list .item {
	display: block;
	background: #fff;
	border: 1px solid #fff;
}

.page_product_list .item .item_img {
	padding: 40px 40px 30px;
}

.page_product_list .item .item_con {
	padding: 0 40px 50px;
}

.page_product_list .item .item_con .tit {
	font-size: 20px;
	text-align: center;
	font-family: 'RobotoMedium';
	transition: all .4s;
}

.page_product_list .item .item_con .desc {
	font-size: 16px;
	display: flex;
	margin: 20px 0 0;
	line-height: 1.3;
	height: 2.6em;
}

.page_product_list .item .item_con .desc span {
	flex: 1;
	padding-top: 30px;
	text-align: center;
}

.page_product_list .item .item_con .desc span:nth-child(1) {
	background: url("../images/product_ico1.png") no-repeat center top;
}

.page_product_list .item .item_con .desc span:nth-child(2) {
	background: url("../images/product_ico2.png") no-repeat center top;
}

.page_product_list .item .item_con .desc span:nth-child(3) {
	background: url("../images/product_ico3.png") no-repeat center top;
}

.page_product_list .item .item_con .desc span:nth-child(4) {
	background: url("../images/product_ico4.png") no-repeat center top;
}

.page_product_list .item:hover {
	border-color: var(--theme-color);
}

.page_product_list .item:hover .item_con .tit {
	color: var(--theme-color);
}

.page_product_list_wrap .swiper-button-prev,
.page_product_list_wrap .swiper-button-next {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #fff;
	color: var(--theme-color);
	transition: all .4s;
}

.page_product_list_wrap .swiper-button-prev:after,
.page_product_list_wrap .swiper-button-next:after {
	font-size: 20px;
	font-weight: bold;
}

.page_product_list_wrap .swiper-button-prev:hover,
.page_product_list_wrap .swiper-button-next:hover {
	background: var(--theme-color);
	color: #fff;
}


/* public_message */

.public_message_con {
	border-radius: 30px;
	background: #fff;
	margin-top: 70px;
	padding: 70px;
}

.public_message_con .cover {
	width: 40%;
	height: 500px;
	background: #f6f6f6;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.public_message_con .cover img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.public_message_con .page_contact2_form {
	background: transparent;
}

.public_message_con .page_contact2_form .input_box .input input,
.public_message_con .page_contact2_form textarea {
	border: 1px solid #ddd;
}

.page_product_related {
	padding: 70px 0 0;
}

.page_product_related_tit {
	font-size: 40px;
	color: #333;
	text-align: center;
}


/* footer_message */

.footer_message {
	display: none;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.footer_message_con {
	width: 39.3%;
	padding-right: 10%;
}

.footer_message_con h4 {
	font-size: 56px;
	font-family: 'RobotoBold';
}

.footer_message_con p {
	font-size: 14px;
	color: #888;
	font-family: 'RobotoLight';
}

.footer_message .form {
	flex: 1;
}

.footer_message .form .input_box {
	margin: 0 -10px;
}

.footer_message .form .input {
	padding: 0 10px;
	flex: 1;
}

.footer_message .form input,
.footer_message .form textarea {
	border-radius: 200px;
	background: #fff;
	height: 45px;
	outline: none;
	border: none;
	font-size: 14px;
	padding: 10px 20px;
	width: 100%;
	line-height: 25px;
}

.footer_message .form .input.ind_yzm input{
    margin-top: 20px;
    margin-right: 1vw;
    width:30%;
}

.footer_message .form .input.ind_yzm img{
    cursor: pointer;
}

.footer_message .form textarea {
	margin-top: 20px;
	height: 100px;
	border-radius: 26px;
}

.footer_message .form .button {
	justify-content: flex-end;
	margin-top: 15px;
}

.footer_message .form button {
	border: none;
	outline: none;
	width: 140px;
	height: 45px;
	border-radius: 100px;
	background: var(--theme-color);
	color: #fff;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 14px;
	transition: all .3s;
	font-family: 'RobotoBold';
}

.footer_message .form button:hover {
	background: var(--theme-color);
}

/* footer */

.footer {
	/*background: url("../images/footer_bg.jpg") no-repeat center #eaedf1;*/
	padding: 70px 0 0;
	background: rgba(234, 237, 250, .9);
}

.footer a:hover {
	text-decoration: underline;
	color: var(--theme-color);
}

.footer_con {}

.f_menu_share_box {
	flex: 1;
}

.f_menu_share_box .f_menu_box {
	justify-content: space-between;
}

.f_menu_share_box .share {
	display: block;
	margin-top: 40px;
}

.f_menu_share_box .share h4 {
	margin-bottom: 15px;
}

.f_menu_item {
	margin-right: 40px;
}

.f_menu_item.f_tel_box {
	margin-right: 0;
}

.f_menu_item h4 {
	margin-bottom: 8px;
}

.f_menu_item h4 a {
	font-size: 20px;
	font-family: 'RajdhaniSemiBold';
}

.f_menu_item h5 a {
	font-size: 14px;
	color: #777;
	white-space: nowrap;
}

.f_tel_box {
	width: 30%;
}

.f_tel_box .tel_list {
	gap: 25px;
}

.f_tel_box .tel_list .item {
	display: flex;
}

.f_tel_box .tel_list .item i {
	color: var(--theme-color);
	margin-right: 5px;
}

.f_tel_box .tel_list .item .i_con h6 {
	font-family: 'RobotoBold';
}

.f_tel_box .tel_list .item .i_con p {
	font-size: 14px;
	color: #777;
}

.f_tel_box .tel_list .item .i_con p a {
	cursor: pointer;
}

.f_tel_box .tel_list .item .i_con span {
	font-size: 14px;
	display: block;
	margin: 5px 0 3px;
}

.footer_copyright {
	font-size: 14px;
	padding: 30px 0;
	display: flex;
	justify-content: center;
}

.footer_copyright a {
	margin-left: 30px;
}

/* page_banner */

.page_banner {
	margin-top: 80px;
	position: relative;
}

.page_banner .img img {
	width: 100%;
}

.page_banner_con {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
}

.page_banner_con .tit {
	font-size: 54px;
	font-family: 'RobotoMedium';
	line-height: 1.2;
	text-transform: capitalize;
}

.page_banner_con .subtit {
	font-size: 24px;
	margin-top: 10px;
}

.page_banner_con .pos {
	margin-top: 10px;
	font-family: 'RobotoLight';
}

.page_banner_con .pos a {
	padding: 0 3px;
}

.page_about_banner_con {
	padding-right: 13%;
	top: 24%;
	align-items: flex-end;
}

.page_about_banner_con .tit {
	color: #333;
}

.page_product_banner_con {
	position: absolute;
	left: 0;
	top: 80px;
	width: 100%;
	text-align: center;
}

.page_product_banner_con .tit {
	font-size: 70px;
	font-family: 'RobotoMedium';
	line-height: 1;
}

.page_product_banner_con .subtit {
	font-size: 40px;
}

.page_product_banner_con a {
	width: 150px;
	height: 40px;
	border-radius: 100px;
	background: var(--theme-color);
	font-size: 14px;
	font-family: 'RobotoBold';
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 25px auto 0;
	color: #fff;
	transition: all .4s;
}

.page_product_banner_con a:hover {
	background: #333;
}


.page_banner_menu {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

.page_banner_menu .list {
	justify-content: center;
}

.page_banner_menu .list .item a {
	background: rgba(0, 0, 0, .6);
	height: 60px;
	border-left: 1px solid rgba(255, 255, 255, .2);
	padding: 0 40px;
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 18px;
}

.page_banner_menu .list .item.cur a,
.page_banner_menu .list .item:hover a {
	background: var(--subtheme-color);
}


.inner_pos {
	padding-top: 20px;
}

.inner_pos a {
	padding: 0 4px;
}

.inner_pos a:first-child {
	padding-left: 0;
}

.inner_pos a:hover {
	color: var(--subtheme-color);
}


/* page_product_index */

.page_product_advantage {
	padding: 160px 0 80px;
}

.page_product_index_tit {
	font-size: 60px;
	font-family: 'RobotoBold';
	line-height: 1.1;
	text-align: center;
	padding: 80px 0;
}

.page_product_advantage .j_list {}

.page_product_advantage .j_list .item {
	width: 33.333%;
	padding: 40px 60px 0;
}

.page_product_advantage .j_list .item .ico {
	width: 60px;
	height: 60px;
	margin: auto;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--theme-color);
}

.page_product_advantage .j_list .item .con {
	text-align: center;
}

.page_product_advantage .j_list .item .con h4 {
	font-size: 22px;
	font-family: 'RobotoMedium';
	margin: 20px 0;
	line-height: 1.2;
}

.page_product_advantage .j_list .item .con p {
	line-height: 1.5;
}

.page_product_index_menu {
	margin: 0 -10px;
	padding: 45px 0 110px;
}

.page_product_index_menu a {
	width: 50%;
	display: block;
	padding: 10px;
}

.page_product_index_menu .item {
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}

.page_product_index_menu .item .item_con {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding: 50px;
	text-align: center;
}

.page_product_index_menu .item .item_con .tit {
	font-size: 40px;
	color: var(--theme-color);
	font-family: 'RajdhaniSemiBold';
	line-height: 1;
}

.page_product_index_menu .item .item_con .subtit {
	font-size: 22px;
	margin-top: 10px;
}

.page_product_index_menu .item .item_con .ico {
	font-size: 14px;
	font-family: 'RobotoBold';
	margin-top: 30px;
	text-transform: uppercase;
	transition: all .4s;
}

.page_product_index_menu .item .item_con .ico i {
	font-weight: bold;
	margin-left: 10px;
}

.page_product_index_menu .item .item_img .img img {
	width: 100%;
}

.page_product_index_menu a:nth-child(3) {
	width: 100%;
}

.page_product_index_menu .item:hover .item_con .ico {
	color: var(--theme-color);
}

/* product_robot_list */

.mbx_section {
	text-align: center;
	font-size: 0.15rem;
	position: relative;
	z-index: 333;
	margin-bottom: 0.2rem;
	max-width: 16rem;
	width: 100%;
	margin: auto;
	overflow: hidden;
	padding: 20px 0 10px 0;
}

.mbx_section span {
	margin-right: 0.04rem;
	color: var(--theme-color);
}

/* .mbx_section .n_title {float: left;}
.mbx_section .mbx {float: right;} */
.pro-detailst .mbx {
	text-align: left !important;
}

.mbx_section a,
.mbx_section p.p-ti,
.mbx_section h2 {
	font-size: 14px;
	color: #666;
	font-weight: normal;
	display: inline-block;
	text-transform: capitalize;
	margin: 0px 0.1rem;
}

.mbx_section a:hover {
	color: var(--theme-color);
}

@media screen and (max-width:1600px) {
	.mbx_section {
		padding-left: 3% !important;
		padding-right: 3% !important;
		max-width: 100% !important;
	}
}

@media only screen and (max-width:992px) {
	.mbx_section {
		display: block;
		margin-bottom: 0;
	}

	.n_title {
		display: none;
	}
}

.n_main {
	padding: 0 0 .4rem 0;
	background: #ffffff;
}

.n_main.pro-main {
	padding: .4rem 0;
}

.n_left {
	float: left;
	width: 25%;
}

.n_right {
	float: right;
	width: 75%;
	padding-left: .5rem;
}

.pro-main .n_right {
	width: 100%;
	float: none;
	padding-left: 0;
}

.n_left2 {
	float: right;
	width: 25%;
}

.n_right2 {
	float: left;
	width: 75%;
	padding-right: 0.5rem;
}

.pro_info {
	position: relative;
	z-index: 333;
}

.pro_info .cate_section {
	padding-top: 0;
}

.page_bg {
	background: #fafafa;
	padding-bottom: 0.8rem;
}

.page_bg .page_main {
	box-shadow: 0 14px 25px rgba(0, 0, 0, .16);
	background: #fff;
	margin-top: -60px;
	position: relative;
	z-index: 666;
	padding: 40px;
}

.products_main .tab-content .tab-pane.active {
	display: block;
}

.products_main .tab-content .tab-pane {
	display: none;
}

.n_main.pro-main .touch-index {
	padding-bottom: 2rem;
}

@media only screen and (max-width:992px) {
	.n_main {
		padding: 0.3rem 0;
	}

	.n_left {
		width: 100%;
	}

	.n_right {
		width: 100%;
		padding: 0;
	}

	.n_left2 {
		width: 100%;
		margin-bottom: 0.2rem;
	}

	.n_right2 {
		width: 100%;
		padding: 0;
	}

	.n_main.pro-main .touch-index {
		padding: .3rem 0;
	}

	.n_main.pro-main .touch-index .touch-left {
		display: none;
	}
}

/*pro_detail*/
.tags_ul {
	padding: 0.04rem 0;
	margin: 0.15rem 0;
}

.tags_ul span {
	font-family: "Montserrat-S";
	font-size: .16rem;
	text-transform: uppercase;
	color: #333;
	margin-right: 0.06rem;
	font-weight: 500;
}

.tags_ul h2 {
	display: inline-block;
}

.tags_ul a {
	display: inline-block;
	padding: 0px 16px;
	background: #fafafa;
	color: #666;
	text-transform: capitalize;
	line-height: 30px;
	border: 1px solid #f1f1f1;
	font-size: .14rem;
	margin: 2px;
}

.tags_ul i {
	margin-right: 0.3rem;
	color: #ccc;
	transition: 0.6s all;
}

.tags_ul a:hover {
	background: var(--theme-color);
	color: #fff;
}

@media screen and (max-width: 992px) {
	.tags_ul {
		width: 100%;
	}

}

.pro_page {
	padding: 0.4rem 0;
	position: relative;
	z-index: 5;
	width: 100%;
	background: #f7f7f7;
}

.pro_page .pro_main {
	display: flex;
	width: 100%;
	margin: auto;
	align-items: center;
}

.pro_page .prom_img {
	width: 500px;
	position: relative;
}

.pro_page .main_text {
	padding-left: 1.5rem;
}

.cat_scroll {
	position: relative;
}

.cat_scroll .swiper-button-next,
.cat_scroll .swiper-button-prev {
	background: var(--theme-color);
	border-radius: 50%;
}

.relpro_content {
	padding: 0.6rem 0 0.7rem;
	background: #f5f5f5;
}

.relpro_content .container {
	padding: 0 .3rem !important;
}

.main_title em,
.main_title h2 {
	color: #333333;
	font-size: .32rem;
	text-transform: capitalize;
	margin: 0;
	position: relative;
	z-index: 2;
	display: block;
	text-align: center;
	font-weight: 600;
}

.pro_scrollbar .swiper-slide {
	padding: .15rem .1rem;
	margin-top: .2rem;
}

.pro_scrollbar .swiper-slide .li {
	overflow: hidden;
	padding-bottom: .2rem;
	transition: all .5s;
	text-align: center;
}

.pro_scrollbar .swiper-slide .li .img-center {
	position: relative;
}

.pro_scrollbar .swiper-slide .li .img {
	display: block;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e5e5e5;
	padding: 20px;
	transition: all .5s;
}

.pro_scrollbar .swiper-slide .li img {
	transition: all .5s;
}

.pro_scrollbar .swiper-slide .li:hover img {
	transform: scale(1.2);
	transition: all .5s;
}

.pro_scrollbar .swiper-slide .li .icon {
	position: absolute;
	left: 50%;
	top: 50%;
	display: inline-flex;
	width: 60px;
	height: 60px;
	margin-left: -30px;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	border-radius: 50%;
	background: var(--theme-color);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all 0.3s cubic-bezier(0, 1.135, 0.73, 1.405);
	-moz-transition: all 0.3s cubic-bezier(0, 1.135, 0.73, 1.405);
	-o-transition: all 0.3s cubic-bezier(0, 1.135, 0.73, 1.405);
	transition: all 0.3s cubic-bezier(0, 1.135, 0.73, 1.405);
	transform: translateY(-50%);
}

.pro_scrollbar .swiper-slide .li .icon i {
	width: 24px;
	height: 24px;
	background: url(../images/icon.png) no-repeat;
	background-position: -3px -97px;
}

.pro_scrollbar .swiper-slide .li:hover .icon {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.pro_scrollbar .swiper-slide .li .title {
	/* display: block; */
	font-family: "Montserrat-M";
	font-size: .16rem;
	color: #222;
	text-align: center;
	text-transform: capitalize;
	margin: .1rem 0 .055rem 0;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	min-height: .54rem;
}

.pro_scrollbar .swiper-slide .li .number_detail {
	font-size: .14rem;
	line-height: .22rem;
	max-height: .42rem;
	display: -moz-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-align: center;
}

.pro_scrollbar .swiper-slide .li .view {
	font-family: "Montserrat-L";
	display: block;
	width: 87px;
	height: 36px;
	line-height: 36px;
	border-radius: 5px;
	background: var(--theme-color);
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	margin: .18rem auto auto;
}

.pro_scrollbar .swiper-slide .li:hover {
	background: #fff;
	transition: all .5s;
}

.pro_scrollbar .swiper-slide .li:hover .img {
	border: none;
	transition: all .5s;
}

.products-section .swiper-pointer-events {
	position: initial;
}

.swiper-pointer-events {
	touch-action: pan-y;
}

.products-section .swiper-wrapper {
	position: relative;
	width: 100%;
	/* height: 100%; */
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
	overflow: hidden;
}

.products-section .swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
}

.prom_img {
	padding: 0;
	text-align: center;
	padding-right: 0;
	border-radius: 0;
}

.prom_img .swiper-slide {
	position: relative;
	display: inline-block;
}

.prom_img #pro_img_gallery {
	overflow: inherit;
}

.prom_img #pro_img_gallery .swiper-slide {
	opacity: 0 !important;
	z-index: -1;
}

.prom_img #pro_img_gallery .swiper-slide-active {
	opacity: 1 !important;
	z-index: 3;
}

.prom_img #pro_img_gallery .swiper-slide img {
	width: 100%;
}

.prom_img .swiper-slide iframe {
	position: relative;
	z-index: 66;
	width: 100%;
}

.prom_img .video_img {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0;
	bottom: 0;
	z-index: 55;
}

#pro_img_thumbs {
	padding-top: 15px;
}

#pro_img_thumbs .swiper-slide {
	border-radius: 0;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid #eee;
	padding: 2px;
}

#pro_img_thumbs .swiper-slide-thumb-active {
	border: 2px solid var(--theme-color);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#pro_img_thumbs .swiper-slide.swiper-slide-thumb-active img {
	border-color: var(--theme-color);
}

.prom_img .sp-video-icon {
	position: relative;
}

.prom_img .sp-video-icon img {
	opacity: 0.5;
	border-radius: 0;
}

.prom_img .sp-video-icon:before {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 14px;
	color: #fff;
	line-height: 30px;
	font-family: 'FontAwesome';
	content: "\f04b";
	z-index: 2;
	border-radius: 5px;
	background: var(--theme-color);
	width: 30px;
	height: 30px;
	text-align: center;
}

.cloud-zoom-lens {
	background: #000 !important;
	opacity: 0.1 !important;
}

#cloud-zoom-big {
	top: 0px !important;
	border: 1px solid #ddd;
	background-repeat: no-repeat !important;
	background: #fff;
}

.cloud-zoom {
	overflow: hidden;
}

@media only screen and (max-width: 992px) {

	.mousetrap,
	#cloud-zoom-big,
	.cloud-zoom-big {
		display: none !important;
	}
}

.company-index .swiper-autoheight .swiper-wrapper {
	height: auto !important;
}

#content {
	position: relative;
	top: -0.6rem;
}

.pro_table .pro_main_title {
	font-family: "Montserrat-M";
	font-size: .34rem;
	line-height: .24rem;
	overflow: hidden;
	display: block;
	text-transform: capitalize;
	color: var(--theme-color);
	line-height: 0.44rem;
	margin-bottom: 0.3rem;
	font-weight: normal;
	font-weight: 500;
}

.pro_table .pro_main_text {
	line-height: 0.28rem;
	padding-bottom: 0.2rem;
}

.pro_table ul {
	padding-left: 0;
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
	display: flex;
	flex-wrap: wrap;
}

.pro_table ul li {
	color: #666;
	list-style: none;
	float: left;
	width: 100%;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	display: flex;
	align-items: center;
}

.pro_table ul li p {
	font-family: "Montserrat-M";
	display: inline-block;
	margin-right: 0.1rem;
	vertical-align: middle;
	margin-bottom: 0;
	color: #333;
	font-size: .16rem;
	min-width: 1.2rem;
	padding: 8px;
	border-right: 1px solid #f7f7f7;
	min-width: 25%;
	font-weight: 400;
}

.main-more {
	text-align: left !important;
	margin-top: 30px;
}

.pro_more a {
	background: #333;
	text-transform: capitalize;
	line-height: .5rem;
	padding: 0 15px;
	border-radius: 0;
	display: inline-block;
	font-size: 0.14rem;
	color: #fff;
	margin-right: 0.1rem;
	border-radius: 0;
	position: relative;
}

.pro_more a:before {
	position: absolute;
	content: '';
	opacity: 0;
	top: 0;
	left: 0;
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .03) 1%, rgba(255, 255, 255, .6) 30%, rgba(255, 255, 255, .85) 50%, rgba(255, 255, 255, .85) 70%, rgba(255, 255, 255, .85) 71%, rgba(255, 255, 255, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1);
	width: 30%;
	height: 100%;
	transform: skew(-10deg, 0deg);
	animation: move 2s;
	animation-iteration-count: infinite;
	animation-delay: 1s;
}

@keyframes move {
	0% {
		left: 0;
		opacity: 0
	}

	5% {
		opacity: .0
	}

	48% {
		opacity: .2
	}

	80% {
		opacity: .0
	}

	100% {
		left: 82%
	}
}

.pro_more a:hover {
	transform: translate3d(0, -3px, 0);
	-webkit-transform: translate3d(0, -3px, 0);
}

.pro_more div {
	display: inline-block;
}

.pro_more .main-more a {
	background: var(--theme-color);
	text-transform: uppercase;
	border-radius: 0;
	font-size: .16rem;
	font-weight: 500;
	min-width: 2rem;
	border-radius: 30px;
	text-align: center;
}

.pro_more a i {
	margin-right: 6px;
}

.pro_sns {
	margin-top: 30px;
}

.pro_sns span {
	font-size: 16px;
	background: url(../images/share_ico.png) no-repeat left center;
	padding-left: 30px;
	color: #333;
	float: left;
	margin-right: 8px;
	line-height: 38px;
	text-transform: capitalize;
}

.pro_sns a {
	display: inline-block;
	padding: 0;
	margin-right: 2px;
	border-radius: 5px;
	overflow: hidden;
}

.products_main .nav-tabs li {
	float: left;
	list-style: none;
	background: #eee;
	margin-bottom: 20px;
	overflow: hidden;
}

.products_main .nav-tabs li a {
	color: var(--theme-color);
	font-size: .22rem;
	display: inline-block;
	padding: 8px 10px;
	line-height: 30px;
	margin-right: .05rem;
	text-transform: capitalize;
	font-family: "Montserrat-M";
}

.products_main .nav-tabs li.active a {
	background: var(--theme-color);
	color: #fff;
	position: relative;
	font-size: .22rem;
}


@media only screen and (max-width: 1260px) {
	.pro_page .prom_img {
		width: 40%;
		position: relative;
	}

	.pro_page .main_text {
		width: 60%;
		padding-left: 0.3rem;
	}

	.pro_table ul li {
		width: 100%;
	}
}

@media only screen and (max-width: 992px) {
	.products_main .nav-tabs li a {
		font-size: 14px !important;
		padding: 10px;
	}
}


@media only screen and (max-width:992px) {
	.pro_table .pro_main_title {
		margin-top: 0.2rem;
	}

	.pro_page .pro_main {
		padding: 15px;
		display: block;
		background: #fff;
	}

	.pro_page .prom_img,
	.pro_page .main_text {
		width: 100%;
		padding: 0;
		float: none;
	}

	.pro_sns {
		display: none;
	}

	.pro_table ul li {
		width: 100%;
	}

	.pro_more .main-more a {
		display: block;
		z-index: 22;
		padding: 0px 10px;
		line-height: 36px;
	}

	.inquiry_pro.show {
		position: fixed;
		bottom: 60px;
		left: 10px;
		line-height: 20px;
		padding: 5px 0;
		z-index: 99999;
		font-size: 12px !important;
	}
}

.index-title {
	font-size: .46rem;
	color: #000;
	text-transform: capitalize;
	line-height: .58rem;
}

/* 详情表格 */
.ar_article td,
.ar_article th {
	padding: 15px 12px;
	border: 1px solid #dadbdd !important;
	vertical-align: middle;
	font-size: 15px;
	color: #1e1e1e;
}

.ar_article td p,
.ar_article th p {
	padding-bottom: 0;
	margin-bottom: 0 !important;
}

.ar_article table {
	border-collapse: collapse;
	border-right: 1px solid #ededed;
	border-bottom: 1px solid #ededed;
	width: 100%;
}

.ar_article table tr:not(:first-child) td {}

.ar_article table td {
	border-left: 1px solid #dadbdd;
	border-top: 1px solid #dadbdd !important;
}

.ar_article {
	font-size: 16px;
	color: #1e1e1e;
	line-height: 30px;
	margin-bottom: 30px;
}

.ar_article p,
.ar_article span {
	font-size: 16px;
	color: #1e1e1e;
	line-height: 28px;
}

.ar_article strong {
	font-weight: bold;
}

.ar_article img {
	max-width: 100%;
}

.ar_article a {
	color: #717173;
}

.ar_article h1,
.ar_article h2,
.ar_article h3,
.ar_article h4,
.ar_article h5 {
	font-weight: bold;
}

.ar_article h1 {
	font-size: 36px;
	margin-bottom: 20px
}

.ar_article h2 {
	font-size: 30px;
	margin-bottom: 15px;
}

.ar_article h3 {
	position: relative;
	font-size: 26px;
	margin-bottom: 30px;
	color: var(--theme-color);
	padding-left: 45px;
	text-transform: capitalize;
}

.ar_article h3::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 35px;
	height: 35px;
	background: transparent url(../images/chazuo.png) no-repeat center/cover;
}

.ar_article h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: var(--theme-color);
}

.ar_article h4 {
	font-size: 20px;
	margin-bottom: 15px;
	text-transform: capitalize;
}

.ar_article h5 {
	font-size: 14px;
	margin-bottom: 10px
}

.ar_article h6 {
	font-size: 12px;
	margin-bottom: 10px
}

.ar_article ul li,
.ar_article ol li {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
	margin-left: 20px;
	list-style: inherit !important;
}

.ar_article ul li p,
.ar_article ol li p {
	padding-bottom: 0;
	margin-bottom: 3px !important;
}

.ar_article ul,
.ar_article ol {
	margin-bottom: 15px;
}

.ar_article sub {
	vertical-align: sub;
	font-size: smaller;
}

.ar_article sup {
	vertical-align: super;
	font-size: smaller;
}

.ar_article img {
	display: inline-block;
	margin: 20px 0;
}

@media (max-width: 1000px) {
	.scroll {
		overflow: hidden;
		overflow-x: scroll;
	}

	.scroll table {
		min-width: 990px;
	}
}

@media (max-width: 768px) {

	.ar_article td,
	.ar_article th {
		padding: 6px 5px !important;
		line-height: 20px
	}

	.ar_article p,
	.ar_article span {
		font-size: 13px !important;
		line-height: 24px !important;
	}

	.ar_article img {
		display: inline-block;
		margin: 12px 0;
	}
}



.pro_scrollbar .swiper-slide .li .number_detail {
	font-size: .14rem;
	line-height: .22rem;
	max-height: .42rem;
	display: -moz-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-align: center;
}

.v-more {
	display: inline-block;
	min-width: 1.8rem;
	text-align: center;
	padding: .11rem .3rem;
	font-family: "Montserrat-S";
	font-size: .16rem;
	color: #fff;
	background: var(--theme-color);
	text-transform: capitalize;
	position: relative;
	overflow: hidden;
	transition: all .5s;
}

.v-more.all-m {
	margin-top: .1rem;
	position: relative;
	z-index: 22;
	min-width: 1.7rem;
	padding: 0.1rem 0.3rem;
	font-family: "Montserrat-L";
	text-transform: capitalize;
	border-radius: 30px;
}

.promore-center .v-more.all-m {
	margin-top: .3rem;
}

.v-more.all-m i {
	margin-right: .1rem;
}

.pro_scrollbar .swiper-slide {
	padding: .15rem .1rem;
	margin-top: .2rem;
}

.pro_scrollbar .swiper-slide .li {
	overflow: hidden;
	padding-bottom: .2rem;
	transition: all .5s;
	text-align: center;
}

.pro_scrollbar .swiper-slide .li .img-center {
	position: relative;
}

.pro_scrollbar .swiper-slide .li .img {
	display: block;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e5e5e5;
	padding: 20px;
	transition: all .5s;
}

.pro_scrollbar .swiper-slide .li img {
	transition: all .5s;
}

.pro_scrollbar .swiper-slide .li:hover img {
	transform: scale(1.2);
	transition: all .5s;
}

.pro_scrollbar .swiper-slide .li .icon {
	position: absolute;
	left: 50%;
	top: 50%;
	display: inline-flex;
	width: 60px;
	height: 60px;
	margin-left: -30px;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	border-radius: 50%;
	background: var(--theme-color);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all 0.3s cubic-bezier(0, 1.135, 0.73, 1.405);
	-moz-transition: all 0.3s cubic-bezier(0, 1.135, 0.73, 1.405);
	-o-transition: all 0.3s cubic-bezier(0, 1.135, 0.73, 1.405);
	transition: all 0.3s cubic-bezier(0, 1.135, 0.73, 1.405);
	transform: translateY(-50%);
}

.pro_scrollbar .swiper-slide .li .icon i {
	width: 24px;
	height: 24px;
	background: url(../images/icon.png) no-repeat;
	background-position: -3px -97px;
}

.pro_scrollbar .swiper-slide .li:hover .icon {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.pro_scrollbar .swiper-slide .li .title {
	/* display: block; */
	font-family: "Montserrat-M";
	font-size: .16rem;
	color: #222;
	text-align: center;
	text-transform: capitalize;
	margin: .1rem 0 .055rem 0;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	min-height: .54rem;
}

.pro_scrollbar .swiper-slide .li .number_detail {
	font-size: .14rem;
	line-height: .22rem;
	max-height: .42rem;
	display: -moz-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-align: center;
}

.pro_scrollbar .swiper-slide .li .view {
	font-family: "Montserrat-L";
	display: block;
	width: 87px;
	height: 36px;
	line-height: 36px;
	border-radius: 5px;
	background: var(--theme-color);
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	margin: .18rem auto auto;
}

.pro_scrollbar .swiper-slide .li:hover {
	background: #fff;
	transition: all .5s;
}

.pro_scrollbar .swiper-slide .li:hover .img {
	border: none;
	transition: all .5s;
}

.products-section .swiper-pointer-events {
	position: initial;
}

.swiper-pointer-events {
	touch-action: pan-y;
}

.products-section .swiper-wrapper {
	position: relative;
	width: 100%;
	/* height: 100%; */
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box;
}

.swiper-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
	overflow: hidden;
}

.products-section .swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform;
}

.products-section .button_outside {
	position: relative;
}

.products-section .button_outside .swiper-pointer-events {
	overflow: hidden;
}

.cat_scroll {
	position: relative;
}

.cat_scroll .swiper-button-next,
.cat_scroll .swiper-button-prev {
	position: absolute;
	top: 50%;
	width: calc(var(--swiper-navigation-size) / 44 * 27);
	height: var(--swiper-navigation-size);
	margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -23px;
	color: #cacaca;
	width: 50px;
	height: 50px;
	background: var(--theme-color);
	border-radius: 50%;
}

.cat_scroll .swiper-button-next:after,
.cat_scroll .swiper-button-prev:after {
	color: #fff;
	font-size: 0.2rem
}

.cat_scroll .swiper-button-next,
.cat_scroll .swiper-rtl .swiper-button-prev {
	right: -.3rem;
	left: auto;
}

.cat_scroll .swiper-button-prev,
.cat_scroll .swiper-rtl .swiper-button-next {
	left: -.3rem;
	right: auto;
}

.company-index .swiper-autoheight .swiper-wrapper {
	height: auto !important;
}

/* touch-index */
.touch-index {
	padding: 45px 0 115px 0;
}

.touch-wrap {
	padding: 0 .5rem;
	position: relative;
}

.touch-left {
	float: left;
	width: 50%;
	padding-right: 1;
	margin-top: .5rem;
}

.touch-left p.touch-text {
	font-size: .16rem;
	color: #666;
	line-height: .3rem;
	margin: .3rem 0 .5rem 0;
}

.touch-email a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.touch-email span {
	display: none
}

.touch-email a p {
	font-size: .2rem;
	color: #333;
	padding-left: .95rem;
	background: url(../images/index-email.png) left center no-repeat;
	background-size: .65rem .57rem;
}

.touch-email a p b {
	display: block;
	font-family: "Montserrat-S";
	font-size: .26rem;
	color: #000;
}

.touch-right {
	float: right;
	width: 50%;
	background: url(../images/m-5j-i.png) top right no-repeat #fff;
	box-shadow: 0 0 21px rgba(0, 0, 0, .17);
	border-top: 5px solid var(--theme-color);
	padding: .3rem .45rem .15rem .25rem;
	position: absolute;
	top: 0;
	right: 0;
}

.touch-right .tips-c {
	font-family: "Montserrat-B";
	font-size: .36rem;
	color: #000;
	line-height: .42rem;
	margin-bottom: .15rem;
}

.contact-center .tip-text {
	font-size: .16rem;
	color: #808080;
	line-height: .24rem;
	margin-bottom: 0.15rem;
	padding-right: .6rem;
}

.ms_btn {
	border-radius: 0;
	flex-shrink: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	transition: all 0.4s ease;
	z-index: 9;
	overflow: hidden;
	padding: 0 0.24rem 0 .15rem;
	line-height: 45px;
	color: #fff;
	font-size: 14px;
	position: relative;
	overflow: hidden;
	text-transform: capitalize;
	background: #3175c7;
	border-radius: 0;
	font-weight: 400;
	padding-top: 2px;
	padding-right: 40px;
	min-width: 120px;
}

.ms_btn input,
.ms_btn button{
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: none;
	border: none;
	z-index: 2;
	text-indent: -999px;
	overflow: hidden;
	cursor: pointer;
}

.ms_btn:before {
	content: ' ';
	position: absolute;
	background: rgba(255, 255, 255, 0.3);
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.3;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.ms_btn:hover:before {
	width: 100%;
}

.ms_btn:after {
	position: absolute;
	right: 25px;
	top: 0;
	height: 100%;
	display: inline-block;
	background-image: url("../images/feiji.svg");
	background-repeat: no-repeat;
	background-position: center center;
	content: '';
	line-height: 20px;
	width: 18px;
	opacity: 0;
}

.ms_btn:after {
	opacity: 1;
}

.touch-right .contact-center li {
	list-style: none;
	margin-bottom: .15rem;
	position: relative;
	width:49%;
    float: left;
    margin-right: 10px;
}

.touch-right .contact-center li:nth-child(4){
    width:100%;
}

.touch-right .contact-center li:nth-child(2n){
    margin-right: 0;
}

.contact-center ul li input {
	height: .45rem;
	width: 100%;
	line-height: .45rem;
	padding-right: 35px;
	padding-left: 15px;
	font-size: .16rem;
	color: #808080;
	border: none;
	border: 1px solid #e8e7e7;
	border-radius: 5px;
	transition: all .5s;
}

.contact-center ul li span:before {
	content: '';
	position: absolute;
	right: 0.2rem;
	top: 0;
	width: 0.28rem;
	height: 100%;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: .22rem .22rem;
}

.contact-center ul li span.ms_n:before {
	background-image: url(../images/name.png)
}

.contact-center ul li span.ms_p:before {
	background-image: url(../images/telphone.png)
}

.contact-center ul li span.ms_e:before {
	background-image: url(../images/whatapp.png)
}

.contact-center ul li span.ms_m:before {
	background-image: url(../images/text.png);
	background-position: center 10px;
}

.touch-right .contact-center li.pro_yzm{
    width:100%;
}

.touch-right .contact-center li.pro_yzm input{
    width: 30%;
    margin-right: 10px;
}

.touch-right .contact-center li.pro_yzm img{
    cursor: pointer;
}

.contact-center ul li textarea {
	height: 1.35rem;
	width: 100%;
	max-width: 100%;
	max-height: 1.35rem;
	padding-left: 15px;
	font-size: .16rem;
	padding: 14px 35px 14px 15px;
	color: #808080;
	border: 1px solid #e8e7e7;
	border-radius: 5px;
	transition: all .5s;
}

.contact-center .ms_btn {
	font-family: "Montserrat-S";
	font-size: .16rem;
	min-width: 1.35rem;
	    float: right;
}

.contact-center .ms_btn:after {
	right: .25rem;
}

@media screen and (max-width:992px) {
	.touch-index {
		padding: .3rem 0;
	}

	.touch-wrap {
		padding: 0;
	}

	.touch-left {
		float: none;
		width: 100%;
		padding-right: 0;
		margin-top: 0;
	}

	.touch-right {
		float: none;
		width: 100%;
		position: initial;
		margin-top: .3rem;
	}

	.contact-center ul li input {
		height: 45px;
		line-height: 45px;
	}

	.contact-center ul li span:before {
		background-size: 20px 20px;
	}

	.touch-left p.touch-text {
		margin: .2rem 0 .3rem 0;
	}
}


.sortnav_view {
	width: 28%;
	background-color: white;
	padding: 40px 30px;
	margin-right: 2%;
}

.sortnav_view .tit {
	position: relative;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.3;
	color: #000;
	padding-bottom: 15px;
	border-bottom: 1px solid #F2F2F2;
	text-transform: capitalize;
}

.sortnav_view .tit::after {
	position: absolute;
	content: "";
	display: block;
	width: 72px;
	height: 2px;
	left: 0;
	bottom: 0;
	background-color: var(--theme-color);
}

.sortnav_view>ul {
	/* border-top: 1px solid #F2F2F2; */
}

/* .sortnav_view>ul>li.active{
	border-bottom: 1px solid #F2F2F2;
} */

.sortnav_view>ul>li>a,
.sortnav_view>ul>li>ul>li>a,
.sortnav_view>ul>li>ul>li>ul>li>a,
.sortnav_view>ul>li>ul>li>ul>li>ul>li>a {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 1.5;
	color: #4C4C4C;
	padding: 16px 42px 12px 12px;
	border-bottom: 1px solid #F2F2F2;
	text-transform: capitalize;
}

.sortnav_view>ul>li>ul>li>ul>li>a {
	padding-left: 24px;
}

.sortnav_view>ul>li>ul>li>ul>li>ul>li>a {
	padding-left: 36px;
}

.sortnav_view>ul>li>a .iconfont,
.sortnav_view>ul>li>ul>li>a .iconfont,
.sortnav_view>ul>li>ul>li>ul>li>a .iconfont {
	position: absolute;
	top: 50%;
	right: 10px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
	border: 1px solid #F2F2F2;
	color: #000;
	font-weight: normal;

}

.sortnav_view>ul>li>ul>li>a .iconfont {
	top: 40%;
	-webkit-transform: translateY(-40%);
	-ms-transform: translateY(-40%);
	transform: translateY(-40%);
}

.sortnav_view>ul>li.active>a:hover i,
.sortnav_view>ul>li>a:hover .iconfont,
.sortnav_view>ul>li.active>a .iconfont,
.sortnav_view>ul>li>ul>li.active>a .iconfont,
.sortnav_view>ul>li>ul>li>ul>li.active>a .iconfont {
	color: var(--theme-color);
}

/* + */
.sortnav_view ul>li>a>i::before {
	content: "\e605";
}

/* - */
.sortnav_view>ul>li.active>a i::before,
.sortnav_view>ul>li>ul>li.active>a i::before,
.sortnav_view>ul>li>ul>li>ul>li.active>a i::before,
.sortnav_view>ul>li>ul>li>ul>li>ul>li.active>a i::before {
	content: "\e606";
}

.sortnav_view>ul>li>ul {
	padding: 18px 12px 18px 18px;
}

.sortnav_view>ul ul {
	display: none;
}

.sortnav_view>ul>li.active>ul.active,
.sortnav_view>ul>li.active>ul.active>li.active>ul.active {
	display: block;
}

.sortnav_view>ul>li>ul>li:first-child>a {
	/* padding-top: 0; */
}

.sortnav_view>ul>li>ul>li:last-child>a {
	/* padding-bottom: 0; */
}

.sortnav_view ul li a:hover,
.sortnav_view ul li.active>a {
	color: var(--theme-color) !important;
}

.fl {
	float: left;
}

.page_product_robot_tit {
	font-size: 24px;
	font-family: 'RobotoMedium';
	/* margin-bottom: 20px; */
}

.page_product_robot_list {
	padding-bottom: 100px;
}

.page_product_robot_list .list {
	margin: 20px -6px;
}

.page_product_robot_list .list a {
	display: block;
	width: 33.3333%;
	padding: 6px;
}

.page_product_robot_list .list .item {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	height: 100%;
	border: 1px solid #fff;
	transition: all .4s;
}

.page_product_robot_list .list .item .item_img {
	/* padding: 0 50px; */
}

.page_product_robot_list .list .item .item_con {
	text-align: center;
	padding-top: 20px;
}

.page_product_robot_list .list .item .item_con .tit {
	font-size: 20px;
	font-family: 'RobotoMedium';
	text-transform: capitalize
}

.page_product_robot_list .list .item .item_con .desc {
	margin: 15px 0 20px;
}

.page_product_robot_list .list .item .item_con .btn {
	text-transform: uppercase;
	font-size: 14px;
	font-family: 'RobotoBold';
}

.page_product_robot_list .list .item:hover {
	border-color: var(--theme-color);
}

.page_product_robot_list .list .item:hover .item_con .tit,
.page_product_robot_list .list .item:hover .item_con .btn {
	color: var(--theme-color);
}


/* page_products_robot_show */
.page_products_robot_show {
	padding-bottom: 80px;
}

.page_products_robot_show .list .item {
	gap: 30px;
	margin-bottom: 30px;
}

.page_products_robot_show .list .item:nth-child(2n) {
	flex-direction: row-reverse;
}

.page_products_robot_show .list .item .item_img {
	width: 35.8%;
	border-radius: 10px;
	overflow: hidden;
}

.page_products_robot_show .list .item .item_con {
	flex: 1;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	padding: 60px 80px;
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
}

.page_products_robot_show .list .item .item_con .tit {
	font-size: 48px;
	margin-bottom: 20px;
}

.page_products_robot_show .list .item .item_con .desc {
	font-size: 18px;
}

.page_products_robot_show .list .item:nth-child(2n) .item_con {
	background: #333;
	color: #fff;
}


/* page_products_robot_specification */

.page_products_robot_specification .page_products_public_more {
	margin-top: 0;
	text-transform: capitalize;
	font-size: 16px;
	font-family: 'RobotoMedium';
}

.page_products_robot_specification_content {
	padding: 40px 0 80px;
}

.page_products_robot_specification_content table {
	width: 100%;
	background: #f7f7f7;
}

.page_products_robot_specification_content table tr td {
	padding: 15px 30px;
}

.page_products_robot_specification_content table tr:nth-child(2n) {
	background: #fff;
}

/* page_products_accessory_show */

.page_products_accessory_show {
	padding: 155px 0 80px;
}

.page_products_accessory_show_img_swiper {
	width: 43.8%;
	height: 600px;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	position: relative;
	overflow: hidden;
}

.page_products_accessory_show_img_swiper .img {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.page_products_accessory_show_img_swiper.img img {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
}

.page_products_accessory_show_img_swiper .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--theme-color);
}

.page_products_accessory_show .content {
	flex: 1;
	padding: 30px 10% 0 0;
}

.page_products_accessory_show .content .tit {
	font-size: 54px;
	font-family: 'RobotoMedium';
}

.page_products_accessory_show .content .desc {
	font-size: 18px;
	margin: 30px 0 70px;
}

.page_product_return {
	display: flex;
	justify-content: space-between;
	padding: 80px 0;
}

.page_product_return .item {
	width: 600px;
	height: 600px;
	background: url("../images/return_bg.png") no-repeat center;
	background-size: 100% 100%;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.page_product_return .item .img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.page_product_return .item .img img {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
}

.page_product_return .item .con,
.page_product_return .item .none {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 3;
	color: #fff;
	transition: all .4s;
}

.page_product_return .item .con p,
.page_product_return .item .none p {
	font-size: 24px;
}

.page_product_return .item .con h4,
.page_product_return .item .none h4 {
	font-size: 36px;
	text-transform: uppercase;
	font-family: 'RobotoMedium';
	margin: 10px 0 20px;
}

.page_product_return .item .none h4 {
	text-transform: capitalize;
}

.page_product_return .item .con span {
	font-size: 14px;
	width: 150px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	background: var(--theme-color);
	border-radius: 100px;
}

.page_product_return .item:hover .con,
.page_product_return .item:hover .none {
	transform: scale(1.1);
}

/* page_ecology_index */

.page_ecology_index .list {
	margin: 0 -20px;
}

.page_ecology_index .list .item {
	padding: 0 20px;
}

.page_ecology_index .list .item .img img {
	border-radius: 10px;
}

.page_ecology_index .list .item .tit {
	font-size: 20px;
	text-align: center;
	margin-top: 20px;
	text-transform: capitalize
}

/* page_ecology_index_swiper */

.page_ecology_index_swiper {
	padding: 40px 0;
	margin-bottom: 60px;
	position: relative;
	overflow: hidden;
	display: none;
}

.page_ecology_index_swiper_Wrap .page_ecology_index_swiper:first-child {
	display: block;
}

.page_ecology_index_swiper .item {
	display: block;
	padding: 30px;
	background: #fff;
	border: 1px solid #fff;
}

.page_ecology_index_swiper .item .img {
	display: flex;
	justify-content: center;
}

.page_ecology_index_swiper .item .tit {
	text-align: center;
	margin-top: 20px;
	text-transform: capitalize;
	line-height: 1.3;
	height: 2.6em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.page_ecology_index_swiper .swiper-button-next,
.page_ecology_index_swiper .swiper-button-prev {
	background: var(--theme-color);
	width: 30px;
	height: 50px;
	color: #fff;
	opacity: .5;
}

.page_ecology_index_swiper .swiper-button-next:after,
.page_ecology_index_swiper .swiper-button-prev:after {
	font-size: 18px;
}

.page_ecology_index_swiper .swiper-button-prev {
	left: 0;
	border-radius: 0 10px 10px 0;
}

.page_ecology_index_swiper .swiper-button-next {
	right: 0;
	border-radius: 10px 0 0 10px;
}

.page_ecology_index_swiper .swiper-button-next:hover,
.page_ecology_index_swiper .swiper-button-prev:hover {
	opacity: 1;
}

.page_ecology_index_swiper .item:hover {
	border-color: var(--theme-color);
}

.page_ecology_index_swiper .item:hover .tit {
	color: var(--theme-color);
}

/* 工厂环境 s */
*[class*="rect-"] {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	overflow: hidden;
}

*[class*="rect-"] ._full {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	*height: auto;
	object-fit: cover;
}

li *[class*="pic"] {
	overflow: hidden;
}

li *[class*="pic"]>img {
	-webkit-transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	-ms-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}

li:hover *[class*="pic"]>img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.rect-75 {
	padding-bottom: 75%;
}

.n_ab_05 {
	/* background-color: #F0F7FB; */
	background: var(--theme-color) url(../images/ab_com.jpg) no-repeat center;
}

.pd-60 {
	padding: 0.6rem 0;
}

.n_ab_05 .con {
	padding-bottom: 0.45rem;
}

.n_ab_05 .tit_box2 {
	padding-top: 0;
	padding-bottom: 50px
}

.n_ab_05 ul {}

.n_ab_05 ul li {}

.n_ab_05 ul li a {
	display: block;
	background-color: #fff;
}

.n_ab_05 ul li .pic {}

.n_ab_05 ul li .pic img {}

.n_ab_05 ul li .info {
	padding: 0.16rem;
	line-height: 1.3;
	text-align: center;
}

.n_ab_05 ul li:hover .tit {
	color: var(--theme-color);
}

.n_ab_05 ul li .tit {
	text-transform: capitalize
}

.com-swiper-page.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 0;
	left: 50%;
	margin: 0 auto;
	margin-left: -150px;
}

.com-swiper-page.swiper-pagination .swiper-pagination-bullet {
	background-color: #949494;
	width: 8px;
	height: 8px;
	border-radius: 4px;
	opacity: 1;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.com-swiper-page.swiper-pagination .swiper-pagination-bullet-active {
	width: 30px;
	height: 8px;
	background-color: var(--theme-color);
}

/* 工厂环境 e */


/* page_ecology_index_partners */

.page_ecology_index_partners .list {
	margin: -10px;
	padding-bottom: 100px;
}

.page_ecology_index_partners .list .item_wrap {
	width: 19.5%;
	padding: 10px;
}

.page_ecology_index_partners .list .item {
	background: #fff;
	padding: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .08);
	border-radius: 10px;
}

.page_ecology_index_partners .list .item .img {
	display: flex;
	justify-content: center;
	align-items: center;
}

.page_ecology_index_partners .list .item_wrap .img img {
	overflow: hidden;
	transition: all .3s;
}

.page_ecology_index_partners .list .item_wrap:hover .img img {
	transform: scale(1.1);
}

/* page_become_form */

.page_become_form {
	width: 660px;
	margin: auto;
	padding-bottom: 110px;
}

.page_become_form form {
	margin: 0 -20px;
}

.page_become_form .input {
	width: 50%;
	padding: 0 20px 20px;
}

.page_become_form .input.input_show {
	display: none;
}

.page_become_form .input h4 {
	font-size: 16px;
	color: #666;
	margin-bottom: 3px;
	text-align: left;
}

.page_become_form .input h4 i {
	color: var(--theme-color);
}

.page_become_form .input input,
.page_become_form .input select,
.page_become_form .input textarea {
	width: 100%;
	height: 50px;
	padding: 10px;
	line-height: 28px;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 0 10px;
	outline: none;
	font-size: 16px;
}

.page_become_form .input input::placeholder,
.page_become_form .input textarea::placeholder {
	font-size: 13px;
	color: #bbb;
}

.page_become_form .input.yzm{
    width:80%;
}

.page_become_form .input input.checkcode{
    display: inline-block;
    margin-right: 1vw;
    width: 70%;
}

.page_become_form .input.yzm img{
    display: inline-block;
}

.page_become_form .input select {
	font-size: 13px;
	color: #bbb;
}

.page_become_form .input select option {
	padding: 5px 10px;
	font-size: 16px;
	color: #333;
}

.page_become_form .input select.cur {
	color: #333;
	font-size: 16px;
}

.page_become_form .input textarea {
	height: 120px;
}

.page_become_form .input.input100 {
	width: 100%;
}

.page_become_form .txt_btn {
	padding: 10px 20px 0;
	width: 100%;
}

.page_become_form .txt_btn .txt {
	font-size: 13px;
	color: #666;
	flex: 1;
	display: block;
	text-align: left;
}

.page_become_form .txt_btn .button button {
	width: 140px;
	height: 45px;
	background: var(--theme-color);
	border-radius: 100px;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-family: 'RobotoBold';
	text-transform: uppercase;
	font-size: 16px;
	cursor: pointer;
	transition: all .4s;
}

.page_become_form .txt_btn .button button:hover {
	background: #333;
}

/* page_ecology_index_menu */

.page_ecology_index_menu {
	margin: -35px;
	padding-bottom: 100px;
}

.page_ecology_index_menu .item {

	width: 33.333%;
	padding: 35px;
}

.page_ecology_index_menu .item a {
	background: #f7f7f7;
	border-radius: 10px;
	padding: 55px;
	display: block;
	text-align: center;
	height: 100%;
	transition: all .4s;
}

.page_ecology_index_menu .item .item_con {
	padding-top: 20px;
}

.page_ecology_index_menu .item .item_con .tit {
	font-size: 36px;
	text-transform: capitalize;
	font-family: 'RobotoBold';
}

.page_ecology_index_menu .item .item_con .desc {
	margin-top: 5px;
}

.page_ecology_index_menu .item .item_con .btn {
	width: 140px;
	height: 40px;
	border-radius: 100px;
	border: 1px solid var(--theme-color);
	font-size: 14px;
	margin: 40px auto 0;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'RobotoBold';
	color: var(--theme-color);
	transition: all .4s;
}

.page_ecology_index_menu .item a:hover {
	box-shadow: 0 0 15px rgba(0, 0, 0, .08);
}

.page_ecology_index_menu .item a:hover .item_con .btn {
	background: var(--theme-color);
	color: #fff;
}

/* page_ecology_list_advantage */

.page_ecology_list_advantage .item {
	width: 25%;
	padding: 40px 60px 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.page_ecology_list_advantage .item .item_con {
	padding-top: 30px;
}

.page_ecology_list_advantage .item .item_con .tit {
	font-size: 20px;
	color: var(--theme-color);
}

.page_ecology_list_advantage .item .item_con .desc {
	margin-top: 6px;
}

.page_ecology_list {
	padding: 100px 0;
}

.page_ecology_list_advantage .item:hover {
	background: #f7f7f7;
}

.page_ecology_list .list {
	margin: -13px;
}

.page_ecology_list .list a {
	width: 20%;
	display: block;
	padding: 13px;
}

.page_ecology_list .list .item {
	padding: 30px 50px;
	background: #fff;
	border-radius: 10px;
	border: 1px solid #fff;
	transition: all .4s;
}

.page_ecology_list .list .item .img {
	display: flex;
	justify-content: center;
	align-items: center;
}

.page_ecology_list .list .item .con h4 {
	margin-top: 20px;
	text-align: center;
}

.page_ecology_list .list .item:hover .con h4 {
	color: var(--theme-color);
}

.page_ecology_list .list .item:hover {
	border-color: var(--theme-color);
}

/* public_download */

.public_download .page_support_download_list {
	padding-bottom: 40px;
}

.public_download .page_support_download_list .list_item {
	padding-top: 0;
}

.public_download .page_support_download_list .list_item .list_wrap {
	display: block;
	padding-top: 0;
}

.public_download .page_support_download_list .list_item .list {
	padding-top: 0;
}

/* public_faq */

.public_faq {
	padding-bottom: 80px;
}

.public_faq .page_support_faq_list .list {
	padding-top: 0;
}



.page_products_public_more {
	display: inline-block;
	height: 40px;
	background: var(--theme-color);
	margin: 40px 0 0;
	padding: 0 20px;
	line-height: 40px;
	color: #fff;
	transition: all .4s;
	border-radius: 100px;
	text-transform: uppercase;
	font-size: 14px;
}

.page_products_public_more:hover {
	background: #333;
}




/* page_public_rml_series_retrieve */

.page_public_rml_series_retrieve {
	position: relative;
}

.page_public_rml_series_retrieve .j_bg {
	position: relative;
	z-index: 1;
}

.page_public_rml_series_retrieve .j_bg1 {
	background: #999;
	height: 500px;
}

.page_public_rml_series_retrieve .j_bg:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: rgba(0, 0, 0, .2);
	position: absolute;
	left: 0;
	top: 0;
}

.page_public_rml_series_retrieve .j_bg img {
	width: 100%;
}

.page_public_rml_series_retrieve .j_con {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #fff;
	z-index: 3;
}

.page_public_rml_series_retrieve .j_con .txt {
	font-size: 24px;
}

.page_public_rml_series_retrieve .j_con .tit {
	font-size: 54px;
	font-family: 'RobotoMedium';
	margin: 20px 0 50px;
}

.page_public_rml_series_retrieve .j_con .btn {
	width: 150px;
	height: 44px;
	background: var(--theme-color);
	color: #fff;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	text-transform: uppercase;
	transition: all .4s;
}

.page_public_rml_series_retrieve .j_con .btn:hover {
	opacity: .7;
}

/* page_about1 */

.page_about_top {
	position: fixed;
	left: 0;
	top: 100px;
	background: #fff;
	width: 100%;
	z-index: 334;
	border-top: 1px solid #e7e7e7;
	height: 75px;
}

.page_about_top_con {
	height: 75px;
}

.page_about_top_con .tit {
	font-size: 24px;
	font-family: 'RobotoMedium';
	flex: 1;
}

.page_about_top_con .menu .item {
	margin-left: 50px;
	cursor: pointer;
}

.page_about_top_con .menu .item.cur {
	color: var(--theme-color);
}


/* page_about1_wrap */

.page_about1_wrap {
	background: #f7f7f7;
	position: relative;
	padding-top: 100px;
	height: 940px;
}

.page_about1_img {
	position: absolute;
	left: 0;
	top: 100px;
	width: 50%;
	height: 840px;
}

.page_about1_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-top-right-radius: 100px;
}

.page_about1 {
	padding-left: 50%;
	position: relative;
}

.page_about1:after {
	content: '';
	display: block;
	background: url("../images/logo_bg.png") no-repeat center;
	height: 160px;
	background-size: auto 100%;
	position: absolute;
	left: 51%;
	bottom: -40%;
	width: 850px;
}

.page_about1_con {
	padding-left: 100px;
}

.page_about1_con .tit {
	font-size: 54px;
	font-family: 'RobotoMedium';
	padding-bottom: 20px;
}

.page_about1_con .con {
	height: 435px;
	font-size: 18px;
	overflow-y: scroll;
	padding-right: 30px;
}

/* page_about2_wrap */

.page_about2_wrap {
	background: url("../images/history_bg.png") no-repeat left center;
	padding-top: 100px;
}

.page_about2_con {
	flex: 1;
	min-width: 0;
	padding: 0 85px 0 110px;
}

.page_about2_con .tit_box2 {
	padding: 0 0 20px;
}

.page_about2_con .bd_wrap {
	background: #fff;
	width: 980px;
	box-shadow: 0 -10px 15px rgba(0, 0, 0, .1);
	margin-top: 110px;
	padding: 80px 80px 40px;
	position: relative;
	height: 400px;
	border-radius: 10px;
}

.page_about2_con .bd .arrow {
	display: flex;
	position: absolute;
	left: 80px;
	bottom: 40px;
	width: calc(100% - 160px);
}

.page_about2_con .bd .swiper-button-next,
.page_about2_con .bd .swiper-button-prev {
	border: 1px solid #bfbfbf;
	height: 45px;
	width: 45px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	opacity: 1;
	color: #666;
	margin-right: 20px;
	transition: all .3s;
	bottom: 25px;
	top: auto;
	background: #fff;
}

.page_about2_con .bd .swiper-button-prev {
	left: -10px;
}

.page_about2_con .bd .swiper-button-next {
	right: -20px;
}

.page_about2_con .bd .swiper-button-next:after,
.page_about2_con .bd .swiper-button-prev:after {
	font-size: 18px;
	font-weight: bold;
}

.page_about2_con .bd .swiper-button-next:hover,
.page_about2_con .bd .swiper-button-prev:hover {
	background: var(--theme-color);
	color: #fff;
	border-color: var(--theme-color);
}

.page_about2_con .bd .bd_tit {
	font-size: 108px;
	font-family: 'Arial';
	font-weight: bold;
	line-height: 1;
	position: absolute;
	right: 0;
	top: 0;
	margin-top: -130px;
	z-index: 100;
}

.page_about2_con .bd .swiper-slide {
	visibility: hidden;
	opacity: 0;
}

.page_about2_con .bd .swiper-slide-active {
	visibility: visible;
	opacity: 1;
}

.page_about2_con .bd .item {
	margin-bottom: 5px;
}

.page_about2_con .bd .item .sub_tit {
	font-size: 18px;
	width: 120px;
	font-family: 'RobotoBold';
	line-height: 1.3;
}

.page_about2_con .bd .item .tit {
	font-size: 18px;
	flex: 1;
	min-width: 0;
	line-height: 1.3;
}

.page_about2_con .bd_wrap .ft {
	position: absolute;
	bottom: 80px;
	left: 80px;
	width: calc(100% - 160px);
	padding: 0 0 20px 80px;
}

.page_about2_con .bd_wrap .ft:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 6px;
	display: block;
	width: 100%;
	background: #ddd;
	height: 1px;
}

.page_about2_con .bd_wrap .ft .tit {
	cursor: pointer;
}

.page_about2_con .bd_wrap .ft .tit:after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid #ccc;
	position: absolute;
	left: 12px;
	bottom: -20px;
	background: #fff;
}

.page_about2_con .bd_wrap .ft .swiper-slide-thumb-active .tit {
	color: var(--theme-color);
}

.page_about2_con .bd_wrap .ft .swiper-slide-thumb-active .tit:after {
	border-color: var(--theme-color);
}

.page_about2_img {
	width: 41.5%;
}

.page_about2_img img {
	border-top-left-radius: 100px;
}


/* page_about3_wrap */

.page_about3_wrap {
	background: #f7f7f7;
	padding-bottom: 80px;
	padding-top: 50px;
}

.page_about3 {
	position: relative;
}

.page_about3_con {
	width: 31%;
	padding-right: 80px;
	position: relative;
	z-index: 9;
}

.page_about3_con:after {
	position: absolute;
	width: 2000px;
	background: #f7f7f7;
	content: '';
	height: 100%;
	right: 0;
	top: 0;
	z-index: -1;
}

.page_about3_con .tit_box2 {
	padding-bottom: 10px;
}

.page_about3_con .desc p {
	margin-bottom: 10px;
}

.page_about3_list {
	flex: 1;
	min-width: 0;
	padding-top: 130px;
}

.page_about3_list .item .con h4 {
	font-size: 18px;
	margin-top: 10px;
}

.page_about3 .arrow {
	display: flex;
	position: absolute;
	left: 0;
	bottom: 100px;
}

.page_about3 .swiper-button-next,
.page_about3 .swiper-button-prev {
	position: static;
	border: 1px solid #bfbfbf;
	height: 45px;
	width: 45px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	opacity: 1;
	color: #666;
	margin-right: 10px;
	transition: all .3s;
}

.page_about3 .swiper-button-next:after,
.page_about3 .swiper-button-prev:after {
	font-size: 18px;
	font-weight: bold;
}

.page_about3 .swiper-button-next:hover,
.page_about3 .swiper-button-prev:hover {
	background: var(--theme-color);
	color: #fff;
	border-color: var(--theme-color);
}

.page_about4_wrap {
	background: #1c2835;
	padding: 100px 0;
}

.page_about4 .tit_box2 {
	padding: 0;
}

.page_about4 .tit_box2 .tit h4 {
	color: #fff;
}

.page_about4_list {
	gap: 70px;
	padding-top: 40px;
}

.page_about4_list .item {
	flex: 1;
	cursor: pointer;
}

.page_about4_list .item .item_img {
	position: relative;
	width: 146px;
	transition: all .4s;
}

.page_about4_list .item .item_img .img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page_about4_list .item .item_con {
	color: #fff;
	padding-top: 30px;
}

.page_about4_list .item .item_con .tit {
	font-size: 36px;
	font-family: 'RobotoMedium';
}

.page_about4_list .item .item_con .desc {
	font-size: 20px;
	text-transform: capitalize;
}

.page_about4_list .item:hover .item_img {
	transform: rotate(360deg);
}

.page_top_public_desc {
	padding: 0px 10% 60px;
	font-size: 22px;
	/* text-align: center; */
}

/* page_application_desc */


.page_application_list .list {
	margin: -12px;
	padding-bottom: 50px;
}

.page_application_list .list a {
	width: 20%;
	padding: 12px;
	display: block;
}

.page_application_list .list .item {
	background: #0055a3;
	border-radius: 5px;
	padding: 35px 35px 70px;
	position: relative;
	overflow: hidden;
}

.page_application_list .list .item .item_con .tit {
	font-size: 20px;
	margin-top: 35px;
	line-height: 1.3;
	height: 52px;
	color: #fff;
	text-transform: uppercase
}

.page_application_list .list .item .item_con .desc {
	font-size: 14px;
	color: #666;
	height: 68px;
}

.page_application_list .list .item .item_con .ico {
	width: 90px;
	height: 90px;
	position: absolute;
	right: -45px;
	bottom: -45px;
	background: var(--theme-color);
	border-radius: 50%;
	transition: all .4s;
}

.page_application_list .list .item .item_con .ico i {
	width: 45px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	padding: 4px 0 0 4px;
	color: #fff;
}

.page_application_list .list .item:hover .item_con .ico {
	background: #cccccc;
}

/* page_application_show */

.page_application_show {
	padding: 75px 0;
}

.page_application_show .j_tit .ico {
	width: 90px;
	height: 90px;
	background: var(--theme-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page_application_show .j_tit .ico img {
	/* filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(5deg) brightness(180%) contrast(101%); */
}

.page_application_show .j_tit h1 {
	font-size: 54px;
	font-family: 'RobotoMedium';
	font-weight: normal;
	margin-left: 40px;
	line-height: 1.2;
}

.page_application_show .j_con {
	font-size: 18px;
	padding-top: 25px;
}

.page_application_show .j_con iframe {
	width: 80% !important;
	margin: auto;
	height: 560px !important;
}

.page_application_show .j_btn {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.page_application_show .j_btn a {
	width: 150px;
	height: 40px;
	font-family: 'RobotoBold';
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--theme-color);
	color: #fff;
	font-size: 14px;
	border-radius: 100px;
	transition: all .4s;
}

.page_application_show .j_btn a:hover {
	background: #333;
}


/* public_recommended_products */

.public_recommended_products {
	padding: 30px 0 50px;
}

.public_recommended_products_list .list {
	gap: 13px;
	padding-top: 10px;
}

.public_recommended_products_list .list .item {
	display: block;
	width: 25%;
	background: #fff;
	padding: 30px 40px 50px;
	transition: all .4s;
	border-radius: 10px;
}

.public_recommended_products_list .list .item h4 {
	font-size: 20px;
	font-family: 'RobotoMedium';
	margin-top: 20px;
	text-align: center;
	transition: all .4s;
}

.public_recommended_products_list .list .item:hover {
	box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
}

.public_recommended_products_list .list .item:hover h4 {
	color: var(--theme-color);
}

/* public_cases_swiper */

.public_cases_swiper {
	padding-bottom: 100px;
	position: relative;
}

.public_cases_swiper .item {
	display: block;
}

.public_cases_swiper .item .item_img {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.public_cases_swiper .item .item_img .img img {
	width: 100%;
}

.public_cases_swiper .item .item_img .con {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 80px 40px 30px;
	background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
	color: #fff;
}

.public_cases_swiper .item .item_img .con h4 {
	font-size: 24px;
	margin-bottom: 5px;
}

.public_cases_swiper .item .item_img .con p {
	font-family: 'RobotoLight';
}

.public_cases_swiper .item .item_btn {
	justify-content: flex-end;
	margin-top: 32px;
}

.public_cases_swiper .item .item_btn .btn {
	width: 140px;
	height: 40px;
	background: #333;
	border-radius: 100px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .4s;
}

.public_cases_swiper .item .item_btn .btn:hover {
	background: var(--theme-color);
}

.public_cases_swiper .arrow {
	display: flex;
	position: absolute;
	right: 0;
	top: -90px;
	bottom: 100px;
}

.public_cases_swiper .swiper-button-next,
.public_cases_swiper .swiper-button-prev {
	position: static;
	height: 45px;
	width: 45px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	opacity: 1;
	color: var(--theme-color);
	margin-right: 10px;
	transition: all .3s;
	background: #fff;
}

.public_cases_swiper .swiper-button-next:after,
.public_cases_swiper .swiper-button-prev:after {
	font-size: 18px;
	font-weight: bold;
}

.public_cases_swiper .swiper-button-next:hover,
.public_cases_swiper .swiper-button-prev:hover {
	background: var(--theme-color);
	color: #fff;
	border-color: var(--theme-color);
}

/* become */
.become {
	position: relative;
	overflow: hidden;
}

.become .become_top {}

.become .become_top .tit_box2 .tit h4 {
	color: var(--theme-color);
	text-transform: uppercase;
}

.become .become_bottom {}

.become .become_bottom .become_b_l {
	float: left;
}

.become .become_bottom .become_b_r {
	position: absolute;
	right: 11%;
	top: 30%;
}

.become .become_bottom .become_b_r .becom_ico {
	width: 100%;
}

.become .become_bottom .become_b_r .becom_ico img {
	max-width: 100%;
}

/* product_detail */


.jy_pin_wrap {
	background: #f5f5f5;
	padding: 80px 0 0;
}

.pd_detail_hd {
	padding-top: 20px;
}

.pd_detail_hd .pics {
	width: 46.875%;
}

.pd_detail_hd .pics .mySwiper2 {
	width: 100%;
	height: 490px;
	margin: 0;
	overflow: hidden;
	border-radius: 15px;
	position: relative;
}

.pd_detail_hd .pics .mySwiper2 .swiper-pagination-bullet-active {
	background: var(--theme-color);
}

.pd_detail_hd .pics .mySwiper2 .img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #fff;
}

.pd_detail_hd .pics .mySwiper2 .img img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.pd_detail_hd .pics .mySwiper1_w {
	position: relative;
	padding-top: 10px;
}

.pd_detail_hd .pics .mySwiper {
	overflow: hidden;
}

.pd_detail_hd .pics .mySwiper .swiper-slide {
	width: 25%;
	height: 100%;
}

.pd_detail_hd .pics .mySwiper .swiper-slide .img {
	background: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid #fff;
	overflow: hidden;
	height: 75px;
}

.pd_detail_hd .pics .mySwiper .swiper-slide.swiper-slide-thumb-active .img {
	border: 1px solid var(--theme-color);

}

.pd_detail_hd .pics .mySwiper .swiper-slide .img img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.pd_detail_hd .pics .mySwiper1_w .swiper-button-next,
.pd_detail_hd .pics .mySwiper1_w .swiper-button-prev {
	z-index: 99;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--theme-color);
	opacity: 1;
	color: var(--theme-color);
	display: flex;
	justify-content: center;
	align-items: center;
}

.pd_detail_hd .pics .mySwiper1_w .swiper-button-next:after,
.pd_detail_hd .pics .mySwiper1_w .swiper-button-prev:after {
	font-size: 16px;
	font-weight: bold;
}

.pd_detail_hd .pics .mySwiper1_w .swiper-button-prev {
	left: 0;
}

.pd_detail_hd .pics .mySwiper1_w .swiper-button-next {
	right: 0;
}

.pd_detail_hd .pics .mySwiper1_w .swiper-button-next:hover,
.pd_detail_hd .pics .mySwiper1_w .swiper-button-prev:hover {
	background: var(--theme-color);
	color: #fff;
}


.pd_detail_hd .infos {
	flex: 1;
	padding: 10px 0 0 5%;
	min-width: 0;
}

.pd_detail_hd .infos h1 {
	font-size: 42px;
	line-height: 1.2;
	font-weight: normal;
	font-family: 'RobotoMedium';
}

.pd_detail_hd .infos h5 {
	font-family: 'RobotoMedium';
	margin-top: 20px;
}

.pd_detail_hd .infos .desc {
	color: #666;
	margin: 10px 0 20px;
	font-family: 'RobotoLight';
}

.pd_detail_hd .infos .desc span {
	padding-left: 5px;
	font-family: 'HelveticaNeueBold';
}

.pd_detail_hd .infos .info p {
	margin-top: 10px;
}

.pd_detail_hd .infos .params p {
	line-height: 1.9;
}


.pd_detail_hd .infos .btns {
	margin-top: 40px;
}

.pd_detail_hd .infos .btns .btn {
	align-items: center;
	text-transform: capitalize;
	margin-right: 20px;
	font-family: 'RobotoBold';
	line-height: 1;
	display: flex;
	background: var(--subtheme-color);
	color: #fff;
	height: 45px;
	padding: 0 30px;
	border-radius: 100px;
	cursor: pointer;
}

.pd_detail_hd .infos .btns .btn i {
	font-size: 20px;
	line-height: 1;
	vertical-align: middle;
	margin-right: 6px;
	display: inline-block;
}

.pd_detail_hd .infos .btns .btn.btn2 {
	background: var(--theme-color);
}

.pd_detail_hd .infos .btns .btn:hover {
	opacity: .8;
}


.pd_detail_intro {
	background: #fff;
	padding-bottom: 80px;
}

.pd_detail_intro_tit {
	padding: 15px 0;
	background: var(--subtheme-color);
	text-align: center;
	margin-top: 80px;
	position: -webkit-sticky;
	position: sticky;
	top: 80px;
	z-index: 50;
}

.pd_detail_intro_tit .item {
	display: inline-block;
	height: 40px;
	line-height: 40px;
	padding: 0 30px;
	border-radius: 100px;
	background: var(--subtheme-color);
	color: #fff;
	font-size: 18px;
	font-family: 'RobotoMedium';
	cursor: pointer;
}

.pd_detail_intro_tit .item.cur {
	background: var(--theme-color);
}

.pd_detail_intro_desc .desc {
	font-size: 18px;
}

.pd_detail_intro_technical_parameters .desc {
	width: 900px;
	margin: auto;
}

.pd_detail_intro_technical_parameters .desc tr {
	height: 40px;
}

.pd_detail_intro_technical_parameters .desc tr td {
	line-height: 40px;
	padding: 0 20px 0 50px;
}

.pd_detail_intro_technical_parameters .desc tr td:first-child {
	font-family: 'RobotoMedium';
}

.pd_detail_intro_technical_parameters .desc tr:nth-child(2n-1) {
	background: #ccc;
}

.pd_detail_intro_technical_parameters {
	padding-bottom: 60px;
}

/* product_detail */

.j_pd_detail {
	background: #e4e7ea;
	padding: 80px 0 50px;
}

.j_pd_detail_con {
	padding-top: 60px;
}

.j_pd_detail_hd_img {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}


.j_pd_detail_hd .infos {
	flex: 1;
	padding: 0 0 0 5%;
	min-width: 0;
}

.j_pd_detail_hd .infos h1 {
	font-size: 48px;
	line-height: 1.2;
	color: var(--theme-color);
	font-family: 'RobotoBold';
}

.j_pd_detail_hd .infos .desc {
	font-size: 18px;
	margin: 35px 0 50px;
}

.j_pd_detail_hd .infos .desc p {
	padding-left: 25px;
	position: relative;
	margin-bottom: 6px;
}

.j_pd_detail_hd .infos .desc p:before {
	content: '';
	display: block;
	width: 13px;
	height: 8px;
	background: url("../images/arrow.png") no-repeat;
	position: absolute;
	left: 0;
	top: 10px;
}

.j_pd_detail_hd .infos .list {
	display: flex;
	margin: 0 -16px;
}

.j_pd_detail_hd .infos .list .item {
	padding: 0 16px;
}

.j_pd_detail_hd .infos .list .item .img {
	border-radius: 50%;
	border: 2px solid var(--theme-color);
	overflow: hidden;
}


.j_pd_detail_hd .infos .btns {
	margin-top: 100px;
}

.j_pd_detail_hd .infos .btns .btn {
	display: flex;
	align-items: center;
	height: 45px;
	width: 240px;
	background: var(--subtheme-color);
	color: #fff;
	justify-content: center;
	text-transform: capitalize;
	border-radius: 100px;
	transition: all .4s;
	font-family: 'RobotoBold';
}

.j_pd_detail_hd .infos .btns .btn i {
	color: #fff;
	font-size: 20px;
	margin-right: 8px;
	transition: all .3s;
}

.j_pd_detail_hd .infos .btns .btn:hover {
	background: var(--theme-color);
}


/* pdd_tit_box */

.pdd_tit_box {
	text-align: center;
	padding: 60px 0 30px;
}

.pdd_tit_box .tit {
	font-size: 45px;
	font-family: 'RobotoMedium';
	text-transform: uppercase;
	line-height: 1.2;
}

.pdd_tit_box .desc {
	font-size: 18px;
}

.j_pd_detail_introduction .desc {
	font-size: 18px;
}

.j_pd_detail_introduction .desc p {
	margin-bottom: 6px;
}

.j_pd_detail_introduction .list {
	position: relative;
	overflow: hidden;
	padding: 80px 0 100px;
}

.j_pd_detail_introduction .list .item {
	border-radius: 15px;
	overflow: hidden;
}

.j_pd_detail_introduction .list .item .img img {
	width: 100%;
}

.j_pd_detail_introduction .list .arrow {
	display: flex;
	justify-content: center;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}

.j_pd_detail_introduction .list .swiper-button-next,
.j_pd_detail_introduction .list .swiper-button-prev {
	position: initial;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	background: #bbb;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	margin-top: 0;
	margin: 0 10px;
}

.j_pd_detail_introduction .list .swiper-button-next:after,
.j_pd_detail_introduction .list .swiper-button-prev:after {
	font-size: 18px;
	font-weight: bold;
}

.j_pd_detail_introduction .list .swiper-button-next:hover,
.j_pd_detail_introduction .list .swiper-button-prev:hover {
	background: var(--theme-color);
}


/* page_support_list */

.page_support {
	padding-top: 60px;
}

.page_support_list {
	flex: 1;
	min-width: 0;
	padding-right: 60px;
}

.page_support_list .page_news_list .list {
	margin: 0 -12px;
}

.page_support_list .page_news_list .list a {
	padding: 0 12px;
}

.page_support_list .page_news_list .list .item {
	background: transparent;
}

.page_support_list .page_news_list .list .item .img {
	border-radius: 10px;
}

.page_support_list .page_news_list .list .item .con {
	padding: 20px 0 30px;
}

.page_support_list .page_news_list .list .item .time {
	margin-top: 10px;
}

/* page_support_download_list */

.page_support_download_list {
	padding-bottom: 80px;
}

.page_support_download_list .list_item {
	padding: 50px 0;
	border-bottom: 1px solid #666;
}

.page_support_download_list .list_item .menu {
	line-height: 1;
	transition: all .4s;
	cursor: pointer;
}

.page_support_download_list .list_item .menu h4 {
	font-size: 54px;
	font-family: 'RobotoMedium';
	flex: 1;
	line-height: 1;
}

.page_support_download_list .list_item .menu i {
	font-size: 36px;
	transform: rotate(45deg);
	transition: all .4s;
}

.page_support_download_list .list_item .menu:hover {
	color: var(--theme-color);
}

.page_support_download_list .list_item .menu.cur i {
	transform: rotate(0deg);
}

.page_support_download_list .list_item .list_wrap {
	padding-top: 20px;
	display: block;
}

.page_support_download_list .list_item .list {
	margin: -12px;
	padding-top: 20px;
}

.page_support_download_list .list_item .list a {
	width: 33.333%;
	padding: 12px;
}

.page_support_download_list .list_item .list .item {
	background: #fff;
	padding: 30px 40px 20px;
	transition: all .4s;
	border-radius: 10px;
}

.page_support_download_list .list_item .list .item h4 {
	font-size: 24px;
	line-height: 1.3;
	height: 94px;
}

.page_support_download_list .list_item .list .item .name_btn {
	margin-top: 30px;
}

.page_support_download_list .list_item .list .item .name_btn .name {
	flex: 1;
	font-size: 14px;
	text-transform: uppercase;
}

.page_support_download_list .list_item .list .item .name_btn i {
	font-size: 30px;
}

.page_support_download_list .list_item .list .item:hover {
	background: var(--theme-color);
	color: #fff;
}


/* page_support_cases_list */

.page_support_cases_list {
	padding-bottom: 100px;
}

.page_support_cases_list .list {
	margin: -12px;
}

.page_support_cases_list .list a {
	width: 33.333%;
	padding: 12px;
}

.page_support_cases_list .list .item .item_img {
	border-radius: 10px;
	overflow: hidden;
}

.page_support_cases_list .list .item .item_img img {
	max-width: 145%
}

.page_support_cases_list .list .item .item_con {
	padding: 20px 0;
}

.page_support_cases_list .list .item .item_con .time {
	color: #666;
	font-size: 14px;
	line-height: 1;
}

.page_support_cases_list .list .item .item_con .tit {
	font-size: 20px;
	line-height: 1.4;
	margin-top: 10px;
	height: 56px;
}

.page_support_cases_list .list .item .item_con .tag {
	height: 32px;
	border: 1px solid #666;
	padding: 0 15px;
	display: inline-block;
	border-radius: 100px;
	margin: 10px 10px 0 0;
	font-size: 14px;
	transition: all .4s;
	line-height: 30px;
}

.page_support_cases_list .list .item:hover .item_con .tit {
	color: var(--theme-color);
}

.page_support_cases_list .list .item .item_con .tag:hover {
	background: var(--theme-color);
	border-color: var(--theme-color);
	color: #fff;
}


/* page_support_faq */

.page_support_faq {
	padding: 70px 0 100px;
}

.page_support_faq_menu {
	justify-content: center;

	border-bottom: 1px solid #666;
}

.page_support_faq_menu .item {
	font-size: 36px;
	margin: 0 36px;
	padding-bottom: 20px;
	cursor: pointer;
	font-family: 'RobotoMedium';
	position: relative;
}

.page_support_faq_menu .item:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	transform: scale(0);
	width: 100%;
	height: 5px;
	background: var(--theme-color);
	border-radius: 100px;
	transition: all .4s;
}

.page_support_faq_menu .item.cur:after,
.page_support_faq_menu .item:hover:after {
	transform: scale(1);
}

.page_support_faq_list .list {
	display: none;
	padding-top: 15px;
}

.page_support_faq_list .list:first-child {
	display: block;
}

.page_support_faq_list .list .item {
	padding: 25px 0;
	border-bottom: 1px solid #ddd;
}

.page_support_faq_list .list .item .tit {
	cursor: pointer;
	transition: all .4s;
}

.page_support_faq_list .list .item .tit h4 {
	font-size: 24px;
	flex: 1;
	min-width: 0;
	line-height: 1;
	padding-right: 20px;
}

.page_support_faq_list .list .item .tit i {
	font-size: 30px;
	line-height: 1;
	transform: rotate(45deg);
	transition: all .4s;
}

.page_support_faq_list .list .item .desc {
	padding-top: 20px;
	font-size: 18px;
	display: none;
}

.page_support_faq_list .list .item .tit.cur i {
	transform: rotate(0deg);
}

.page_support_faq_list .list .item:hover .tit {
	color: var(--theme-color);
}

/* page_news */

.page_latest_news {
	padding-bottom: 60px;
}

.page_latest_news .item {
	gap: 20px;
}

.page_latest_news .item_con {
	background: #fff;
	border-radius: 20px;
	padding: 50px;
	width: 36%;
}

.page_latest_news .item_con .time {
	font-size: 14px;
	color: #999;
}

.page_latest_news .item_con .time span {
	color: var(--theme-color);
}

.page_latest_news .item_con .tit {
	font-size: 24px;
	line-height: 1.5;
	margin: 20px 0 30px;
	transition: all .4s;
}

.page_latest_news .item_con .desc {
	color: #666;
	line-height: 1.8;
}

.page_latest_news .item_img {
	flex: 1;
	border-radius: 20px;
	overflow: hidden;
}

.page_latest_news .item_img img {
	width: 100%;
}

.page_latest_news .item:hover .item_con .tit {
	color: var(--theme-color);
}

/* page_menu_public */

.page_menu_public {
	margin: 0 0 40px;
}

.page_menu_public.nav_top {
	margin-top: 40px;
}

.page_menu_public .item {
	margin-right: 20px;
}

.page_menu_public .item a {
	display: block;
	height: 36px;
	line-height: 34px;
	border: 1px solid #666;
	padding: 0 20px;
	border-radius: 100px;
	font-family: 'RobotoMedium';
	text-transform: capitalize;
}

.page_menu_public .item a:hover {
	border-color: var(--theme-color);
	color: var(--theme-color);
}

.page_menu_public .item.all a,
.page_menu_public .item.cur a {
	background: var(--theme-color);
	border-color: var(--theme-color);
	color: #fff;
}

.page_news_tit .menu {
	display: flex;
	align-items: center;
}

.page_news_tit .menu a {
	font-size: 18px;
	display: block;
	font-family: 'MontserratLight';
	margin-left: 100px;
	position: relative;
}

.page_news_tit .menu a:after {
	content: '';
	width: 0;
	height: 2px;
	background: var(--theme-color);
	display: block;
	position: absolute;
	left: 0;
	bottom: -17px;
	transition: all .3s;
}

.page_news_tit .menu a.cur,
.page_news_tit .menu a:hover {
	color: var(--theme-color);
}

.page_news_tit .menu a:hover:after,
.page_news_tit .menu a.cur:after {
	width: 100%;
}

.page_news_list {
	padding-bottom: 100px;
}

.page_news_list .list {
	margin: -20px -20px 0;
}

.page_news_list .list a {
	padding: 20px;
	width: 33.33%;
	display: block;
}

.page_news_list .list .item {
	position: relative;
	height: 100%;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.page_news_list .list .item .img {
	overflow: hidden;
	background: #f5f5f5;
}

.page_news_list .list .item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page_video_list .list .item .img {
	position: relative;
}

.page_video_list .list a:hover .item .img::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .65);
	z-index: 1;
}

.page_video_list .list a:hover .item .img::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 71px;
	height: 71px;
	background: url(../images/bf.png) no-repeat center 0;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.page_news_list .list .item .con {
	padding: 30px 30px 40px;
}

.page_news_list .list .item .con span {
	color: #777;
	font-size: 14px;
}

.page_news_list .list .item .con h4 {
	font-size: 20px;
	line-height: 1.3;
	transition: all .3s;
	height: 78px;
}

.page_video_list .list .item .con h4 {
	text-align: center;
	height: auto;
}

.page_news_list .list .item .con p {
	font-size: 16px;
	color: #666;
	margin-top: 5px;
}

.page_news_list .list .item .time {
	margin-top: 50px;
	color: #999;
	font-size: 14px;
}

.page_news_list .list .item .time span {
	color: var(--theme-color);
}

.page_news_list .list .item:hover .con h4 {
	color: var(--theme-color);
}

.page_news_list .list .item:hover:after {
	width: calc(100% - 50px);
}



.no_banner_pos {
	padding: 20px 0 0;
}

.no_banner_pos a:last-child {
	color: var(--theme-color);
}

/* page_news_detail */


.page_news_detail {
	padding: 140px 0 80px;
}

.page_news_detail_hd {
	flex: 1;
	min-width: 0;
	padding-right: 65px;
}

.page_news_detail_hd .go_back {
	width: 140px;
	height: 50px;
	background: #222;
	color: #fff;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .4s;
}

.page_news_detail_hd .go_back i {
	width: 24px;
	height: 24px;
	background-color: #fff;
	border-radius: 50%;
	transform: rotate(180deg);
	color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	margin-right: 10px;
	transition: all .4s;
}

.page_news_detail_hd .go_back:hover {
	background: var(--theme-color);
}

.page_news_detail_hd .go_back:hover i {
	color: var(--theme-color);
}

.page_news_detail_hd h1 {
	font-size: 36px;
	font-family: 'RobotoMedium';
	line-height: 1.2;
	margin-top: 50px;
	font-weight: normal;
}

.page_news_detail_hd .info {
	margin-top: 50px;
	font-size: 14px;
	color: #999;
}

.page_news_detail_hd .info .time {
	margin-right: 30px;
	display: flex;
	align-items: center;
}

.page_news_detail_hd .info .time i {
	margin-right: 6px;
	font-size: 18px;
}

.page_news_detail_hd .info .tag {
	color: #999;
	border: 1px solid #bbb;
	height: 30px;
	padding: 0 20px;
	border-radius: 100px;
	margin-right: 15px;
	line-height: 28px;
}

.page_news_detail_hd .info .tag:hover {
	background: var(--theme-color);
	border-color: var(--theme-color);
	color: #fff;
}

.page_news_detail_hd .content {
	padding: 45px 0 20px;
	min-height: 20vh;
	font-size: 18px;
}


.page_news_detail_bd {
	width: 300px;
}

.page_news_detail_bd .search {
	margin-bottom: 40px;
}

.page_news_detail_bd .search input {
	height: 48px;
	width: 100%;
	background: #fff;
	outline: none;
	border: none;
	border-radius: 10px;
}

.page_news_detail_bd .search button {
	width: 100%;
	height: 48px;
	background: var(--theme-color);
	color: #fff;
	border-radius: 10px;
	outline: none;
	border: none;
	margin-top: 10px;
	font-family: 'RobotoMedium';
	text-transform: uppercase;
	font-size: 16px;
	transition: all .4s;
	cursor: pointer;
}

.page_news_detail_bd .search button:hover {
	opacity: .7;
}

.page_news_detail_bd .recent_posts .item_img {
	border-radius: 10px;
	overflow: hidden;
}

.page_news_detail_bd .recent_posts .item_img img {
	/* width: 80px; */
	height: 80px;
	object-fit: cover;
}

.page_news_detail_bd .recent_posts {
	padding-bottom: 30px;
}

.page_news_detail_bd .recent_posts a {
	margin-bottom: 20px;
}

.page_news_detail_bd .recent_posts .item_con {
	flex: 1;
	min-width: 0;
	padding-left: 18px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.page_news_detail_bd .recent_posts .item_con .tit {
	font-size: 15px;
	line-height: 1.4;
	transition: all .4s;
}

.page_news_detail_bd .recent_posts .item_con .time {
	font-size: 14px;
	color: #666;
	padding-bottom: 7px;
}

.page_news_detail_bd .recent_posts a:hover .item_con .tit {
	color: var(--theme-color);
}

/* page_contact */


.page_contact {}

.page_contact_hd {
	padding-top: 30px;
}

.page_contact_hd_img {
	flex: 1;
	min-width: 0;
	padding-right: 6%;
}

.page_contact_hd_img .tit_box2 {
	padding-top: 0;
	text-align: left;
}

.page_contact_hd_form {
	width: 47%;
}

.page_contact_hd_form .page_become_form form {
	margin: 0 -10px;
}

.page_contact_hd_form .page_become_form .input {
	padding: 0 10px 20px;
}

/* page_contact_bd */

.page_contact_bd {
	padding-bottom: 80px;
}

.page_contact_bd .list {
	margin: 0 -35px;
	flex-direction: column;
}

.page_contact_bd .item_wrap {
	/* padding: 0 35px; */
	width: auto;
	text-align: left;
}

.page_contact_bd .item {
	background: #f5f5f5;
	padding: 40px;
	border-radius: 5px;
	height: 100%;
}

.page_contact_bd .item h4 {
	font-size: 28px;
	font-family: 'RobotoMedium';
	margin-bottom: 20px;
}

.page_contact_bd .item p {
	padding: 0 0 0 30px;
	position: relative;
	line-height: 1.3;
	margin-top: 30px;
}

.page_contact_bd .item p:before {
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	position: absolute;
	left: 0;
	top: 2px;
}

.page_contact_bd .item p:nth-child(2):before {
	background: url("../images/contact_ico1.png") no-repeat left center;
}

.page_contact_bd .item p:nth-child(3):before {
	background: url("../images/contact_ico2.png") no-repeat left center;
}

.page_contact_bd .item p:nth-child(4):before {
	background: url("../images/WhatsApp.png") no-repeat left center;
}

.page_contact_bd .item p:nth-child(5):before {
	background: url("../images/contact_ico3.png") no-repeat left center;
}

.page_contact_bd .item p:nth-child(6):before {
	background: url("../images/WhatsApp.png") no-repeat left center;
}

.page_contact_ft {
	position: relative;
	/* padding: 5vw 0; */
}

.page_contact_ft .map {
	width: 100%
}

.page_contact_ft .info {
	width: 300px;
	border-radius: 10px;
	background: #fff;
	padding: 20px;
	position: absolute;
	right: 330px;
	top: 80px;
	box-shadow: 0 0 20px rgba(235, 97, 10, .2);
}

.page_contact_ft .info .info_item {
	display: none;
}

.page_contact_ft .info .info_item:first-child {
	display: block;
}

.page_contact_ft .info h4 {
	font-family: 'RobotoMedium';
	font-size: 18px;
	color: var(--theme-color);
	padding-bottom: 5px;
}

.page_contact_ft .info p {
	font-size: 14px;
	margin-top: 5px;
}

.page_contact_ft .marks {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.page_contact_ft .marks .mark {
	position: absolute;
}

.page_contact_ft .marks .mark_style1 {
	width: 24px;
	height: 30px;
	cursor: pointer;
}

.page_contact_ft .marks .mark1 {
	right: 295px;
	top: 210px;
}

.page_contact_ft .marks .cur:after {
	position: absolute;
	left: -3px;
	bottom: 2px;
	background: var(--theme-color);
	border-radius: 50%;
	-webkit-animation: living 3s linear infinite;
	z-index: -1;
	content: '';
	display: block;
	width: 30px;
	height: 30px;
}

.page_contact_ft .marks .mark2 {
	right: 265px;
	top: 250px;
}

.page_contact_ft .marks .mark3 {
	right: 325px;
	top: 305px;
}

.page_contact_ft .marks .mark31 {
	right: 200px;
	top: 290px;
}

.page_contact_ft .marks .mark_style2 {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--theme-color);
	z-index: 1;
}

.page_contact_ft .marks .mark4 {
	left: 252px;
	top: 250px;
}

.page_contact_ft .marks .mark5 {
	left: 820px;
	top: 190px;
}

.page_contact_ft .marks .mark6 {
	left: 830px;
	top: 440px;
}

.page_contact_ft .marks .mark7 {
	left: 480px;
	top: 600px;
}

.page_contact_ft .marks .mark8 {
	right: 250px;
	top: 595px;
}

.page_contact_ft .marks .mark_style2:after {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0;
	background: var(--theme-color);
	border-radius: 50%;
	-webkit-animation: living 3s linear infinite;
	z-index: -1;
	content: '';
	display: block;
	width: 34px;
	height: 34px;
}

@keyframes living {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}

	50% {
		transform: scale(2);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 0.6;
	}
}


.page_contact_btns {
	justify-content: center;
	gap: 80px;
	margin: 70px 0 100px;
}

.page_contact_btns a {
	border: 2px solid var(--theme-color);
	height: 50px;
	border-radius: 100px;
	font-family: 'RobotoBold';
	padding: 0 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--theme-color);
	text-transform: uppercase;
	transition: all .4s;
}

.page_contact_btns a:hover {
	background: var(--theme-color);
	color: #fff;
}

.about_contact {
	padding: 60px;
}

/* page_become_hd */

.page_become_hd {
	padding-top: 20px;
}

.page_become_hd_img {
	width: 45%;
	padding-right: 30px;
}

.page_become_hd_img img {
	border-radius: 10px;
	overflow: hidden;
}

.page_become_hd_con {
	flex: 1;
	border-radius: 10px;
	background: #f7f7f7;
	padding: 70px;
}

.page_become_hd_con .tit {
	font-size: 48px;
}

.page_become_hd_con .desc {
	font-size: 18px;
	padding-top: 10px;
}

.page_contact .page_product_advantage {
	padding-top: 60px;
}

.page_become_bd_tit {
	padding-bottom: 30px;
}


.page_contact_find_tab {
	padding-bottom: 80px;
}

.page_contact_find_tit .tit_box2 .tit p {
	font-size: 20px;
	line-height: 1.8;
	margin-top: 20px;
}

.page_contact_find_tab_tit {
	justify-content: center;
	padding: 40px 0 60px;
}

.page_contact_find_tab_tit .txt {
	font-size: 16px;
	font-family: 'RobotoMedium';
	padding-right: 20px;
}

.page_contact_find_tab_tit .list {
	display: flex;
}

.page_contact_find_tab_tit .list .item {
	height: 38px;
	margin: 0 10px;
	line-height: 36px;
	border: 1px solid #333;
	padding: 0 30px;
	border-radius: 100px;
	font-family: 'RobotoMedium';
	text-transform: uppercase;
	cursor: pointer;
	transition: all .4s;
}

.page_contact_find_tab_tit .list .item:hover {
	border-color: var(--theme-color);
	color: var(--theme-color);
}

.page_contact_find_tab_tit .list .item.cur {
	background: var(--theme-color);
	border-color: var(--theme-color);
	color: #fff;
}

.page_contact_find_tab_map .item {
	display: none;
}

.page_contact_find_tab_map .item:first-child {
	display: block;
}

.page_contact_find_tab_con {
	margin: 40px 100px 20px;
	background: #f5f5f5;
	padding: 40px 100px;
}

.page_contact_find_tab_con .tit {
	font-size: 24px;
	font-family: 'RobotoMedium';
}

.page_contact_find_tab_con .list {
	padding-top: 20px;
}

.page_contact_find_tab_con .list .item_wrap {
	display: none;
}

.page_contact_find_tab_con .list .item_wrap:first-child {
	display: block;
}

.page_contact_find_tab_con .list .item {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -40px;
}

.page_contact_find_tab_con .list .item span {
	width: 25%;
	padding: 0 40px 5px;
	display: block;
	text-align: left;
	font-family: 'RobotoMedium';
	cursor: pointer;
}

.page_contact_find_tab_con .list .item span:hover {
	color: var(--theme-color);
}

.page_contact_find_tab_con .list .item span.cur {
	text-decoration: underline;
	color: var(--theme-color);
}

.page_contact_find_form {
	display: none;
}





.page_search {
	padding: 150px 0 80px;
}

/* page_contact2 */

.page_contact2 {
	padding-bottom: 100px;
}

.page_contact2_info {
	width: 50%;
	padding-right: 120px;
}

.page_contact2_info .tit {
	padding-top: 20px;
}

.page_contact2_info .tit h4 {
	font-size: 40px;
	color: #333;
	font-family: 'MontserratExtraBold';
}

.page_contact2_info .tit p {
	color: #333;
	line-height: 2;
	margin-top: 20px;
}

.page_contact2_info .con h4 {
	color: #053c8a;
	font-family: 'MontserratSemiBold';
	margin: 30px 0 10px;
	font-size: 20px;
}

.page_contact2_info .con p {
	margin-bottom: 10px;
	display: flex;
	font-family: 'MontserratLight';
	font-size: 14px;
}

.page_contact2_info .con p span {
	background: #053c8a;
	width: 24px;
	height: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	border: 4px solid #e6ebf3;
	margin-right: 10px;
}

.page_contact2_info .con p span i {
	font-size: 10px;
	color: #fff;
}

.page_contact2_form {
	flex: 1;
	min-width: 0;
}

.page_contact2_form .tit h4 {
	font-size: 40px;
	color: #3a3a3a;
	font-family: 'MuliBlackMOD';
}

.page_contact2_form .tit p {
	color: #666;
}

.page_contact2_form .form {
	padding-bottom: 80px;
}

.page_contact2_form .input_box {
	display: flex;
	margin: 0 -10px;
}

.page_contact2_form .input_box .input {
	margin: 0 0 20px;
	flex: 1;
	padding: 0 10px;
}

.page_contact2_form .input_box .input input,
.page_contact2_form textarea {
	width: 100%;
	border: none;
	outline: none;
	height: 54px;
	padding: 10px 20px;
	line-height: 34px;
	border: 1px solid #eee;
}

.page_contact2_form textarea {
	height: 120px;
}

.page_contact2_form .form p {}

.page_contact2_form .form .button {
	margin-top: 30px;
}

.page_contact2_form .form .button button {
	width: 200px;
	margin: auto;
	height: 50px;
	background: var(--theme-color);
	border: none;
	outline: none;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 100px;
}

.page_contact2_form .form .button button i {
	font-size: 22px;
	margin-left: 10px;
}

.page_contact2_form .form .button button:hover {
	background: var(--subtheme-color);
}

/* page_equ_panel1 */

.page_equ_panel1_wrap {
	background: #f5f5f5;
}

.page_equ_panel1 .desc {
	font-size: 18px;
	margin: 35px 0;
}

.page_equ_panel1 .list {
	margin: 0 -34px;
	padding-bottom: 80px;
}

.page_equ_panel1 .list .item {
	flex: 1;
	padding: 0 34px;
}

.page_equ_panel1 .list .item .img img {
	border-radius: 30px;
}

.page_equ_panel1 .list .item .tit {
	font-size: 18px;
	text-align: center;
	padding-top: 15px;
}

.page_equ_panel2_wrap {
	padding-bottom: 80px;
}

.page_equ_panel2_con {
	padding: 40px 0 20px 0;
	position: relative;
}

.page_equ_panel2_con .item img {
	border-radius: 20px;
}

/* page_solution */

.page_solution {
	padding: 80px 0;
}

.page_solution_menu {
	width: 280px;
}

.page_solution_menu .menu {
	background: #fff;
	border-radius: 5px;
	overflow: hidden;
}

.page_solution_menu .menu_tit {
	font-size: 20px;
	font-family: 'RobotoMedium';
	text-transform: capitalize;
	background: var(--subtheme-color);
	height: 55px;
	color: #fff;
	display: flex;
	align-items: center;
	padding: 0 20px;
}

.page_solution_menu .menu_list .item {
	border-bottom: 1px solid #ddd;
	padding: 14px 20px;
}

.page_solution_menu .menu_list .item:last-child {
	border-bottom: none;
}

.page_solution_menu .menu_list .item .hd a {
	font-family: 'RobotoMedium';
	flex: 1;
	min-width: 0;
}

.page_solution_menu .menu_list .item .hd i {
	cursor: pointer;
	font-size: 12px;
	transform: rotate(180deg);
	line-height: 1;
	font-weight: bold;
	transition: all .4s;
}

.page_solution_menu .menu_list .item .bd {
	display: none;
	padding-top: 6px;
}

.page_solution_menu .menu_list .item .bd a {
	font-size: 14px;
	color: #666;
	padding-top: 5px;
}

.page_solution_menu .menu_list .item .bd a i {
	margin-right: 8px;
}

.page_solution_menu .menu_list .item.cur .hd i,
.page_solution_menu .menu_list .item .hd i:hover {
	transform: rotate(0deg);
}

/*.page_solution_menu .menu_list .item.cur .bd{*/
/*    display: block;*/
/*}*/
.page_solution_menu .menu_list .item .hd a:hover,
.page_solution_menu .menu_list .item .bd a:hover {
	color: var(--theme-color);
}

.page_solution_menu .menu_news {
	margin-top: 30px;
}

.menu_news_list a {
	display: block;
	position: relative;
	border-bottom: 1px solid #ddd;
	padding-left: 8px;
	padding: 14px 20px 14px 28px;
}

.menu_news_list a:before {
	content: '';
	display: block;
	width: 4px;
	height: 4px;
	background: var(--subtheme-color);
	border-radius: 50%;
	position: absolute;
	left: 18px;
	top: 26px;
}

.page_solution_list {
	flex: 1;
	min-width: 0;
	padding-left: 40px;
	margin: -15px;
}

.page_solution_list .list a {
	display: block;
	width: 33.333%;
	padding: 15px;
}

.page_solution_list .list .item {
	background: #fff;
	border-radius: 15px;
	padding: 20px;
	position: relative;
	overflow: hidden;
}

.page_solution_list .list .item:after {
	content: '';
	display: block;
	width: 100%;
	height: 4px;
	background: var(--subtheme-color);
	left: 0;
	bottom: 0;
	position: absolute;
}

.page_solution_list .list .item .con {
	padding: 15px 0 0;
	text-align: center;
}

.page_solution_list .list .item .con h4 {
	font-family: 'RobotoMedium';
}

.page_solution_list .list .item .con p {
	font-size: 14px;
	color: #666;
	margin: 5px 0 15px;
}

.page_solution_list .list .item .con span {
	font-size: 14px;
	text-transform: uppercase;
	color: #2d2d2d;
	font-family: 'RobotoBold';
}

.page_solution_list .list .item .con span i {
	margin-left: 6px;
}

.page_solution_list .list .item:hover:after {
	background: var(--theme-color);
}

.page_solution_list .list .item:hover span {
	color: var(--theme-color);
}

/* return */

.return_page {
	margin-top: 60px;
	position: relative;
}

.return_page i {
	color: var(--theme-color);
	font-size: 18px;
	margin-right: 6px;
}

.return_page a:hover {
	text-decoration: underline;
	color: var(--theme-color);
}

.ind_pad {
	padding: 80px 0 90px;
}

.info_ly {
	background: #fff;
	padding-left: 4%;
	padding-right: 4%;
	display: flow-root;
}

.info_ly h2 {
	text-align: center;
	margin-bottom: 20px;
}

.info_ly .inp {
	width: 49.3%;
	height: 52px;
	line-height: 52px;
	background: #f6f6f6;
	display: block;
	float: left;
	margin-bottom: 16px;
	text-indent: 22px;
}

.info_ly .inp:nth-child(2n) {
	float: right;
}

.info_ly .inp2 {
	width: 100%;
}

.info_ly textarea {
	height: 150px;
	background: #f6f6f6;
	text-indent: 22px;
	padding-top: 16px;
	width: 100%;
	display: block;
}

.info_ly .sub {
	height: 52px;
	line-height: 52px;
	background: var(--theme-color);
	width: 100%;
	text-align: center;
	color: #fff;
	display: block;
	margin-top: 16px;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
}