.product {
	background-color: RGBA(250, 250, 250, 1);
}

.product .box1 {
	padding: 100px 0 0;
	text-align: center;
}

.product .box1 .box-c {
	margin-top: 60px;
}

.product .box1 .box-c .swiper-slide {
	background-image: url(../img/product-box1-bg.jpg);
	background-size: cover;
	border-radius: 20px;
	width: 1080px;
	max-width: 100%;
	border-radius: 20px;
	padding: 70px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.product .box1 .box-c .swiper-slide .l {
	width: 38%;
}

.product .box1 .box-c .swiper-slide .l .des {
	font-family: Rany;
	font-weight: 300;
	font-size: 30px;
	color: #0093DD;
	line-height: 1;
	text-transform: uppercase;
}

.product .box1 .box-c .swiper-slide .l .title {
	font-family: HarmonyOS Sans SC;
	font-weight: 300;
	font-size: 48px;
	color: #0093DD;
	line-height: 1.25;
	margin: 10px 0 18px;
}

.product .box1 .box-c .swiper-slide .r {
	width: 57.22%;
}

.product .box1 .box-c .swiper-slide .r .pic {
	width: 100%;
	height: 470px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product .box1 .box-c .swiper-slide .r .pic img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
}
.product .box1 .box-c .swiper-button-prev,
.product .box1 .box-c .swiper-button-next{
    color: #0093DD;
}
.product .box2 {
	padding: 88px 0 140px;
}

.product .box2 .box-t {
	display: flex;
	justify-content: space-between;
}

.product .box2 .box-t-l {
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	gap: 20px;
	margin-right: 30px;
}

.product .box2 .box-t-l a {
	min-width: 180px;
	line-height: 58px;
	border-radius: 30px;
	border: 1px solid #DEDEDE;
	padding: 0 20px;
	font-family: HarmonyOS Sans SC;
	font-weight: 400;
	font-size: 18px;
	color: #666666;
	text-align: center;
	transition: all .6s;
}

.product .box2 .box-t-l a.active {
	background-color: rgba(0, 147, 221, 1);
	color: #fff;
	border-color: rgba(0, 147, 221, 1);
}

.product .box2 .box-t-l a:hover {
	color: #0093DD;
}

.product .box2 .box-t-r form {
	width: 360px;
	height: 60px;
	background: linear-gradient(90deg, #FFFFFF, #D0EFFF);
	border-radius: 30px;
	display: flex;
	padding-left: 34px;
}

.product .box2 .box-t-r form input {
	flex: 1;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	background-color: transparent;
	font-family: HarmonyOS Sans SC;
	font-weight: 400;
	font-size: 16px;
	color: #333;
	line-height: 30px;
}

.product .box2 .box-t-r form input::placeholder {
	color: #999;
}

.product .box2 .box-t-r form .icon-sousuo {
	padding: 0 20px 0 10px;
	color: rgba(0, 147, 221, 1);
	cursor: pointer;
	line-height: 60px;
	font-size: 20px;
}

.product .box2 .box-c {
	margin-top: 40px;
}

.product .box2 .box-c .list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px 25px;
}

.product .box2 .box-c .list li .img {
	position: relative;
	padding-top: 100%;
	background: #FFFFFF;
	border-radius: 10px;
}

.product .box2 .box-c .list li .img .pic {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product .box2 .box-c .list li .img .pic img {
	max-width: 90%;
	max-height: 90%;
	width: auto;
}

.product .box2 .box-c .list li .text-box {
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding-right: 10px;
}

.product .box2 .box-c .list li .text-box-l {
	flex: 1;
	margin-right: 20px;
}

.product .box2 .box-c .list li .text-title {
	font-family: HarmonyOS Sans SC;
	font-weight: 300;
	font-size: 24px;
	color: #333333;
	line-height: 30px;
	transition: all .6s;
}

.product .box2 .box-c .list li:hover .text-des,
.product .box2 .box-c .list li:hover .text-title {
	color: rgba(0, 147, 221, 1);
}

.product .box2 .box-c .list li .text-des {
	font-family: Rany-Bold;
	font-size: 24px;
	color: #333333;
	line-height: 1;
	margin-top: 20px;
	transition: all .6s;
}

.product .box2 .box-c .list li .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #0683ED;
	color: rgba(0, 154, 237, 1);
	transition: all .6s;
}

.product .box2 .box-c .list li:hover .icon {
	background-color: rgba(0, 147, 221, 1);
	color: #fff;
	box-shadow: 5px 9px 30px 0px rgba(0, 147, 221, 0.3);
}

.product .box2 .box-c .list li .icon .iconfont {
	font-size: 20px;
}

.product .box2 .pagination {
	margin-top: 95px;
}

.product-details .box1 {
	background-color: #fff;
	padding: 92px 0 163px;
}

.product-details .box1 .box-c {
	display: flex;
	justify-content: space-between;
}

.product-details .box1 .box-c .l {
	width: 49.42%;
}

.product-details .box1 .box-c .l .pic img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

.product-details .box1 .box-c .r {
	width: 48%;
	align-self: center;
}

.product-details .box1 .box-c .r .en {
	font-family: Rany;
	font-weight: 300;
	font-size: 30px;
	color: #0093DD;
	line-height: 1;
	text-transform: uppercase;
}

.product-details .box1 .box-c .r .title {
	font-family: HarmonyOS Sans SC;
	font-weight: bold;
	font-size: 48px;
	color: #0093DD;
	line-height: 1.25;
	margin-top: 10px;
	letter-spacing: .2em;
}

.product-details .box1 .box-c .r .text-box {
	font-family: HarmonyOS Sans SC;
	font-weight: bold;
	font-size: 30px;
	color: #333333;
	line-height: 1.66;
	margin-top: 60px;
	min-height: 200px;
}

.product-details .box1 .box-c .r .commonMore {
	margin-top: 37px;
	background: rgba(0, 147, 221, 1);
	margin-left: 0;
}

.product-details .box1 .box-c .r .commonMore div {
	color: #fff;
}

.product-details .box2 {
	position: relative;
	padding: 90px 0 145px;
	background-color: RGBA(250, 250, 250, 1);
}

.product-details .box2 .box-c {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.leftNav {
	position: sticky;
	width: 180px;
	top: 140px;
}

.leftNav a {
	display: block;
	background: linear-gradient(90deg, #FFFFFF, #D0EFFF);
	border-radius: 30px;
	padding: 15px;
	font-family: HarmonyOS Sans SC;
	font-weight: 400;
	font-size: 18px;
	color: #666666;
	line-height: 30px;
	text-align: center;
}

.leftNav a:hover {
	color: #0093DD;
}

.leftNav a.active {
	background: #0093DD;
	box-shadow: 5px 9px 30px 0px rgba(0, 147, 221, 0.3);
	color: #fff;
}

.leftNav a:not(:last-child) {
	margin-bottom: 30px;
}

.product-details .box2 .box-c .r {
	width: 1040px;
}

.product-details .box2 .box-c .r-box:not(:last-child) {
	margin-bottom: 80px;
}

.product-details .box2 .box-c .r-box .title {
	font-family: HarmonyOS Sans SC;
	font-weight: 500;
	font-size: 30px;
	color: #333333;
	line-height: 1;
}

.product-details .box2 .box-c .r-box1 .text-box {
	font-family: HarmonyOS Sans SC;
	font-weight: 400;
	font-size: 18px;
	color: #666666;
	line-height: 48px;
	margin-top: 30px;
}

.product-details .box2 .box-c .r-box2 .r-box-t {
	margin-top: 40px;
}

.product-details .box2 .box-c .r-box2 .list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.product-details .box2 .box-c .r-box2 .list li {
	text-align: left;
}

.product-details .box2 .box-c .r-box2 .list .text-box {
	text-align: center;
	display: inline-block;
}

.product-details .box2 .box-c .r-box2 .list .number {
	font-family: Rany-Bold;
	font-size: 24px;
	color: #0093DD;
	line-height: 30px;
}

.product-details .box2 .box-c .r-box2 .list .text {
	font-family: HarmonyOS Sans SC;
	font-weight: 400;
	font-size: 16px;
	color: #999999;
	line-height: 1;
	margin-top: 6px;
}

.product-details .box2 .box-c .r-box2 .r-box-c {
	margin-top: 40px;
}

.product-details .box2 .box-c .r-box2 .list1 {
	border: 1px solid #D4F0FF;
	font-family: HarmonyOS Sans SC;
	font-weight: 400;
	font-size: 16px;
	color: #333333;
	line-height: 30px;
	/* padding: 12px 0; */
}

.product-details .box2 .box-c .r-box2 .list1 li {
	display: flex;
}

.product-details .box2 .box-c .r-box2 .list1 .li-l {
	width: 280px;
	padding: 12px 20px 12px 40px;
	background-color: rgba(0, 147, 221, 1);
	color: #fff;
}

.product-details .box2 .box-c .r-box2 .list1 .li-r {
	flex: 1;
	padding: 12px 58px;
}

.product-details .box2 .box-c .r-box2 .list1 li:first-child .li-l,
.product-details .box2 .box-c .r-box2 .list1 li:first-child .li-r {
	padding-top: 24px;
}

.product-details .box2 .box-c .r-box2 .list1 li:last-child .li-l,
.product-details .box2 .box-c .r-box2 .list1 li:last-child .li-r {
	padding-bottom: 24px;
}
.box-c1-r .list li:not(:last-child){
	margin-bottom: 10px;
}
.box-c1-r .list li:not(:last-child).active{
	margin-bottom: 40px;
}
.box-c1-r .list .li-t{
	display: flex;
	justify-content: space-between;
	padding: 27px 30px;
	font-family: Rany-Bold;
	font-size: 24px;
	color: #333333;
	line-height: 36px;
	border-radius: 5px;
	border: 1px solid #DEDEDE;
}
.box-c1-r .list .li-t .title{
	flex: 1;
	margin-right: 30px;
	text-align: left;
}
.box-c1-r .list li.active .li-t{
	background: linear-gradient(60deg, #31AAF6, #0E97EE);
	box-shadow: 5px 9px 30px 0px rgba(26,157,241,0.3);
	border-color: transparent;
	color: #fff;
	cursor: pointer;
}
.box-c1-r .list .li-t .iconfont{
	color: rgba(204, 204, 204, 1);
	font-size: 20px;
}
.box-c1-r .list li.active .li-t .iconfont{
	color: #fff;
}
.box-c1-r .list .li-c{
	margin-top: 10px;
	background: linear-gradient(60deg, #31AAF6, #0E97EE);
	box-shadow: 5px 9px 30px 0px rgba(26,157,241,0.3);
	border-radius: 5px;
	padding: 30px 30px 90px;
	font-family: HarmonyOS Sans SC;
	font-weight: 400;
	font-size: 16px;
	color: #FAFAFA;
	line-height: 30px;
	text-align: left;
	display: none;
}
.box-c1-r .list1 li:not(:last-child){
	margin-bottom: 20px;
}
.box-c1-r .list1 li a{
	display: flex;
	background: #FAFAFA;
	border-radius: 5px;
	border: 1px solid #DEDEDE;
	padding: 30px;
	font-family: HarmonyOS Sans SC;
	font-weight: bold;
	font-size: 18px;
	color: #333333;
	line-height: 30px;
	justify-content: space-between;
}
.box-c1-r .list1 li a .title{
	flex: 1;
	margin-right: 30px;
}
.box-c1-r .list1 li .iconfont{
	color: RGBA(62, 62, 62, 1);
	font-size: 22px;
}
.box-c1-r .list1 li:hover a{
	background: linear-gradient(60deg, #31AAF6, #0E97EE);
	box-shadow: 5px 9px 30px 0px rgba(26,157,241,0.3);
	border-color: transparent;
}
.box-c1-r .list1 li:hover .iconfont,
.box-c1-r .list1 li:hover a{
	color: #fff;
}
@media (max-width:1600px) {
	.product .box2 .box-c .list li .icon{
		width: 40px;
		height: 40px;
	}
}
@media (max-width: 1440px) {

	.product .box1 .box-c .swiper-slide .l .des,
	.product-details .box1 .box-c .r .en {
		font-size: 26px;
	}

	.product .box1 .box-c .swiper-slide .l .title,
	.product-details .box1 .box-c .r .title {
		font-size: 40px;
	}
	.product-details .box1 .box-c .r .text-box{
		font-size: 28px;
	}
	.product-details .box2 .box-c .r{
		flex: 1;
		margin-left: 40px;
	}
	.product-details .box2 .box-c .r-box .title{
		font-size: 28px;
	}
}

@media (max-width: 1280px) {
	.box-c1-r .list .li-t{
		padding: 20px;
		font-size: 22px;
	}
	.box-c1-r .list .li-c{
		padding: 20px 20px 70px;
	}
	.product-details .box2 .box-c .r-box .title{
		font-size: 26px;
	}
	.product-details .box1 .box-c .r .text-box{
		font-size: 26px;
	}
	.product .box1 .box-c .swiper-slide .l .des,
	.product-details .box1 .box-c .r .en {
		font-size: 24px;
	}

	.product .box1 .box-c .swiper-slide .l .title,
	.product-details .box1 .box-c .r .title {
		font-size: 36px;
	}
	.product .box1 .box-c .swiper-slide{
		width: 900px;
	}
	.product .box2 .box-c .list li .text-title,
	.product .box2 .box-c .list li .text-des{
		font-size: 22px;
	}
	.product .box2 .box-c .list li .text-des{
		margin-top: 10px;
	}
	.product .box2 .box-t-l a{
		min-width: 110px;
		line-height: 40px;
		height: auto;
		font-size: 16px;
	}
	.product .box2 .box-t-r form{
		height: 42px;
		padding-left: 20px;
	}
	.product .box2 .box-t-r form .icon-sousuo{
		line-height: 42px;
	}
	.product .box2 .box-c .list li .text-box{
		margin-top: 25px;
	}
	.product-details .box1 .box-c .r .text-box{
		margin-top: 40px;
		min-height: 0;
	}
}

@media (max-width: 1199px) {
	.box-c1-r .list .li-c{
		padding: 15px 15px 50px;
	}
	.box-c1-r .list .li-t{
		padding: 15px;
		font-size: 20px;
	}
	.box-c1-r{
		flex: 1;
		margin-left: 50px;
	}
	.box-c1-r .list1 li a{
		padding: 20px;
	}
	.product-details .box2 .box-c .r-box .title{
		font-size: 24px;
	}
	.product-details .box1 .box-c .r .text-box{
		font-size: 24px;
		margin-top: 30px;
	}
	.product .box1{
		padding-top: 70px;
	}
	.product .box2{
		padding: 70px 0;
	}
	.product .box2 .pagination,
	.product .box1 .box-c{
		margin-top: 45px;
	}
	.product .box1 .box-c .swiper-slide .l .des,
	.product-details .box1 .box-c .r .en {
		font-size: 22px;
	}

	.product .box1 .box-c .swiper-slide .l .title,
	.product-details .box1 .box-c .r .title {
		font-size: 30px;
	}
	.product .box2 .box-c .list li .text-title,
	.product .box2 .box-c .list li .text-des{
		font-size: 20px;
	}
	.product-details .box1{
		padding: 70px 0;
	}
	.leftNav{
		display: none;
	}
	.product-details .box2 .box-c .r{
		margin-left: 0;
	}
	.product-details .box2 .box-c .r-box:not(:last-child){
		margin-bottom: 60px;
	}
	.product-details .box2{
		padding: 70px 0;
	}
}

@media (max-width:1024px) {
	.box-c1-r .list .li-t{
		font-size: 18px;
	}
	.box-c1-r{
		margin-left: 25px;
	}
	.product-details .box2{
		padding: 60px 0;
	}
	.product-details .box2 .box-c .r-box:not(:last-child){
		margin-bottom: 50px;
	}
	.product-details .box2 .box-c .r-box1 .text-box{
		font-size: 16px;
		line-height: 2;
		margin-top: 25px;
	}
	.product-details .box2 .box-c .r-box .title{
		font-size: 22px;
	}
	.product-details .box1{
		padding: 60px 0;
	}
	.product-details .box1 .box-c .r .commonMore{
		margin-top: 30px;
	}
	.product-details .box1 .box-c .r .text-box{
		font-size: 22px;
		margin-top: 20px;
	}
	.product .box2 .box-t-r form{
		width: 300px;
	}
	.product .box1 .box-c .swiper-slide{
		padding-top: 60px;
	}
	.product .box1{
		padding-top: 60px;
	}
	.product .box2{
		padding: 60px 0;
	}
	.product .box2 .pagination,
	.product .box1 .box-c{
		margin-top: 40px;
	}
	.product .box1 .box-c .swiper-slide .l .des,
	.product-details .box1 .box-c .r .en {
		font-size: 20px;
	}

	.product .box1 .box-c .swiper-slide .l .title,
	.product-details .box1 .box-c .r .title {
		font-size: 26px;
	}
	.product .box1 .box-c .swiper-slide{
		width: 94%;
	}
	.product .box2 .box-c .list{
		grid-template-columns: repeat(2,1fr);
		gap: 40px 20px;
	}
	.product .box2 .box-c{
		margin-bottom: 45px;
	}
	.product-details .box2 .box-c .r-box2 .list .number{
		font-size: 22px;
	}
	.product-details .box2 .box-c .r-box2 .list .text{
		font-size: 14px;
		line-height: 1.5;
	}
	.product-details .box2 .box-c .r-box2 .list1 .li-l{
		width: 240px;
		padding-left: 20px;
	}
	.product-details .box2 .box-c .r-box2 .list1 .li-r{
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 768px) {
	.box-c1-r .list1 li:not(:last-child){
		margin-bottom: 10px;
	}
	.box-c1-r{
		margin-left: 0;
		width: 100%;
		flex: none;
		margin-top: 30px;
	}
	.box-c1-r .list1 li a{
		padding: 10px 15px;
		font-size: 16px;
	}
	.box-c1-r .list li:not(:last-child).active{
		margin-bottom: 30px;
	}
	.product-details .box2 .box-c .r-box2 .r-box-c{
		margin-top: 30px;
	}
	.product-details .box2 .box-c .r-box2 .list .number{
		font-size: 20px;
	}
	.product-details .box2 .box-c .r-box1 .text-box{
		margin-top: 20px;
	}
	.product-details .box2{
		padding: 50px 0;
	}
	.product-details .box2 .box-c .r-box:not(:last-child){
		margin-bottom: 40px;
	}
	.product-details .box1 .box-c .l{
		width: 100%;
	}
	.product-details .box1 .box-c .r{
		width: 100%;
		margin-top: 30px;
	}
	.product-details .box1 .box-c{
		flex-direction: column;
	}
	.product-details .box1{
		padding: 50px 0;
	}
	.product-details .box1 .box-c .r .text-box{
		font-size: 20px;
	}
	.product .box2 .box-c{
		margin-bottom: 35px;
	}
	.product .box2 .box-t{
		flex-direction: column;
	}
	.product .box2 .box-t-l{
		width: 100%;
		margin-right: 0;
		justify-content: center;
		margin-bottom: 30px;
	}
	.product .box2 .box-t-r form{
		width: 100%;
	}
	.product .box1 .box-c .swiper-slide{
		padding-top: 50px;
		flex-direction: column;
	}
	.product .box1 .box-c .swiper-slide .r{
		width: 100%;
		margin-top: 30px;
	}
	.product .box2 .box-c .list li .text-box{
		margin-top: 20px;
	}
	.product .box1{
		padding-top: 50px;
	}
	.product .box2{
		padding: 50px 0;
	}
	.product .box2 .box-c,
	.product .box2 .pagination,
	.product .box1 .box-c{
		margin-top: 30px;
	}
	..product .box2 .box-c .list li .text-des{
		margin-top: 5px;
	}
	.product .box2 .box-c .list li .text-title,
	.product .box2 .box-c .list li .text-des{
		font-size: 18px;
	}
	.product .box1 .box-c .swiper-slide .l .des,
	.product-details .box1 .box-c .r .en {
		font-size: 18px;
	}

	.product .box1 .box-c .swiper-slide .l .title,
	.product-details .box1 .box-c .r .title {
		font-size: 24px;
	}
	.product .box1 .box-c .swiper-slide .r .pic{
		height: 340px;
	}
	.product-details .box2 .box-c .r-box2 .r-box-t{
		margin-top: 30px;
	}
	.product-details .box2 .box-c .r-box2 .list1 .li-l{
		width: 200px;
	}
	.product-details .box2 .box-c .r-box2 .list1 .li-l,
	.product-details .box2 .box-c .r-box2 .list1 .li-r{
		padding-top: 7px;
		padding-bottom: 7px;
	}
	.product-details .box2 .box-c .r-box2 .list1 li:first-child .li-l, .product-details .box2 .box-c .r-box2 .list1 li:first-child .li-r{
		padding-top: 19px;
	}
	.product-details .box2 .box-c .r-box2 .list1 li:last-child .li-l, .product-details .box2 .box-c .r-box2 .list1 li:last-child .li-r{
		padding-bottom: 19px;
	}
}

@media (max-width: 500px) {
	.box-c1-r{
		margin-top: 25px;
	}
	.box-c1-r .list li:not(:last-child).active{
		margin-bottom: 25px;
	}
	.box-c1-r .list .li-t .title{
		margin-right: 20px;
	}
	.box-c1-r .list .li-c{
		padding-bottom: 30px;
	}
	.box-c1-r .list .li-t{
		font-size: 16px;
		line-height: 30px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.box-c1-r .list .li-c{
		font-size: 14px;
	}
	.product-details .box2 .box-c .r-box2 .list1 .li-l{
		width: 150px;
	}
	.product-details .box2 .box-c .r-box2 .list1{
		font-size: 14px;
		line-height: 1.7;
	}
	.product-details .box2 .box-c .r-box2 .r-box-c{
		margin-top: 25px;
	}
	.product-details .box2 .box-c .r-box2 .r-box-t{
		margin-top: 25px;
	}
	.product-details .box2 .box-c .r-box1 .text-box{
		margin-top: 15px;
	}
	.product-details .box2{
		padding: 40px 0;
	}
	.product-details .box2 .box-c .r-box:not(:last-child){
		margin-bottom: 30px;
	}
	.product-details .box1 .box-c .r,
	.product-details .box1 .box-c .r .commonMore{
		margin-top: 25px;
	}
	.product-details .box1{
		padding: 40px 0;
	}
	.product-details .box1 .box-c .r .text-box{
		font-size: 18px;
	}
	.product .box2 .box-t-l{
		margin-bottom: 25px;
	}
	.product .box1 .box-c .swiper-slide .r{
		margin-top: 25px;
	}
	.product .box1 .box-c .swiper-slide{
		padding-top: 40px;
	}
	.product .box1{
		padding-top: 40px;
	}
	.product .box2{
		padding: 40px 0;
	}
	.product .box2 .box-c,
	.product .box2 .pagination,
	.product .box1 .box-c{
		margin-top: 25px;
	}
	.product .box2 .box-c .list li .icon{
		width: 32px;
		height: 32px;
	}
	.product .box1 .box-c .swiper-slide .l .des,
	.product-details .box1 .box-c .r .en {
		font-size: 18px;
	}

	.product .box1 .box-c .swiper-slide .l .title,
	.product-details .box1 .box-c .r .title {
		font-size: 22px;
	}
}