<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* CSS JiHua */
.jihua_box {
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 10px 40px;
	flex-wrap: wrap;
	margin: 0 auto;
	margin-bottom: 40px;
	box-sizing: border-box;
}

.jihua_box a {
	width: 22%;
	box-sizing: border-box;
	border: 1px solid var(--sc02);
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	overflow: hidden;
	background: var(--bai);
	margin: 10px;
	box-sizing: border-box;
}

.jihua_box a span {
	margin: 20px;
	width: 80px;
	height: 80px;
}
.jihua_box a span img {
	transition: all 0.3s;
}
.jihua_box a:hover span img {
	transform: scale(1.1);
}

.jihua_box a p {
	width: 100%;
	height: 60px;
	color: var(--bai);
	background: linear-gradient(0deg, var(--sc01), var(--sc02));
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}</pre></body></html>