* {
	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_Regular.ttf');
}

@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: "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;
	font-family: Arial;
}

::-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: rgba(241, 68, 51, 1);
}

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

.content520 {
	padding: 0 5.2%;
}

.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 .content520 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: rgba(255, 255, 255, 1);
}

.header .logo img {
	display: block;
	height: 64px;
}

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

.header .r .list {
	display: flex;
	font-weight: bold;
	font-size: 18px;
	gap: 60px;
}
.header .r .list li.hasSubNav1{
	position: relative;
}
.header .r .list li>a {
	display: block;
	line-height: 100px;
	color: #222222;
	transition: all .6s;
}

.header .r .list li:hover>a {
	color: rgba(226, 28, 29, 1);
}
.header .r .list li .subNav{
	position: absolute;
	left: 50%;
	transform: translate(-50%,30px);
	z-index: -1;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: all .6s;
}
.header .r .list li:hover .subNav1,
.header .r .list li:hover .subNav{
	opacity: 1;
	pointer-events: inherit;
	visibility: visible;
	transform: translate(-50%,0);
	box-shadow: 5px 9px 30px 0px rgba(150,150,150,0.3);
}
.header .r .list li .subNav::before{
	position: absolute;
	z-index: 3;
	/* content: ""; */
	width: 100vw;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	height: 200vh;
	background-color: #000;
	opacity: .3;
}
.header .r .list li .subNav .subNavContainer{
	position: relative;
	background: #FFFFFF;
	padding: 40px 0 60px;
	border-radius: 0 0 10px 10px;
	display: flex;
	z-index: 3;
}
.header .r .list li .subNav .subNavContainer>div{
	padding: 0 60px;
	width: 50%;
}
.header .r .list li .subNav .subNavContainer-l{
	border-right: 1px solid RGBA(222, 222, 222, 1);
}
.header .r .list li .subNav .title{
	font-weight: bold;
	font-size: 18px;
	color: #222222;
	line-height: 1.3;
}
.header .r .list li .subNav .des{
font-weight: 400;
font-size: 14px;
color: #999999;
line-height: 24px;
margin-top: 17px;
}
.header .r .list li .subNav .items{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 10px 31px;
	margin-top: 45px;
}
.header .r .list li .subNav .items .item{
	position: relative;
font-weight: 400;
font-size: 16px;
color: #222222;
line-height: 30px;
transition: all 0.6s;
}
.header .r .list li .subNav .items .item:hover {
	padding-left: 18px;
	color: #C1221B;
}
.header .r .list li .subNav .items .item:hover .iconfont{
	opacity: 1;
}
.header .r .list li .subNav .items .item .iconfont{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-weight: bold;
	opacity: 0;
	color: rgba(201, 45, 38, 1);
	transition: all .4s ;
}
.header .r .list li .subNav .items .item .iconfont+span{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
}
.header .r .list li .subNav .more{
	display: inline-block;
	margin-top: 43px;
	font-weight: 400;
	font-size: 16px;
	color: #999999;
	line-height: 30px;
	transition: all .6s;
}
.header .r .list li .subNav .more:hover{
	color: #C1221B;
}
.header .r .list li .subNav1{
	position: absolute;
	top: 100%;
	left: 50%;
	padding: 10px 0;
	border-radius: 0 0 10px 10px;
	background-color: #fff;
	transform: translate(-50%,20px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all .6s;
}
.header .r .list li .subNav1 a{
	display: block;
	line-height: 40px;
	text-align: center;
	padding: 0 24px;
	font-size: 16px;
	white-space: nowrap;
	color: #333;
	transition: all .6s;
}
.header .r .list li .subNav1 a:hover{
	color: #C1221B;
}
.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: 52px;
	width: 50px;
	line-height: 50px;
	background: linear-gradient(-30deg, #ECECEC, #FFFFFF);
	border-radius: 25px;
	text-align: center;
}

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

.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(226, 28, 29, 1);
}

.header .headerContactBtn {
	width: 140px;
	line-height: 50px;
	background: linear-gradient(-30deg, #ECECEC, #FFFFFF);
	border-radius: 25px;
	font-weight: bold;
	font-size: 18px;
	color: #E21C1D;
	text-align: center;
	margin-left: 10px;
}

.footer {
	background-color: rgba(19, 26, 36, 1);
}

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

.footer-t-l {
	width: 41.42%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.footer-t-l .logo img {
	display: block;
	height: 123px;
}

.footer-t-l .nav {
	display: flex;
	flex-wrap: wrap;
	gap: 38px 60px;
	margin-top: 25px;
}

.footer-t-l .nav a {
	font-weight: 300;
	font-size: 24px;
	color: #FFFFFF;
	line-height: 30px;
	transition: all .6s;
}

.footer-t-l .nav a:hover {
	color: #E21C1D;
}

.footer-t-r {
	width: 557px;
}

.footer-t-r-t {
	display: flex;
}
.footer-t-r-t-l {
	flex: 1;
	margin-right: 38px;
}

.footer-t-r-t .tel-text {
	font-weight: bold;
	font-size: 18px;
	color: #C1221B;
	line-height: 1;
}

.footer-t-r-t .tel-number {
	font-family: Rany-Bold;
	color: #FFFFFF;
	line-height: 1;
	margin-top: .61em;
}

.footer-t-r-t .text {
	font-family: Microsoft YaHei;
	font-weight: 300;
	font-size: 16px;
	color: #999999;
	line-height: 24px;
	margin-top: 16px;
}

.footer-t-r-t .text p:not(:last-child) {
	margin-bottom: 10px;
}

.footer-t-r-t-r img {
	width: 150px;
	display: block;
}
.footer-t-r-t-r img:not(:last-child){
    margin-bottom: 10px;
}
.footer-t-r .des {
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #666666;
	line-height: 1.5;
	background: linear-gradient(-30deg, #F14433 0%, #E21C1D 97.607421875%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-top: .43em;
}

.footer-b {
	border-top: 1px solid RGBA(51, 59, 69, 1);
}

.footer-b .content1400 {
	display: flex;
	justify-content: space-between;
	padding: 49px 0;
	align-items: center;
}

.footer-b-l {
	font-weight: 400;
	font-size: 16px;
	color: #999999;
	line-height: 30px;
}

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

.footer-b-l a:hover {
	color: #fff;
}
.footer-b-r{
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer-b-r a{
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 2px solid #C7C7C7;
	color: rgba(204, 204, 204, 1);
	transition: all .6s;
}
.footer-b-r a:hover{
	border-color: #C1221B;
	color: #fff;
	background: #C1221B;
}
.footer-b-r a .iconfont{
	font-size: 20px;
}
.footerForm{
    padding: 64px 0;
    background: url(../img/index-box6-bg.jpg);
    background-size: cover;
}
.footerForm .box-c{
    display: flex;
    justify-content: space-between;
}
.footerForm .box-c-l{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 59.28%;
}
.footerForm .box-c-l .text{
    font-weight: 300;
    color: #FFFFFF;
    line-height: 1;
}
.footerForm .box-c-l form{
    display: flex;
    width: 58.19%;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 10px;
    height: 70px;
}
.footerForm .box-c-l form input{
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
}
.footerForm .box-c-l form input::placeholder{
    font-weight: 400;
    font-size: 16px;
    color: #CCCCCC;
    line-height: 30px;
}
.footerForm .box-c-l .submit{
    line-height: 50px;
    background: linear-gradient(-30deg, #F14433, #E21C1D);
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
    color: #FAFAFA;
    padding: 0 14px;
}
.footerForm .box-c-l .submit .iconfont{
    margin-left: 13px;
    font-size: 12px;
}
.footerForm .box-c-r{
    width: 31.92%;
    display: flex;
    align-items: center;
}
.footerForm .box-c-r .text{
    font-weight: 300;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 30px;
    flex: 1;
    margin-right: 28px;
}
.footerForm .box-c-r .consultBtn{
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 50px;
    font-weight: 300;
    font-size: 18px;
    color: #222222;
    line-height: 30px;
    background: #FFFFFF;
    border-radius: 25px;
}
.footerForm .box-c-r .consultBtn .iconfont{
    color: rgba(20, 194, 93, 1);
    font-size: 24px;
    margin-left: 17px;
}
.banner1{
	position: relative;
}
.banner1 .pic img{
	display: block;
	width: 100%;
	min-height: 340px;
	object-fit: cover;
}
.banner1 .bannerBox{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.banner1 .bannerBox .zh{
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #FEFEFE;
	line-height: 1;
}
.banner1 .bannerBox .en{
	font-family: Rany-Bold;
	color: rgba(254, 254, 254, 0);
	line-height: 1;
	text-stroke: 1px #FFFFFF;
	-webkit-text-stroke: 1px #FFFFFF;
	text-transform: uppercase;
	margin: .24em 0 1em;
	opacity: .3;
}
.banner1 .bannerBox .text{
	font-weight: bold;
	color: #FEFEFE;
	line-height: 1.6;
}
.fixedRight {
	position: fixed;
	z-index: 999;
	top: 50%;
	right: 0;
}

.fixedRight ul {
	box-shadow: 5px 9px 30px 0px rgba(177, 177, 177, 0.3);
}

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

.fixedRight li {
	position: relative;
	background-color: #fff;
}

.fixedRight li:not(:last-child):before {
	position: absolute;
	content: "";
	left: 50%;
	transform: translateX(-50%);
	width: 58.33%;
	height: 1px;
	background-color: RGBA(222, 222, 222, 1);
	bottom: 0;
}

.fixedRight li:first-child {
	border-top-left-radius: 5px;
}

.fixedRight li:last-child {
	border-bottom-left-radius: 5px;
}
.fixedRight li .ewmBox{
    position: absolute;
    top: 50%;
    right: 110%;
    transform: translateY(-50%);
    width: auto;
    /*height: 100px;*/
    border-radius: 5px;
    background: #fff;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .6s;
    font-size: 20px;
    color: #333;
    text-align: center;
}
.fixedRight li .ewmBox .number{
    line-height: 2;
    padding: 0 10px;
    white-space: nowrap;
}
.footer-b-r .social a .ewmBox{
    top: auto;
    bottom: 120%;
    left: 50%;
    transform: translate(-50%,0);
}
.fixedRight li .ewmBox img{
    display: block;
    width: 115px;
}
.fixedRight li:hover .ewmBox{
     opacity: 1;
    visibility: visible;
    pointer-events: inherit;
}
.fixedRight li>a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	width: 60px;
	padding: 15px 5px;
	transition: all .6s;
	color: #999999;
}

.fixedRight li:first-child:hover a .iconfont {
	color: #12327F;
}

.fixedRight li>a .iconfont {
	font-size: 22px;
	color: RGBA(92, 92, 102, 1);
}

.fixedRight li>a .iconfont.icon-weixin {
	color: rgba(20, 194, 93, 1);
}

.fixedRight li>a .text {
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
}
.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(241, 68, 51, 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: #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: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 18px;
	color: rgba(51, 51, 51, 1);
	margin: 5px;
	cursor: pointer;
	transition: all .6s;
	border-radius: 50%;
	font-family: Rany-Bold;
}


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

.pagination ul li.active {
	background: linear-gradient(90deg, #C1221B, #E95D57);
}

.pagination ul li a {
	color: rgba(153, 153, 153, 1);
	display: block;
	transition: all .6s;
}
.pagination ul li:hover a{
	color: #C1221B;
}
.pagination ul li.active a{
	color: #fff;
}
.commonBreadNav{
	padding-top: 14px;
	font-weight: 400;
	font-size: 16px;
	color: #999999;
	line-height: 30px;
}
.commonBreadNav .content1400{
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}
.commonBreadNav .icon-youjiantou11{
	font-size: 12px;
	font-weight: bold;
}
.commonBreadNav a{
	color: #999;
	transition: all .6s;
}
.commonBreadNav a:hover{
	color: #E42229;
}
@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) {
	.footerForm .box-c-r{
        width: 34%;
    }
	.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) {
	.footerForm .box-c-l .submit .iconfont{
        margin-left: 8px;
    }
    .footerForm .box-c-r{
        width: 36%;
    }
    .footerForm .box-c-r .text{
        margin-right: 20px;
    }
	.header .r .list{
		gap: 40px;
	}
	.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) {
	.footerForm .box-c{
        flex-direction: column;
    }
    .footerForm .box-c-r,
    .footerForm .box-c-l{
        width: 100%;
    }
    .footerForm .box-c-r{
        margin-top: 25px;
    }
	.footer-t-r{
		width: 50%;
	}
	.footer-b .content1400{
		padding: 30px 0;
	}
	.footer-t-l .logo img{
		height: 90px;
	}
	.footer-t-l .nav a{
		font-size: 20px;
	}
	.header .r .header-search-box{
		margin-left: 0;
	}
	.content520{
		padding: 0 3%;
	}
	.header .logo img{
		height: 50px;
	}
	.header{
		padding: 10px 0;
	}
	.header .r .list{
		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;
	}

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

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

	.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: 80px 0;
	}
	.footer-t-r-t-r img{
		width: 120px;
	}
}

@media (max-width: 1024px) {
	.commonBreadNav .content1400{
		gap: 0 5px;
	}
	.commonBreadNav{
		line-height: 24px;
	}
	.footer-b-r a{
		width: 40px;
		height: 40px;
		border-width: 1px;
	}
	.footer-b-l{
		font-size: 14px;
		line-height: 24px;
	}
	.footer-t{
		padding: 70px 0;
	}
	.footer-t-l,
	.footer-t-r{
		width: 100%;
	}
	.footer-t-r{
		margin-top: 40px;
	}
	.footer-t{
		flex-direction: column;
	}
	.footer-t-l .logo img{
		height: 70px;
	}
	.footer-t-l .nav{
		gap: 20px 30px;
	}
	.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) {
	.commonBreadNav{
		font-size: 14px;
	}
	.footerForm{
        padding: 60px 0;
    }
	.footerForm .box-c-l{
        flex-direction: column;
        align-items: flex-start;
    }
    .footerForm .box-c-l form{
        height: 60px;
        width: 100%;
        margin-top: 20px;
    }
    .footerForm .box-c-l .submit{
        line-height: 40px;
    }
	.footer-b-r{
		margin-top: 10px;
	}
	.footer-b .content1400{
		flex-direction: column;
		padding: 15px 0;
	}
	.footer-t-l .nav a{
		font-size: 16px;
	}
	.footer-t-l .nav{
		margin-top: 20px;
		gap: 10px 20px;
	}
	.footer-t{
		padding: 60px 0;
	}
	.footer-t-l .logo img{
		height: 50px;
	}
	.header .headerContactBtn{
		line-height: 40px;
		font-size: 16px;
		padding: 0 14px;
		width: auto;
	}
	.header .logo img{
		height: 40px;
	}
	.header .r .header-search-box{
		width: 40px;
		line-height: 40px;
	}
	.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;
	}
	.footer-t-r{
		margin-top: 30px;
	}
}

@media (max-width: 500px) {
	.banner1 .bannerBox .text{
		font-size: 18px;
	}
	.footerForm .box-c-l form{
        height: 50px;
        padding: 5px 5px 5px 10px;
    }
    .footerForm .box-c-r .consultBtn .iconfont{
        margin-left: 7px;
    }
    .footerForm .box-c-r .consultBtn{
        font-size: 16px;
        height: 40px;
    }
    .footerForm .box-c-r .text{
        font-size: 16px;
        line-height: 24px;
    }
    .footerForm .box-c-l form input::placeholder,
    .footerForm .box-c-l form input,
    .footerForm .box-c-l .submit{
        font-size: 14px;
    }
	.footerForm{
        padding: 50px 0;
    }
	.footer-t-r .des{
		font-size: 18px;
	}
	.footer-t-r-t .tel-number{
		margin-top: .31em;
	}
	.footer-t-r-t .text{
		font-size: 14px;
		line-height: 20px;
		margin-top: 9px;
	}
	.footer-t-r-t-l{
		margin-right: 28px;
	}
	.footer-t-r-t-r img{
		width: 86px;
	}
	.footer-t-r{
		margin-top: 25px;
	}
	.footer-t-l .nav{
		gap: 5px 15px;
	}
	.footer-t-l .nav a{
		font-size: 14px;
	}
	.footer-b .content1400{
		padding: 10px 0;
	}
	.footer-b-r{
		margin-top: 5px;
	}
	.footer-b-r a .iconfont{
		font-size: 14px;
	}
	.footer-b-r a{
		width: 32px;
		height: 32px;
	}
	.footer-b-l{
		font-size: 12px;
		line-height: 20px;
	}
	.footer-t{
		padding: 40px 0;
	}
	.header .r .header-search-box .header-search-container{
		right: -41px;
	}
	.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;
	}
}