.main {
	margin: 50px auto 85px auto;
}

.byz-tools-page {
	width: 100%;
}
/* 顶部 */

.byz-tools-header {
	background: #fff;
	border-radius: 2px;
	padding: 40px;
	text-align: center;
	margin-bottom: 20px;
	box-shadow: 0 0 0 1px #f1f1f1;
}

.byz-tools-title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 12px;
}

.byz-tools-desc {
	color: #888;
	font-size: 15px;
}
/* 分类模块 */

.byz-tool-section {
	background: #fff;
	border-radius: 2px;
	padding: 17px 15px;
	margin-bottom: 15px;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}

.byz-tool-section-title {
	font-size: 18px;
	font-weight: 700;
	color: #222;
	margin-bottom: 15px;
	padding-left: 14px;
	position: relative;
}

.byz-tool-section-title:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-42%);
	width: 4px;
	height: 17px;
	background: #08c26e;
	border-radius: 2px;
}

.byz-tool-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.byz-tool-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px;
	background: #fafafa;
	border-radius: 2px;
	color: #333;
	transition: .2s;
	font-size: 15px;
}