/* 公共样式 */

* {
	padding: 0;
	margin: 0;
}

body {
	font-family: "Montserrat", Sans-serif;
	color: #000;
	min-height: 100vh;
	max-width: 500px;
	margin: 0 auto;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.22);
}

/* @font-face {
	font-family: 'Source Han Sans CN';
	src: url('fonts/SourceHanSansCN-Regular.otf');
} */

.container {
	width: 100%;
    margin: 0 auto;
}

div {
	box-sizing: border-box; 
}

.line_through {
	text-decoration: line-through;
}

.line_underline {
	text-decoration: underline;
}

.select-none {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.flex_center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex_row {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.flex_row_end {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
}

.flex_row_top {
	display: flex;
	flex-direction: row;
}

.flex_column {
	display: flex;
	flex-direction: column;
}

.flex_column_center {
	display: flex;
	align-items: center;
}

.flex_justry {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flex_justry_top {
	display: flex;
	justify-content: space-between;
}

.flex_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.flex_row_reverse {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}

.flex_align_justry {
	display: flex;
	align-content: space-between;
	flex-wrap: wrap;
}

.flex_1 {
	display: flex;
	flex: 1;
}

.fixed_top {
	position: fixed;
	top: 0; 
	left: 0;
	right: 0;
	margin: auto;
}

.fixed_btm {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.relative {
	position: relative;
}

.pdr_class {
	color: #CBB585;
}

.pdr_c {
	color: #C2C7CE;
}

.pdr_order {
	color: #c1c5ce;
}

.pdr_9 {
	color: #999;
}

.line_block {
	display: inline-block;
}

.eps_1 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.eps_2 {
	width: 100%;
	overflow: hidden;
	display: -webkit-box;
	 -webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.eps_3 {
	overflow: hidden;
	display: -webkit-box;
	 -webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

input, button, select, textarea {
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
    border: 0;
}
textarea{
    resize:none;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

a {
	text-decoration: none;
	/* display: block; */
}