* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'HarmonyOS Sans SC', 'SimSun', 'SimHei', 'Arial', 'sans-serif'; */
}

@font-face {
	font-family: "HarmonyOS_Sans_SC_Medium";
	/* Project id 2871779 */
	src: url('../fonts/HarmonyOS_Sans_SC_Medium.woff2');
}

@font-face {
	font-family: "HarmonyOS_Sans_SC";
	/* Project id 2871779 */
	src: url('../fonts/HarmonyOS_Sans_SC_Medium.woff2');
}

@font-face {
	font-family: "HarmonyOS_Sans_SC_Light";
	/* Project id 2871779 */
	src: url('../fonts/HarmonyOS_Sans_SC_Light.ttf') format('truetype');
}

@font-face {
	font-family: "HarmonyOS_Sans_SC_Bold";
	/* Project id 2871779 */
	src: url('../fonts/HarmonyOS_Sans_SC_Bold.woff');
}
@font-face {
	font-family: "AlimamaShuHeiTi-Bold";
	/* Project id 2871779 */
	src: url('../fonts/AlimamaShuHeiTi-Bold.woff');
}
@font-face {
	font-family: "Rany-Bold";
	/* Project id 2871779 */
	src: url('../fonts/Rany-Bold.otf');
}
@font-face {
	font-family: "Arial";
	/* Project id 2871779 */
	src: url('../fonts/ARIAL.TTF');
}
@font-face {
	font-family: "Rany";
	/* Project id 2871779 */
	src: url('../fonts/Rany.ttf');
}
a:link,
a:active,
a:visited,
a:hover,
{
background: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-tap-highlight-color: transparent;
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

body {
	overflow-x: hidden;
	-webkit-tap-highlight-color: transparent;
}

.content1300 {
	margin: 0 auto;
	width: 1300px;
	max-width: 94%;
}

.content1440 {
	margin: 0 auto;
	width: 1440px;
	max-width: 94%;
}

.content1400 {
	margin: 0 auto;
	width: 1400px;
	max-width: 94%;
}

.content1240 {
	margin: 0 auto;
	width: 1240px;
	max-width: 94%;
}

.content1200 {
	margin: 0 auto;
	width: 1200px;
	max-width: 94%;
}

.content1500 {
	margin: 0 auto;
	width: 1500px;
	max-width: 94%;
}

.content1600 {
	margin: 0 auto;
	width: 1600px;
	max-width: 94%;
}

.hoverLi .pic {
	overflow: hidden;
}

.hoverLi:hover .imgScale {
	transform: scale(1.05);
}

.imgScale {
	transition: all 1s;
	display: block;
	width: 100%;
}

.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
	padding: 0 3.12%;
	background-color: rgba(255, 255, 255, .6);
}
.header.active {
	background-color: #fff;
}
.header .content{
	/* position: relative; */
	display: flex;
	justify-content: space-between;
	height: 100px;
	align-items: center;
}
.header .logo{
	position: relative;
	z-index: 3;
}
.header .logo img{
	display: block;
	width: 180px;
}
.header .nav{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
}
.header .nav ul{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
}
.header .r a,
.header .nav li>a{
	position: relative;
	display: block;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
	line-height: 100px;
	transition: all .6s;
	padding: 0 12px;
}
.header .r a{
    padding: 0;
    font-size: 16px;
    margin-right: 20px;
}
.header .r a:hover,
.header .nav li.active a,
.header .nav li:hover>a{
	color: rgba(10, 131, 235, 1);
}
.header .r{
    display: flex;
    align-items: center;
}
.header .nav li>a::before{
	position: absolute;
	content: "";
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 0;
	height: 3px;
	background-color: rgba(10, 131, 235, 1);
}
.header .nav li.active>a::before{
	width: 100%;
}
.header .nav  li .subNav{
	position: absolute;
	width: 100%;
	height: 100%;
	min-height: 329px;
	padding: 70px 0;
	left: 0;
	visibility: hidden;
	pointer-events: none;
}
.header .nav  li:hover .subNav{
	visibility: visible;
	pointer-events: inherit;
}
.header .nav  li .subNav:hover{
	height: 100%;
}
.header .nav  li .subNav::before{
	position: fixed;
	content: "";
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 3;
	background-color: rgba(0,0,0,.5);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all .6s;
}
.header .nav  li:hover .subNav::before{
	opacity: 1;
	visibility: visible;
	cursor: pointer;
}
.header .nav  li .subNav::after{
	position: absolute;
	content: "";
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	height: 100%;
	width: 200vw;
	background-color: #fff;
	z-index: 3;
	height: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all .6s;
	border-top: 1px solid rgba(215, 220, 230, 0.30);
}
.header .nav  li:hover .subNav::after{
	height: 100%;
	visibility: visible;
	cursor: pointer;
}
.header .nav  li .subNav .items{
	position: relative;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 60px 20px;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all .6s
}
.header .nav  li:hover .subNav .items{
	opacity: 1;
	visibility: visible;
	pointer-events: inherit;
	transition: all .6s .3s;
}
.header .nav  li .subNav .item{
	display: flex;
	align-items: flex-end;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: rgba(51, 51, 51, 1);
	line-height: 1;
	transition: all .6s;
}
.header .nav  li .subNav .items .icon img{
	width: 23px;
	display: block;
}
.header .nav  li .subNav .items .text{
	margin: 0 7px 0 13px;
}
.header .nav  li .subNav .items .icon-jiantou_youshang{
	align-self: center;
}
.header .nav  li .subNav .item:hover{
	color: rgba(21, 136, 235, 1);
}
.header .r .header-search-box{
	position: relative;
}
.header .r .header-search-box .header-searchBtn{
	width: 100px;
	line-height: 50px;
	background: #0A83EB;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 48px;
	cursor: pointer;
	transition: all .6s;
}
.header .r .header-search-box .header-searchBtn .iconfont{
	margin-right: 9px;
}
.header .r .header-search-box .header-search-container{
	position: absolute;
	right: -15px;
	top: 80px;
	display: none;
	/* border: 1px solid #999; */
}
.header .r .header-search-box .header-search{
	width: 230px;
	height: 38px;
	background: rgba(255, 255, 255, 1);
	/* background: #F0F0F0; */
	border-radius: 19px;
	display: flex;
	align-items: center;
}
.header .r .header-search-box .header-search input{
	flex: 1;
	padding-left: 17px;
	font-size: 12px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333;
	height: 100%;
	width: 100%;
	border-radius: 19px;
	border: none;
	outline: none;
	background-color: transparent;
}
.header .r .header-search-box .header-search input::placeholder{
	color: #999;
}
.header .r .header-search-box .header-search .iconfont{
	cursor: pointer;
	color: rgba(153, 153, 153, 1);
	padding: 0 15px 0 10px;
	transition: all 1s;
}
.header .r .header-search-box .header-search .iconfont:hover{
	color: #0A83EB;
}
.commonProductItem{
	position: relative;
	width: 22.85%;
	background: #FFFFFF;
	padding: 34px;
	transition: all .6s;
	height: auto;
}
.commonProductItem a{
	position: relative;
	z-index: 3;
}
.commonProductItem:hover{
	box-shadow: 5px 9px 30px 0px rgba(10,131,235,0.3);
}
.commonProductItem,
.commonProductItem::before{
	border-radius: 20px;
}
.commonProductItem::before{
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(-50deg, #0A83EB, #50A9F5);
	opacity: 0;
	transition: all .6s;
}
.commonProductItem:hover::before{
	opacity: 1;
}
.commonProductItem:not(:last-child){
	margin-right: 2.86%;
}
.commonProductItem .icon{
	width: 80px;
	height: 80px;
	background: #001E36;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	font-family: Rany-Bold;
	color: #2592EF;
	transition: all .6s;
}
.commonProductItem:hover .icon{
	background: #FCF9FC !important;
	color: rgba(37, 146, 239, 1) !important;
}
.commonProductItem .text-title{
	position: relative;
	margin-top: 32px;
	font-size: 24px;
	font-family: Rany-Bold;
	color: #333333;
	line-height: 1;
	padding-left: 14px;
	transition: all .6s
}
.commonProductItem .text-title::before{
	position: absolute;
	top: 2px;
	left: 0;
	content: "";
	width: 4px;
	height: 20px;
	background: #0A83EB;
	transition: all .6s;
}
.commonProductItem:hover .text-title::before{
	background-color: #fff;
}
.commonProductItem .text-des{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #999999;
	line-height: 24px;
	margin-top: 30px;
	transition: all .6s
}
.commonProductItem:hover .text-title,
.commonProductItem:hover .text-des{
	color: #fff;
}
.commonProductItem .download{
	width: 100px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #3499F1;
	border-radius: 22px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #0A83EB;
	margin-top: 72px;
	transition: all .6s;
}
.commonProductItem:hover .download{
	color: :#fff;
	background: linear-gradient(150deg, #DEEFFF, #FFFFFF);
}
.commonCase a{
	display: flex;
	padding: 46px 46px 57px;
}
.commonCase .swiper-slide{
	background-color: rgba(232, 235, 240, 1);
	transition: all .6s;
	transform: scale(.88);
	width: 1080px;
	max-width: 100%;
	border-radius: 20px;
}
.commonCase .swiper-slide-active{
	background-color: #fff;
	box-shadow: 5px 9px 30px 0px rgba(227,227,227,0.3);
	transform: scale(1);
}
.commonCase .pic{
	width: 322px;
	box-shadow: 5px 9px 30px 0px rgba(227,227,227,0.3);
	border-radius: 20px;
}
.commonCase .text-box{
	flex: 1;
	margin-left: 42px;
	padding-top: 26px;
}
.commonCase .text-box .text-title{
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #333333;
	line-height: 1;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.commonCase .text-box .text-des{
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #0A83EB;
	line-height: 24px;
	margin-top: 36px;
}
.commonCase .text-box .text{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #999999;
	line-height: 1.875;
	margin-top: 10px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}
.commonCase .details{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 44px;
	border: 2px solid #3499F1;
	border-radius: 22px;
	margin-top: 55px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #0A83EB;
	line-height: 24px;
}
.commonCase{
	padding: 60px 0 68px;
}
.commonNewsItem{
	position: relative;
	width: 31.23%;
	background-color: #fff;
	transition: all .6s;
}
.commonNewsItem:hover{
	box-shadow: 5px 9px 60px 0px rgba(10,131,235,0.3);
}
.commonNewsItem,
.commonNewsItem::before{
	border-radius: 5px
}
.commonNewsItem::before{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	opacity: 0;
	transition: all .6s;
	background: linear-gradient(-150deg, #0A83EB, #50A9F5);
}
.commonNewsItem:hover::before{
	opacity: 1;
}
.commonNewsItem .pic{
	border-radius: 5px 5px 0 0;
}
.commonNewsItem:not(:last-child){
	margin-right: 2.86%;
}
.commonNewsItem .text-box{
	position: relative;
	padding: 30px 30px 0;
	transition: all .6s;
	z-index: 3;
}
.commonNewsItem .text-box .text-title{
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #333333;
	line-height: 1.55;
	transition: all .6s;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.commonNewsItem .text-box .text-des{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #777777;
	line-height: 1.57;
	margin-top: 10px;
	transition: all .6s;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.commonNewsItem .text-box-b{
	margin-top: 35px;
	height: 67px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid rgba(236, 236, 236, 1);
	transition: all .6s;
}
.commonNewsItem .text-box-b .date{
	font-size: 16px;
	font-family: Rany;
	font-weight: 400;
	color: #999999;
	line-height: 1;
	transition: all .6s;
}
.commonNewsItem .text-box-b .icon-jiantou_youshang{
	transition: all .6s;
	color: rgba(19, 133, 230, 1);
}
.commonNewsItem:hover .text-box .text-title,
.commonNewsItem:hover .text-box .text-des,
.commonNewsItem:hover .text-box .text-box-b .date,
.commonNewsItem:hover .text-box .text-box-b .icon-jiantou_youshang{
	color: #fff;
	
}
.commonNewsItem:hover .text-box .text-box-b .icon-jiantou_youshang{
	transform: rotate(45deg);
}
.commonNewsItem:hover .text-box-b{
	border-color: #fff;
}
.footer{
	position: relative;
}
.footer-t{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -320px;
	z-index: 3;
	background: linear-gradient(-150deg, #0A83EB, #50A9F5);
	box-shadow: 5px 9px 60px 0px rgba(10,131,235,0.3);
	border-radius: 20px;
	padding: 0 60px;
	height: 480px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 4;
}
.footer-t-l {
	display: flex;
	height: 100%;
}
.footer-t-l .text-box{
	align-self: center;
}
.footer-t-l .text-box .text-title{
	font-size: 48px;
	font-family: HarmonyOS Sans SC;
	font-weight: 300;
	color: #FFFFFF;
	line-height: 1;
}
.footer-t-l .text-box .text-des{
	font-size: 30px;
	font-family: HarmonyOS Sans SC;
	font-weight: 300;
	color: #FFFFFF;
	line-height: 1;
	margin-top: 30px;
}
.footer-t-l .pic{
	position: relative;
	width: 350px;
	height: 100%;
	margin-left: 45px;
}
.footer-t-l .pic img{
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 0;
}
.footer-t-r .tel{
	font-size: 60px;
	font-family: Rany-Bold;
	color: #FFFFFF;
	line-height: 1;
}
.footer-t-r .text{
	font-size: 18px;
	font-family: HarmonyOS Sans SC;
	font-weight: 300;
	color: #FFFFFF;
	line-height: 1;
}
.footer-t-r form{
	display: flex;
	width: 480px;
	height: 80px;
	background: rgba(252, 249, 252, .1);
	border-radius: 40px;
	margin-top: 38px;
	align-items: center;
	padding: 5px 5px 5px 0;
}
.footer-t-r form input{
	background-color: transparent;
	border: none;
	outline: none;
	flex: 1;
	width: 100%;
	font-size: 18px;
	font-family: HarmonyOS Sans SC;
	font-weight: 300;
	color: #FFFFFF;
	line-height: 30px;
	padding: 0 30px;
	height: 100%;
}
.footer-t-r form input::placeholder{
	font-size: 18px;
	font-family: HarmonyOS Sans SC;
	font-weight: 300;
	color: #FFFFFF;
}
.footer-t-r form .submit{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 100%;
	background: linear-gradient(-150deg, #DEEFFF, #FFFFFF);
	border-radius: 35px;
	font-size: 18px;
	font-family: HarmonyOS Sans SC;
	font-weight: bold;
	color: #0A83EB;
	line-height: 30px;
	cursor: pointer;
}
.footer-t + .footer-c{
	padding-top: 260px;
}
.footer-c{
	padding: 123px 0 90px;
	background-color: rgba(21, 26, 36, 1);
}
.footer-c-t .item{
	display: flex;
	justify-content: space-between;
}
.footer-c-t .item .l{
	flex: 1;
}
.footer-c-t .item .l .logo a{
	display: block;
	width: 272px;
}
.footer-c-t .item .l .tel{
	margin-top: 75px;
	display: flex;
}
.footer-c-t .item .l .tel .icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: #0A83EB;
	border-radius: 50%;
}
.footer-c-t .item .l .tel .icon .iconfont{
	font-size: 26px;
	color: #fff;
}
.footer-c-t .item .l .tel .tel-text{
	margin-left: 15px;
}
.footer-c-t .item .l .tel-number{
	font-size: 36px;
	font-family: Rany;
	font-weight: 300;
	color: #0A83EB;
	line-height: 1;
}
.footer-c-t .item .l .tel-des{
	font-size: 18px;
	font-family: HarmonyOS Sans SC;
	font-weight: 300;
	color: #0A83EB;
	line-height: 1;
	margin-top: 6px;
}
.footer-c-t .item .l .social{
	display: flex;
	gap: 29px;
}
.footer-c-t .item .l .social a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(222, 222, 222, .2);
	border-radius: 50%;
	transition: all .6s;
	color: rgba(10, 131, 235, 1);
}
.footer-c-t .item .l .social a:hover{
	border-color: rgba(10, 131, 235, 1);
	color: #fff;
	background-color: rgba(10, 131, 235, 1);
}
.footer-c-t .item .l .social a .iconfont{
	font-size: 26px;
}
.footer-c-t .item .r{
	width: 53.57%;
}
.footer-c-t .item .r ul{
	display: flex;
	justify-content: space-between;
}
.footer-c-t .item .r .li-title{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #0A83EB;
	line-height: 1;
}
.footer-c-t .item .r .li-des{
	margin-top: 38px;
}
.footer-c-t .item .r .li-des-item a{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #CCCCCC;
	line-height: 2.5;
	transition: all .6s;
}
.footer-c-t .item .r .li-des-item a:hover{
	color: #0A83EB;
}
.footer-c-t .item:not(:last-child){
	margin-bottom: 68px;
}
.footer-b{
	border-top: 1px solid rgba(255,255,255,.1);
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	line-height: 30px;
	padding: 29px 0 21px;
	background-color: rgba(21, 26, 36, 1);
}
.footer-b .content1400{
	display: flex;
	justify-content: space-between;
}
.footer-b a{
	color: #666666;
}
.banner1{
	position: relative;
	padding-top: 220px;
}
.banner1 .icon{
	position: absolute;
	top: 220px;
	right: 67px;
	width: 400px;
}
.banner1 .icon img{
	width: 100%;
	display: block;
}
.banner1 .box-t-l{
	width: calc(100% - 300px);
}
.banner1 .zh{
	font-size: 120px;
	font-family: Rany-Bold;
	color: #dedede;
	line-height: 1;
	text-transform: uppercase;
}
.banner1 .en{
	font-size: 30px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #1E89EC;
	line-height: 1;
	margin-top: 10px;
}
.banner1 .des{
	font-size: 48px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #333333;
	line-height: 1.25;
	margin-top: 70px;
}
.banner1 .des span{
	color: #1E89EC;
	font-weight: bold;
}
.common-title{
	font-size: 30px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #0A83EB;
	line-height: 1.33;
	text-align: center;
}
.common-en{
	font-size: 48px;
	font-family: Rany-Bold;
	color: #333333;
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
}
.common-title + .common-en{
	margin-top: 10px;
}
.common-des{
	font-size: 30px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #5B5B5B;
	line-height: 1.33;
	margin-top: 32px;
	text-align: center;
}
.common-des span{
	font-weight: bold;
	color: rgba(51, 51, 51, 1);
}
.m_right {
	display: none;
}

.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.55);
	display: none;
	z-index: 999;
}

.modal .shadow {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.video-content {

	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);

}

.modal .close {
	position: absolute;
	right: -26px;
	top: -26px;
	cursor: pointer;
	color: #fff;
	font-size: 24px;
}

.video-content video {
	display: block;
	margin: 0 auto;
	max-width: 90vw;
	max-height: 80vh;
}

.pagination ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 18px;
	font-family: Rany-Bold;
	color: #CCCCCC;
}

.pagination ul li>a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #FFFFFF;
	border-radius: 5px;
	font-size: 18px;
	font-family: Rany-Bold;
	color: rgba(204, 204, 204, 1);
}
.pagination ul li:hover>a,
.pagination ul li.active>a{
	color: #fff;
	background: linear-gradient(-150deg, #0A83EB, #50A9F5);
	box-shadow: 5px 9px 60px 0px rgba(10,131,235,0.3);
}
.pagination ul li:first-child:hover a,
.pagination ul li:first-child a,
.pagination ul li:last-child:hover a,
.pagination ul li:last-child a{
	background: transparent !important;
	box-shadow: none;
}	
.pagination ul li:first-child a{
	color: rgba(204, 204, 204, 1);
}
.pagination ul li:last-child a{
	
}
.pagination ul li.active a .iconfont{
	background: linear-gradient(-150deg, #0A83EB, #50A9F5);
	box-shadow: 5px 9px 60px 0px rgba(10,131,235,0.3);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.pagination ul li .iconfont {
	font-size: 18px;
	font-weight: bold;
}
.m-right-buttom {
	display: none;
}

.m-navbar {
	display: none;
}
.innerPage{
	padding-top: 100px;
}
.inner-Nav{
	margin-top: 80px;
	display: flex;
	width: calc(100% - 200px);
	gap: 0 70px;
	padding-bottom: 19px;
	border-bottom: 1px solid RGBA(222, 222, 222, 1);
}
.inner-Nav a{
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: rgba(51, 51, 51, 1);
	transition: all .6s;
}
.inner-Nav a.active{
	font-weight: bold;
}
.inner-Nav a.active,
.inner-Nav a:hover{
	color: rgba(30, 137, 236, 1);
}
.inner-Nav1{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 60px;
	border-bottom: 1px solid RGBA(222, 222, 222, 1);
}
.inner-Nav1 a{
	position: relative;
	padding-bottom: 28px;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	line-height: 1;
	transition: all .6s;
}
.inner-Nav1 a:hover,
.inner-Nav1 a.active{
	color: rgba(10, 131, 235, 1);
}
.inner-Nav1 a::before{
	position: absolute;
	content: "";
	left: 50%;
	transform: translateX(-50%);
	bottom: -1px;
	width: 0;
	height: 3px;
	transition: all .6s;
	background-color: rgba(10, 131, 235, 1);
}
.inner-Nav1 a.active::before{
	width: 100%;
}
@keyframes fadeInUpSmall {
	from {
		opacity: 0;
		transform: translate3d(0%, 30px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0%, 0px, 0);
	}
}

.fadeInUpSmall {
	animation-name: fadeInUpSmall;
}
@media (max-width:1700px) {
	.banner1 .icon{
		width: 300px;
		right: 30px;
	}
}
@media (max-width:1630px) {
	.content1600 {
		width: 94%;
	}
	
}
@media (max-width:1530px) {
	.banner1 .des{
		font-size: 40px;
	}
	.banner1 .zh{
		font-size: 100px;
	}
	.commonProductItem{
		width: 23.5%;
	}
	.commonProductItem:not(:last-child){
		margin-right: 2%;
	}
}
@media (max-width:1500px) {
	.banner1 .des{
		font-size: 36px;
	}
	.banner1 .zh{
		font-size: 80px;
	}
	.banner1{
		padding-top: 180px;
	}
	.commonProductItem{
		padding: 30px;
	}
	.header .nav ul{
		gap: 20px;
	}
	.header .nav li>a{
		font-size: 16px;
		padding: 0 8px;
	}
	.header .nav li>a{
		line-height: 80px;
	}
	.innerPage{
		padding-top: 80px;
	}
	.header .content{
		height: 80px;
	}
	.header .logo img{
		display: block;
		width: 160px;
	}
	.footer-t-r form{
		width: 450px;
	}
	.footer-t-r .tel{
		font-size: 50px;
	}
	.footer-t-r form .submit{
		width: 140px;
	}
	.footer-t-l .text-box .text-title{
		font-size: 42px;
	}
	.footer-t-l .text-box .text-des{
		margin-top: 22px;
		font-size: 26px;
		line-height: 1.5;
	}
}

@media (max-width:1440px) {
	.banner1 .des{
		font-size: 30px;
	}
	.banner1 .zh{
		font-size: 60px;
	}
	.banner1 .en{
		font-size: 28px;
	}
	.commonProductItem .text-title{
		font-size: 22px;
	}
	.common-en{
		font-size: 40px;
	}
}

@media (max-width:1400px) {}
@media (max-width:1380px) {
	.footer-t-r .tel{
		font-size: 40px;
	}
	.footer-t-l .text-box .text-title{
		font-size: 36px;
	}
	.footer-t-l .text-box .text-des{
		font-size: 22px;
	}
	.footer-t{
		padding: 0 40px;
		height: 400px;
	}
	.footer-t-l .pic{
		width: 300px;
		margin-left: 30px;
	}
	
}
@media (max-width:1430px) {
	.content1400 {
		width: 94%;
	}
}

@media (max-width:1330px) {
	.content1300 {
		width: 94%;
	}
}

@media (max-width:1280px) {
	.common-en{
		font-size: 30px;
	}
	.common-des{
		margin-top: 15px;
		font-size: 28px;
	}
	.commonProductItem .text-title{
		font-size: 20px;
	}
	.footer-t-r{
		width: 400px;
	}
	.footer-t-r form{
		height: 60px;
		width: 100%;
	}
	.header .nav ul{
		gap: 16px;
	}
	.header .logo img{
		display: block;
		width: 140px;
	}
	.common-title{
		font-size: 28px;
	}
}

@media (max-width:1199px) {
	.common-en{
		font-size: 28px;
	}
	.common-des{
		margin-top: 10px;
		font-size: 26px;
	}
	.banner1 .des{
		font-size: 26px;
	}
	.banner1 .zh{
		font-size: 50px;
	}
	.banner1 .en{
		font-size: 24px;
	}
	.banner1{
		padding-top: 140px;
	}
	.banner1 .icon{
		position: relative;
		top: 0;
		width: 240px;
		right: 0;
	}
	.banner1 .box-t{
		display: flex;
		width: 100%;
	}
	.banner1 .box-t-l{
		flex: 1;
		width: 100%;
		margin-right: 24px;
	}
	.banner1 .des{
		margin-top: 40px;
	}
	.commonCase .text-box .text-des{
		margin-top: 25px;
	}
	.commonCase .details{
		margin-top: 35px;
	}
	.commonCase a{
		padding: 38px;
	}
	.commonCase .swiper-slide{
		max-width: 94%;
	}
	.commonProductItem{
		width: 32%;
	}
	.footer-c-t .item .l .logo img{
		display: block;
		width: 240px;
	}
	.footer-c-t .item .r{
		width: 60%;
	}
	.footer-c{
		padding: 60px 0 !important;
	}
	.footer-t{
		position: relative;
		left: 0;
		top: 0;
		transform: translate(0,0);
		margin-bottom: 30px;
	}
	.footer-t-r form{
		width: 400px;
	}
	.footer-t-r form{
		margin-top: 25px;
	}
	.footer-t-r .tel,
	.footer-t-l .text-box .text-title{
		font-size: 30px;
	}
	.footer-t-l .text-box .text-des{
		font-size: 20px;
		margin-top: 10px;
	}
	.footer-t-r{
		position: relative;
		margin-top: 30px;
		z-index: 3;
	}
	.footer-t-l .pic{
		position: absolute;
		right: 0;
		bottom: 0;
	}
	.footer-t-l,
	.footer-t-r{
		width: 100%;
		height: auto;
	}
	.footer-t{
		flex-direction: column;
		padding: 40px;
		height: auto;
	}
	.header .r .header-search-box .header-search-container{
		top: 60px;
		right: 0;
	}
	.header .r .header-search-box .header-searchBtn{
		width: 86px;
		height: 39px;
	}
	.header .content{
		height: 60px;
	}
	.innerPage{
		padding-top: 60px;
	}
	.header{
		padding: 0 3%;
	}
	.header .r{
		display: flex;
		align-items: center;
	}
	.header .r .m-right-buttom{
		margin-right: 30px;
	}
	.header .nav{
		display: none;
	}
	.m-right-buttom {
		display: block;
		cursor: pointer;
		user-select: none;
	}

	.m-right-buttom .in {
		height: 30px;
		width: 19px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.m-right-buttom span,
	.m-right-buttom span:after,
	.m-right-buttom span:before {
		display: block;
		height: 2px;
		width: 19px;
		background: rgba(10, 131, 235, 1);
		transition: top .2s linear
	}

	.header.active .m-right-buttom span,
	.header.active .m-right-buttom span:after,
	.header.active .m-right-buttom span:before {
		background: rgba(10, 131, 235, 1);
	}

	.m-right-buttom span {
		transition: all .2s .4s ease, background 0s;
		position: relative
	}

	.m-right-buttom span:after,
	.m-right-buttom span:before {
		position: absolute;
		left: 0;
		content: '';
		transform-origin: 50% 50%;
		transition: top .2s .4s ease, transform .4s ease;
		height: 2px
	}

	.m-right-buttom span:before {
		top: 6px
	}

	.m-right-buttom span:after {
		top: -6px
	}

	.m-right-buttom.active span,
	.header.active .m-right-buttom.active span {
		transition: all .2s 0s ease;
		background: 0 0
	}

	.m-right-buttom.active span:after,
	.m-right-buttom.active span:before {
		transition: top .2s ease, transform .2s .3s ease;
		top: 0;
		width: 19px
	}

	.m-right-buttom.active span:before {
		transform: rotate3d(0, 0, 1, 45deg)
	}

	.m-right-buttom.active span:after {
		transform: rotate3d(0, 0, 1, -45deg)
	}

	.m-navbar.active li {
		border-radius: 5px;
		background-color: #f0f0f0;
	}

	.m-navbar.active li .subNav {
		display: none;
		background-color: #f0f0f0;
		padding: 0 25px;
		border-radius: 0 0 5px 5px;
	}

	.m-navbar.active li .subNav a {
		margin-top: 0;
		background-color: transparent;
		padding: 10px 0 !important;
		border-radius: 0;
		font-size: 14px;
		display: flex;
		align-items: center;
	}
	.m-navbar.active li .subNav a img{
		width: 20px;
		margin-right: 5px;
	}
	.m-navbar.active li .subNav .item-title {
		padding: 10px 0 0;
	}

	.m-navbar.active li .subNav a:not(:last-child) {
		border-bottom: 1px solid rgba(193, 199, 208, 0.7);
	}

	.m-navbar ul {
		display: block;
		width: 100%;
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch
	}

	.m-navbar li {
		display: block;
		width: 100%;
		opacity: 0;
		transform: translateY(32px);
		transition: all .4s ease;
		margin: 0;
	}

	.m-navbar.active li {
		opacity: 1;
		transform: translateY(0);
	}

	.m-navbar li:hover a {
		color: #747474 !important;
	}

	.m-navbar li.active a {
		color: rgba(10, 131, 235, 1) !important;
	}

	.m-navbar {
		display: none;
		position: fixed;
		width: 100%;
		height: 100%;
		margin-right: 0;
		top: 0;
		left: 0;
		padding: 100px 4% 20px;
		background-color: RGBA(243, 248, 255, 1);
		z-index: 998;
		/* backdrop-filter: blur(20px); */
	}

	.m-navbar li+li {
		margin-top: 12px
	}

	.m-navbar li+li {
		margin-left: 0;
		padding: 0
	}

	.m-navbar li+li:after {
		display: none
	}

	.m-navbar li a {
		padding: 9px !important;
		background: #fafafa;
		color: #121212;
		height: auto;
		border-radius: 5px;
		font-weight: 400;
		display: block;
	}
	.footer-t-l .pic{
		width: 250px;
	}
	.footer-t-l .pic img{
		width: 100%;
	}
	.commonCase{
		padding: 50px 0;
	}
	.common-title{
		font-size: 26px;
	}
	.inner-Nav{
		width: 100%;
	}
}

@media (max-width: 1024px) {
	.common-en{
		font-size: 26px;
	}
	.common-des{
		font-size: 24px;
	}
	.inner-Nav a{
		font-size: 20px;
	}
	.commonCase{
		padding: 45px 0;
	}
	.commonCase .text-box .text{
		font-size: 14px;
	}
	.commonCase .text-box .text-des{
		margin-top: 20px;
		font-size: 16px;
	}
	.commonCase .text-box .text-title{
		font-size: 22px;
	}
	.commonCase .pic{
		width: 300px;
	}
	.commonCase .text-box{
		margin-left: 30px;
	}
	.commonCase a{
		padding: 30px;
	}
	.commonProductItem{
		width: 49%;
	}
	.footer-t-r .tel, .footer-t-l .text-box .text-title{
		font-size: 26px;
	}
	.footer-b .content1400{
		flex-direction: column;
		align-items: center;
	}
	.footer-b{
		padding: 15px 0;
	}
	.footer-c{
		padding: 50px 0 !important;
	}
	.footer-c-t .item .l .social{
		justify-content: center;
	}
	.footer-c-t .item:not(:last-child){
		margin-bottom: 30px;
	}
	.footer-c-t .item .l .logo img{
		width: 220px;
	}
	.footer-c-t .item .l .tel{
		margin-top: 25px;
		justify-content: center;
		text-align: left;
	}
	.footer-c-t .item .l .logo{
		display: inline-block;
	}
	.footer-c-t .item .r{
		display: none;
	}
	.footer-c-t .item .l{
		text-align: center;
	}
	.commonNewsItem{
		width: 49%;
	}
	.commonNewsItem:not(:last-child){
		margin-right: 2%;
	}
	.banner1{
		padding-top: 130px;
	}
	.banner1 .zh{
		font-size: 40px;
	}
	.banner1 .en{
		font-size: 22px;
	}
	.banner1 .des{
		margin-top: 20px;
		font-size: 20px;
	}
	.common-title{
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	.common-en{
		font-size: 24px;
	}
	.common-des{
		font-size: 22px;
		margin-top: 5px;
	}
	.inner-Nav{
		gap: 0 40px;
	}
	.inner-Nav a{
		font-size: 18px;
	}
	.banner1{
		padding-top: 100px;
	}
	.banner1 .zh{
		font-size: 25px;
	}
	.banner1 .icon{
		width: 180px;
	}
	.commonNewsItem .text-box{
		padding: 20px 20px 0;
	}
	.commonCase{
		padding: 40px 0;
	}
	.footer-t-r form input::placeholder{
		font-size: 16px;
	}
	.footer-t-r form .submit,
	.footer-t-r form input{
		font-size: 16px;
	}
	.footer-t-r form{
		margin-top: 20px;
		height: 50px;
	}
	.footer-t-r{
		margin-top: 25px;
	}
	.footer-t-l .pic{
		width: 200px;
	}
	.footer-t{
		padding: 30px;
	}
	.footer-t-r form input{
		padding: 0 20px;
	}
	.footer-t-r form .submit{
		width: 100px;
	}
	.footer-t-r .tel, .footer-t-l .text-box .text-title{
		font-size: 24px;
	}
	.footer-c{
		padding: 40px 0 !important;
	}
	.footer-c-t .item:not(:last-child){
		margin-bottom: 20px;
	}
	.footer-c-t .item .l .tel{
		margin-top: 15px;
	}
	.footer-c-t .item .l .tel-number{
		font-size: 30px;
	}
	.footer-c-t .item .l .logo img{
		width: 180px;
	}
	.footer-c-t .item .l .tel .icon{
		width: 40px;
		height: 40px;
	}
	.footer-c-t .item .l .tel .tel-text{
		margin-left: 8px;
	}
	.pagination ul li {
		width: 36px;
		height: 36px;
		line-height: 36px;
	}

	.video-content {
		width: 85%;
	}

	.video-content video {
		display: block;
		margin: 0 auto;
		width: 100%;
		height: auto;
	}
	.commonCase a{
		flex-direction: column;
	}
	.commonCase .pic{
		width: 100%;
	}
	.commonCase .text-box{
		margin-left: 0;
	}
	.commonCase .details{
		margin-top: 20px;
	}
	.commonCase .text-box .text-title{
		font-size: 20px;
	}
	.banner1 .des{
		font-size: 18px;
	}
	.common-title{
		font-size: 22px;
	}
	.inner-Nav1{
		gap: 35px;
	}
	.inner-Nav1 a{
		padding-bottom: 15px;
		font-size: 16px;
	}
}
@media (max-width:670px) {
	.commonProductItem{
		width: 380px;
	}
}
@media (max-width: 500px) {
	.common-en{
		font-size: 22px;
	}
	.common-des{
		font-size: 20px;
	}
	.inner-Nav{
		gap: 0 30px;
	}
	.inner-Nav a{
		font-size: 16px;
	}
	.common-title{
		font-size: 20px;
	}
	.banner1{
		padding-top: 80px;
	}
	.banner1 .des{
		font-size: 16px;
	}
	.banner1 .zh{
		font-size: 24px;
	}
	.banner1 .en{
		font-size: 20px;
	}
	.banner1 .icon{
		width: 120px;
	}
	.commonNewsItem{
		width: 100%;
	}
	.commonCase .details{
		width: 90px;
		height: 40px;
	}
	.commonCase .text-box .text-des{
		margin-top: 10px;
	}
	.commonCase .text-box .text-title{
		font-size: 18px;
	}
	.commonCase a{
		padding: 20px 20px 30px;
	}
	.commonCase{
		padding: 30px 0;
	}
	.commonProductItem .download{
		height: 40px;
		width: 90px;
	}
	.commonProductItem .download{
		margin-top: 30px;
	}
	.commonProductItem .text-des,
	.commonProductItem .text-title{
		margin-top: 20px;
	}
	.commonProductItem .icon{
		width: 60px;
		height: 60px;
		font-size: 30px;
	}
	.commonProductItem{
		width: 100%;
		padding: 20px;
	}
	.footer-t-r form input{
		padding: 0 15px;
	}
	.footer-t-r form .submit, .footer-t-r form input{
		font-size: 14px;
	}
	.footer-t-l .pic{
		width: 150px;
	}
	.footer-t{
		padding: 20px;
		margin-bottom: 20px;
	}
	.footer-t-r form{
		height: 45px;
		max-width: 100%;
	}
	.footer-t-r{
		margin-top: 15px;
	}
	.footer-t-r .text,
	.footer-t-l .text-box .text-des{
		font-size: 16px;
	}
	.footer-t-r .tel, .footer-t-l .text-box .text-title{
		font-size: 20px;
	}
	.footer-c-t .item .l .logo img{
		width: 150px;
	}
	.footer-c-t .item .l .tel-number{
		font-size: 24px;
	}
	.footer-c{
		padding: 30px 0 !important;
	}
	.footer-b{
		font-size: 12px;
		line-height: 20px;
		padding: 10px 0;
	}
	.header .logo img{
		width: 120px;
	}
	.header .r .header-search-box .header-searchBtn{
		width: 76px;
		height: 30px;
	}
	.header .content{
		height: 45px;
	}
	.innerPage{
		padding-top: 45px;
	}
}