* {
	list-style: none;
	font-style: normal;
	padding: 0;
	margin: 0;
}

div,
span,
em,
p,
ul,
li {
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

html,
body {
	height: 100%;
	overflow: hidden;
}

body {
	color: #000;
	/* font-size: 12px;
	font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Meiryo, sans-serif; */
	box-sizing: border-box;
	font: 14px Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial, sans-serif;
}

.container {
	width: 100%;
	height: 100%;
	max-width: 1000px;
	margin: auto;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.container .scrollview {
	flex: 1;
	overflow-y: auto;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
}

.scrollbar-Beautify::-webkit-scrollbar {
	width: 0;
	background-color: #001236;
}

.less-1 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.less-2 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.no-select {
	user-select: none;
	/* 禁止用户选中图片 */
	-webkit-user-select: none;
	/* Safari 浏览器支持 */
	-moz-user-select: none;
	/* Firefox 浏览器支持 */
	-ms-user-select: none;
	/* IE/Edge 浏览器支持 */
}