* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Gotham;
	/* font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'HarmonyOS Sans SC', 'SimSun', 'SimHei', 'Arial', 'sans-serif'; */
}
@font-face {
	font-family: "Gotham";
	/* Project id 2871779 */
	src: url('../fonts/GOTHAM-BOOK.OTF');
}
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;
}
::-webkit-scrollbar {
   /*高宽分别对应横竖滚动条的尺寸*/
    width: 10px;     
    height: 1px;
  }

  /*滚动条里面小方块*/
::-webkit-scrollbar-thumb {
    border-radius: 2px;
   -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: rgba(111, 203, 46, 1);
  }
  
  /*滚动条里面轨道*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 2px;
    background: #EDEDED;
  }
  @keyframes rotate {
  	0% {
  		transform: rotate(0deg);
  	}
  
  	100% {
  		transform: rotate(360deg);
  	}
  }
.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%;
}
.content1720{
	margin: 0 auto;
	width: 1720px;
	max-width: 94%;
}
.hoverLi .pic {
	overflow: hidden;
}

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

.imgScale {
	transition: all 1s;
	display: block;
	width: 100%;
}
.font14{
	font-size: 14px;
}
.font16{
	font-size: 16px;
}
.font18{
	font-size: 18px;
}
.font24{
	font-size: 24px;
}
.font30{
	font-size: 30px;
}
.font48{
	font-size: 48px;
}
.font36{
	font-size: 36px;
}
.font60{
	font-size: 60px;
}
.font72{
	font-size: 72px;
}
.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
	padding: 20px 0 0;
	transition: all .6s;
}
.header.active{
	padding-top: 0;
}
.header .content1720{
	background: #FFFFFF;
	border-radius: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 5px 5px 17px;
}
.header.active .content1720{
	width:100%;
	max-width:100%;
	border-radius: 0;
	transition: all .6s;
}
.header .logo img{
	display: block;
	width: 120px;
}
.header .r{
	display: flex;
	align-items: center;
}
.header .r .list{
	display: flex;
	gap: 10px 40px;
}
.header .r .list li{
    position: relative;
}
.header .r .list li>a{
	font-family: Gotham;
	font-size: 18px;
	color: #000000;
	display: block;
	/* line-height: 50px; */
}
.header .r .list li:hover>a,
.header .r .list li.active>a{
	color: #71D30B
}
.header .r .list li .subNav{
    background: #fff;
    position: absolute;
    left: -20px;
    /* transform: translateX(-50%); */
    padding: 15px 0;
    display: none;
    border-radius: 5px;
}
.header .r .list li:hover .subNav{
	display:block;
}
.header .r .list li .subNav a{
    white-space: nowrap;
    display: block;
    font-size: 16px;
    line-height: 2;
    padding: 0 20px;
}
.header .r .list li .subNav a:hover{
	color: #71D30B
}
.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: 70px;
}
.header .r .header-search-box .header-searchBtn{
	cursor: pointer;
	font-family: Gotham;
	font-weight: normal;
	font-size: 18px;
	color: #CCCCCC;
	line-height: 24px;
	transition: all .6s;
}
.header .r .header-search-box .header-searchBtn .iconfont{
	color: rgba(111, 203, 46, 1);
}
.header .r .header-search-box .header-searchBtn:hover{
	color: rgba(111, 203, 46, 1);
}
.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 rgba(111, 203, 46, 1);
}
.header .r .header-search-box .header-search input{
	flex: 1;
	padding-left: 17px;
	font-size: 12px;
	font-family: Search;
	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: rgba(111, 203, 46, 1);
}
.header .r .header-tel{
	display: flex;
	align-items: center;
	margin-left: 35px;
	line-height: 60px;
	padding: 0 20px;
	background: #71D30B;
	border-radius: 30px;
	font-family: Gotham;
	font-size: 18px;
	color: #000000;
}
.header .r .header-tel1{
    margin-left: 10px;
}
.header .r .header-tel .iconfont{
	font-size: 26px;
	margin-right: 7px;
	margin-top: 3px;
}
.footer{
	padding: 121px 0 102px;
	background: #71D30B;
	background-size: cover;
	text-align: center;
}
.footer-c{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 28px;
    margin-bottom: 55px;
    border-bottom: 2px solid rgba(255,255,255,1);
}
.footer-c-l .logo{
    font-family: GothamBook;
    font-weight: 400;
    color: #F5F5F5;
    line-height: 1;
}
.footer-c-r{
    display: flex;
    align-items: center;
    font-family: GothamBook;
    font-weight: 400;
    font-size: 24px;
    color: #F5F5F5;
    line-height: 1.5;
    gap: 28px;
}
.footer-c-r a{
    position: relative;
    color: #fff;
    line-height: 1;
}
.footer-c-r a .iconfont{
    font-size: 28px;
}
.footer-c-r a img{
    position: absolute;
    top: 0;
    left: 50%;
    width: 120px;
    transform: translate(-50%,-105%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.footer-c-r a:hover img{
    opacity: 1;
    visibility: visible;
    pointer-events: inherit;
}
.footer-t{
	display: flex;
	justify-content: space-between;
}
.footer-t-l{
	width: 65.71%;
}
.footer-t-l .list{
	display: flex;
	justify-content: space-between;
	text-align: left;
	width: 637px;
	max-width: 100%;
}
.footer-t-l .list li .li-title{
	font-family: GothamBook;
	font-weight: 400;
	font-size: 18px;
	color: #F5F5F5;
	line-height: 1.5rem;
}
.footer-t-l .list li .li-des{
	font-size: 14px;
	line-height: 24px;
	color: rgba(245, 245, 245, 1);
	margin-top: 60px;
}
.footer-t-l .list li .li-des a{
	display: block;
	color: rgba(245, 245, 245, 1);
	transition: all .6s;
}
.footer-t-l .list li .li-des a:not(:last-child),
.footer-t-l .list li .li-des p:not(:last-child){
	margin-bottom: 27px;
}
.footer-t-l .list li .li-des a:hover{
	opacity: .8;
}
.footer-t-r{
	width: 25.71%;
}
.footer-t-r .inputs .input textarea,
.footer-t-r .inputs .input input{
	display: block;
	width: 100%;
	border: none;
	outline: none;
	resize: none;
	border: 1px solid rgba(255,255,255,1);
	padding: 8px 16px;
	background-color: transparent;
	color: rgba(245, 245, 245, 1);
	font-size: 14px;
	line-height: 30px;
}
.footer-t-r .inputs .input textarea{
	height: 120px;
}
.footer-t-r .inputs .input textarea::placeholder,
.footer-t-r .inputs .input input::placeholder{
	color: #fff;
}
.footer-t-r .inputs .input:not(:last-child){
	margin-bottom: 10px;
}
.footer-t-r .submit{
	font-family: GothamBook;
	line-height: 50px;
	background: #FFFFFF;
	text-align: center;
	font-family: GothamBook;
	font-weight: 400;
	font-size: 14px;
	color: #61C01D;
	cursor: pointer;
	text-transform: uppercase;
	margin-top: 20px;
}
.banner1{
	position: relative;
}
.banner1 .pic img{
	display: block;
	width: 100%;
	min-height: 430px;
	object-fit: cover;
}
.banner1 .banner-box{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
}
.banner1 .title{
	color: #fff;
	text-transform: uppercase;
}
.innerNav {
	position: relative;
}
.innerNav::before{
	position: absolute;
	content: "";
	left: 0;
	bottom: 1px;
	height: 1px;
	width: 100%;
	background-color: RGBA(222, 222, 222, 1);
}
.innerNav .btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.innerNav .btn.swiper-button-disabled{
    opacity: .3;
    cursor: not-allowed;
}
.innerNav .btn:not(.swiper-button-disabled):hover{
    color: rgba(113, 211, 11, 1);
}

.innerNav .btn .iconfont{
    font-weight: bold;
    font-size: 20px;
}
.innerNav .btn.btn-prev{
    left: 0;
    
}
.innerNav .btn.btn-next{
    right: 0;
    
}
.innerNav .box-c{
    position: relative;
    padding: 0 25px;
}
.innerNav .swiper-slide{
	position: relative;
	padding: 38px 30px 34px;
	color: rgba(34, 34, 34, 1);
	width: auto;
	transition: all .6s;
}
.innerNav .swiper-slide.active,
.innerNav .swiper-slide:hover{
	color: rgba(113, 211, 11, 1);
}
.innerNav .swiper-slide:not(:last-child){
	margin-right: 70px;
}
.innerNav .swiper-slide::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 3px;
	background-color: rgba(113, 211, 11, 1);
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	opacity: 0;
}
.innerNav .swiper-slide.active::before{
	opacity: 1;
}
.innerBread{
	position: absolute;
	top: 140px;
	display: flex;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	color: rgba(246, 249, 253, 1);
	flex-wrap: wrap;
	align-items: center;
	line-height: 24px;
	font-size: 14px;
}
.innerBread a{
	color: rgba(246, 249, 253, 1);
}
.innerBread a .iconfont{
	font-size: 14px;
}
.innerBread .icon-youjiantou11{
	font-size: 12px;
	margin: 0 5px;
}
.commonMore{
	display: inline-block;
	font-family: Gotham;
	font-size: 18px;
	color: #333333;
	line-height: 50px;
	padding: 0 20px;
	background: #71D30B;
	border-radius: 25px;
	transition: all .6s;
	min-width: 150px;
	text-align: center;
}
.commonMore:hover{
	color: #fff;
}
.rightFixed{
    position: fixed;
    z-index: 999;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.rightFixed a{
    display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: rgba(111, 203, 46, 1);
	border-radius: 50%;
	color: #FFFFFF ;
}
.rightFixed a .iconfont{
	font-size: 22px;
	transition: all .6s;
}
.rightFixed a:hover .iconfont{
	transform: rotateY(180deg);
}
.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: rgba(111, 203, 46, 1);
}
.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-title.active{
	color: #71D30B;
}
.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;
}
.innerPage{
	padding-top: 103px;
}
.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: flex-start;
	flex-wrap: wrap;
}

.pagination ul li {
	width: 50px;
	height: 50px;
	line-height: 48px;
	text-align: center;
	font-size: 16px;
	color: rgba(51, 51, 51, 1);
	margin: 5px;
	cursor: pointer;
	background-color: rgba(250, 250, 250, 1);
	transition: all .6s;
	border-radius: 5px;
}


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

.pagination ul li:hover,
.pagination ul li.active {
	background-color: rgba(111, 203, 46, 1);
	border-color: rgba(111, 203, 46, 1);
	box-shadow: 5px 9px 30px 0px rgba(113,211,11,0.3);
}

.pagination ul li a {
	color: rgba(153, 153, 153, 1);
	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: 1600px) {
    .header .r .list{
        gap: 30px;
    }
	.header .r .header-tel{
		font-size:20px;
	}
    .header .r .header-search-box{
        margin-left: 40px;
    }
}
@media (max-width:1500px) {}

@media (max-width:1440px) {
    .header .r .list li>a{
        font-size: 16px;
    }
	.font48{
		font-size: 36px;
	}
	.font36{
		font-size: 32px;
	}
	.font60{
		font-size: 48px;
	}
	.font72{
		font-size: 54px;
	}
	.header .r .list{
		gap: 0 30px;
	}
	.header .r .header-search-box{
		margin-left: 40px;
	}
	.header .r .header-tel{
		font-size: 20px;
	}
}

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

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

@media (max-width:1330px) {
	.header .r .list{
		gap: 25px;
		
	}
	.header .r .header-tel,
	.header .r .header-search-box{
		margin-left:30px;
	}
	.content1300 {
		width: 94%;
	}
	.header .r .header-tel{
		font-size:18px
	}
}

@media (max-width:1280px) {
	.innerPage{
		padding-top:83px;
	}
	.header .r .header-tel{
		line-height: 50px;
		font-size: 18px;
		padding: 0 15px;
		margin-left: 25px;
	}
	.header .r .header-search-box{
		margin-left: 25px;
	}

	.header .r .list{
		gap: 0 20px;
	}
	.header .r .list li>a{
		font-size: 16px;
		line-height: 50px;
	}
	.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;
	}
	.font72{
		font-size: 48px;
	}
	.font30{
		font-size: 28px;
	}
	.font48{
		font-size: 30px;
	}
	.innerNav .swiper-slide:not(:last-child){
		margin-right: 40px;
	}
}

@media (max-width:1199px) {
    .footer-c{
        padding-bottom: 18px;
        margin-bottom: 45px;
    }
	.innerNav .swiper-slide{
		padding: 22px 15px;
		font-size: 16px;
	}
	.innerNav .swiper-slide:not(:last-child){
		margin-right: 30px;
	}
	.innerPage{
		padding-top: 83px;
	}
	.header .r .list{
		gap: 0 25px;
	}
	.header .r .header-search-box .header-search-container{
		top: 60px;
	}
	.header .r .header-search-box{
		margin-left: 40px;
	}
	.header .r .header-tel{
		font-size: 18px;
		padding: 0 15px;
	}
	.header .r .header-tel .iconfont{
		font-size: 18px;
	}
	.header .r .list li>a,
	.header .r .header-tel{
		line-height: 50px;
	}
	.font36{
		font-size: 28px;
	}
	.font72{
		font-size: 36px;
	}
	.font60{
		font-size: 30px;
	}
	.font30{
		font-size: 26px;
	}
	.font48{
		font-size: 28px;
	}
	.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: #71D30B;
		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: #71D30B;
	}
	
	.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)
	}
	.header .r .list{
		display: none;
	}
	.footer{
		padding: 70px 0;
	}
}

@media (max-width: 1024px) {
    .footer-c-r{
        font-size: 20px;
        gap: 18px;
    }
    .footer-c{
        margin-bottom: 40px;
    }
	.footer-t-r{
		margin-top: 40px;
	}
	.footer-t-l,
	.footer-t-r{
		width: 100%;
	}
	.footer-t-l .list li .li-des{
		margin-top: 10px;
		display: flex;
		flex-wrap: wrap;
		gap: 5px 10px;
	}
	.footer-t-l .list li .li-des p{
		width: 100%;
	}
	.footer-t-l .list li .li-des p:not(:last-child),
	.footer-t-l .list li .li-des a:not(:last-child){
		margin-bottom: 0;
	}
	.footer-t-l .list li:not(:last-child){
		margin-bottom: 20px;
	}
	.footer-t{
		flex-direction: column;
	}
	.footer-t-l .list{
		display: block;
	}
	.innerNav .swiper-slide{
		font-size: 14px;
		padding: 17px 10px;
	}
	.commonMore{
		font-size: 16px;
		min-width: 120px;
		line-height: 45px;
	}
	.font36{
		font-size: 26px;
	}
	.font72{
		font-size: 30px;
	}
	.font60{
		font-size: 28px;
	}
	.font30{
		font-size: 24px;
	}
	.font48{
		font-size: 26px;
	}
	.footer{
		padding: 60px 0;
	}
}

@media (max-width: 768px) {
    .footer-c{
        margin-bottom: 30px;
    }
	.footer-t-r{
		margin-top: 30px;
	}
    ::-webkit-scrollbar {
   /*高宽分别对应横竖滚动条的尺寸*/
		width: 5px;     
		height: 1px;
	}	
	.innerNav .swiper-slide:not(:last-child){
		margin-right: 20px;
	}
	.innerPage{
		padding-top: 68px;
	}
	.footer{
		padding: 50px 0;
	}
	.header .content1720{
		padding: 5px;
	}
	.header .r .header-tel,
	.header .r .header-search-box{
		margin-left: 25px;
	}
	.header .logo img{
		width: auto;
		height: 36px;
	}
	.header .r .list li>a, .header .r .header-tel{
		line-height: 35px;
	}
	.header .r .header-tel{
		font-size: 16px;
	}
	.header .r .header-tel .iconfont{
		margin-right: 4px;
	}
	.header .r .header-search-box .header-searchBtn{
		font-size: 16px;
	}
	.font36{
		font-size: 24px;
	}
	.font72{
		font-size: 28px;
	}
	.font60{
		font-size: 26px;
	}
	.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;
	}
	.pagination ul li a{
		font-size: 18px;
	}
	.footer-c-r{
	    font-size: 18px;
	    gap: 10px;
	}
	.header .r .header-tel1{
	    display: none;
	}
	/* .header .content1720{
		padding-left: 0;
	} */
}

@media (max-width: 500px) {
    .innerNav .btn .iconfont{
        font-size: 16px;
    }
    .footer-c-r a .iconfont{
        font-size: 20px;
    }
    .footer-c-r{
        font-size: 14px;
    }
    .footer-c{
        margin-bottom: 25px;
    }
	.footer-t-l .list li .li-des{
		margin-top: 5px;
	}
	.footer-t-r .submit{
		line-height: 42px;
	}
	.footer-t-r .inputs .input textarea, .footer-t-r .inputs .input input{
		line-height: 24px;
	}
	.footer-t-r{
		margin-top: 25px;
	}
	.header .r .header-tel{
		/*display:none;*/
	}	
	.innerBread .icon-youjiantou11{
		margin: 0;
	}
	.innerBread .icon-C-shouye,
	.innerBread a{
		font-size: 14px;
	}
	.innerBread{
		top: 100px;
	}
	.banner1 .pic img{
		min-height: 340px;
	}
	.innerPage{
		padding-top: 60px;
	}
	.footer{
		padding: 40px 0 30px;
	}
	.header .r .header-tel, .header .r .header-search-box{
		margin-left: 20px;
	}
	.header .logo img{
		height: 30px;
		width: auto;
	}
	.header .r .header-search-box .header-searchBtn{
		font-size: 14px;
	}
	.header .r .header-tel{
		padding: 0 10px;
	}
	.header .r .header-tel .iconfont{
		margin-top: 0;
	}
	.header .r .list li>a, .header .r .header-tel{
		line-height: 30px;
	}
	.header .r .header-tel .iconfont,
	.header .r .header-tel{
		font-size: 12px;
	}
	.font36{
		font-size: 22px;
	}
	.font72{
		font-size: 24px;
	}
	.font60{
		font-size: 24px;
	}
	.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-title{
		font-size: 16px;
	}
	.pc-aslide-content-t{
		height: 50px;
	}
	.pc-aslide-content-t .logo img{
		width: 100px;
	}
}