/* 首页特定样式 */
.home-hero {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/dbj.jpg') no-repeat center center/cover;
	color: #fff;
	padding: 150px 0;
	text-align: center;
}

.home-hero h2 {
	font-size: 3.2rem;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home-hero p {
	font-size: 1.5rem;
	max-width: 800px;
	margin: 0 auto 30px;
	line-height: 1.8;
}

.services {
	padding: 80px 0;
	background-color: #fff;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: #333;
}

.section-subtitle {
	text-align: center;
	font-size: 1.2rem;
	color: #666;
	max-width: 800px;
	margin: 0 auto 50px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.service-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
	background-color: #1e88e5;
	color: white;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
}

.service-content {
	padding: 25px;
}

.service-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #333;
}

.service-description {
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
}

.service-features {
	list-style-type: none;
	padding-left: 0;
}

.service-features li {
	padding: 5px 0;
	position: relative;
	padding-left: 25px;
}

.service-features li:before {
	content: "✓";
	color: #1e88e5;
	position: absolute;
	left: 0;
	font-weight: bold;
}

.cta-section {
	padding: 80px 0;
	background-color: #f8f9fa;
	text-align: center;
}

.cta-content {
	max-width: 800px;
	margin: 0 auto;
}

.cta-title {
	font-size: 2.2rem;
	margin-bottom: 20px;
	color: #333;
}

.cta-description {
	font-size: 1.2rem;
	margin-bottom: 30px;
	color: #666;
	line-height: 1.6;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.btn-primary {
	background-color: #1e88e5;
	color: white;
	padding: 12px 30px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	display: inline-block;
	transition: background-color 0.3s ease;
}

.btn-primary:hover {
	background-color: #1565c0;
}

.btn-secondary {
	background-color: transparent;
	color: #1e88e5;
	padding: 12px 30px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	display: inline-block;
	border: 2px solid #1e88e5;
	transition: all 0.3s ease;
}

.btn-secondary:hover {
	background-color: #1e88e5;
	color: white;
}

.stats {
	padding: 60px 0;
	background-color: #fff;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	text-align: center;
}

.stat-item {
	padding: 20px;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: #1e88e5;
	margin-bottom: 10px;
}

.stat-label {
	font-size: 1.1rem;
	color: #666;
}

.featured-work {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.work-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.work-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.work-card:hover {
	transform: translateY(-5px);
}

.work-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.work-content {
	padding: 20px;
}

.work-title {
	font-size: 1.3rem;
	margin-bottom: 10px;
	color: #333;
}

.work-description {
	color: #666;
	line-height: 1.6;
	margin-bottom: 15px;
}

@media (max-width: 768px) {
	.home-hero h2 {
		font-size: 2.5rem;
	}
	
	.home-hero p {
		font-size: 1.2rem;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.btn-primary, .btn-secondary {
		width: 100%;
		max-width: 300px;
		text-align: center;
	}
}