/* common start */
* {
	font-family: "","","微软雅黑", "Microsoft Yahei", "PingFang", "Helvetica Neue", "Helvetica", "arial",sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	box-sizing: border-box;
	-webkit-tap-highlight-color:transparent;
}
html,body {
	min-width: 1200px;
}
img {
	width: 100%;
}
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
input[type="number"] {
	-moz-appearance: textfield;
}
a:focus,a:hover {
	text-decoration: none;
	outline: none;
}
ol,ul {
	margin-bottom: 0;
}
label {
	margin-bottom: 0;
}
.sp{
	display: none;
}
.pc{
	display: block;
}
/* common end */

/* swiper start */
.swiper-button-next, .swiper-button-prev{
	transform: translateY(-50%);
}
.swiper-button-prev{
	
}
.swiper-button-prev:after{
	content: "";
	background-image: url(../img/arrow-blue-right.svg);
	width: 24px;
	height: 40px;
	transform: rotate(180deg);
}
.swiper-button-prev.swiper-button-disabled::after{
	background-image: url(../img/arrow-grey-left.svg);
	transform: rotate(0deg);
}
.swiper-button-next{
	
}
.swiper-button-next:after{
	content: "";
	background-image: url(../img/arrow-blue-right.svg);
	width: 24px;
	height: 40px;
}
.swiper-button-next.swiper-button-disabled::after{
	background-image: url(../img/arrow-grey-left.svg);
	transform: rotate(180deg);
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
	opacity: 1;
}
.docSlider-pager{
	display: none;
	right: auto;
    left: 20px;
}
.docSlider-page .Outer{
	/* height: 100%; */
}
.docSlider-page .Inner{
	
}
/* swiper end */

/* bootstrap start */
.modal-backdrop {
    bottom: 0;
    z-index: 1000;
    position: fixed;
    left: 0;
}
.modal-close {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, .5);
    border-bottom-left-radius: 8px;
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
}
.modal-content {
    box-shadow: none;
    border: none;
    width: 100%;
    border-radius: 16px;
    /* overflow: hidden; */
}
.modal-body {
    padding: 0;
}
.modal.in .modal-dialog.modal-video {
    width: 300px;
    max-width: 500px;
    padding: 10px;
    background-color: #FFFFFF;
	top: 50%;
	transform: translateY(-50%);
}
/* bootstrap end */

/* sweetalert start */
.swal2-popup{
	padding: 0!important;
}
.swal2-actions{
	width: 100%!important;
}
.swal2-styled.swal2-confirm{
	font-size: 16px!important;
	color: #0099FF!important;
	letter-spacing: 1.6px!important;
	text-align: center!important;
	border-top: 1px solid #ccc!important;
	background-color: #fff!important;
	width: 100%!important;
}
.swal2-styled{
	margin: 0!important;
}
.swal2-actions:not(.swal2-loading) .swal2-styled:active {
    background-image: none!important;
}
.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
    background-image: none!important;
}
.swal2-styled.swal2-confirm:focus {
    box-shadow: none!important;
}
/* sweetalert end */

/* checkbox start */
.cek-label input[type=checkbox], .cek-label input[type=radio] {
    display: none;
}
.cek-square, .cek-yes {
    /* background: #fff; */
    border: 1px solid #CCCCCC;
    border-radius: 50%;
    box-sizing: border-box;
    display: inline-block;
	width: 14px;
    height: 14px;
    margin-bottom: 4px;
    position: relative;
    vertical-align: middle;
}
.checkbx:checked+.cek-square, .checkbx:checked+.cek-yes {
    background: #fff;
}
.checkbx:checked+.cek-yes:after {
    background-image: url(../img/yes.svg);
    background-repeat: no-repeat;
    background-size: 10px 10px;
    content: "";
    display: block;
    height: 10px;
    left: 1px;
    position: absolute;
    top: 1px;
    width: 10px;
    z-index: 10;
}
/* checkbox end */

/* 宽度设置 start */
.wrap1440 {
	max-width: 1440px;
	margin: 0 auto;
}
.wrap1240 {
	max-width: 1240px;
	margin: 0 auto;
}
.wrap1160 {
	max-width: 1160px;
	margin: 0 auto;
}
.wrap1140 {
	max-width: 1140px;
	margin: 0 auto;
	/* width: 80%; */
}
.wrap1040 {
	max-width: 1040px;
	margin: 0 auto;
	/* width: 73%; */
}
/* 宽度设置 end */

/* flex布局 start */
.flex{ 
    display: -webkit-box; 
    display: -webkit-flex;
    display: -ms-flexbox; 
    display: -moz-box; 
    display: -moz-flex; 
    display: flex;
 }
 /* 垂直布局 */
 .flex-v{
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column; 
 }
 /* 子元素占据剩余的空间 */
 .flex-1{ 
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	flex: 1; 
 }
 /* 子元素垂直居中 */
 .flex-align-center{ 
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-moz-align-items: center;
	-ms-flex-align: center;
	align-items: center; 
 }
 /* 子元素水平居中 */
 .flex-pack-center{ 
	-webkit-box-pack: center; 
	-webkit-justify-content: center; 
	-moz-box-pack: center; 
	-moz-justify-content: center; 
	-ms-flex-pack: center; 
	justify-content: center; 
 }
 /* 子元素两端对齐 */
 .flex-pack-justify{ 
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-moz-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between; 
 }
 /* flex布局 end */

/* 动画 start */
.transition{
	-webkit-transition: all 400ms;
	transition: all 400ms;
}
/* 动画 end */

/* 头部导航header start */
.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 72px;
	background: #fff;
	z-index: 10;
}
.header-box{
	padding: 20px 0;
}
.header-logo{
	width: 150px;
	height: 32px;
}
.header-nav-item{
	margin-right: 64px;
}
.header-nav-item:last-child{
	margin-right: 0px;
}
.header-nav-item>a{
	font-size: 18px;
	color: #333333;
	letter-spacing: 1.6px;
	line-height: 20px;
	display: block;
}
.header-nav-item:hover>a{
	color: #0099FF;
}
/* 头部导航header end */

/* banner视频 start */
body{
	background: #f8f8f8;
}
.content{
	padding-top: 0px;
}
.banner{
	position: relative;
	padding-top: 72px;
	text-align: center;
	/* background-image: url(../img/banner-bg.png);
	background-size: cover;
	background-position: center; */
}
.banner-bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100vh - 10px);
}
.banner-bg video{
	height: 100%;
	object-fit: cover;
	filter: blur(10px);
}
.banner-video {
    width: 100%;
    height: calc(100vh - 72px);
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    color: white;
}
.banner-video video{
	height: 100%;
	object-fit: contain;
}
.banner-content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.banner-text{
	font-weight: Bold;
	font-size: 64px;
	color: #FFFFFF;
	letter-spacing: 3.2px;
	text-align: center;
	line-height: 80px;
}
.banner-text2{
    font-weight: Bold;
    font-size: 32px;
    color: #FFFFFF;
}
.name-r{
	transform: translateY(-50%);
}
.banner-btn{
	opacity: 0;
	width: 80px;
	height: 80px;
	margin: 24px auto 0;
	cursor: pointer;
}
/* banner视频 end */

/* 产品介绍 start */
.title{
	font-weight: Bold;
	font-size: 22px;
	color: rgba(0,0,0,0.90);
	letter-spacing: 2.8px;
	text-align: center;
	line-height: 48px;
	position: relative;
}
.title::after{
	content: '';
	width: 200px;
	height: 4px;
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0.8;
	background-image: linear-gradient(90deg, rgba(26,177,227,0.00) 0%, #0099FF 49%, rgba(68,215,182,0.00) 100%);
}
.introduce{
	/* padding: 110px 0 0; */
	background-image: url(../img/introduce-bg.jpg);
	background-size: cover;
	background-position: center;
	height: 100vh;
}
.introduce-center{
	min-height: calc(100vh - 158px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.introduce-img{
	text-align: center;
}
.introduce-img>img{
	height: calc(100vh * 0.55);
	width: auto;
}
.advantage-center1{
	min-height: calc(100vh - 296px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.advantage-center2{
	min-height: calc(100vh - 80px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: 80px;
}
.advantage-center3{
	min-height: calc(100vh - 80px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.advantage-center4{
	min-height: calc(100vh - 80px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: 80px;
}
.application-center1{
	min-height: calc(100vh - 128px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.application-center2{
	min-height: calc(100vh - 80px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.introduce-one{
	position: relative;
	padding: 0 30px;
	width: 100%;
}
.introduce-one-img{
	width: 616px;
	margin: 0px auto;
}
.introduce-one-name{
	position: absolute;
	top: 38px;
	left: 30px;
	width: 540px;
	opacity: 0.8;
	background-image: linear-gradient(90deg, #0099FF 0%, rgba(68,215,182,0.00) 100%);
	border-radius: 16px;
	padding: 15px 24px;
}
.introduce-name-bold{
	font-weight: Bold;
	font-size: 24px;
	color: #FFFFFF;
	letter-spacing: 2.4px;
	line-height: 36px;
}
.introduce-name-tag{
	background: #0099FF;
	font-weight: Bold;
	font-size: 14px;
	color: #FFFFFF;
	letter-spacing: 1.4px;
	padding: 0px 5px;
	height: 20px;
	line-height: 18px;
	margin-left: 8px;
}
.introduce-name-p{
	font-size: 16px;
	color: rgba(255,255,255,0.90);
	letter-spacing: 1.6px;
	line-height: 20px;
	margin-top: 7px;
	display: inline-block;
	position: relative;
}
.introduce-name-p>span{
	font-size: 12px;
	position: absolute;
	right: -15px;
	top: -5px;
}
.introduce-one-left{
	position: absolute;
	top: 328px;
	left: 30px;
	width: 325px;
	border-top: 1px solid #475A66;
	padding-top: 32px;
	padding-left: 16px;
}
.introduce-num-item{
	font-size: 16px;
	color: rgba(0,0,0,0.90);
	letter-spacing: 1.6px;
	line-height: 24px;
	margin-bottom: 15px;
}
.introduce-num-item:last-child{
	margin-bottom: 0px;
}
.introduce-num-item>span{
	font-weight: Bold;
	font-size: 16px;
	color: #475A66;
	letter-spacing: 2.4px;
	line-height: 36px;
	margin-left: 8px;
}
.introduce-one-right{
	position: absolute;
	top: 265px;
	right: 30px;
	width: 295px;
	border-top: 1px solid #475A66;
	padding-top: 32px;
}
.introduce-one-right .introduce-num-item{
	justify-content: flex-end;
}
.introduce-two{
	background: #FFFFFF;
	border-radius: 16px;
	padding: 20px 20px;
}
.introduce-two:hover{
	box-shadow: 0 0 20px 4px rgb(0 153 255 / 30%);
}
.introduce-point{
	position: relative;
}
.introduce-point-tips{
	width: 132px;
	height: 36px;
	background-image: url(../img/introduce-tips-bg.svg);
	background-size: 100%;
	position: absolute;
	top: -35px;
	left: 7px;
	font-size: 12px;
	color: #FFFFFF;
	letter-spacing: 1.2px;
	text-align: center;
	line-height: 32px;
	animation: shine 4s infinite, hover 2s alternate infinite ease-in-out;
}
.introduce-point-item{
	cursor: pointer;
	margin-bottom: 13px;
}
.introduce-point-item:last-child{
	margin-bottom: 0px;
}
.introduce-point-item>img{
	width: 32px;
	height: 31px;
	margin-right: 8px;
}
.introduce-item-left{
	width: 530px;
	justify-content: space-around;
}
.introduce-hexagon{
	position: relative;
	width: 244px;
	height: 200px;
}
.introduce-hexagon-img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/introduce-2-bg.png);
	background-size: 100% 100%;
}
.introduce-hexagon-img>img{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
}
.introduce-point{
	padding-right: 16px;
}
.introduce-hexagon-text{
	position: absolute;
	font-size: 12px;
	color: #FFFFFF;
	letter-spacing: 1.2px;
	text-align: center;
	background: #333333;
	width: 65px;
	padding: 1px 6px 2px;
	line-height: 18px;
}
.introduce-hexagon-text.hexagon1{
	top: 0;
	left: 84px;
	width: auto;
}
.introduce-hexagon-text.hexagon2{
	top: 53px;
	right: -21px;
}
.introduce-hexagon-text.hexagon3{
	top: 127px;
	right: -21px;
}
.introduce-hexagon-text.hexagon4{
	bottom: 0;
	left: 98px;
}
.introduce-hexagon-text.hexagon5{
	top: 128px;
	left: -10px;
}
.introduce-hexagon-text.hexagon6{
	top: 53px;
	left: -11px;
}
.introduce-item-right{
	width: 480px;
}
.introduce-nature-title{
	font-weight: Bold;
	font-size: 24px;
	color: #475A66;
	letter-spacing: 2.4px;
	line-height: 36px;
	margin-bottom: 24px;
}
.introduce-nature-text{
	font-size: 16px;
	color: rgba(0,0,0,0.60);
	letter-spacing: 1.6px;
	line-height: 24px;
	margin-bottom: 64px;
}
.introduce-nature-video{
	cursor: pointer;
}
/* 产品介绍 end */

/* 产品优势 start */
.advantage{
	/* background: #f8f8f8; */
}
.advantage-blue{
	background-image: url(../img/advantage-bg.png);
	padding: 80px 0 24px;
	background-size: cover;
	background-position: center;
}
.advantage-box{
	margin-top: 32px;
}
.advantage-list-item{
	background-image: linear-gradient(90deg, #0099FF 0%, #44D7B6 100%);
	border-radius: 16px;
	font-weight: Bold;
	font-size: 16px;
	color: #FFFFFF;
	letter-spacing: 1.6px;
	text-align: center;
	line-height: 24px;
	width: 200px;
	padding: 8px 0;
	margin-right: 40px;
}
.advantage-list-item:last-child{
	margin-right: 0px;
}
.advantage-text{
	font-size: 16px;
	color: rgba(255,255,255,0.90);
	letter-spacing: 1.6px;
	text-align: center;
	line-height: 24px;
	margin-top: 24px;
}
.advantage-compare{
	margin-bottom: 10px;
}
.advantage-title{
	font-weight: Bold;
	font-size: 18px;
	color: #475A66;
	letter-spacing: 2.4px;
	text-align: left;
	line-height: 36px;
	padding-bottom: 10px;
	padding-left: 20px;
}
.advantage-grey{
	background: #f8f8f8;
	/* padding: 110px 0 64px; */
}
.advantage-compare-box{
	position: relative;
}
.advantage-compare-item{
	border-radius: 16px;
}
.advantage-compare-item.compare1{
	width: 760px;
	height: 265px;
	background: #fff;
	padding: 20px 20px 0px;
	box-shadow: 0 0 20px 4px rgb(0 153 255 / 30%);
	z-index: 1;
	position: relative;
}
.compare-item-vs{
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
}
.advantage-compare-item.compare2{
	flex: 1;
	height: 250px;
	background: #F2F2F2;
	padding: 20px 20px 0px 32px;
	border-radius: 0 16px 16px 0;
}
.compare-item-top{
	width: 201px;
}
.compare-top-name{
	font-weight: 700;
	font-size: 16px;
	color: rgba(0,0,0,0.90);
	letter-spacing: 1.6px;
	line-height: 30px;
}
.compare-top-img{
	width: 100%;
}
.compare-item-bottom{
	margin-left: 40px;
}
.compare-item-bottom>div{

}
.compare-bottom-title{
	font-weight: Bold;
	font-size: 16px;
	color: rgba(0,0,0,0.90);
	letter-spacing: 1.6px;
	line-height: 24px;
	margin-bottom: 8px;
}
.compare-bottom-title>img{
	width: 24px;
	height: 24px;
	margin-right: 16px;
}
.compare-bottom-text{
	font-size: 16px;
	color: rgba(0,0,0,0.60);
	letter-spacing: 1.6px;
	line-height: 24px;
	margin-bottom: 20px;
}
.compare-bottom-right{
	width: 113px;
	margin-left: auto;
	margin-top: -32px;
}
.compare2 .compare-item-top{
	width: 100%;
	margin-bottom: 0px;
}
.compare2 .compare-top-name{
	font-weight: 400;
	font-size: 16px;
	color: rgba(0,0,0,0.40);
	letter-spacing: 1.6px;
	line-height: 30px;
	text-align: center;
	margin-bottom: 0px;
}
.compare2 .compare-top-img{
	width: 80px;
	height: 80px;
	margin: 0 auto;
}
.compare2 .compare-item-bottom {
    margin-left: 0px;
}
.compare2 .compare-bottom-text{
	margin-bottom: 10px;
	font-size: 12px;
	color: rgba(0,0,0,0.40);
	letter-spacing: 1.2px;
	line-height: 18px;
}
.advantage-compare-hover{
	transform: scale(1.05);
	background: #FFFFFF;
	box-shadow: 0 0 20px 4px rgba(0,153,255,0.30);
	z-index: 1;
}
.advantage-compare-hover .compare-item-top {
    background: #f2f2f2;
}
.advantage-compare-hover .compare-top-name {
	color: #0099FF;
}
.advantage-range{
	background: #FFFFFF;
	border-radius: 16px;
	padding: 24px 70px 16px;
}
.advantage-range:hover{
	box-shadow: 0 0 20px 4px rgba(0,153,255,0.30);
}
.advantage-range-img{
}
.advantage-shtick{
	margin-top: 80px;
}
.advantage-shtick-title{
	font-weight: Bold;
	font-size: 18px;
	color: #475A66;
	letter-spacing: 2.4px;
	text-align: left;
	line-height: 36px;
	padding-left: 20px;
	padding-bottom: 10px;
}
.shtick-list-center, .shtick-list-bottom{
	margin-top: 16px;
}
.shtick-list-item{
	background: #FFFFFF;
	border-radius: 16px;
	padding: 20px 20px 0px;
	width: calc(50% - 8px);
	min-height: 280px;
}
.shtick-list-item:hover{
	box-shadow: 0 0 20px 4px rgba(0,153,255,0.30);
}
.shtick-list-bottom .shtick-list-item{
	width: 100%;
}
.shtick-item-title{
	font-weight: 700;
	font-size: 16px;
	color: rgba(0,0,0,0.90);
	letter-spacing: 1.6px;
	line-height: 30px;
	margin-bottom: 10px;
}
.shtick-item-tag{
	font-size: 16px;
	color: rgba(0,0,0,0.90);
	letter-spacing: 1.6px;
	line-height: 24px;
	border: 1px solid #000000;
	padding: 0 7px;
	margin-right: 8px;
}
.shtick-item-dec{
	font-size: 16px;
	color: rgba(0,0,0,0.60);
	letter-spacing: 1.6px;
	line-height: 24px;
	margin-bottom: 0px;
	text-align: justify;
}
.shtick-item-img{
	/* margin-left: 16px; */
}
.list-top-one .shtick-item-img{
	width: 380px;
	margin: 0 auto;
}
.list-top-two .shtick-item-img{
	width: 180px;
}
.list-center-one .shtick-item-img{
	/* width: 380px; */
	margin: 0 auto;
}
.list-center-two .shtick-item-img{
	width: 180px;
}
.list-bottom-two .shtick-item-img{
	width: 700px;
	margin-left: 48px;
}

.advantage-amplification{
	margin-top: 40px;
}
.advantage-amplification-box{
	/* margin-top: 24px; */
}
.amplification-item{
	width: calc(50% - 12px);
	height: 200px;
	background: #FFFFFF;
	border-radius: 16px;
	box-sizing: border-box;
	padding: 20px;
	cursor: pointer;
}
.amplification-item:hover{
	box-shadow: 0 0 20px 4px rgb(0 153 255 / 30%);
}
.amplification-item-title{
	font-weight: 700;
	font-size: 16px;
	color: #333333;
	letter-spacing: 1.6px;
	line-height: 30px;
	margin-bottom: 70px;
}
.amplification-item-link{
	width: 160px;
	height: 48px;
	background: #0099FF;
	font-size: 16px;
	color: rgba(255,255,255,0.90);
	letter-spacing: 1.6px;
	text-align: center;
	line-height: 48px;
	cursor: pointer;
}
.amplification-item-link>a{
	color: rgba(255,255,255,0.90);
	display: block;
	font-weight: bold;
}
.amplification-left .amplification-item-img{
	width: 220px;
	margin-left: 41px;
}
.amplification-right .amplification-item-img{
	width: 172px;
	margin-left: 62px;
}
.amplification-left .amplification-item-img>img, .amplification-right .amplification-item-img>img{
	height: auto;
	width: 100%;
}
/* 产品优势 end */

/* 产品应用 start */
.application{
	padding: 80px 0 0px;
	background-image: url(../img/application-bg.png);
	background-size: cover;
	background-position: center;
}
.application-list{
	flex-wrap: wrap;
}
.application-list-item{
	width: 31%;
	margin-right: 30px;
	margin-top: 20px;
}
.application-list-item:nth-child(1){
	margin-top: 0px;
}
.application-list-item:nth-child(2){
	margin-top: 0px;
}
.application-list-item:nth-child(3){
	margin-top: 0px;
}
.application-list-item:nth-child(3n){
	margin-right: 0px;
}
.application-item-title{
	padding: 9px 24px;
	margin-bottom: 16px;
	opacity: 0.8;
	background-image: linear-gradient(90deg, #0099FF 0%, rgba(68,215,182,0.00) 100%);
	border-radius: 16px;
	font-weight: 700;
	font-size: 16px;
	color: rgba(255,255,255,0.90);
	letter-spacing: 1.6px;
	line-height: 30px;
}
.application-item-dec{
	font-size: 16px;
	color: rgba(0,0,0,0.60);
	letter-spacing: 1.6px;
	line-height: 24px;
	margin-bottom: 16px;
	min-height: 72px;
}
.application-item-img{
	width: 100%;
	margin-right: 16px;
}
.application-item-right{
	flex: 1;
	position: relative;
	padding-top: 24px;
}
.item-right-icon{
	flex-wrap: wrap;
}
.right-icon-box{
	width: 120px;
	margin-top: 12px;
}
.right-icon-box:nth-child(1){
	margin-top: 8px;
}
.right-icon-box:nth-child(2){
	margin-top: 8px;
}
.right-icon-box>img{
	width: 24px;
	height: 24px;
	margin-right: 8px;
}
.right-icon-box>span{
	font-weight: Bold;
	font-size: 14px;
	color: #475A66;
	letter-spacing: 1.4px;
	line-height: 20px;
}
.item-right-text{
	position: absolute;
	top: 0;
	right: 0;
	margin: 2px 0 2px;
	font-size: 12px;
	color: #475A66;
	letter-spacing: 1.2px;
	text-align: right;
	line-height: 18px;
}
.right-num-box{
	margin-bottom: 8px;
	height: 24px;
}
.right-num-box:last-child{
	margin-bottom: 0px;
}
.right-num-title{
	display: inline-block;
	background: #B3B3B3;
	width: 80px;
	padding: 2px 0;
	font-size: 14px;
	color: rgba(255,255,255,0.90);
	letter-spacing: 1.4px;
	text-align: center;
	line-height: 20px;
}
.right-num-data{
	display: inline-block;
	background-image: linear-gradient(90deg, #FFFFFF 0%, rgba(255,255,255,0.00) 100%);
	width: calc(100% - 80px);
	padding: 2px 0 2px 16px;
	font-size: 14px;
	color: rgba(0,0,0,0.90);
	letter-spacing: 1.4px;
	line-height: 20px;
	white-space: nowrap;
}
/* 产品应用 end */

/* 产品阵容 start */
.lineup{
	padding: 80px 0 0;
	background: #fff;
}
.lineup-swiper{
	padding: 32px 0 40px;
	position: relative;
	height: fit-content;
}
.lineup-swiper .swiper-slide{
	/* width: 360px!important; */
}
.lineup-swiper-item{
	padding: 40px 0px 0;
	background: #FFFFFF;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 0 20px 4px rgb(211 214 216 / 30%);
}
.lineup-swiper-item:hover{
	box-shadow: 0 0 20px 4px rgba(0,153,255,0.30);
}
.swiper-slide-active .lineup-swiper-item{
	/* box-shadow: 0 0 20px 4px rgba(0,153,255,0.30); */
}
.lineup-swiper-item.swiper-item-last{
	/* opacity: 0.6; */
}
.lineup-swiper-name{
	font-weight: Bold;
	font-size: 20px;
	color: #475A66;
	letter-spacing: 2px;
	line-height: 30px;
	margin-bottom: 16px;
	padding: 0 32px;
}
.lineup-swiper-dec{
	font-size: 16px;
	color: rgba(0,0,0,0.60);
	letter-spacing: 1.6px;
	line-height: 24px;
	margin-bottom: 35px;
	padding: 0 32px;
}
.lineup-swiper-img{
	padding: 0 7px 11px;
	height: 333px;
}
.lineup-swiper-img img{
	height: 100%;
}
.lineup-swiper-link{
	height: 48px;
	background: #0099FF;
	font-size: 16px;
	color: rgba(255,255,255,0.90);
	letter-spacing: 1.6px;
	line-height: 48px;
	text-align: center;
}
.lineup-swiper-link>a{
	color: rgba(255,255,255,0.90);
	display: block;
	font-weight: bold;
}
/* 产品阵容 end */

/* 滚动查看更多 start */
.shine {
    position: fixed;
	width: 50px;
	height: 60px;
	bottom: 50px;
	right: 10px;
	opacity: 0;
	transition: all .3s;
	transition-delay: .3s;
	animation: shine 4s infinite, hover 2s alternate infinite ease-in-out;
}
@-webkit-keyframes shine {
    from {
        -webkit-mask-position: 150%;
    }
    to {
        -webkit-mask-position: -50%;
    }
}
@-webkit-keyframes hover {
    from {
        transform: translateY(-50%);
    }
    to {
        transform: translateY(-75%);
    }
}
@-webkit-keyframes hoverSmall {
    from {
        transform: translateY(30%) rotate(45deg);
    }
    to {
        transform: translateY(-10%) rotate(45deg);
    }
}
/* 滚动查看更多 end */

/* 底部导航 start */
.footer{
	padding: 80px 0 40px;
	background-image: url(../img/footer-bg.png);
	background-position: center;
	background-size: cover;
}
.footer-left-title{
	font-weight: Bold;
	font-size: 32px;
	color: rgba(255,255,255,0.90);
	letter-spacing: 6.4px;
	line-height: 48px;
	margin-bottom: 24px;
}
.footer-detail-item{
	margin-bottom: 8px;
}
.footer-detail-item:last-child{
	margin-bottom: 0px;
}
.footer-detail-icon{
	width: 22px;
	margin-right: 10px;
}
.footer-detail-text{
	font-size: 16px;
	color: rgba(255,255,255,0.90);
	letter-spacing: 1.6px;
	line-height: 24px;
}
.footer-right{
	padding-top: 10px;
}
.footer-right-item{
	margin-right: 80px;
	text-align: center;
}
.footer-right-item:last-child{
	margin-right: 0px;
}
.footer-right-code{
	width: 160px;
	height: 160px;
	padding: 10px;
	background: #fff;
	cursor: pointer;
}
.footer-right-text{
	font-size: 16px;
	color: rgba(255,255,255,0.90);
	letter-spacing: 1.6px;
	text-align: center;
	line-height: 24px;
	margin-top: 16px;
}
.nav-copyright {
    width: 100%;
    margin-top: 20px;
	padding-top: 20px!important;
    border-top: 1px solid #B3B3B3;
}
.copyright-list {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: flex-end;
    color: #E6E6E6;
    margin: 20px 0 8px;
}
.footer-logo {
    width: 112px;
    margin-right: 15px;
}
.copyright-list li {
    font-size: 14px;
    display: flex;
    align-items: center;
    letter-spacing: 1.4px;
    margin-bottom: -4px;
}
.copyright-list li a {
    padding-right: 0;
    font-size: 13px;
    letter-spacing: 0;
	color: rgba(255,255,255,0.90);
}
.footer-arrow {
    width: 13px;
    height: 13px;
    margin: -2px 9px 0 20px;
}
.nav-copyright p {
	color: rgba(255,255,255,0.90);
    letter-spacing: 0;
    line-height: 18px;
    font-size: 12px;
    margin-bottom: 0;
    text-align: right;
}
/* 底部导航 end */

/* 返回顶部 start */
.goback{
	display: none;
	position: fixed;
	right: -63px;
	opacity: 0.5;
	top: 50%;
	transform: translateY(-50%);
	background: #FFFFFF;
	box-shadow: 0 0 8px 0 rgb(0 0 0 / 20%);
	border-radius: 16px 0 0 16px;
	width: 126px;
	height: 196px;
	padding: 16px 0 0;
	z-index: 10;
	transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
}
.goback:hover{
	right: 0;
	opacity: 1;
}
.goback-code-img{
	width: 100px;
	margin: 0 auto;
	cursor: pointer;
}
.goback-code-text{
	font-weight: Bold;
	font-size: 16px;
	color: #475A66;
	letter-spacing: 1.6px;
	line-height: 24px;
	text-align: center;
	margin: 8px 0 16px;
}
.goback-top{
	height: 48px;
	background: #475A66;
	font-weight: Bold;
	font-size: 12px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: center;
	line-height: 48px;
	border-radius: 0px 0 0 16px;
	cursor: pointer;
	position: relative;
}
.goback-top::after{
	content: '';
	position: absolute;
	top: 9px;
	left: 50%;
	transform: translateX(-50%);
	width: 9px;
	height: 5px;
	background-image: url(../img/arrow-white-top.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	-webkit-transition: all 400ms;
	transition: all 400ms;
}
.goback-top:hover::after{
	top: 5px;
}
/* 返回顶部 end */


/* 留资页面 start */
.information-logo{
	text-align: center;
	margin-bottom: 32px;
}
.information-logo-img{
	width: 150px;
	height: 32px;
	margin: 10px auto 16px;
}
.information-logo-text{
	font-weight: Bold;
	font-size: 24px;
	color: rgba(255,255,255,0.90);
	letter-spacing: 2.4px;
	line-height: 36px;
}
.form-input-box{
	margin-bottom: 16px;
	position: relative;
}
.input{
	width: 100%;
	height: 40px;
	background: #FFFFFF;
	border: 1px solid rgba(0,0,0,0.20);
	border-radius: 8px;
	font-size: 14px;
	color: rgba(0,0,0,0.90);
	letter-spacing: 1.2px;
	line-height: 24px;
	padding: 8px;
}
.input:focus {
	border: 1px solid #EF0D0D;
}
.input-err{
	position: absolute;
	top: 8px;
	right: 8px;
	font-size: 12px;
	color: #EF0D0D;
	letter-spacing: 1.2px;
	text-align: right;
	line-height: 24px;
}
.send-code{
	position: absolute;
	right: 0;
	top: 0;
	background: #0099FF;
	border-radius: 8px;
	font-size: 14px;
	color: #FFFFFF;
	letter-spacing: 1.4px;
	line-height: 24px;
	border: none;
	width: 110px;
	height: 100%;
}
.form-img-box{
	margin-bottom: 24px;
	margin-top: 24px;
}
.select_file{
	width: 180px;
	height: 100px;
	background: #FFFFFF;
	border: 1px solid rgba(0,0,0,0.20);
	border-radius: 8px;
	font-size: 14px;
	color: rgba(0,0,0,0.40);
	letter-spacing: 1.4px;
	line-height: 20px;
	position: relative;
	text-align: center;
}
.select_file input[type="file"]{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.select_file.file2{
	display: none;
}
.form-img-add{
	padding-top: 20px;
}
.form-img-add>img{
	width: 25px;
	height: 25px;
	margin: 7px;
}
.form-img-photo{
	width: 180px;
	height: 100px;
	border: 1px solid rgba(0,0,0,0.20);
	border-radius: 8px;
	overflow: hidden;
	display: none;
	position: relative;
}
.b1{
	height: 100px;
}
#preview-img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.form-img-again{
	background: rgba(0,0,0,0.60);
	font-size: 12px;
	color: rgba(255,255,255,0.90);
	letter-spacing: 1.2px;
	line-height: 18px;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 24px;
	text-align: center;
	width: 100%;
}
.form-img-again>p{
	line-height: 24px;
}
.preview-file2{
	position: absolute;
	top: 0;
	left: 0;
}
.form-img-close{
	position: absolute;
	top: 0;
	right: 0;
	width: 24px;
	height: 24px;
}
.form-textarea-box{
	margin-bottom: 11px;
	position: relative;
}
.form-textarea-title{
	font-weight: Bold;
	font-size: 20px;
	color: rgba(255,255,255,0.90);
	letter-spacing: 2px;
	line-height: 30px;
	margin-bottom: 8px;
}
.form-textarea-box>textarea{
	width: 100%;
	height: 160px;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	border-radius: 8px;
	padding: 8px;
	font-size: 16px;
	color: rgba(0,0,0,0.90);
	letter-spacing: 1.6px;
	text-align: justify;
	line-height: 32px;
}
.textarea-num {
    position: absolute;
	bottom: 8px;
	right: 8px;
    font-size: 12px;
    color: #475A66;
    letter-spacing: 1.2px;
    line-height: 18px;
}
.form-check-box{
	text-align: center;
	margin-bottom: 40px;
}
.agree-clause{
	font-size: 16px;
	color: #FFFFFF;
	letter-spacing: 1.6px;
	text-align: center;
	line-height: 24px;
	position: relative;
}
.login-clause{
	color: #0099FF;
	text-decoration: underline;
}
.login-clause:hover{
	color: #0099FF;
	text-decoration: underline;
}
.clause-err{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 14px;
	color: #FFAD00;
	letter-spacing: 1.4px;
	text-align: center;
	line-height: 20px;
	margin-top: 4px;
}
.form-btn-box{
	text-align: center;
}
.form-btn-submit{
	width: 280px;
	height: 60px;
	background: #2EB3FF;
	border-radius: 30px;
	font-size: 16px;
	color: rgba(255,255,255,0.90);
	letter-spacing: 1.6px;
	text-align: center;
	line-height: 24px;
	border: none;
}
/* 留资页面 end */

/* 提交反馈页面 start */
.feedback-logo{
	width: 150px;
	height: 32px;
	margin: 0 auto;
}
.feedback-success{
	margin: 60px auto 40px;
	width: 280px;
	height: 200px;
	background: #F8F8F8;
	border-radius: 16px;
}
.feedback-success>p{
	font-size: 16px;
	color: rgba(0,0,0,0.90);
	letter-spacing: 1.6px;
	margin-top: 14px;
}
.feedback-btn>a{
	display: block;
	width: 280px;
	height: 60px;
	background: #2EB3FF;
	border-radius: 30px;
	font-size: 16px;
	color: rgba(255,255,255,0.90);
	letter-spacing: 1.6px;
	text-align: center;
	line-height: 60px;
	margin: 0 auto;
}
/* 提交反馈页面 end */

/* 按比例缩放 start */
.scale-sm .introduce-center{
	height: auto;
	display: block;
}
.scale-sm .advantage-center1{
	height: auto;
	display: block;
}
.scale-sm .advantage-center2{
	height: auto;
	display: block;
}
.scale-sm .advantage-center3{
	height: auto;
	display: block;
}
.scale-sm .advantage-center4{
	height: auto;
	display: block;
}
.scale-sm .application-center1{
	height: auto;
	display: block;
}
.scale-sm .application-center2{
	height: auto;
	display: block;
}
.scale-sm .introduce-one{
	scale: 0.9;
}
.scale-sm .header-box{
	scale: 0.9;
}
.scale-sm .advantage-box{
	scale: 0.9;
}
.scale-sm .advantage-title{
	scale: 0.9;
	padding-bottom: 0px;
}
.scale-sm .advantage-compare-box{
	scale: 0.9;
}
.scale-sm .introduce-two{
	scale: 0.9;
}
.scale-sm .advantage-range{
	scale: 0.9;
}
.scale-sm .application-list{
	scale: 0.9;
}
.scale-sm .advantage-shtick{
	scale: 0.9;
	margin-top: 50px;
}
.scale-sm .advantage-amplification{
	scale: 0.9;
	margin-top: 0;
}
.scale-sm .lineup .wrap1160{
	scale: 0.9;
}
.scale-sm .introduce-two{
	margin-top: 0;
}
.scale-sm .amplification-item{
	height: auto;
}
.scale-sm .amplification-left .amplification-item-img{
	height: 150px;
	width: auto;
}
.scale-sm .amplification-left .amplification-item-img>img{
	height: 100%;
	width: auto;
}
/* 按比例缩放 end */

/* 平板 start */
@media screen and (min-width: 1025px) and (max-width: 1366px){
	html, body {
	    min-width: auto;
	}
	.wrap1140 {
	    padding: 0 20px;
	}
	.wrap1040{
		padding: 0 20px;
	}
	.banner-text{
		font-size: 55px;
	}
	.header-box {
	    padding: 20px;
	}
	.title::after{
		bottom: 0;
	}
	.introduce-one-img{
		/* width: 70%; */
		width: auto;
		height: calc(100vh * 0.7);
		text-align: center;
	}
	.introduce-one-img>img{
		width: auto;
		height: 100%;
	}
	.introduce-one-name{
		top: 7%;
		padding: 10px 24px;
	}
	.introduce-name-bold{
		font-size: 20px;
		line-height: 24px;
	}
	.introduce-one-left{
		top: 61%;
    	width: 26%;
	}
	.introduce-one-right{
		top: 50%;
    	width: 30%;
	}
	.introduce-num-item {
	    font-size: 14px;
		margin-bottom: 5px;
	}
	.introduce-num-item>span {
	    font-size: 20px;
	}
	.advantage-blue{
		padding: 80px 0 20px;
	}
	.advantage-box {
	    margin-top: 16px;
	}
	.advantage-list-item{
		padding: 3px 0;
	}
	.advantage-text{
		margin-top: 16px;
	}
	.advantage-compare-item.compare1{
		height: 275px;
		padding: 20px 20px 0px;
	}
	.advantage-compare-item.compare2 {
	    height: 265px;
	    padding: 8px 20px 0px;
	}
	.compare-top-name{
		margin-bottom: 0px;
	}
	.introduce-two{
		margin-top: 0px;
		padding: 20px 20px;
	}
	.advantage-center2{
		min-height: calc(100vh - 106px);
	}
	.advantage-center3 {
	    min-height: calc(100vh - 106px);
	}
	.advantage-center4{
		/* min-height: calc(100vh - 80px); */
	}
	.advantage-shtick {
	    margin-top: 50px;
	}
	.advantage-range{
		padding: 10px 70px 10px;
	}
	.shtick-list-item {
	    padding: 20px 20px 0px;
	}
	.shtick-item-title{
		margin-bottom: 10px;
	}
	.amplification-item{
		padding: 20px 20px 20px 20px;
	}
	.application{
		padding: 80px 0 40px;
	}
	.lineup{
		padding: 80px 0 0px;
	}
	.lineup-swiper{
		padding: 20px 0 40px;
	}
}
@media screen and (min-width: 769px) and (max-width: 1024px){
	html, body {
	    min-width: auto;
	}
	.wrap1140 {
	    padding: 0 20px;
	}
	.wrap1040{
		padding: 0 20px;
	}
	.introduce{
		height: auto;
	}
	.introduce-center{
		min-height: auto;
		padding: 50px 0;
	}
	.advantage-center1{
		min-height: auto;
	}
	.advantage-center2{
		min-height: auto;
		margin-top: 0px;
	}
	.advantage-center3{
		min-height: auto;
	}
	.advantage-center4{
		min-height: auto;
		margin-top: 0;
	}
	.application-center1{
		min-height: auto;
	}
	.application-center2{
		min-height: auto;
	}
	.header-box {
	    padding: 20px;
	}
	.banner-text{
		font-size: 45px;
	}
	.introduce-one-img {
	    width: 70%;
	}
	.introduce-one-name{
		top: 7%;
		padding: 20px;
	}
	.introduce-name-bold {
	    line-height: 26px;
	}
	.introduce-one-left {
		top: 61%;
		width: 25%;
		padding-top: 15px;
		margin-bottom: 10px;
	}
	.introduce-num-item>span{
		font-size: 22px;
	}
	.introduce-one-right{
		top: 50%;
    	width: 30%;
		padding-top: 15px;
	}
	.introduce-num-item{
		margin-bottom: 5px;
	}
	.advantage-blue{
		padding: 60px 0;
	}
	.advantage-box {
	    margin-top: 15px;
	}
	.advantage-text {
	    margin-top: 10px;
	}
	.advantage-range{
		margin-top: 40px;
	}
	.advantage-title{
		margin-top: 40px;
	}
	.advantage-compare-item.compare1 {
	    width: 500px;
	    height: auto;
	    padding: 10px 10px 10px;
	}
	.advantage-compare-item.compare2 {
	    height: 100%;
	    padding: 10px 10px 10px 35px;
	}
	.compare-top-name {
	    margin-bottom: 10px;
	}
	.compare2 .compare-top-img {
	    width: 79px;
	    height: auto;
	}
	.introduce-two{
		margin-top: 0px;
		padding: 10px;
	}
	.advantage-shtick {
	    margin-top: 50px;
	}
	.shtick-list-top, .shtick-list-center, .shtick-list-bottom {
	    margin-top: 10px;
	}
	.shtick-list-item{
		padding: 10px;
	}
	.shtick-item-title {
	    font-size: 18px;
	    line-height: 25px;
	    margin-bottom: 10px;
	}
	.list-top-two .shtick-item-img {
	    width: 250px;
	}
	.list-bottom-two .shtick-item-img {
	    width: 600px;
	}
	.advantage-amplification {
	    margin-top: 40px;
	}
	.advantage-amplification-box {
	    margin-top: 20px;
	}
	.amplification-item {
	    height: auto;
	    padding: 10px;
	}
	.application {
	    padding: 80px 0 40px;
	}
	.application-list {
	    margin-top: 20px;
	}
	.application-list-item {
	    width: calc((100% - 40px) / 3);
	    margin-right: 20px;
	}
	.application-list-item:nth-child(3n) {
		margin-right: 0px;
	}
	.lineup {
	    padding: 80px 0 0;
	}
	.lineup-swiper {
	    padding: 20px 0 40px;
	}
	.lineup-swiper-item{
		padding: 10px 0px 0;
	}
	.lineup-swiper-name {
	    font-size: 18px;
	    margin-bottom: 10px;
	    padding: 0 10px;
	}
	.lineup-swiper-dec {
	    margin-bottom: 10px;
	    padding: 0 10px;
	}
	.lineup-swiper-img {
	    height: 270px;
	}
}
/* 平板 end */

/* 移动端 start */
@media only screen and (max-width: 768px){
	html, body {
	    min-width: auto;
		overflow-x: hidden;
	}
	.wrap1140 {
	    padding: 0 20px;
		width: 100%;
	}
	.wrap1040{
		padding: 0 20px;
		width: 100%;
	}
	.sp{
		display: block;
	}
	.pc{
		display: none;
	}
	.scale-sm .introduce-one{
		scale: inherit;
	}
	.scale-sm .header-box{
		scale: inherit;
	}
	.scale-sm .advantage-box{
		scale: inherit;
	}
	.scale-sm .advantage-title{
		scale: inherit;
	}
	.scale-sm .advantage-compare-box{
		scale: inherit;
	}
	.scale-sm .introduce-two{
		scale: inherit;
	}
	.scale-sm .advantage-range{
		scale: inherit;
	}
	.scale-sm .application-list{
		scale: inherit;
	}
	.scale-sm .advantage-shtick{
		scale: inherit;
		margin-top: 40px;
	}
	.scale-sm .advantage-amplification{
		scale: inherit;
	}
	.modal.in .modal-dialog.modal-video {
		margin: 0 auto;
	}
	.introduce-center{
		min-height: auto;
	}
	.advantage-center1{
		min-height: auto;
	}
	.advantage-center2{
		min-height: auto;
		margin-top: 0px;
	}
	.advantage-center3{
		min-height: auto;
	}
	.advantage-center4{
		min-height: auto;
		margin-top: 0;
	}
	.application-center1{
		min-height: auto;
	}
	.application-center2{
		min-height: auto;
	}
	.header-box {
	    padding: 20px;
	}
	.header-nav{
		display: none;
	}
	.hamburger {
		position: relative;
		display: inline-block;
		width: 20px;
		height: 20px;
		cursor: pointer;
	}
	.hamburger:before {
		content: "";
		display: inline-block;
		position: absolute;
		top: 5px;
		left: 0;
		width: 100%;
		height: 2px;
		background: #333;
		transition: all .3s linear;
		-webkit-transition: all .3s linear;
	}
	.hamburger:after {
		content: "";
		display: inline-block;
		position: absolute;
		top: 15px;
		left: 0;
		width: 100%;
		height: 2px;
		background: #333;
		transition: all .3s linear;
		-webkit-transition: all .3s linear;
	}
	.hamburger.open:before {
		transform: rotate(45deg);
		top: 1px;
		transform-origin: left;
	}
	.hamburger.open:after {
		transform: rotate(-45deg);
		top: 15px;
		transform-origin: left;
	}
	.right-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 83%;
		height: 100vh;
		z-index: 101;
		background: #fff;
		overflow-y: auto;
		transition: right .5s linear;
		-webkit-transition: right .5s linear;
		border-radius: 16px 0 0 0;
	}
	.right-menu.menu-open {
		right: 0;
	}
	.right-navs {
		padding: 0px 20px 0px 20px;
	}
	.right-login {
		height: 76px;
		text-align: right;
		padding-top: 26px;
	}
	.right-login>a {
		margin-left: 15px;
		display: inline-block;
		height: 30px;
	}
	.nav-close>img{
		height: 100%;
	}
	.mnav-item-list {
		display: flex;
		border-bottom: 1px solid #E6E6E6;
	}
	.mnav-item .mnav-item-list>a {
		font-weight: 500;
		font-size: 1.8rem;
		color: #1A1A1A;
		letter-spacing: 1.8px;
		line-height: 26px;
		padding: 20px 0;
		max-width: calc(100% - 40px);
	}
	.black-overlay {
		background: rgba(0, 0, 0, 0.4);
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 100;
		display: none;
	}
	.introduce{
		height: auto;
		padding: 0px 0;
	}
	.banner-content{
		top: calc((100% + 72px) / 2);
	}
	.banner-text{
		font-size: 32px;
	}
	.banner-text2{
		font-size: 20px;
	}
	.banner-btn{
		display: none;
	}
	.introduce-one-img {
		width: 70%;
    	margin: 40px auto;
	}
	.introduce-one-name{
		top: 12%;
		left: 0;
		width: auto;
		padding: 5px 15px;
	}
	.introduce-name-bold {
		font-size: 16px;
		line-height: 24px;
	}
	.introduce-name-p{
		font-size: 14px;
		line-height: 16px;
	}
	.introduce-one-left{
		top: 60%;
		left: 0;
		width: 31%;
		padding-top: 10px;
		padding-left: 0px;
	}
	.introduce-one-right{
		top: 50%;
		right: 0;
		width: 31%;
		padding-top: 10px;
	}
	.introduce-num-item {
		font-size: 14px;
		letter-spacing: 1px;
		line-height: 17px;
		margin-bottom: 5px;
	}
	.introduce-num-item>span {
		font-weight: Bold;
		font-size: 14px;
		color: #475A66;
		letter-spacing: 1px;
		line-height: 17px;
		margin-left: 0px;
	}

	.advantage-blue{
		padding: 60px 0;
	}
	.advantage-range {
		padding: 24px;
		margin-top: 40px;
	}
	.advantage-list-item{
		font-size: 14px;
		width: auto;
		padding: 8px;
		margin-right: 15px;
	}
	.advantage-text{
		font-size: 14px;
	}
	.advantage-range-img {
		overflow-x: auto;
	}
	.advantage-range-img>img{
		width: 1140px;
	}
	.advantage-title{
		margin-bottom: 20px;
		margin-top: 40px;
	}
	.advantage-shtick {
		margin-top: 40px;
	}
	.advantage-compare-box{
		display: block;
	}
	.advantage-compare-item.compare1{
		width: auto;
		height: auto;
		padding: 20px 20px 40px;
	}
	.advantage-compare-item.compare1>.flex{
		display: block;
	}
	.compare-top-name>span{
		margin-left: 0px;
    	display: inline-block;
	}
	.compare-item-top {
		width: 150px;
		margin: 0 auto;
	}
	.compare-item-bottom {
		margin-left: 0;
		margin-top: 20px;
	}
	.compare-item-vs {
		right: auto;
		top: auto;
		left: 50%;
		bottom: 0;
		transform: translate(-50%,50%);
	}
	.advantage-compare-item.compare2 {
		height: auto;
		padding: 40px 20px 20px;
		border-radius: 16px;
	}
	.introduce-two{
		display: block;
	}
	.introduce-item-right {
		width: 100%;
	}
	.introduce-item-left {
		width: 100%;
		display: block;
	}
	.introduce-hexagon {
		margin: 20px auto 0;
	}
	.introduce-point-tips{
		display: none;
	}
	.shtick-list-top{
		display: block;
	}
	.shtick-list-item {
		padding: 20px;
		width: 100%;
		min-height: auto;
		margin-bottom: 20px;
	}
	.shtick-list-item>.flex{
		display: block;
	}
	.list-top-one .shtick-item-img {
		width: 100%;
	}
	.shtick-list-center{
		display: block;
	}
	.shtick-list-center, .shtick-list-bottom{
		margin-top: 0;
	}
	.shtick-list-item{
		display: block;
	}
	.list-bottom-two .shtick-item-img {
		width: 100%;
		margin-left: 0;
		margin-top: 20px;
	}
	.shtick-list-bottom .shtick-list-item {
		margin-bottom: 40px;
	}
	.advantage-amplification-box{
		display: block;
	}
	.amplification-item {
		width: 100%;
		margin-bottom: 20px;
	}
	.amplification-left .amplification-item-img{
		height: auto;
		width: 100px;
		margin-left: 20px;
	}
	.amplification-item-title{
		margin-bottom: 15px;
	}
	.application{
		padding-top: 70px;
	}
	.application-list{
		display: block;
	}
	.application-list-item {
		width: 100%;
		margin-bottom: 20px;
	}
	.application-list-item:nth-child(1) {
		margin-top: 20px;
	}
	.lineup{
		padding: 70px 0 0;
	}
	.footer{
		padding: 70px 0 40px;
	}
	.footer>.flex{
		display: block;
	}
	.footer-right{
		justify-content: space-between;
		padding-top: 20px;
	}
	.footer-right-item {
		margin-right: 0px;
	}
	.nav-copyright {
		margin-top: 30px !important;
		display: block;
		padding: 16px 20px;
	}
	.copyright-list {
		flex-direction: column;
		align-items: center;
		flex-wrap: wrap;
		margin: 0px 0 30px; 
	}
	.copyright-list li {
		margin-top: 10px;
	}
	.nav-copyright img {
		margin-bottom: 20px;
		width: 125px;
		height: 25px;
		margin-right: 0;
	}
	.copyright-list li a {
		padding-right: 0px;
		font-weight: bold;
		color: #fff;
		font-size: 15px;
	}
	.footer-arrow {
		margin-bottom: 0 !important;
		width: 10px !important;
		height: 12px !important;
	}
	.nav-copyright p {
		font-size: 12px;
		font-weight: unset;
		margin-bottom: 0;
		text-align: center;
		color: #fff;
		text-align: left;
		line-height: 1.5;
	}
}
/* 移动端 end */

