@charset "utf-8";

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	-webkit-text-size-adjust: none;
}

html {
	width: 100%;
	height: 100%;
}

body {
	color: #000;
	background: #fff;
	padding: 0;
	font-family: "PingFang SC", "Microsoft YaHei", "Tahoma", "Arial", "sans-serif";
	font-size: 16px;
	line-height: 1.4;
	width: 100%;
	height: 100%;
}


input,
textarea,
button {
	outline: none;
	font-family: "PingFang SC", "Microsoft YaHei", "Tahoma", "Arial", "sans-serif";
}

ul,
ol,
li {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
	transition: ease 0.4s ease;
}

a:hover {
	text-decoration: none;
}

a:focus {
	outline: none;
}

img {
	border: 0;
	vertical-align: middle;
}

select {
	background: none;
}

button {
	cursor: pointer;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.flex-xc {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.flex-xb {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flex-xend {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.flex-yc {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.flex-xc-yc {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.flex-column {
	flex-direction: column;
}

.swiper-button-next,
.swiper-button-prev {
	outline: none;
}



::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-button:vertical {
	display: none
}

::-webkit-scrollbar-track:vertical {
	background-color: black
}

::-webkit-scrollbar-track-piece {
	background: #E3E3E3
}

::-webkit-scrollbar-thumb:vertical {
	background-color: #3B3B3B;
	border-radius: 30px
}

::-webkit-scrollbar-thumb:vertical:hover {
	background-color: #3CD278
}

::-webkit-scrollbar-corner:vertical {
	background-color: #535353
}

::-webkit-scrollbar-resizer:vertical {
	background-color: #3CD278
}

/* ::selection {
	background-color: #535353;
	color: #fff
}

-webkit-::selection {
	background-color: #535353;
	color: #fff
}

::-moz-selection {
	background-color: #535353;
	color: #fff
} */

.navbar-toggle {
	display: none;
	padding: 0 0;
	margin: 0;
	background-color: transparent;
	border: none !important;
	position: relative;
	z-index: 10;
}

.navbar-toggle .line-top,
.navbar-toggle .line-middle,
.navbar-toggle .line-bottom {
	display: block;
	width: 20px;
	height: 3px;
	background-color: #019944;
	margin: 3px 0;
	transition: 0.4s;
}

.open.navbar-toggle .line-top,
.open.navbar-toggle .line-middle,
.open.navbar-toggle .line-bottom {
	background-color: #019944;
}

.scroll .navbar-toggle .line-top,
.scroll .navbar-toggle .line-middle,
.scroll .navbar-toggle .line-bottom {
	background-color: #019944;
}

.open .line-top {
	-webkit-transform: rotate(45deg) translate(4px, 4px);
	transform: rotate(45deg) translate(4px, 4px);
}

.open .line-middle {
	opacity: 0;
}

.open .line-bottom {
	-webkit-transform: rotate(-45deg) translate(4px, -5px);
	transform: rotate(-45deg) translate(4px, -5px);
}

.xs-show {
	display: none;
}

@media screen and (max-width:991px) {

	.xs-hide {
		display: none;
	}

	.xs-show {
		display: flex;
	}
}