* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

a {
	text-decoration: none
}

body {
	font-family: '寰蒋闆呴粦';
	min-width: 1280px
}

li {
	list-style: none
}

button:focus {
	outline: 0
}

.w-full {
	width: 100%
}

.h-full {
	height: 100%
}

.inline-block {
	display: inline-block
}

.color-theme {
	color: #8169ff
}

.title {
	color: #333;
	font-size: 40px;
	font-weight: 500
}

.color-purple {
	color: #8169ff
}

.bg-white {
	background: #fff
}

.content-w {
	width: 1213px
}

.clearfix:after {
	content: ' ';
	display: table;
	clear: both
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-box;
	display: flex
}

.flex-item {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 0px;
	-webkit-flex: 1 0 0;
	-moz-box-flex: 1;
	flex: 1 0 0
}

.column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	flex-direction: column
}

.justify-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	justify-content: center
}

.justify-around {
	-webkit-box-pack: space-around;
	-ms-flex-pack: space-around;
	-webkit-justify-content: space-around;
	justify-content: space-around
}

.justify-between {
	-webkit-box-pack: space-between;
	-ms-flex-pack: space-between;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	justify-content: space-between
}

.align-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	align-items: center
}