body {
	background-image: url("../images/index_bg.png");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.index-container {
	width: 100%;
}

.index-container .container-notice {
	padding: .75rem 15px;
	background: rgba(255, 255, 255, 0.5);
	position: fixed;
	top: 5.5rem;
	left: 0;
	right: 0;
	z-index: 99;
	backdrop-filter: blur(5px);
}

.index-container .container-notice .notice-icon {
	width: 1.25rem;
	height: 1.25rem;
}

.index-container .container-notice .notice-title {
	margin-left: .5rem;
	color: #5A5B6E;
	font-size: 1rem;
	line-height: 1.375rem;
}

.index-container .container-notice .notice-content {
	margin-left: 1.5rem;
	color: #ff2121e8;
	font-size: 1rem;
	line-height: 1.375rem;
}

.index-container .container-main {
	padding-bottom: 0rem;
}

.index-container .container-main .main-search {
	display: flex;
	align-items: center;
	margin: 4rem auto 0;
	border-radius: 0.5rem;
	padding: 0.25rem 0.25rem 0.25rem 2rem;
	background: #FFFFFF;
	max-width: 62.5rem;
}

.index-container .container-main .main-search .main-search-img {
	width: 1.5rem;
	height: 1.5rem;
}

.index-container .container-main .main-search .main-search-input {
	flex: 1;
	padding: 1.25rem 1rem;
	border: none;
	font-size: 1rem;
	height: 100%;
	line-height: 1.375rem;
	color: #5A5B6E;
}

.index-container .container-main .main-search .main-search-button {
	padding: 1.25rem 3.9375rem;
	border-radius: 0.5rem;
	font-size: 1rem;
	line-height: 1.375rem;
	color: #FFFFFF;
	background: #4481EB;
	cursor: pointer;
}

.index-container .container-main .main-search input[type=text]:focus {
	outline: none;
}

.index-container .container-main .main-product {
	margin-top: 4rem;
}

.index-container .container-main .main-product .main-product-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 3.5rem;
	color: #5A5B6E;
}

.index-container .container-main .main-product .main-product-list {
	margin-top: 2.5rem;
	padding: 0 4rem;
	display: grid;
	flex-wrap: wrap;
	grid-template-columns: repeat(auto-fill, minmax(16.25rem, 1fr));
	justify-content: space-between;
	row-gap: 1.5rem;
	column-gap: 2.5rem;
}

.index-container .container-main .main-product .main-product-list .product-list-item {
	padding: 1rem;
	border-radius: 0.5rem;
	background: #FFFFFF;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.index-container .container-main .main-product .main-product-list .product-list-item .list-item-img {
	width: 100%;
	height: 0;
	padding-top: 64%;
	position: relative;
}

.index-container .container-main .main-product .main-product-list .product-list-item .list-item-img img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.index-container .container-main .main-product .main-product-list .product-list-item .list-item-name {
	margin-top: 1rem;
	font-size: 1rem;
	line-height: 1.375rem;
	min-height: 2.25rem;
	font-weight: 600;
	color: #5A5B6E;
	flex-wrap: wrap;
}

.index-container .container-main .main-product .main-product-list .product-list-item .list-item-tip {
	display: flex;
	align-items: center;
	margin-top: .5rem;
}

.index-container .container-main .main-product .main-product-list .product-list-item .list-item-tip .list-item-tip-img {
	width: 1.5rem;
	height: 1.5rem;
}

.index-container .container-main .main-product .main-product-list .product-list-item .list-item-tip .list-item-tip-txt {
	flex: 1;
	padding-left: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #8D929C;
}

.index-container .container-main .main-product .main-product-list .product-list-item .list-item-tip .list-item-tip-dow {
	width: 1.5rem;
	height: 1.5rem;
}

.index-container .container-main .main-product .main-product-list .product-list-item .list-item-tip .list-item-tip-downum {
	padding-left: 0.5rem;
	font-size: 1rem;
	line-height: 1.375rem;
	color: #5A5B6E;
}

.index-container .container-main .main-product .main-product-list .product-list-item:hover {
	transform: scale(1.03);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.index-container .container-main .main-problem {
	margin-top: 1rem;
}

.index-container .container-main .main-problem .problem-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 3.5rem;
	color: #5A5B6E;
}

.index-container .container-main .main-problem .problem-box {
	display: flex;
	justify-content: space-between;
	margin-top: 3rem;
	padding: 3.5rem 3.5rem;
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.5);
}

.index-container .container-main .main-problem .problem-box .box-list {
	width: 48%;
	max-width: 37.5rem;
}

.index-container .container-main .main-problem .problem-box .box-list .list-item {
	width: 100%;
	transition: transform .3s;
	margin-top: 4rem;
}

.index-container .container-main .main-problem .problem-box .box-list .list-item:first-child {
	margin-top: 0;
}

.index-container .container-main .main-problem .problem-box .box-list .list-item .item-title {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.index-container .container-main .main-problem .problem-box .box-list .list-item .item-title .text {
	flex: 1;
	font-size: 1rem;
	line-height: 1.375rem;
	color: #5A5B6E;
	transition: color .3s;
}

.index-container .container-main .main-problem .problem-box .box-list .list-item .item-title .icon {
	color: #5A5B6E;
	margin-left: 1rem;
	transition: color .3s;
}

.index-container .container-main .main-problem .problem-box .box-list .list-item .item-title:hover .text,
.index-container .container-main .main-problem .problem-box .box-list .list-item .item-title:hover .icon {
	color: #4481EB;
}

.index-container .container-main .main-problem .problem-box .box-list .list-item .item-info {
	display: none;
	color: #5A5B6E;
	font-size: .875rem;
	line-height: 1.5rem;
	margin-top: 1rem;
}

.index-container .container-main .main-problem .problem-box .box-list .list-item.show .item-title .text {
	color: #4481EB;
}

.index-container .container-main .main-problem .problem-box .box-list .list-item.show .item-title .icon {
	color: #4481EB;
	transform: rotate(90deg);
}

.index-container .container-main .main-problem .problem-box .box-list .list-item.show .item-title:hover .text,
.index-container .container-main .main-problem .problem-box .box-list .list-item.show .item-title:hover .icon {
	color: #4481EB;
}

.index-container .container-main .main-problem .problem-box .box-list .list-item.show .item-info {
	display: block;
}

@media screen and (max-width: 767px) {
	.index-container .container-notice {
		padding: .6rem 0.5rem;
		top: 4.25rem;
	}

	.index-container .container-notice .notice-content {
		margin-left: .625rem;
	}

	.index-container .container-main {
		padding-bottom: 2rem;
	}

	.index-container .container-main .main-search {
		margin: 3.625rem auto 0;
		border-radius: 0.25rem;
		padding: 0.25rem 0.25rem 0.25rem 1rem;
	}

	.index-container .container-main .main-search .main-search-img {
		width: 1rem;
		height: 1rem;
	}

	.index-container .container-main .main-search .main-search-input {
		flex: 1;
		padding: .625rem 1rem;
	}

	.index-container .container-main .main-search .main-search-button {
		font-size: 0.75rem;
		padding: .625rem 1.25rem;
		border-radius: 0.25rem;
	}

	.index-container .container-main .main-product {
		margin-top: 1.5rem;
	}

	.index-container .container-main .main-product .main-product-title {
		font-size: 1.5rem;
		line-height: 2rem;
	}

	.index-container .container-main .main-product .main-product-list {
		display: flex;
		padding: 0;
		gap: 1rem;
	}

	.index-container .container-main .main-product .main-product-list .product-list-item {
		padding: .625rem;
		width: calc(50% - .5rem);
	}

	.index-container .container-main .main-product .main-product-list .product-list-item .list-item-name {
		margin-top: .625rem;
		height: 2.75rem;
		line-height: 1.375rem;
		display: flex;
		flex-direction: column;
	}

	.index-container .container-main .main-product .main-product-list .product-list-item .list-item-tip {
		margin-top: .5rem;
	}

	.index-container .container-main .main-product .main-product-list .product-list-item .list-item-tip .list-item-tip-img {
		width: 1.25rem;
		height: 1.25rem;
	}

	.index-container .container-main .main-product .main-product-list .product-list-item .list-item-tip .list-item-tip-txt {
		font-size: 0.75rem;
		padding-left: 0.25rem;
	}

	.index-container .container-main .main-product .main-product-list .product-list-item .list-item-tip .list-item-tip-dow {
		width: 1.25rem;
		height: 1.25rem;
	}

	.index-container .container-main .main-product .main-product-list .product-list-item .list-item-tip .list-item-tip-downum {
		font-size: .875rem;
		line-height: 1.25rem;
	}

	.index-container .container-main .main-product .main-product-list .product-list-item:hover {
		transform: scale(1);
		box-shadow: none;
	}

	.index-container .container-main .main-problem {
		margin-top: 1.5rem;
	}

	.index-container .container-main .main-problem .problem-title {
		font-size: 1.5rem;
		line-height: 2rem;
	}

	.index-container .container-main .main-problem .problem-box {
		margin-top: 1rem;
		padding: 1.5rem 1rem;
		flex-wrap: wrap;
	}

	.index-container .container-main .main-problem .problem-box .box-list {
		width: 100%;
		margin-top: 1rem;
	}

	.index-container .container-main .main-problem .problem-box .box-list:first-child {
		margin-top: 0;
	}

	.index-container .container-main .main-problem .problem-box .box-list .list-item {
		width: 100%;
		max-width: 100%;
		margin-top: 2rem;
	}

	.index-container .container-main .main-problem .problem-box .box-list .list-item:first-child {
		margin-top: 0;
	}

	.index-container .container-main .main-problem .problem-box .box-list .list-item .item-title .text {
		line-height: 1.25rem;
	}

	.index-container .container-main .main-problem .problem-box .box-list .list-item .item-title .icon {
		margin-left: .75rem;
	}

	.index-container .container-main .main-problem .problem-box .box-list .list-item .item-title:hover .text,
	.index-container .container-main .main-problem .problem-box .box-list .list-item .item-title:hover .icon {
		color: #545454;
	}
}



.hmCon2 {
	padding: 5.72vw 3.12vw calc(158px + 4.89vw);
}

.hmc2Tbox {
	height: 50px;
}


.hmc2tnm {
	line-height: 50px;
	font-size: 40px;
	font-weight: normal;
	letter-spacing: 2px;
	float: left;
}

.hmc2Tbox .hmFs_m {
	float: right;
	position: relative;
}

.hmc2Tbox .hmFs_m:hover {
	box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
}

.hmc2Box {
	margin-top: 3.54vw;
	display: flex;
	justify-content: space-between;
}

.hmc2Lx {
	font-size: 17px;
	line-height: 26px;
	letter-spacing: 1px;
	margin-top: 12px;
	margin-right: 20px;
	width: 550px;
}

.hmc2Rx {}

.hmc2Rx li {
	float: left;
	margin-left: 7.81vw;
	cursor: default;
}

.hmc2Rx li:first-child {
	margin-left: 0;
}

.hmc2Rx li strong {
	line-height: 70px;
	font-size: 46px;
	display: block;
}

.hmc2Rx li strong span {
	font-size: 70px;
	line-height: 70px;
}

.hmc2Rx li p {
	font-size: 22px;
	line-height: 36px;
	letter-spacing: 2px;
}

.hmc2Rx li:hover {
	background-image: -webkit-gradient(linear, left 0, right 0, from(#0e6bf5), to(#2b7efb));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 10px 15px rgba(42, 126, 251, 0.25);
}

.hmCon3 {
	position: relative;
	z-index: 2;
	margin-top: -158px;
	padding: 0 3.12vw;

}

.hmc3ul {
	background: #fff;
	display: flex;
	justify-content: space-between;
	box-shadow: 0 0 26px rgba(0, 0, 0, 0.1);

}

.hmc3ul li {
	width: 20%;
	position: relative;
	transition: all 0.5s ease;
}

.hmc3ul li:nth-child(1) {
	z-index: 10;
}

.hmc3ul li:nth-child(2) {
	z-index: 8;
}

.hmc3ul li:nth-child(3) {
	z-index: 7;
}

.hmc3ul li:nth-child(4) {
	z-index: 6;
}

.hmc3ul li:nth-child(5) {
	z-index: 5;
}

.hmc3ul li:nth-child(6) {
	z-index: 4;
}

.hmc3ul li:nth-child(7) {
	z-index: 3;
}

.hmc3ul li:nth-child(8) {
	z-index: 2;
}

.hmc3ul li.on {
	width: 50%;
	z-index: 12;
	border-top-left-radius:50px;
	border-bottom-left-radius:50px
}

.hmc3aBox {
	display: block;
	padding: 30px 20px 0px;
	position: relative;
	height: 300px;
	box-shadow: 20px 0px 30px rgba(0, 0, 0, 0.05);
	background: #fff;
}

.hmc3aBox:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(130deg, #4c93fd 20%, #2a7efb 70%, #126ff9 100%);
	transition: all 0.5s ease-in-out;
	opacity: 0;
}

.hmc3ul li.on .hmc3aBox:before {
	opacity: 1;
}

.hmc3dlogo {
	height: 60px;
	text-align: center;
	position: relative;
	transition: all 0.5s ease;
}

.hmc3dlogo img {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	max-height: 60px;
	max-width: 80%;
	width: auto;
	height: auto;
}

.hmc3cnm {
	font-size: 22px;
	font-weight: normal;
	letter-spacing: 2px;
	line-height: 36px;
	text-align: center;
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 45px;
	transition: all 0.5s ease;
}

.hmc3layer {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 44px 40px 0px;
	color: #FFF;
	transition: all 0.5s ease;
	opacity: 0
}

.hmc3layer strong {
	font-size: 22px;
	font-weight: normal;
	letter-spacing: 2px;
	line-height: 34px;
	height: 34px;
	margin-bottom: 20px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.hmc3layer p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	font-size: 17px;
	line-height: 26px;
	height: 78px;
	margin-bottom: 28px;
	overflow: hidden;
	opacity: 0.7;
	letter-spacing: 1px;
}

.hmc3m {
	height: 60px;
	position: relative;
}

.hmc3m span:nth-child(1) {
	line-height: 60px;
	background: url(../images/hmc3ar.png) no-repeat right center;
	display: inline-block;
	letter-spacing: 1px;
	padding-right: 22px;
	float: left;
	font-size: 16px;
}

.hmc3m img {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	max-width: calc(100% - 100px);
	max-height: 60px;
}

.hmc3ul li.on .hmc3dlogo {
	opacity: 0;
}

.hmc3ul li.on .hmc3cnm {
	opacity: 0;
}

.on .hmc3layer {
	opacity: 1;
}

@media (max-width:1799px) {
	.hmCon2 {
		padding: 4vw 3.12vw calc(158px + 4vw);
	}

	.hmc2tnm {
		font-size: 30px;
		line-height: 44px;
	}

	.hmc2Tbox {
		height: 44px;
	}

	.hmc2Rx li strong {
		font-size: 32px;
		line-height: 42px;
	}

	.hmc2Rx li strong span {
		font-size: 42px;
		line-height: 42px;
	}

	.hmc2Rx li p {
		font-size: 18px;
	}

	.hmc2Box {
		margin-top: 2vw;
	}

	.hmc2Lx {
		margin-top: 8px;
		font-size: 16px;
	}

	.hmc3cnm {
		font-size: 18px;
		left: 15px;
		right: 15px;
		bottom: 25px;
	}

	.hmc3dlogo {
		height: 48px;
	}

	.hmc3aBox {
		height: 260px;
	}

	.hmc3layer {
		padding: 32px 20px 0px;
	}

	.hmc3layer strong {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.hmc3layer p {
		font-size: 14px;
	}

	.hmc3m span:nth-child(1) {
		font-size: 15px;
	}
}

@media (max-width:1379px) {
	.hmc3layer strong {
		font-size: 17px;
	}

	.hmc3layer p {
		font-size: 12px;
	}

	.hmc2tnm {
		font-size: 26px;
	}
}

@media (max-width:1199px) {
	.hmc2Box {
		display: block;
		overflow: hidden;
	}

	.hmc2Lx {
		width: 100%;
	}

	.hmc2Rx {
		width: 100%;
		overflow: hidden;
		margin-top: 25px;
	}

	.hmc3ul {
		display: block;
		overflow: hidden;
	}

	.hmc3ul li{
		width: 50%;
		float: left;
	}
	.hmc3ul li.on {
		width: 50%;
		float: left;
	}

	.hmc2Rx {
		display: flex;
		justify-content: space-between;
	}

	.hmc2Rx li {
		margin-left: 0;
	}
}

@media (max-width:993px) {}

@media (max-width:767px) {
	.hmc2tnm {
		font-size: 21px;
		display: block;
		text-align: center;
		float: none;
	}

	.hmc2Tbox {
		height: auto;
	}

	.hmCon2 {
		padding-top: 30px;
		padding-bottom: 50px;
	}

	.hmc2Tbox .hmFs_m {
		float: none;
		margin: 10px auto;
		display: block;
	}

	.hmc2Lx {
		font-size: 14px;
	}

	.hmc2Rx li strong {
		font-size: 20px;
		line-height: 38px;
	}

	.hmc2Rx li strong span {
		font-size: 32px;
		line-height: 38px;
	}

	.hmc2Rx li p {
		font-size: 16px;
		line-height: 28px;
	}

	.hmCon3 {
		margin-top: 0;
	}

	.hmc3ul li {
		width: 50%;
		
	}

	.hmc3ul li .hmc3dlogo {
		opacity: 0;
	}

	.hmc3ul li .hmc3cnm {
		opacity: 0;
	}

	.hmc3layer {
		opacity: 1;
	}

	.hmc3aBox:before {
		opacity: 1;
	}

	.hmCon3 {
		padding-bottom: 30px;
	}

	.hmCon3 .slick-dots {
		bottom: 20px;
	}

	.hmCon3 .slick-dots li button {
		display: none;
	}

	.hmCon3 .slick-dots li {
		background: rgba(255, 255, 255, 0.6);
		display: inline-block;
		height: 6px;
		width: 6px;
		margin: 0px 6px;
		position: relative;
		border-radius: 50%;
		vertical-align: middle;
		float: none;
	}

	.hmCon3 .slick-dots li.slick-active {
		background: #fff;
		width: 10px;
		height: 10px;
	}

	.hmc3aBox {
		height: 280px;
	}
}


/********/
.divhidden {
	display: none
}
.customer {
	overflow: hidden;
	padding-top: 40px;
	margin-bottom: 79px
}
.customer_t {
	text-align: center;
	padding-top: 15px;
	color: #666;
	font-size: 18px;
	line-height: 32px;
	padding-bottom: 50px
}
.customer_t h2 {

text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3.5rem;
  color: #5A5B6E;
}
.customer_t p {
	font-size: 18px
}
.customer_top {
	text-align: center;
	margin-top: 10px;
	padding-bottom: 40px;
}
.customer_top a.two_sel {
	color: #fff;
	background-color: #4481EB
}
.customer_top a {
	display: inline-block;
	font-size: 16px;
	color: #000;
	line-height: 38px;
	margin-left: 5px;
	margin-right: 5px;
	width: 130px;
	border-radius: 20px
}
.customer_list {
	margin-top: 10px
}
.customer_list ul li {
	float: left;
	width: calc(20% - 1px);

	overflow: hidden;
	position: relative
}
.customer_list ul li img {
	display: block;
	width: 100%
}
.customer_list ul li:first-child {
	width: 40%;
	border-left: 0;
	border-top: 0
}
.customer_list ul li .imgs {
	cursor: pointer;
	overflow: hidden;
	border-color: #fff
}
.customer_list ul li .imgs:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: inset 0 0 0 0 #eee;
	transition: .2s
}
.customer_list ul li .imgs:hover:after {
	box-shadow: inset 0 0 0 10px #f6f6f6
}
.customer_list ul li .imgs img {
	opacity: .5;
	filter: grayscale(100%);
	filter: gray;
	transition: .3s
}
.customer_list ul li:hover .imgs img {
	opacity: 1;
	filter: grayscale(0);
	filter: none;
	transform: scale(.9) translateY(-8px)
}
.customer_list {
	position: relative
}
.customer_list .item {
	display: none;
	overflow: hidden
}
.customer_list .customer-buttons {
	position: absolute;
	top: 20px;
	width: 40%;
	left: 0;
	height: 0;
	text-align: right
}
.customer_list .customer-buttons div {
	color: #FFF;
	display: inline-block;
	zoom: 1;
	width: 50px;
	height: 50px;
	text-indent: 60px;
	overflow: hidden;
	transition: all .3s ease-out 0s;
	cursor: pointer
}

.solution_ul2 {
	overflow: hidden;
	padding-top: 20px
}
.solution_ul2 ul li {
	float: left;
	width: 49%;
	height: 188px;
	overflow: hidden;
	position: relative;
	background-color: #f9f9f9;
	z-index: 0;
	border: 0px solid #dfdfdf;
	margin-bottom: 2%
}
.solution_ul2 ul li:nth-child(2n+0) {
	float: right
}
.solution_ul2 ul li:nth-child(3) {
	margin-bottom: 0
}
.solution_ul2 ul li:nth-child(4) {
	margin-bottom: 0
}
.solution_ul2 ul li .shade {
	width: 238px;
	height: 188px;
	background: url(../images/solution_pic.png) center center no-repeat;
	position: absolute;
	top: 0;
	left: -238px;
	transition: all .3s linear
}
.solution_ul2 ul li .bg {
	width: calc(100% - 239px);
	width: -webkit-calc(100% - 239px);
	width: -moz-calc(100% - 239px);
	height: 188px;
	background: #f67524;
	background-size: 100% 100%;
	position: absolute;
	bottom: 0;
	left: 100%;
	z-index: 1;
	transition: all .3s linear
}
.solution_ul2 ul li:hover .bg {
	left: 239px
}
.solution_ul2 ul li:hover p {
	color: #fff
}
.solution_ul2 ul li:hover p strong {
	color: #fff
}
.solution_ul2 ul li img {
	width: 238px;
	height: 188px;
	transition: all .4s linear;
	float: left;
	border-right: 1px solid #dfdfdf
}
.solution_ul2 ul li p {
	color: #666;
	line-height: 24px;
	height: 140px;
	overflow: hidden;
	padding: 20px 6%;
	padding-bottom: 0;
	position: relative;
	z-index: 2;
	font-size: 14px
}
.solution_ul2 ul li p strong {
	color: #000;
	font-size: 20px;
	line-height: 48px;
	font-weight: 400
}
.anim-1 {
	transform: translateY(100px) translateX(0);
	transition: transform .8s, opacity .8s
}
.anim-2 {
	transform: translateY(100px) translateX(0);
	transition: transform 1s, opacity 1s
}
.anim-show {
	transform: translateY(0) translateX(0);
	opacity: 1
}

