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

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

/*@font-face {*/
/*	font-family: "PingFangSCBold";*/
	/* Project id 2871779 */
/*	src: url('../fonts/PingFang Bold_0.ttf');*/
/*}*/

/*@font-face {*/
/*	font-family: "PingFang SC";*/
	/* Project id 2871779 */
/*	src: url('../fonts/PingFang Medium_0.ttf');*/
/*}*/

/*@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: "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;
}

::-webkit-scrollbar {
	/*高宽分别对应横竖滚动条的尺寸*/
	width: 5px;
	height: 5px;
}

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

/*滚动条里面轨道*/
::-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%;
}

.content1320 {
	margin: 0 auto;
	width: 1320px;
	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%;
}

.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;
}
.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: 50%; */
	object-fit: cover;
}
.header {
	position: sticky;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
	background-color: rgba(255, 255, 255, 1);
	padding-left: 6.04%;
}
.header-c{
	display: flex;
	justify-content: space-between;
}
.header-c-l{
	display: flex;
	align-items: center;
}
.header-c-l .logo img{
	display: block;
	width: 107px;
}
.header-c-l .nav{
	display: flex;
	gap: 68px;
	margin-left: 68px;
}
.header-c-l .nav li>a{
	display: block;
	font-family: PingFangSCRegular;
	font-weight: 400;
	font-size: 16px;
	color: rgba(0, 0, 0, 1);
	line-height: 64px;
	transition: all .6s;
}
.header-c-l .nav li:hover>a,
.header-c-l .nav li.active>a{
	color: #239744;
}
.header-c-l .nav li .subNav{
	position: absolute;
	left: 0;
	width: 100vw;
	padding: 80px 0 86px;
	background-color: rgba(250, 251, 255, 1);
	z-index: 4;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(27px);
	transition: all .6s;
}
.header-c-l .nav li:hover .subNav{
	opacity: 1;
	visibility: visible;
	pointer-events: inherit;
	transform: translateY(0);
}
.header-c-l .nav li .subNav .items{
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 49px;
}
.header-c-l .nav li .subNav .items .item-title{
	font-family: PingFangSCBold;
	font-size: 20px;
	color: #239744;
	line-height: 1;
}
.header-c-l .nav li .subNav .items .item-des{
	font-family: PingFangSCRegular;
	font-weight: 400;
	font-size: 15px;
	color: #666666;
	line-height: 1;
	margin-top: 9px;
	line-height: 24px;
}
.header-c-l .nav li .subNav .items .item-c{
	margin-top: 18px;
	border-top: 1px solid rgba(226, 226, 226, 1);
	padding-top: 13px;
	display: flex;
	gap: 5px 30px;
	flex-wrap: wrap;
	grid-template-columns: repeat(2,1fr);
}
.header-c-l .nav li .subNav .items .item-c p a{
	position: relative;
	display: inline-block;
	font-family: PingFangSCRegular;
	font-weight: 400;
	font-size: 16px;
	color: #444444;
	line-height: 30px;
	transition: all .6s;
}
.header-c-l .nav li .subNav .items .item-c p a:hover{
	color: rgba(35, 151, 68, 1);
}
.header-c-l .nav li .subNav .items .item-c p a:before{
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 0%;
	height: 2px;
	background-color: rgba(35, 151, 68, 1);
	transition: all .6s;
}
.header-c-l .nav li .subNav .items .item-c p a:hover:before{
	width: 100%;
}
.header-c-r{
	display: flex;
	align-items: center;
}
.header-c-r form{
	display: flex;
	align-items: center;
	border-left: 1px solid rgba(243, 243, 243, 1);
	border-right: 1px solid rgba(243, 243, 243, 1);
	padding: 0 18px;
	width: 200px;
}
.header-c-r form .iconfont{
	color: RGBA(29, 33, 41, 1);
	font-size: 20px;
}
.header-c-r form input{
	font-family: PingFangSCRegular;
	font-weight: 400;
	font-size: 14px;
	color: #333;
	line-height: 30px;
	border: none;
	outline: none;
	margin-left: 8px;
	flex: 1;
	width: 100%;
}
.header-c-r form input::placeholder{
	color: #B1B3B5;
}
.header-c-r .links{
	padding: 0 30px;
	display: flex;
	align-items: center;
	gap: 25px;
}
.header-c-r .links a{
	font-family: PingFangSCRegular;
	font-weight: 400;
	font-size: 14px;
	color: #747474;
	line-height: 30px;
	transition: all .6s;
}
.header-c-r .links a:hover{
	color: rgba(35, 151, 68, 1);
}
.header-c-r .links .language{
	position: relative;
}
.header-c-r .links .language-t{
	font-family: PingFangSCRegular;
	font-weight: 400;
	font-size: 14px;
	color: #747474;
	line-height: 40px;
}
.header-c-r .links .language-c{
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	position: absolute;
	left: 50%;
	transform: translate(-50%,13px);
	background-color: #fff;
	padding: 5px 0;
	box-shadow: 0 0 20px 20px rgba(0,0,0,.04);
	transition: all .6s;
}
.header-c-r .links .language:hover .language-c{
	opacity: 1;
	visibility: visible;
	pointer-events: initial;
	transform: translate(-50%,0);
}
.header-c-r .links .language-c:before{
	position: absolute;
	content: "";
	left: 50%;
	top: 0;
	transform: translate(-50%,-100%);
	border: 7px solid transparent;
	border-bottom-color: #fff;
}
.header-c-r .links .language-c a{
	display: block;
	padding: 0 20px;
	line-height: 30px;
	white-space: nowrap;
}
.header-c-r .loginBtn{
	width: 92px;
	line-height: 65px;
	background: #239744;
	text-align: center;
	font-family: PingFangSCRegular;
	font-weight: 400;
	font-size: 14px;
	color: #FFFFFF;
}
.header .r .aslideBtn .iconfon {
	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: rgba(35, 151, 68, 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 #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: rgba(35, 151, 68, 1);
}
.footer{
	background-color: RGBA(244, 247, 252, 1);
}
.footer-t{
	padding: 62px 0 34px;
	display: flex;
	justify-content: space-between;
}
.footer-t .item{
	display: flex;
	align-items: center;
}
.footer-t .item .icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
}
.footer-t .item .icon img{
	max-width: 100%;
	max-height: 100%;
	transition: all .6s;
}
.footer-t .item:hover .icon img{
	transform: rotateY(180deg);
}
.footer-t .item .text-box{
	font-family: PingFang SC;
	font-weight: 500;
	font-size: 16px;
	color: #333333;
	line-height: 30px;
	flex: 1;
	margin-left: 17px;
	font-family: PingFang SC;
	font-weight: 500;
	font-size: 16px;
	color: #333333;
	line-height: 24px;
}
.footer-t .item .text-box .text-des{
	margin-top: 7px;
	color: #777777;
}
.footer-c{
	border-top: 1px solid rgba(233, 235, 237, 1);
	border-bottom: 1px solid rgba(233, 235, 237, 1);
	padding: 63px 0;
	display: flex;
	justify-content: space-between;
}
.footer-c-l{
	display: flex;
	justify-content: space-between;
	width: 63.71%;
}
.footer-c-l .logo img{
	width: 107px;
}
.footer-c-l .list{
	width: 78.74%;
	display: flex;
	justify-content: space-between;
}
.footer-c-r .title,
.footer-c-l .list .li-title{
	font-family: PingFang SC;
	font-weight: 400;
	font-size: 15px;
	color: #000;
	line-height: 21px;
}
.footer-c-l .list .li-des{
	margin-top: 16px;
}
.footer-c-l .list .li-des p:not(:last-child){
	margin-bottom: 10px;
}
.footer-c-l .list .li-des a{
	font-family: PingFangSCRegular;
	font-weight: 400;
	font-size: 14px;
	color: #3D3D3D;
	line-height: 20px;
	transition: all .6s;
}
.footer-c-l .list .li-des a:hover{
	color: rgba(35, 151, 68, 1);
}
.footer-c-r {
	width: 291px;
}
.footer-c-r .text-box{
	font-family: PingFangSCRegular;
	font-weight: 400;
	font-size: 15px;
	color: #3D3D3D;
	line-height: 2;
	margin-top: 13px;
}
.footer-c-r .social{
	display: flex;
	margin-top: 17px;
	gap: 13px;
}
.footer-c-r .social a img{
	display: block;
	width: 33px;
}
.footer-b{
	font-family: PingFangSCRegular;
	font-weight: 400;
	font-size: 15px;
	color: #3D3D3D;
	line-height: 18px;
	padding: 32px 0;
	display: flex;
	justify-content: space-between;
}
.footer-b a{
	color: #3D3D3D;
	transition: all .6s;
}
.footer-b a:hover{
	color: rgba(35, 151, 68, 1);
}
.banner1{
	position: relative;
	min-height: 343px;
	display: flex;
	align-items: center;
}
.banner1 .pic{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.banner1 .pic img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bannnerBox{
	position: relative;
	z-index: 3;
}
.bannnerBox .title{
	font-family: PingFangSC;
	font-weight: 800;
	font-size: 42px;
	color: #020814;
}
.bannnerBox .des{
	font-family: PingFang SC;
	font-weight: 500;
	font-size: 16px;
	color: #666666;
	line-height: 18px;
	margin-top: 10px;
}
.bannnerBox .btns{
	display: flex;
	margin-top: 31px;
	gap: 15px;
}
.bannnerBox .btns .btn{
	padding: 0 40px;
	line-height: 50px;
	background: #EAF4EE;
	border-radius: 6px;
	font-family: PingFangSCBold;
	font-weight: bold;
	font-size: 18px;
	color: #020814;
	transition: all .6s;
}
.bannnerBox .btns .btn.buyBtn,
.bannnerBox .btns .btn:hover{
	background-color: rgba(0, 153, 62, 1);
	color: #fff;
}
.wrapperBanner{
	background: url(../img/index-box4-bg.jpg);
	background-size: cover !important;
}
.wrapperBanner .box-c{
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 198px;
	padding: 30px 0;
}
.wrapperBanner .box-c.direction{
	flex-direction: column;
	justify-content: center;
}
.wrapperBanner .box-c .indexTitle{
	color: #fff;
}
.wrapperBanner .box-c .more{
	width: 150px;
	line-height: 42px;
	background: #FFFFFF;
	border-radius: 3px;
	text-align: center;
	font-family: PingFangSCBold;
	font-size: 16px;
	color: #239744;
	transition: all .6s;
}
.wrapperBanner .box-c.direction .more{
	margin-top: 16px;
}
.wrapperBanner .box-c .more:hover{
	border-radius: 30px;
	box-shadow: 0 0 20px 10px rgba(255,255,255,.3);
}
.innerNav{
	position: relative;
	padding: 17px 53px;
	background: #FDFDFF;
	box-shadow: 0px 12px 46px 0px rgba(18,63,138,0.08);
	border-radius: 6px;
	margin-top: -32px;
	z-index: 3;
}
.innerNav .swiper-slide{
	font-family: PingFang SC;
	font-weight: 400;
	font-size: 14px;
	color: #000;
	line-height: 30px;
	width: auto;
	transition: all .6s;
}
.innerNav .swiper-slide:not(:last-child){
	margin-right: 58px;
}
.innerNav .swiper-slide:hover,
.innerNav .swiper-slide.active{
	color: #239744;
}
.newsList{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 28px;
}

.newsList .img{
	padding-top: 45.02%;
	border-radius: 10px;
	overflow: hidden;
}
.newsList .label{
	position: absolute;
	left: 0;
	bottom: 0;
	/* border-radius: 0 5px 5px 0; */
	z-index: 3;
	font-family: PingFang SC;
	font-weight: 500;
	font-size: 13px;
	color: #FFFFFF;
	line-height: 24px;
	padding: 0 12px;
}
.newsList .label::before{
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 0 5px 0 0;
	background: rgba(35, 151, 68, 1);
	transform: skew(15deg);
}
.newsList .label span{
	position: relative;
	z-index: 3;
}
.newsList .text-title{
	font-family: PingFang SC;
	font-weight: 500;
	font-size: 18px;
	color: #444444;
	line-height: 26px;
	margin-top: 38px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 52px;
	transition: all .6s;
}
.newsList li:hover .text-title{
	color: rgba(35, 151, 68, 1);
}
.newsList .date{
	display: flex;
	align-items: center;
	font-family: PingFang SC;
	font-weight: 500;
	font-size: 16px;
	color: #858585;
	line-height: 20px;
	margin-top: 25px;
}
.newsList .date .iconfont{
	font-size: 22px;
}
.newsList .date .iconfont{
	color: RGBA(35, 151, 68, 1);
	margin-right: 10px;
}
.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(35, 151, 68, 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-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: #000;
	display: block;
	line-height: 2;
	transition: all .6s;
	margin-bottom: 2px !important;
}

.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;
	gap: 8px;
}

.pagination ul li {
	width: 42px;
	line-height: 42px;
	background: #FFFFFF;
	box-shadow: 0px 0px 20px 0px rgba(85,98,151,0.1);
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	transition: all .6s;
	font-family: PingFang SC;
	font-weight: 500;
	font-size: 16px;
	color: #59545D;
}
.pagination ul li:first-child{
	margin-right: 22px;
}
.pagination ul li:last-child{
	margin-left: 22px;
}
.pagination ul li .iconfont {
	font-size: 14px;
	font-weight: bold;
}

.pagination ul li:hover,
.pagination ul li.active {
	background-color: rgba(35, 151, 68, 1);
	border-color: rgba(35, 151, 68, 1);
}

.pagination ul li a {
	color: #59545D;
	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{
		padding-left: 4%;
	}
	.header-c-r .links{
		padding: 0 20px;
	}
	.header-c-l .nav{
		gap: 49px;
		margin-left: 49px;
	}
}
@media (max-width:1500px) {}

@media (max-width:1440px) {
	.header-c-l .nav{
		gap: 31px;
		margin-left: 31px;
	}
	.header{
		padding-left: 3%;
	}
	.font48 {
		font-size: 36px;
	}

	.font36 {
		font-size: 32px;
	}
	.bannnerBox .title{
		font-size: 36px;
	}
	.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) {
	.footer-t .item .icon{
		width: 39px;
		height: 39px;
	}
	.footer-t .item .text-box .text-des{
		margin-top: 0;
	}
	.footer-t .item .text-box{
		margin-left: 10px;
	}
	.header-c-r .links{
		gap: 16px;
	}
	.header-c-r form{
		width: 168px;
	}
	.header-c-r form{
		padding: 0 10px;
	}
	.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: 1.5;
	}

	.font36,.bannnerBox .title{
		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) {
	.footer-t .item .text-box{
		font-size: 14px;
	}
	.header-c-l .nav{
		display: none;
	}
	.font36,.bannnerBox .title {
		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;
	}

	.m-right-buttom {
		display: block;
		cursor: pointer;
		user-select: none;
		/* margin-left: 31px; */
	}

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

	.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-c{
		padding: 60px 0;
	}
	.pc-aslide-content-c .list .li-des .item-c{
		/* display: flex;
		justify-content: center;
		gap: 20px;
		flex-wrap: wrap; */
	}
	.pc-aslide-content-c .list .li-des .item-c a{
		font-size: 13px;
		color: #888;
		margin-bottom: 0 !important;
	}
	.pc-aslide-content-c .list .li-des .item:not(:last-child){
		margin-bottom: 13px;
	}
}

@media (max-width: 1024px) {
	.newsList{
		gap: 27px 20px;
	}
	.newsList .text-title{
		margin-top: 20px;
	}
	.newsList .date{
		margin-top: 15px;
	}
	.footer-c{
		padding: 50px 0;
	}
	.footer-t{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		gap: 25px;
	}
	.footer-c-l .list{
		width: 69%;
	}
	.footer-c-r{
		width: 231px;
	}
	.footer-t{
		padding: 30px 0;
	}
	.font36,.bannnerBox .title {
		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) {
	.bannnerBox .btns{
		margin-top: 25px;
	}
	.bannnerBox .btns .btn{
		line-height: 45px;
		padding: 0 27px;
	}
	.innerNav{
		padding: 11px 31px;
	}
	.innerNav .swiper-slide:not(:last-child){
		margin-right: 31px;
	}
	.newsList{
		grid-template-columns: repeat(2,1fr);
	}
	.newsList .text-title{
		font-size: 16px;
		line-height: 24px;
		height: 48px;
	}
	.footer-b{
		font-size: 13px;
		padding: 13px 0;
		flex-direction: column;
		text-align: center;
	}
	.footer-c-r{
		margin-top: 20px;
	}
	.footer-t .item .text-box{
		line-height: 20px;
	}
	.footer-t .item .icon{
		width: 30px;
		height: 30px;
	}
	.footer-c-l{
		width: 100%;
	}
	.footer-c{
		padding: 40px 0;
		flex-direction: column;
	}
	.footer-c-r{
		width: 100%;
	}
	.footer-c-l .list{
		display: none;
	}
	.header-c-r .loginBtn{
		width: 70px;
		line-height: 58px;
	}
	.header-c-r form{
		display: none;
	}
	.font36,.bannnerBox .title {
		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;
	}
	.wrapperBanner .box-c{
		flex-direction: column;
		justify-content: center;
	}
	.wrapperBanner .box-c .more{
		margin-top: 16px;
	}
	.banner1{
		min-height: 272px;
	}
	.newsList .text-title{
		margin-top: 15px;
	}
}

@media (max-width: 500px) {
	.pc-aslide-content-c{
		margin-top: 68px;
	}
	.bannnerBox .des{
		margin-top: 5px;
	}
	.bannnerBox .btns{
		margin-top: 15px;
	}
	.bannnerBox .btns .btn{
		line-height: 36px;
		padding: 0 19px;
		font-size: 16px;
	}
	.pagination ul li:first-child{
		margin-right: 13px;
	}
	.pagination ul li:last-child{
		margin-left: 13px;
	}
	.banner1{
		min-height: 241px;
	}
	.newsList .text-title{
		height: auto;
		margin-top: 10px;
	}
	.newsList .date{
		margin-top: 8px;
	}
	.newsList{
		grid-template-columns: repeat(1,1fr);
	}
	.wrapperBanner .box-c .indexTitle{
		font-size: 20px;
	}
	.wrapperBanner .box-c .more{
		width: 120px;
	}
	.wrapperBanner .box-c{
		min-height: 149px;
	}
	.footer-c-r{
		margin-top: 13px;
	}
	.footer-t{
		gap: 19px 25px;
	}
	.footer-c-r .text-box{
		margin-top: 9px;
		line-height: 1.5;
	}
	.footer-c-r .social{
		margin-top: 13px;
	}
	.footer-c{
		padding: 30px 0;
	}
	.footer-t .item .icon{
		width: 26px;
		height: 26px;
		margin-bottom: 5px;
	}
	.footer-t .item{
		flex-direction: column;
		align-items: flex-start;
	}
	.footer-t .item .text-box{
		margin-left: 0;
	}
	.header-c-l .logo img{
		width: 82px;
	}
	.header-c-r .loginBtn{
		width: 50px;
		line-height: 50px;
	}
	.font36,.bannnerBox .title {
		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: 20px;
	}

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

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