@charset "utf-8";

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

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

@font-face {
	font-family: 'Poppins';
	src: url('/static/lib/font/Poppins-Regular.ttf');
}

@font-face {
	font-family: 'Poppins-bold';
	src: url('/static/lib/font/Poppins-Bold.ttf');
}
body {
	color: #000;
	background: #fff;
	padding: 0;
	font-family: 'Poppins', "PingFang SC", "Microsoft YaHei", "Tahoma", "Arial", "sans-serif";
	font-size: 16px;
	line-height: 1.4;
	width: 100%;
	height: 100%;
}

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

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

a:hover {
	text-decoration: none;
	/* color: #fff; */
}

a:focus {
	outline: none;
}

input,
textarea,
button {
	outline: 0;
}

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

select {
	background: none;
}

button {
	cursor: pointer;
}

.clearfix:after {
	content: " ";
	display: block;
	width: 100%;
	height: 0;
	clear: both;
}

.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;
}

.wrap {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
}

.wrap-sm {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

.wrap-sm-sm {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

.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: #0C9898
}

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

::-webkit-scrollbar-resizer:vertical {
	background-color: #0C9898
}

::selection {
	background-color: #0C9898;
	color: #fff
}

-webkit-::selection {
	background-color: #0C9898;
	color: #fff
}

::-moz-selection {
	background-color: #0C9898;
	color: #fff
}

@media screen and (max-width:1919px) {
	.wrap {
		width: 90%;
	}

	.wrap-sm {
		width: 90%;
	}

	.wrap-sm-sm {
		width: 90%;
	}
}