: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;
}

/* 成果分享页面特有样式 */
.results-hero {
	  background: 
	        linear-gradient(135deg, rgba(30, 136, 229, 0.15), rgba(33, 150, 243, 0.08)),
	        url('../img/banner/banner-results.jpg') center/cover no-repeat;
	padding: 120px 5% 120px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.results-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(79, 195, 247, 0.12) 0%, transparent 70%);
	z-index: 0;
}

.results-hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
}

.results-hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 20px;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.2;
}

.results-hero-subtitle {
	font-size: 1.4rem;
	color: white;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.results-section {
	padding: 100px 5%;
}

.results-section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 15px;
	color: var(--primary-dark);
	font-weight: 700;
}

.results-section-subtitle {
	text-align: center;
	color: var(--gray);
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto 60px;
}

.results-container {
	max-width: 1200px;
	margin: 0 auto;
}

/* 成果分类导航 */
.results-categories {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 50px;
}

.category-btn {
	padding: 10px 25px;
	background: white;
	border: 2px solid var(--primary-light);
	color: var(--primary-dark);
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
	background: var(--primary);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(30, 136, 229, 0.2);
}

/* 成果展示网格 */
.results-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
}

.result-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	position: relative;
}

.result-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.result-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--accent-yellow);
	color: var(--dark);
	padding: 5px 15px;
	border-radius: 20px;
	font-weight: 600;
	z-index: 2;
}

.result-image {
	height: 250px;
	overflow: hidden;
	position: relative;
}

.result-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(30, 136, 229, 0.1), transparent);
}

.result-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.result-card:hover .result-image img {
	transform: scale(1.05);
}

.result-content {
	padding: 25px;
}

.result-title {
	font-size: 1.6rem;
	margin-bottom: 15px;
	color: var(--primary-dark);
}

.result-desc {
	color: var(--gray);
	margin-bottom: 20px;
}

.result-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;
}

.result-stats {
	display: flex;
	justify-content: space-around;
	background: rgba(30, 136, 229, 0.05);
	border-radius: 10px;
	padding: 15px;
	margin-top: 15px;
}

.stat-item {
	text-align: center;
}

.stat-value {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
	line-height: 1.2;
}

.stat-label {
	font-size: 0.9rem;
	color: var(--gray);
}

/* 技术成果展示 */
.tech-showcase {
	background: linear-gradient(135deg, rgba(30, 136, 229, 0.05), rgba(33, 150, 243, 0.02));
	padding: 80px 5%;
	margin-top: 60px;
}

.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.tech-card {
	background: white;
	border-radius: 15px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.tech-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tech-icon {
	font-size: 3.5rem;
	color: var(--primary);
	margin-bottom: 25px;
}

.tech-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--primary-dark);
	font-weight: 700;
}

.tech-desc {
	color: var(--gray);
}

/* 动画效果 */
@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) {
	.results-hero-title {
		font-size: 3rem;
	}
}

@media (max-width: 992px) {
	.results-hero-title {
		font-size: 2.5rem;
	}

	.results-section-title {
		font-size: 2rem;
	}

	.results-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
}

@media (max-width: 768px) {
	.results-hero {
		padding: 100px 5% 60px;
	}

	.results-hero-title {
		font-size: 2.2rem;
	}

	.results-hero-subtitle {
		font-size: 1.1rem;
	}

	.results-section {
		padding: 80px 5%;
	}

	.results-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.results-hero-title {
		font-size: 1.8rem;
	}

	.results-section-title {
		font-size: 1.8rem;
	}

	.results-section {
		padding: 60px 5%;
	}

	.category-btn {
		padding: 8px 15px;
		font-size: 0.9rem;
	}
}