* {
	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: "Rany";
	/* Project id 2871779 */
	src: url('../fonts/Rany.ttf');
}

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

@font-face {
	font-family: "Rany-Light";
	/* Project id 2871779 */
	src: url('../fonts/Rany-Light.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;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.main{
	background-color: #FAFAFA;
}
::-webkit-scrollbar {
	/*高宽分别对应横竖滚动条的尺寸*/
	width: 5px;
	height: 1px;
}

/*滚动条里面小方块*/
::-webkit-scrollbar-thumb {
	border-radius: 2px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: #1F64B0;
}

/*滚动条里面轨道*/
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 2px;
	background: #EDEDED;
}

.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%;
}

.picCover {
	position: relative;
}

.picCover .pic {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.picCover .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hoverLi .pic {
	overflow: hidden;
}

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

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

.font30 {
	font-size: 30px;
}

.font48 {
	font-size: 48px;
}

.font36 {
	font-size: 36px;
}

.font60 {
	font-size: 60px;
}

.font80 {
	font-size: 80px;
}

.font90 {
	font-size: 90px;
}

.font200 {
	font-size: 200px;
}

.header {
	position: sticky;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
	background-color: rgba(255, 255, 255, 1);

}

.header .content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.header .nav .list {
	display: flex;
	gap: 0 50px;
}
.header .nav .list li{
	position: relative;
}
.header .nav .list li>a {
	display: block;
	font-weight: 400;
	font-size: 18px;
	color: #222222;
	line-height: 80px;
	transition: all .6s;
}

.header .nav .list li:hover>a,
.header .nav .list li.active>a {
	color: #1C67C1;
}
.header .nav .list li .subNav{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background: #FFFFFF;
	box-shadow: 5px 9px 30px 0px rgba(204,204,204,0.3);
	border-radius: 0 0 5px 5px;
	white-space: nowrap;
	padding: 30px 0;
	display: none;
	/* visibility: hidden;
	opacity: .5;
	pointer-events: none;
	transition: all .6s; */
}
.header .nav .list li:hover .subNav{
	display: block;
	/* opacity: 1;
	visibility: visible;
	pointer-events: inherit; */
}
.header .nav .list li .subNav a{
	display: block;
	font-weight: 400;
	font-size: 18px;
	color: #666666;
	line-height: 48px;
	padding: 0 20px;
	width: 200px;
	text-align: center;
	transition: all .6s;
}
.header .nav .list li .subNav a:hover{
	color: #1F64B0;
}
.header .logo img {
	display: block;
	width: 160px;
}

.header .r {
	display: flex;
	align-items: center;
}

.header .r .language {
	font-weight: bold;
	font-size: 18px;
	color: #222222;
	line-height: 36px;
}

.header .r .language a {
	color: #222222;
	transition: all .6s;
}

.header .r .language a:hover,
.header .r .language a.active {
	color: #1F64B0;
}

.header .r .aslideBtn .iconfont {
	color: rgba(153, 153, 153, 1);
	font-size: 22px;
	transition: all .6s;
}

.header .r .header-search-box {
	position: relative;
	margin-left: 40px;
}

.header .r .header-search-box .header-searchBtn {
	cursor: pointer;
	font-size: 22px;
	color: rgba(153, 153, 153, 1);
	transition: all .6s;
}

.header .r .header-search-box .header-searchBtn:hover {
	color: #1F64B0;
}

.header .r .header-search-box .header-search-container {
	position: absolute;
	right: -15px;
	top: 70px;
	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;
	/* box-shadow: 0 10px 40px rgba(0, 0, 0, .08); */
	border: 1px solid #999;
}

.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: #1F64B0;
}

.footer {
	background-color: #222222;
}

.footer-t {
	display: flex;
	justify-content: space-between;
	padding: 105px 0 67px;
}

.footer-t-l {
	width: 31.42%;
}

.footer-t-l .text-title {
	font-weight: bold;
	font-size: 18px;
	color: #1B74E6;
	line-height: 1;
}

.footer-t-l .zh {
	font-weight: 400;
	font-size: 24px;
	color: #FFFFFF;
	line-height: 1.5;
	margin-top: 42px;
}

.footer-t-l .en {
	font-family: Rany-Bold;
	color: #1B74E6;
	line-height: 1;
}

.footer-t-l .tel {
	font-family: Rany;
	font-weight: 400;
	font-size: 24px;
	color: #1B74E6;
	line-height: 1.5;
	margin-top: 24px;
}

.footer-t-l .tel .iconfont {
	font-size: 22px;
	margin-right: 12px;
}

.footer-t-l .text-box {
	font-weight: 400;
	font-size: 14px;
	color: #999999;
	line-height: 2;
	margin-top: 7px;
}

.footer-t-r {
	width: 60.71%;
}

.footer-t-r .list {
	display: flex;
	justify-content: space-between;
}

.footer-t-r .list li .text-title {
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 30px;
}

.footer-t-r .list li .line {
	width: 36px;
	height: 1px;
	background-color: #1B74E6;
	margin: 35px 0;
}

.footer-t-r .list li .text-des a {
	color: #999999;
	line-height: 30px;
	transition: all .6s;
}

.footer-t-r .list li .text-des a:hover {
	color: #fff;
}

.footer-t-r .list li .text-des p:not(:last-child) {
	margin-bottom: 18px;
}

.footer-b {
	border-top: 1px solid rgba(255, 255, 255, .4);
}

.footer-b .content1400 {
	display: flex;
	justify-content: space-between;
	font-weight: 400;
	font-size: 14px;
	color: #999999;
	line-height: 30px;
	padding: 35px 0;
}

.footer-b a {
	color: #999999;
	transition: all .6s;
}

.footer-b a:hover {
	color: #fff;
}

.banner1 {
	position: relative;
	overflow: hidden;
}

.banner1 .pic img {
	display: block;
	width: 100%;
}

.banner1 .bannerBox {
	position: absolute;
	left: 50%;
	top: 38%;
	transform: translate(-50%, -50%);
	z-index: 3;
	text-align: center;
}

.banner1 .bannerBox .zh {
	color: #FFFFFF;
}

.banner1 .en {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -.1em;
	font-family: Rany-Bold;
	/* color: #FFFFFF; */
	line-height: .8em;
	text-transform: uppercase;
	text-align: center;
	background: linear-gradient(to bottom, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	z-index: 3;
}
.innerNav{
	position: relative;
	margin-top: 58px;
	padding: 0 20px;
}
.innerNav .swiper-slide {
	width: 140px;
	height: 140px;
	background: #F1F1F1;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 26px 10px; 
	justify-content: space-between;
	color: #333333;
	opacity: 0;
	transition: all .6s;
}
.innerNav .swiper-slide .icon{
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.innerNav .swiper-slide .icon img{
	max-width: 100%;
	max-height: 100%;
}
.innerNav .swiper-slide.swiper-slide-visible{
	opacity: 1;
}
.innerNav .swiper-slide:hover{
	color: #1B74E6;
}
.innerNav .swiper-slide.active{
	box-shadow: 5px 9px 30px 0px rgba(27,116,230,0.3);
	background: #1B74E6;
	color: #fff;
}
.innerNav .swiper-slide.active img{
	filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.innerNav .swiper-slide .text-title {
	font-family: Microsoft YaHei;
	font-weight: 300;
	font-size: 18px;
	line-height: 30px;
}

.innerNav .swiper-slide:not(:last-child) {
	margin-right: 20px;
}
.innerNav .btn{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #999;
	z-index: 3;
}
.innerNav .btn:not(.swiper-button-disabled):hover{
	color: #1B74E6;
}
.innerNav .btn.swiper-button-disabled{
	opacity: .5;
	cursor: not-allowed;
}
.innerNav .btn .iconfont{
	font-size: 20px;
}
.innerNav .btn.btn-prev{
	left: 0;
}
.innerNav .btn.btn-next{
	right: 0;
}
.fixedRight {
	position: fixed;
	right: 40px;
	top: 65%;
	z-index: 55;
}

.fixedRight .list li>a {
	position: relative;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid #DEDEDE;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #FAFAFA;
	color: #CCCCCC;
	transition: all .6s;
}
.fixedRight .list li .tel{
	position: absolute;
	right: 120%;
	top: 0;
	height: 100%;
	border-radius: 5px;
	box-shadow: 5px 9px 30px 0px rgba(0, 0, 0, 0.1);
	white-space: nowrap;
	padding: 0 20px;
	background-color: #fff;
	color: #333;
	font-size: 20px;
	vertical-align: middle;
	display: flex;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all .6s;
}
.fixedRight .list li:hover .tel{
	opacity: 1;
	visibility: visible;
	pointer-events: inherit;
}
.fixedRight .list li:hover a,
.fixedRight .list li:not(.backTop) a {
	background-color: #1B74E6;
	border-color: #1B74E6;
	color: #fff;
}

.fixedRight .list li:not(:last-child) {
	margin-bottom: 10px;
}

.fixedRight .list li>a .iconfont {
	font-size: 26px;
}
.hotProduct{
	padding: 120px 0 140px;
    background-color: #F3F3F3;
}
.hotProduct .zh{
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #1B74E6;
	line-height: 1;
	text-align: center;
}
.hotProduct .box-c{
	position: relative;
	margin-top: 60px;
}
.hotProduct .box-c .btns{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding-top: 23.57%;
}
.hotProduct .box-c .btns .btn{
	position: absolute;
	top: 50%;
	cursor: pointer;
	color: #CCCCCC;
	transition: all .6s;
}
.hotProduct .box-c .btns .btn:not(.swiper-button-disabled):hover{
	color: #1B74E6;
}
.hotProduct .box-c .btns .btn .iconfont{
	font-size: 24px;
	font-weight: bold;
}
.hotProduct .box-c .btns .btn.btn-prev{
	left: 0;
	transform: translate(-200%, -50%);
}
.hotProduct .box-c .btns .btn.btn-next{
	right: 0;
	transform: translate(200%, -50%);
}
.hotProduct .box-c .btns .btn.swiper-button-disabled{
	opacity: .5;
	cursor: not-allowed;
}
.hotProduct .box-c .swiper-slide{
	width: 23.57%;
}
.hotProduct .box-c .swiper-slide:not(:last-child){
	margin-right: 1.9%;
}
.hotProduct .box-c .swiper-slide .picCover{
	padding-top: 66.660%;
	box-shadow: 5px 9px 30px 0px rgba(200,215,235,0.3);
	border-radius: 10px;
}
.hotProduct .box-c .swiper-slide .picCover .pic{
	border-radius: 10px;
}
.hotProduct .box-c .swiper-slide .picCover .pic img{
    width: auto;
    height: auto;
    max-width:100%;
    max-height: 100%;
}
.hotProduct .box-c .swiper-slide .text-title{
	font-weight: 300;
	font-size: 24px;
	color: #333333;
	line-height: 30px;
	margin-top: 36px;
	text-align: center;
	transition: all .6s;
}
.hotProduct .box-c .swiper-slide:hover .text-title{
	color: #1B74E6;
}
.pc-aslide {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: ease-in-out .6s;
}

.pc-aslide.active {
	opacity: 1;
	pointer-events: inherit;
	visibility: visible;
}

.pc-aslide-content {
	position: absolute;
	right: 0;
	top: 0;
	background-color: rgba(255, 255, 255, 1);
	height: 100%;
	width: 829px;
	max-width: 100%;
	padding: 48px 50px 50px 77px;
	display: flex;
	flex-direction: column;
	transition: ease-in-out .6s;
	transform: translateX(120%);
	opacity: 0;
}

.pc-aslide.active .pc-aslide-content {
	transform: translateX(0);
	transition: ease-in-out .6s .3s;
	opacity: 1;
}

.pc-aslide-content-t {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pc-aslide-content-t .close {
	color: rgba(153, 153, 153, 1);
	transition: all .6s;
	cursor: pointer;
}

.pc-aslide-content-c .list .li-des a:hover,
.pc-aslide-content-c .list .li-title:hover,
.pc-aslide-content-t .close:hover {
	color: #1F64B0;
}

.pc-aslide-content-t .close .iconfont {
	font-size: 30px;
}

.pc-aslide-content-c {
	text-align: center;
	margin-top: 100px;
	flex: 1;
	overflow: auto;
}

.pc-aslide-content-c .list {
	display: inline-block;
	min-width: 300px;
}

.pc-aslide-content-c .list li {
	opacity: 0;
	transition: all 1s ease;
	transform: translateY(40px);
}

.pc-aslide.active .pc-aslide-content-c .list li {
	opacity: 1;
	transform: translateY(0);
}

.pc-aslide-content-c .list li:not(:last-child) {
	margin-bottom: 50px;
}

.pc-aslide-content-c .list .li-title {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #333333;
	line-height: 1;
	transition: all .6s;
}

.pc-aslide-content-c .list .li-des {
	border-top: 1px solid rgba(230, 230, 230, 1);
	margin-top: 20px;
	padding-top: 20px;
	display: none;
}

.pc-aslide-content-c .list .li-des a {
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #666666;
	display: block;
	line-height: 2.5;
	transition: all .6s;
}

.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;
	flex-wrap: wrap;
}

.pagination ul li {
	width: 42px;
	height: 42px;
	line-height: 40px;
	text-align: center;
	font-size: 18px;
	color: #666666;
	margin: 5px;
	cursor: pointer;
	border: 1px solid #D1D1D1;
	transition: all .6s;
}


.pagination ul li .iconfont {
	font-size: 18px;
}

.pagination ul li:hover,
.pagination ul li.active {
	background-color: #1B74E6;
	border-color: #1B74E6;
	color:#fff;
}

.pagination ul li a {
	color: #666666;
	display: block;
	transition: all .6s;
}

.pagination ul li.active a,
.pagination ul li:hover a {
	color: #fff;
}

@keyframes fadeInUpSmall {
	from {
		opacity: 0;
		transform: translate3d(0%, 30px, 0);
	}

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

.fadeInUpSmall {
	animation-name: fadeInUpSmall;
}

.m-right-buttom {
	display: none;
}

@media (max-width:1630px) {
	.content1600 {
		width: 94%;
	}
}

@media (max-width:1500px) {}

@media (max-width:1440px) {
	.header .nav .list{
		gap: 30px;
	}
	.font48 {
		font-size: 36px;
	}

	.font36 {
		font-size: 32px;
	}

	.font60 {
		font-size: 48px;
	}

	.font80 {
		font-size: 60px;
	}

	.font90 {
		font-size: 70px;
	}

	.font200 {
		font-size: 150px;
	}
}

@media (max-width:1400px) {}

@media (max-width:1430px) {
	.content1400 {
		width: 94%;
	}
}

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

@media (max-width:1280px) {
	.pc-aslide-content-c .list .li-title {
		font-size: 20px;
	}

	.pc-aslide-content-c .list li:not(:last-child) {
		margin-bottom: 35px;
	}

	.pc-aslide-content-c .list .li-des a {
		font-size: 16px;
		line-height: 2;
	}

	.font36 {
		font-size: 30px;
	}

	.font60 {
		font-size: 36px;
	}

	.font80 {
		font-size: 48px;
	}

	.font90 {
		font-size: 60px;
	}

	.font200 {
		font-size: 120px;
	}

	.font30 {
		font-size: 28px;
	}

	.font48 {
		font-size: 30px;
	}
}

@media (max-width:1199px) {
	.fixedRight .list li>a{
		width: 50px;
		height: 50px;
	}
	.fixedRight{
		right: 20px;
	}
	.header .content{
		height: 70px;
	}
	.header .nav{
		display: none;
	}
	.font36 {
		font-size: 28px;
	}

	.font60 {
		font-size: 30px;
	}

	.font80 {
		font-size: 36px;
	}

	.font90 {
		font-size: 50px;
	}

	.font200 {
		font-size: 90px;
	}

	.font30 {
		font-size: 26px;
	}

	.font48 {
		font-size: 28px;
	}
	.header .r .header-search-box{
		margin-left: 30px;
	}
	.m-right-buttom {
		display: block;
		cursor: pointer;
		user-select: none;
		margin-left: 30px;
	}

	.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: #1F64B0;
		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: #1F64B0;
	}

	.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)
	}
	.footer-t{
		padding-top: 70px ;
	}
	.innerNav{
		margin-top: 45px;
	}
	.hotProduct{
		padding: 80px 0 !important;
	}
	.hotProduct .box-c{
		margin-top: 45px;
	}
	.hotProduct .box-c .swiper-slide .text-title{
        margin-top: 20px;
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
	.hotProduct .box-c .swiper-slide{
        width: 32%;
    }
    .hotProduct .box-c .swiper-slide:not(:last-child){
        margin-right: 2%;
    }
    .hotProduct .box-c .swiper-slide .text-title{
        font-size: 20px;
    }
	.hotProduct{
		padding: 70px 0 !important;
	}
	.hotProduct .box-c{
		margin-top: 40px;
	}
	.about .box6 .box-c .list .liBox{
		font-size: 24px;
	}
	.innerNav .swiper-slide .text-title{
		font-size: 16px;
	}
	.innerNav .swiper-slide{
		width: 110px;
		height: 110px;
		padding: 17px 10px;
	}
	.innerNav .swiper-slide .icon{
		width: 35px;
		height: 35px;
	}
	.innerNav{
		margin-top: 40px;
	}
	.footer-b .content1400{
		padding: 20px 0;
	}
	.footer-t-l .zh{
		margin-top: 25px;
	}
	.footer-t-l{
		width: 100%;
	}
	.footer-t-r{
		display: none;
	}
	.footer-t{
		padding: 60px 0;
	}
	.font36 {
		font-size: 26px;
	}

	.font60 {
		font-size: 28px;
	}

	.font80 {
		font-size: 30px;
	}

	.font90 {
		font-size: 40px;
	}

	.font200 {
		font-size: 70px;
	}

	.font30 {
		font-size: 24px;
	}

	.font48 {
		font-size: 26px;
	}
}

@media (max-width: 768px) {
	.hotProduct .box-c .swiper-slide .text-title{
		font-size: 18px;
	}
	.hotProduct .box-c .swiper-slide{
        width: 48.5%;
    }
    .hotProduct .box-c .swiper-slide:not(:last-child){
        margin-right: 3%;
    }
	.hotProduct{
		padding: 60px 0 !important;
	}
	.hotProduct .box-c{
		margin-top: 30px;
	}
	.innerNav{
		margin-top: 30px;
	}
	.footer-b .content1400{
		padding: 12px 0;
		flex-direction: column;
		align-items: center;
		line-height: 20px;
		font-size: 12px;
	}
	.footer-t-l .zh{
		margin-top: 15px;
		font-size: 20px;
	}
	.footer-t{
		padding: 50px 0;
	}
	.header .content{
		height: 60px;
	}
	.header .logo img{
		width: 140px;
	}
	.font36 {
		font-size: 24px;
	}

	.font60 {
		font-size: 26px;
	}

	.font80 {
		font-size: 28px;
	}

	.font90 {
		font-size: 30px;
	}

	.font200 {
		font-size: 50px;
	}

	.font30 {
		font-size: 22px;
	}

	.font48 {
		font-size: 24px;
	}

	.pc-aslide-content {
		background-color: transparent;
	}

	.pc-aslide {
		z-index: 99;
		background-color: transparent;
	}

	.pc-aslide::before,
	.pc-aslide::after {
		position: absolute;
		content: "";
		width: 100vw;
		height: 100vw;
		right: 50vw;
		bottom: -50vw;
		background-color: rgba(0, 0, 0, 1);
		border-radius: 0 50% 0 0;
		transform-origin: center;
		transform: scale(0);
		transition: opacity .7s, transform 1.5s;
	}

	.pc-aslide::after {
		background-color: #fff;
		right: auto;
		bottom: auto;
		left: 50vw;
		top: -50vw;
		border-radius: 0 0 0 50%;
		transition: opacity .7s, transform 1s;
	}

	.pc-aslide.active::after,
	.pc-aslide.active::before {
		transform: scale(5);
		opacity: 1;
	}

	.pc-aslide-content-t {
		display: none;
	}

	.pc-aslide-content {
		padding: 60px 3%;
	}

	.pc-aslide-content {
		transform: translateX(0);
		z-index: 4;
	}

	.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;
	}
	.fixedRight{
		right: 10px;
	}
	.fixedRight .list li>a{
		width: 40px;
		height: 40px;
	}
	.fixedRight .list li>a .iconfont{
		font-size: 22px;
	}
	.fixedRight .list li .tel{
		font-size: 16px;
		padding: 0 14px;
	}
}

@media (max-width: 500px) {
	.hotProduct .box-c .swiper-slide{
        width: 100%;
    }
	.hotProduct{
		padding: 50px 0 !important;
	}
	.hotProduct .box-c{
		margin-top: 25px;
	}
	.innerNav .swiper-slide .icon{
        height: 28px;
        height: 28px;
    }
    .innerNav .swiper-slide .text-title{
        font-size: 12px;
		line-height: 1;
    }
    .innerNav .swiper-slide{
        width: 80px;
        height: 80px;
        padding: 15px 10px;
    }
	.innerNav{
		margin-top: 25px;
	}	
	.footer-t-l .text-title{
		font-size: 16px;
	}
	.footer-t-l .zh{
		font-size: 18px;
	}
	.footer-t-l .tel .iconfont{
		font-size: 18px;
		margin-right: 5px;
	}
	.footer-t-l .tel{
		margin-top: 14px;
		font-size: 20px;
	}
	.footer-t-l .text-box{
		margin-top: 0;
	}
	.footer-t{
		padding: 30px 0;
	}
	.header .logo img{
		width: 120px;
	}
	.header .r .language{
		font-size: 16px;
	}
	.header .r .header-search-box,
	.m-right-buttom{
		margin-left: 20px;
	}
	.font36 {
		font-size: 22px;
	}

	.font60 {
		font-size: 24px;
	}

	.font80 {
		font-size: 26px;
	}

	.font90 {
		font-size: 26px;
	}

	.font200 {
		font-size: 30px;
	}

	.font30 {
		font-size: 20px;
	}

	.font48 {
		font-size: 22px;
	}

	.pc-aslide-content-c .list {
		min-width: 249px;
	}

	.pc-aslide-content-c .list .li-des {
		padding-top: 15px;
		margin-top: 15px;
	}

	.pc-aslide-content-c .list li:not(:last-child) {
		margin-bottom: 25px;
	}

	.pc-aslide-content-c .list .li-des a {
		font-size: 14px;
		line-height: 2;
	}

	.pc-aslide-content-c .list .li-des a:not(:last-child) {
		margin-bottom: 5px;
	}

	.pc-aslide-content-c .list .li-title {
		font-size: 16px;
	}

	.pc-aslide-content-t {
		height: 50px;
	}

	.pc-aslide-content-t .logo img {
		width: 100px;
	}
}