:root{
	--color-font: #2b2b35;
	--color-gray: #666666;
	--color-theme: #23b36c;
	--color-background: ;
	--color-active: ;
	--color-border: #999;
	--font-title: 28px;
	--font-size: ;
	--font-icon: 36px;
}

*{
	margin: 0px;
	padding: 0px;
	font-family: "Poppins", sans-serif;
}

button,input{
	border: none;
	background-color: transparent;
}

button:focus,input:focus{
	border: none;
	outline: none;
}

ul,li,p,span,a{
	list-style: none;
	text-decoration: none;
}

header{
	width: 100%;
	position: fixed;
	top: 0px;
	transition-duration: 0.2s;
	box-shadow: 2px 4px 8px rgba(0,0,0,.08);
	z-index: 7;
}

header.down{
	position: fixed;
	animation:headerDown 0.3s 1 ease-out 0s;
	-webkit-animation:headerDown 0.3s 1 ease-out 0s; 
}

@keyframes headerDown
{
	from {top:-60px;}
	to {top:-140px;}
}

@-webkit-keyframes headerDown /*Safari and Chrome*/
{
	from {top:-60px;}
	to {top:-140px;}
}

header.top{
	position: fixed;
	animation:headerTop 0.5s 1 ease-out 0s;
	-webkit-animation:headerTop 0.5s 1 ease-out 0s; 
}

@keyframes headerTop
{
	from {top:-140px;}
	to {top:-60px;}
}

@-webkit-keyframes headerTop /*Safari and Chrome*/
{
	from {top:-140px;}
	to {top:-60px;}
}

.info{
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
}

.common-module{
	margin: auto;
	padding: 80px calc(50% - 590px);
}

header .main{
	padding: 12px 0px;
}

header .main:nth-child(1){
	background-color: var(--color-font);
}

header .main:nth-child(2){
	background-color: #fff;
}

header .main .box{
	width: 1180px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header ul{
	display: flex;
}

header img{
	height: 50px
}

header .main .nav{
	display: flex;
}

header .main .search{
	border: 1px solid #41414a;
	border-radius: 2px;
	display: flex;
	align-items: center;
}

header .main .search input{
	line-height: 32px;
	background-color: transparent;
	border: none;
	padding-left: 15px;
	color: #fff;
}

header .main .search button{
	color: #fff;
	box-shadow: none;
	background-color: transparent;
	border: none;
	width: 40px;
	line-height: 34px;
}

header .main .search button:hover{
	color: var(--color-theme);
}

header .about li{
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	margin-right: 20px;
	padding-right: 20px;
	border-right: 1px solid #41414a;
	display: flex;
	align-items: center;
	letter-spacing: 1px;
}

header .about li:last-child{
	border-right: 0px;
}

header .about li span{
	font-weight: normal;
	margin-right: 6px;
	color: var(--color-theme);
	font-size: 20px;
}

header .pc-show .nav li{
	font-size: 16px;
	font-weight: 600;
	line-height: 36px;
	padding: 0px 20px;
	position: relative;
}

header .pc-show .nav li:after{
	content: '';
	width: 2px;
	height: 2px;
	display: block;
	position: absolute;
	bottom: 0px;
	left: 50%;
	margin-left: -1px;
	background-color: #fff;
	-webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

header .pc-show .nav li:hover a{
	color: var(--color-theme);
}

header .pc-show .nav li:hover:after{
	background-color: var(--color-theme);
	transform: scaleX(30);
}

header .pc-show .nav li.active a{
	color: var(--color-theme);
}

header .pc-show .nav li.active:after{
	background-color: var(--color-theme);
	transform: scaleX(30);
}

header .nav li a{
	color: var(--color-gray);
}

header .nav button{
	width: 100px;
	border-radius: 50px;
	background-color: var(--color-theme);
	color: #fff;
}

footer{
	background-color: var(--color-font);
}

footer .main{
	width: 1280px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

footer .main .module{
	flex-grow: 1;
	flex-basis: 300px;
	padding: 50px;
}

footer .main a{
	display: block;
	color: #fff;
	line-height: 40px;
	font-size: 15px;
	-webkit-transition: all 0.2s ease-in 0s;
    -o-transition: all 0.2s ease-in 0s;
    transition: all 0.2s ease-in 0s;
}

footer .main a:hover{
	color: var(--color-theme);
	transform: translateX(-4px);
}

footer .main img{
	width: 220px;
}

footer .main .p1{
	color: #fff;
	font-size: 14px;
	line-height: 30px;
	margin-bottom: 10px;
}
footer .main .p2{
	color: #fff;	
	font-size: 14px;
	display: flex;
	align-items: center;
	line-height: 30px;
}

footer .main .p2 span{
	color: var(--color-theme);
	font-size: 20px;
	line-height: 36px;
	margin-right: 10px;
	display: inline-block;
}

footer .main .tit{
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 10px;
	padding-bottom: 20px;
	position: relative;
	letter-spacing: 1px;
}

footer .main .tit:before{
	content: '';
	width: 40px;
	height: 3px;
	background-color: var(--color-theme);
	position: absolute;
	left: 0px;
	bottom: 0px;
}

.title{
	text-align: center;
}

.title .p1{
	color: var(--color-font);
	font-size: var(--font-title);
	font-weight: bold;
	margin-bottom: 15px;
	color: var(--color-font);
}

.title .p1:after{
	content: '';
	width: 50px;
	height: 3px;
	display: block;
	margin: auto;
	margin-top: 15px;
	background-color: var(--color-theme)
}

.title .p2{
	font-size: 16px;
	color: var(--color-font);
}

.banner-titlt{
	height: 160px;
	background-color: #ececec;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	line-height: 160px;
	position: relative;
	padding-top: 138px;
}

.banner-titlt:after{
	content: '';
	width: 100%;
	height: 298px;
	position: absolute;
	left: 0px;
	top: 0px;
	/*background-color: rgba(35,179,108,.6);*/
	background-color: rgba(43,43,53,.8);
}

.banner-titlt .main{
	display: flex;
	justify-content: space-between;
	padding: 0px calc(50% - 590px);
	position: relative;
	z-index: 3;
}

.banner-titlt .p1{
	font-size: 40px;
	font-weight: bold;
	color: #fff;
}

.banner-titlt .p2 span{
	color: #fff;
	padding: 0px 6px;
}

.banner-titlt .p2 a:after{
	content: '/';
	display: inline-block;
	padding-left: 6px;
	font-size: 16px;
}

.banner-titlt .p2 a{
	color: #fff;
}

.quote .info{
	display: flex;
	flex-wrap: wrap;
}

.quote .module{
	flex-grow: 1;
	margin: 0px 10px;
	padding: 30px 20px;
	background-color: #fff;
	box-shadow: 0px 0px 15px rgba(0,0,0,.1);
	position: relative;
	top: 0px;
	-webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
	margin-bottom: 20px;
	flex-basis: 230px;
}

.quote .module:hover{
	top: -8px;
}

.quote .module .icon{
	background-color: var(--color-theme);
	width: 56px;
	height: 60px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	padding-top: 10px;
	position: absolute;
	right: 20px;
	top: 0px;
}

.quote .module .icon:after{
	content: '';
	display: inline-block;
	border: 28px solid transparent;
	border-bottom: 28px solid #fff;
	position: absolute;
	bottom: 0px;
	left: 0px;
}

.quote .module .price .p1{
	font-size: 18px;
	color: var(--color-font);
	font-weight: bold;
	margin-bottom: 20px;
}

.quote .module .price .p2{
	font-size: 40px;
	font-weight: bold;
	color: var(--color-theme);
	font-family: roboto,sans-serif;
	margin-bottom: 10px;
}

.quote .module .has .p1{
	font-size: 13px;
	color: var(--color-gray);
	line-height: 36px;
}

.quote .module .has .p1 span{
	color: var(--color-theme);
	margin-right: 6px;
}

.partner ul{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.partner ul li{
	width: calc(20% - 14px);
	margin: 7px;
	background-color: #fff;
}

.partner ul li img{
	width: 100%;
}

.Alert:before{
	content: '';
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: rgba(0,0,0,.7);
	z-index: 7;
	display: none;
}

.Alert .info{
	width: 840px;
	position: fixed;
	left: 50%;
	top: 50%;
	margin-left: -420px;
	z-index: -2;
	display: block;
	text-align: right;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.7);
	-webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

.Alert .info .mk{
	background-color: #fff;
	width: 400px;
	padding: 30px;
	text-align: center;
}

.Alert .info .mk p{
	font-size: 24px;
	margin-bottom: 10px;
	font-weight: bold;
	color: var(--color-font);
}

.Alert .info .mk img{
	width: 75%;
	display: inline-block;
	margin-top: 30px;
	margin-bottom: 10px;
}

.Alert .info img{
	width: 100%;
}

.Alert .info a{
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #666;
	color: #fff;
	text-align: center;
	line-height: 40px;
	margin-bottom: 10px;
	font-family: Comic Sans MS;
}

.Alert.act:before{
	display: block;
}

.Alert.act .info{
	z-index: 9;
	opacity: 1!important;;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.wait{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wait.begin:before{
	content: '';
	position: fixed;
	top: 0px;
	left: 0px;
	width: 20%;
	height: 100%;
	background-color: var(--color-theme);
}

.wait.begin:after{
	content: '';
	position: fixed;
	top: 0px;
	right: 0px;
	width: 20%;
	height: 100%;
	background-color: var(--color-theme);
}

.wait.final:before{
	content: '';
	position: fixed;
	top: 0px;
	left: 0px;
	width: 50%;
	height: 100%;
	background-color: var(--color-theme);
	-webkit-transition: all 0.8s ease-in 0s;
    -o-transition: all 0.8s ease-in 0s;
    transition: all 0.8s ease-in 0s;
}

.wait.final:after{
	content: '';
	position: fixed;
	top: 0px;
	right: 0px;
	width: 50%;
	height: 100%;
	background-color: var(--color-theme);
	-webkit-transition: all 0.8s ease-in 0s;
    -o-transition: all 0.8s ease-in 0s;
    transition: all 0.8s ease-in 0s;
}

.wait.begin.on:before,
.wait.begin.on:after{
	width: 50%;
}

.wait.final.on:before,
.wait.final.on:after{
	width: 0%;
}

.wait.begin.on .loader{
	display: block;
}
.wait.final.on .loader{
	display: none;
}

.loader {
	width:50px;
	height:50px;
	border-radius:50px;
	display:inline-block;
	position:relative;
	vertical-align:middle;
	z-index: 4;
	display: none;
}
.loader,.loader:before,.loader:after {
	animation:1s infinite ease-in-out;
}
.loader:before,.loader:after {
	width:100%;
	height:100%;
	border-radius:50px;
	position:absolute;
	top:0;
	left:0;
}

.loader-2:before,.loader-2:after {
	content:'';
}
.loader-2:before {
	border:1px solid #effff7;
	top:-1px;
	left:-1px;
	opacity:0;
	animation-name:loader2-1;
}
@keyframes loader2-1 {
	0% {
	transform:scale(1);
	opacity:1;
}
50% {
	transform:scale(1.3);
	opacity:0;
}
100% {
	transform:scale(1.3);
	opacity:0;
}
}.loader-2:after {
	background-color: #effff7;;
	animation-name:loader2-2;
}
@keyframes loader2-2 {
	0% {
	transform:scale(1);
}
50% {
	transform:scale(0.7);
}
100% {
	transform:scale(1);
}
}/* Loader 3 */

.hovicon:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  content: '';
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.hovicon:before {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: block;
  -webkit-font-smoothing: antialiased;
}

.hovicon.effect-8 {
	cursor: pointer;
  -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
  -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
  transition: transform ease-out 0.1s, background 0.2s;
}

.hovicon.effect-8:after {
  top: 0;
  left: 0;
  padding: 0;
  z-index: -1;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  opacity: 0;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.hovicon.effect-8:hover {
  opacity: 0.9;
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
  color: #fff;
}

.hovicon.effect-8:hover i {
  color: #fff;
}

.hovicon.effect-8:hover:after {
  -webkit-animation: sonarEffect 1s ease-out 55ms;
  -moz-animation: sonarEffect 1s ease-out 55ms;
  animation: sonarEffect 1s ease-out 55ms;
}

@-webkit-keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px var(--color-theme), 0 0 0 6px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px var(--color-theme), 0 0 0 6px rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.1);
    opacity: 0;
  }
}
@-moz-keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px var(--color-theme), 0 0 0 6px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px var(--color-theme), 0 0 0 6px rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.1);
    opacity: 0;
  }
}
@keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px var(--color-theme), 0 0 0 6px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 6px 6px var(--color-theme), 0 0 0 6px rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.1);
    opacity: 0;
  }
}

.custom-btn {
  width: 160px;
  line-height: 46px;
  border: 2px solid #000;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  margin-right: 20px;
}

.banner .info .boxBtn .custom-btn:nth-child(2){
	background: transparent;
	border: 2px solid #000;
}

.btn-6 {
  background: #000;
  color: #fff;
  padding: 0;
  border: none;
}
.btn-6 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
.btn-6:before,
.btn-6:after {
  position: absolute;
  content: "";
  height: 0%;
  width: 2px;
  background: var(--color-theme);
}
.btn-6:before {
  right: 0;
  top: 0;
  transition: all 500ms ease;
}
.btn-6:after {
  left: 0;
  bottom: 0;
  transition: all 500ms ease;
}
.btn-6:hover:before {
  transition: all 500ms ease;
  height: 100%;
}
.btn-6:hover:after {
  transition: all 500ms ease;
  height: 100%;
}
.btn-6 span:before,
.btn-6 span:after {
  position: absolute;
  content: "";
  background: var(--color-theme);
}
.btn-6 span:before {
  left: 0;
  top: 0;
  width: 0%;
  height: 2px;
  transition: all 500ms ease;
}
.btn-6 span:after {
  right: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  transition: all 500ms ease;
}
.btn-6 span:hover:before {
  width: 100%;
}
.btn-6 span:hover:after {
  width: 100%;
}


/*移动端*/
.warp-show .main{padding: 10px 0px;display: flex;justify-content: space-between;position: relative;z-index: 9;box-shadow: 2px 4px 6px rgba(0,0,0,.1)}
.warp-show .main button{padding: 0px 15px;}
.warp-show .main button span{color: #fff;font-size: 20px;}
.warp-show .main img{height: 40px;}
.warp-show:after{
	content: '';
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	background-color: var(--color-font);
	z-index: 2;
	display: none;
}

.warp-show.on:after{
	display: block;
}

.warp-show .nav ul{
	width: 100%;
	display: block;
	margin-top: 20px;
	position: fixed;
	left: 0px;
	top: 70px;
}

.warp-show .nav ul li{
	display: block;
	padding: 0px 15px;
	line-height: 36px;
	margin-bottom: 4px;
	position: relative;
	width: calc(100% - 30px);
	left: 80%;
	opacity: 0;
}

.warp-show .nav.active ul li.on{
	opacity: 1;
	left: 0px;
	-webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.warp-show .nav ul li a{
	display: block;
	text-align: center;
	background-color: transparent;
	width: 100%;
	font-weight: 14px;
	font-weight: bold;
	color: #fff;
}

.warp-show .nav ul li.active a:before {
  transition: all 500ms ease;
  height: 100%;
}
.warp-show .nav ul li.active a:after {
  transition: all 500ms ease;
  height: 100%;
}

.warp-show .nav ul li.active a span:before {
  width: 100%;
}
.warp-show .nav ul li.active a span:after {
  width: 100%;
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.nav.active .hamRotate {
  transform: rotate(45deg);
}
.nav.active .hamRotate180 {
  transform: rotate(180deg);
}
.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:#fff;
  stroke-width:5.5;
  stroke-linecap:round;
}

.ham8 .top {
  stroke-dasharray: 40 160;
}
.ham8 .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}
.ham8 .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}
.nav.active .ham8 .top {
  stroke-dashoffset: -64px;
}
.nav.active .ham8 .middle {
  //stroke-dashoffset: -20px;
  transform: rotate(90deg);
}
.nav.active .ham8 .bottom {
  stroke-dashoffset: -64px;
}

.AlertCode .info{margin-top: -295px;margin-left: -253px;width: 460px;opacity: 0}
.AlertImg .info{margin-top: -240px;opacity: 0}
.warp-show .nav button{width: 100%;line-height: 40px;border-radius: 4px;}

.warp-show{display: none;}

@media screen and (max-width: 768px) {
	footer .main{width: 100%;flex-wrap: wrap;}
	footer .main .module:nth-child(2),
	footer .main .module:nth-child(3),
	.banner-titlt .p2,
	header .pc-show{display: none;}

	.warp-show{display: block;}

	footer .main .module:nth-child(4){padding-top: 0px;}
	
	.banner-titlt{padding-top: 64px;height: 100px;line-height: 40px;text-align: center;}
	.banner-titlt:after{height: 164px}
	.banner-titlt .main{text-align: center;display: block;}

	.main{flex-wrap: wrap;padding: 30px 0px!important}
	header .warp-show .main{flex-wrap: wrap;padding: 12px 0px!important}
	
	.info{margin-top: 30px}
	.quote .info{margin-left: 5px;margin-right: 5px;}
	
	.partner ul{margin-left: 8px;margin-right: 8px;}
	.partner ul li{width: calc(33.33% - 14px)}

	.common-module{width: 100%;padding: 30px 0px!important}

	.AlertCode .info{width: 320px;margin-left: -160px;}
	.AlertCode .info .mk{width: 260px;}

	.AlertImg .info{width: 100%;margin-left: 0px;left: 0px;margin-top: -125px;}
	.AlertImg .info a{margin-right: 20px;}
}