.main {
	margin: auto;
}

.header {
	height: 52px;
	background: #fff;
	border-bottom: 1px solid #ececec;
	display: flex;
	align-items: center;
	justify-content: center;
	position: sticky;
	top: 0
}

.header .back {
	position: absolute;
	left: 16px;
	font-size: 22px
}

.header h1 {
	font-size: 18px;
	font-weight: 600
}

/* 页面 */
.byz-search-page {
	width: auto;
	margin-bottom: 15px;
}

/* 搜索框 */
.byz-search-box {
	display: none;
	background: #fff;
	padding: 15px;
	margin-bottom: 15px;
	box-shadow: 0 0 0 1px #f3f3f3;
}

.byz-search-form {
	display: flex;
	gap: 10px;
}

.byz-search-input {
	flex: 1;
	height: 46px;
	border: 1px solid #e5e5e5;
	padding: 0 15px;
	font-size: 16px;
	outline: none;
}

.byz-search-input:focus {
	border-color: #08c26e;
}

.byz-search-btn {
	width: 90px;
	border: 0;
	border-radius: 8px;
	background: #08c26e;
	color: #fff;
	font-size: 15px;
}

/* 搜索统计 */
.byz-search-result-info {
	background: #fff;
	padding: 16px 15px 15px 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #efefef;
	font-size: 16px;
	color: #666;
}

.byz-search-result-info span,
.byz-search-result-info strong {
	color: #08c26e;
	font-weight: 600;
}

/* 列表 */
.search-list {
	background: #fff;
	overflow: hidden;
	border-top: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
}

.search-item {
	display: block;
	padding: 14px 16px 19px 16px;
	border-bottom: 1px solid #f3f3f3;
}

.search-item:last-child {
	border-bottom: none;
}

/* 标题 */
.search-title {
	font-size: 18px;
	line-height: 1.6;
	color: #222;
	margin-bottom: 12px;
}

/* 简介 */
.search-desc {
	color: #666;
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* 关键词 */
.search-key {
	color: #08c26e;
	font-weight: 600;
}

/* 底部信息 */
.search-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	font-size: 14px;
	color: #999;
}

.search-meta span {
	display: flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
}

/* 分页页码 */
.pages {
	width: 100%;
	margin: 20px 0;
	padding: 0;
	display: flex;
	justify-content: center;
}

.pages ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pages li {
	margin: 0;
}

.pages li.liuye,
.pages li.active {
	display: block;
}

.pages li a,
.pages li.active span,
.pages li.shouye span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border-radius: 8px;
	font-size: 15px;
	text-decoration: none;
	box-sizing: border-box;
}

/* 默认 */
.pages li a {
	background: #fff;
	border: 1px solid #e5e5e5;
	color: #333;
}

/* 当前页 */
.pages li.active span {
	background: #00c67a;
	border: 1px solid #00c67a;
	color: #fff;
	font-weight: 600;
}

/* 禁用 */
.pages li.shouye span {
	background: #fff;
	border: 1px solid #e5e5e5;
	color: #bbb;
}

/* 点击效果 */
.pages li a:active {
	background: #00c67a;
	border-color: #00c67a;
	color: #fff;
}