:root {
	--primary: #1e88e5;
	--primary-light: #64b5f6;
	--primary-dark: #0d47a1;
	--light: #f8fdff;
	--dark: #263238;
	--gray: #78909c;
	--light-gray: #eceff1;
	--shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	--transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	--accent-yellow: #ffc107;
	--accent-green: #4CAF50;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
	background-color: var(--light);
	color: var(--dark);
	line-height: 1.6;
	overflow-x: hidden;
	position: relative;
}

/* 智能开发页面特有样式 */
.dev-hero {
	background:
		linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(33, 150, 243, 0.05)),
		url('../img/banner/banner-dev.jpg') center/cover no-repeat;
	padding: 120px 5% 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
	color: white;
}

.dev-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
	z-index: 0;
}

.dev-hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
}

.dev-hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.2;
	color: white;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dev-hero-subtitle {
	font-size: 1.4rem;
	color: white;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.dev-section {
	padding: 100px 5%;
}

.dev-section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 15px;
	color: var(--primary-dark);
	font-weight: 700;
}

.dev-section-subtitle {
	text-align: center;
	color: var(--gray);
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto 60px;
}

.dev-container {
	max-width: 1200px;
	margin: 0 auto;
}

/* 开发服务卡片 */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.service-card {
	background: white;
	border-radius: 15px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.8s ease;
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-icon {
	font-size: 3rem;
	color: var(--primary);
	margin-bottom: 25px;
}

.service-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--primary-dark);
	font-weight: 700;
}

.service-desc {
	color: var(--gray);
	margin-bottom: 20px;
}

.service-features {
	text-align: left;
	padding: 0 15px;
}

.service-feature {
	display: flex;
	align-items: flex-start;
	margin-bottom: 10px;
}

.service-feature i {
	color: var(--primary);
	margin-right: 10px;
	margin-top: 5px;
}

/* 技术栈展示 */
.tech-stack {
	background: linear-gradient(135deg, rgba(30, 136, 229, 0.05), rgba(33, 150, 243, 0.02));
	padding: 50px;
	border-radius: 20px;
	margin-bottom: 60px;
}

.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 30px;
	text-align: center;
}

.tech-item {
	background: white;
	border-radius: 10px;
	padding: 20px 15px;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.tech-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tech-icon {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 15px;
}

.tech-name {
	font-weight: 600;
	color: var(--primary-dark);
}

/* 开发流程 */
.process-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-bottom: 60px;
}

.process-step {
	flex: 0 0 calc(25% - 30px);
	min-width: 220px;
	background: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: var(--shadow);
	position: relative;
	text-align: center;
}

.process-number {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	background: var(--primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.2rem;
}

.process-title {
	font-size: 1.3rem;
	color: var(--primary-dark);
	margin-bottom: 15px;
	font-weight: 600;
}

.process-desc {
	color: var(--gray);
}

/* 案例展示 */
.case-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.case-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.case-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-image {
	height: 200px;
	overflow: hidden;
}

.case-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
	transform: scale(1.05);
}

.case-content {
	padding: 25px;
}

.case-title {
	font-size: 1.4rem;
	margin-bottom: 15px;
	color: var(--primary-dark);
}

.case-desc {
	color: var(--gray);
	margin-bottom: 20px;
}

.case-tech {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.tech-tag {
	background: rgba(30, 136, 229, 0.1);
	color: var(--primary-dark);
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.9rem;
}

.case-result {
	background: rgba(30, 136, 229, 0.1);
	padding: 15px;
	border-radius: 10px;
	margin-top: 15px;
}

/* 动画效果 */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate {
	animation: fadeIn 0.8s ease forwards;
	opacity: 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.dev-hero-title {
		font-size: 3rem;
	}

	.process-step {
		flex: 0 0 calc(33.333% - 30px);
	}
}

@media (max-width: 992px) {
	.dev-hero-title {
		font-size: 2.5rem;
	}

	.dev-section-title {
		font-size: 2rem;
	}

	.process-step {
		flex: 0 0 calc(50% - 30px);
	}
}

@media (max-width: 768px) {
	.dev-hero {
		padding: 100px 5% 60px;
	}

	.dev-hero-title {
		font-size: 2.2rem;
	}

	.dev-hero-subtitle {
		font-size: 1.1rem;
	}

	.dev-section {
		padding: 80px 5%;
	}

	.tech-stack {
		padding: 30px 20px;
	}

	.process-step {
		flex: 0 0 100%;
	}
}

@media (max-width: 480px) {
	.dev-hero-title {
		font-size: 1.8rem;
	}

	.dev-section-title {
		font-size: 1.8rem;
	}

	.dev-section {
		padding: 60px 5%;
	}
}