/* CSS Document */

/* ---------- header ---------- */
#header {
	position: fixed;
/*  position: relative; */
	box-sizing: border-box;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	z-index: 100;
	transition: all 0.3s ease-in-out;
}

#header:after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: rgba(255,255,255,.15);
	content: "";
}

.header-logo {
	position: relative;
	top: 0;
	left: 0;
	height: 100px;
	background: #fff;
}

.header-logo a {
	display: flex;
	height: 100%;
	justify-content: start;
}

.header-logo a img {
	width: 140px;
}

.header-logo a span {
	font-size:20px;
	display: flex;
	justify-content: start;
	align-items:center;
	padding:0 15px;
}

#header .container {
	display: flex;
	position:relative;
}
/* navigation */
#header-nav-wrap {
	text-align: center;
}

#header-nav-wrap .header-main-nav {
	height: 100px;
	font-size: 20px;
}

#header-nav-wrap .header-main-nav li {
	display: inline-block;
	padding: 0 20px;
}

#header-nav-wrap .header-main-nav li a {
	display: inline-block;
	color: #4c4948;
	line-height: 100px;
}

#header-nav-wrap .header-main-nav li a:hover {
	color: #006536;
}

#header-nav-wrap .header-main-nav li.current a {
	/* border-bottom: 2px solid #006536; */
	color: #006536;
	font-weight: 800;
}

.header-bar {
	position: relative;
	display: flex;
	justify-content: start;
	align-items: center;
}

.header-search {
	border-left: 3px solid #4c4948;
	display: flex;
	justify-content: start;
	align-items: center;
}

.header-search .search-btn {
	display: inline-block;
	padding:0 20px;
	/* background: url("../image/search-ico.png") no-repeat center; */
}
.header-search .search-btn img{
	display: block;
}

.header-tel {
	float: left;
	position: relative;
	border-left: 1px solid rgba(255,255,255,.15);
	font-family: "Roboto";
	font-size: 24px;
	color: #fff;
	display: flex;
	justify-content: start;
	align-items: center;
}

.dl{
	font-size:16px;
	padding:4px 15px;
	color: #fff;
	background: #006536;
	border-radius: 50px;
	line-height: 1;
}
.dl:hover{
	color: #b8becc;
}

* {
	scrollbar-width: none;
}

::-webkit-scrollbar {
	width: 7.5px;
	height: 6px;
	background-color: #f0f0f0;
	display: none
}

::-webkit-scrollbar-thumb {
	background-color: #b1b1b1;
	border-radius: 15px
}

::-webkit-scrollbar-thumb:hover {
	background-color: #777
}
/* header scroll top */
#header.on {
	background: #fff;
	box-shadow: 0 0 12px rgba(0,0,0,.1);
	position: fixed;
}

#header.on:after {
	background: rgba(0,0,0,.05);
}

#header.on #header-nav-wrap .header-main-nav li a {
	color: #333;
}

#header.on #header-nav-wrap .header-main-nav li a:hover {
	color: #006536;
}

#header.on #header-nav-wrap .header-main-nav li.current a {
	color: #006536;
}

/* #header.on .header-search {
	border-left: 1px solid rgba(0,0,0,.05);
}

#header.on .header-search .search-btn {
	filter: brightness(0.6);
} */

#header.on .header-tel {
	border-left: 1px solid rgba(0,0,0,.05);
	color: #666;
}

#header.on .header-tel .tel-ico {
	background: url("../image/tel-ico.png") no-repeat center #f6f6f6;
}

/* menu trigger */
.header-menu-toggle {
	display: none;
	position: fixed;
	top: 12px;
	right: 20px;
	width: 40px;
	height: 40px;
	font-family: "montserrat-regular", sans-serif;
	font-size: 1.2rem;
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
	line-height: 40px;
	transition: all 0.3s ease-in-out;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus {
	color: #fff;
}

.header-menu-toggle span {
	display: block;
	position: absolute;
	top: 50%;
	left: 8px;
	right: auto;
	bottom: auto;
	margin-top: -1px;
	width: 24px;
	height: 2px;
	background: #ababab;
	font: 0/0 a;
	color: transparent;
	transition: all 0.5s ease-in-out;
}

.header-menu-toggle span::before,
.header-menu-toggle span::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	content: "";
	transition: all 0.5s ease-in-out;
}

.header-menu-toggle span::before {
	top: -9px;
}

.header-menu-toggle span::after {
	bottom: -9px;
}

.header-menu-toggle.is-clicked span {
	background: rgba(255,255,255,0);
	transition: all 0.1s ease-in-out;
}

.header-menu-toggle.is-clicked span::before,
.header-menu-toggle.is-clicked span::after {
	background: white;
}

.header-menu-toggle.is-clicked span::before {
	top: 0;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
}

.header-menu-toggle.is-clicked span::after {
	bottom: 0;
	-webkit-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	transform: rotate(225deg);
}

/* responsive */
@media only screen and (max-width: 1440px) {
	#header-nav-wrap {
		padding: 0 80px 0 0;
	}

	#header-nav-wrap .header-main-nav li {
		padding: 0 16px;
	}
	.header-logo a span{
		display: none;
	}
}

@media only screen and (max-width: 1280px) {
	#header-nav-wrap {
		padding: 0 50px 0 0;
	}

	#header-nav-wrap .header-main-nav li {
		padding: 0 8px;
	}
}

@media only screen and (max-width: 1000px) {
    #header-nav-wrap {
		padding: 0;
	}
	#header {
		height: 64px;
	}

	.header-logo {
		height: 64px;
	}

	.header-logo a {
		padding: 0px;
	}

	.header-logo a img {
		width: 90px;
	}
	.header-logo a span{
		font-size:14px;
	}
	#header-nav-wrap {
		display: none;
		left: 0;
		right: 0;
		padding:40px;
		background: #006536;
		width: 100%;
		box-shadow: 0 0 24px rgba(0,0,0,0.1);
		width: 50%;
		position:absolute;
		top:64px;
		right:0px;
		box-sizing:border-box;
	}

	#header-nav-wrap .header-main-nav {
		height: auto;
	}

	#header-nav-wrap .header-main-nav li {
		display: block;
		padding: 0;
		border-bottom: 1px solid rgba(255,255,255,0.05);
	}

	#header-nav-wrap .header-main-nav li a {
		display: block;
		padding: 16px 0;
		color: #fff;
		line-height: 20px;
	}
	#header-nav-wrap .header-main-nav li.current a{
		color: #fff;
	}
	
	.header-menu-toggle.is-clicked span::before, .header-menu-toggle.is-clicked span::after {
	    background: #006536;
	}
	#header-nav-wrap .header-main-nav li.current a {
		border-bottom: none;
	}

	#header.on #header-nav-wrap .header-main-nav li a {
		color: #fff;
	}
    #header.on #header-nav-wrap .header-main-nav li.current a{
        color: #fff;
    }
	.header-bar {
		position: static;
		background: #121212;
		display: none;
	}

	.header-search {
		float: none;
		padding: 20px 0;
		height: auto;
		border-left: none;
	}

	.header-search .search-btn {
		display: inline-block;
		width: 100%;
		height: 48px;
		background: url("../image/search-ico.png") no-repeat center rgba(255, 255, 255, 0.03);
		background-size: 16px;
	}

	.header-tel {
		display: none;
	}

	.header-menu-toggle {
		display: block;
	}
	
}
@media only screen and (max-width: 800px) {
	.header-logo a span{
		display: flex;
	}
}
/* ---------- footer ---------- */
.foottop{
	padding:60px 0;
	background-image: url(../image/foottop.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
	color:#fff;
	text-align: center;
}
.ftp1{
	font-size:35px;
	font-weight:800;
	line-height:1;
}
.ftp2{
	font-size:22px;
	font-weight:400;
	line-height:2;
	margin-top:20px;
}
.ftp3{
	display:inline-block;
	font-size:22px;
	font-weight:400;
	line-height:1;
	margin:35px auto 0;
	color: #006536;
	padding:10px 45px;
	background: #fff;
	border-radius:25px;
	font-weight:800;
}
.footer-btm{
	background: #f7f7f7;
	padding:30px 0;
	color:#000;
	font-size:16px;
	text-align: center;
}
.footer-btm .flex{
	justify-content: center;
}
.footer-con{
	padding:60px 0;
}
.footer-left{
	width:44%;
	box-sizing: border-box;
	border-right:2px solid #d8d7d7;
}
.footer-right{
	width:56%;
	box-sizing: border-box;
	display: flex;
	flex-wrap:wrap;
	justify-content:end;
}
.caidan-block{
	margin-left: 45px;
}
.caidan1{
	display: block;
	font-size:20px;
	font-weight:800;
	color:#595757;
	margin-bottom:25px;
}
.caidan2{
	display: block;
	font-size:18px;
	font-weight:400;
	color:#595757;
	margin-bottom: 20px;
}
.caidan2{
	display: block;
}
.fl1{
	margin-bottom:80px;
}
.fl1 a{
	display: flex;
	height: 100%;
	justify-content: start;
}
.fl1 img{
	width:140px;
}
.fl1 span{
	font-size: 20px;
	display: flex;
	justify-content: start;
	align-items: center;
	padding: 0 15px;
}
.fl2{
	display: flex;
	justify-content: start;
}
.fl3{
	display: flex;
	justify-content: start;
	margin-top:15px;
}
.fl2s1{
	font-size:28px;
	color: #595757;
	font-weight:800;
	line-height: 25px;
	margin-left:15px;
}
.fl2s2{
	font-size:18px;
	color: #595757;
	font-weight:400;
	line-height: 25px;
	margin-left:15px;
}
.fl2 img,.fl3 img{
	display:block;
	width:25px;
	height:25px;
}
@media(max-width:1000px){
	.footer-left{
		width:100%;
		border:none
	}
	.footer-right{
		display: none;
	}
}
/* ---------- go to top ---------- */
#go-top {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 600;
}

#go-top a,
#go-top a:visited {
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 5px;
	background: url("../image/go-top.png") no-repeat center rgba(0,0,0,0.6);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#go-top a:hover,
#go-top a:focus {
	background: url("../image/go-top.png") no-repeat center rgba(0,0,0,1);
}

/* responsive */
@media only screen and (max-width: 768px) {
	#go-top {
		bottom: 0;
		right: 0;
	}

	#go-top a,
  #go-top a:visited {
		width: 48px;
		height: 48px;
		border-radius: 5px 0 0 0;
	}
}