* {
	padding: 0;
	margin: 0;
}

html {
	font-size: 100px;
	background-color: #F3F6F8;
}

.nav_bar {
	background-color: #FFFFFF;
	position: sticky;
	top: 0;
	z-index: 1;
}

.nav_bar ul {
	width: 40%;
	display: flex;
	list-style: none;
	font-size: 0.14rem;
	color: #969799;
	line-height: 0.44rem;
	text-align: center;
}

.nav_bar ul li {
	width: 100%;
	position: relative;
}

.active {
	color: #323233;
}

.active::before {
	content: '';
	width: 55%;
	height: 0.03rem;
	background-color: #1A8CFE;
	border-radius: 0.015rem;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.list {
	padding: 0.12rem;
}

.list .card {
	background-color: #FFFFFF;
	padding: 0.12rem;
	border-radius: 0.08rem;
	overflow: auto;
	margin-bottom: 0.12rem;
	display: flex;
	font-size: 0.12rem;
}

.list .card .img {
	flex: 3;
}

.list .card .img img {
	width: 100%;
	border-radius: 0.04rem;
	vertical-align: top;
}

.list .card .info {
	flex: 4;
	padding-left: 0.12rem;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
}

.list .card .info .title {
	font-size: 0.14rem;
	color: #303133;
}

.list .card .info .describe {
	width: 100%;
	font-size: 0.11rem;
	color: #909399;
}

.list .card .info .describe t {
	color: #FA5555;
}

.list .card .info .describe .cancel {
	float: right;
}

.default {
	font-size: 0.14rem;
	margin-top: 1.2rem;
}

.default .img {
	width: 1.6rem;
	margin: auto;
}

.default .img img {
	width: 100%;
}

.default .not_order {
	color: #969799;
	text-align: center;
}

.load_more {
	font-size: 0.16rem;
	margin-bottom: 0.24rem;
	text-align: center;
	display: none;
	color: #909399;
}

/* 文章 */
.article-list {
	display: flex;
}

.article-msg {
	width: 2.31rem;
	margin-right: 0.16rem;
}

.article-title {
	font-size: 0.14rem;
	color: #303133;
	min-height: 0.42rem;
}

.article-img img {
	width: 0.8rem;
}

.article-msg p {
	margin-top: 0.08rem;
	display: flex;
	justify-content: space-between;
}

.article-time,
.article-cancel {
	color: #909399;
}

/* 多行文本控制 */
.textControls {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

/* 单行文本控制 */
.textControl {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

/* 多行文本控制 */
.textControls {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

a {
	text-decoration: none;
}