@charset "utf-8";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Microsoft YaHei", SimHei, sans-serif;
}
body {
	background: linear-gradient(135deg, #fff8e8 0%, #ffe8cc 100%);
	color: #5c2c0e;
}
header.banner {
	width: 100%;
	height: 60vh;
	background: linear-gradient(rgba(139,60,20,0.6), rgba(139,60,20,0.7)), url(caipin.jpg) center/cover no-repeat;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.banner h1 {
	font-size: 48px;
	margin-bottom: 12px;
	letter-spacing: 6px;
}
.banner p {
	font-size: 20px;
	opacity: 0.95;
}
.container {
	max-width: 1400px;
	margin: 60px auto;
	padding: 0 24px;
}
.title-box {
	text-align: center;
	margin-bottom: 48px;
}
.title-box h2 {
	font-size: 32px;
	color: #994411;
	position: relative;
	display: inline-block;
}
.title-box h2::after {
	content: "";
	width: 80px;
	height: 3px;
	background: #ff8833;
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}
.caixi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
}
.caixi-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(150,70,20,0.12);
	transition: all 0.3s ease;
	cursor: pointer;
}
.caixi-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 30px rgba(150,70,20,0.22);
}
.card-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.card-text {
	padding: 20px;
}
.card-text h3 {
	font-size: 22px;
	color: #883d10;
	margin-bottom: 8px;
}
.card-text p {
	font-size: 14px;
	color: #775030;
	line-height: 1.6;
}
footer {
	margin-top: 80px;
	padding: 30px;
	text-align: center;
	background: #994411;
	color: #fff;
}