:root {
	/* 企业科技配色方案 - 白色底色 */
	--primary-color: #0056b3;
	--secondary-color: #0078d4;
	--accent-color: #00bcf2;
	--light-color: #f8f9fa;
	--dark-color: #1a1a2e;
	--text-color: #333333;
	--text-light: #666666;
	--white: #ffffff;
	
	/* 科技感渐变 */
	--gradient-primary: linear-gradient(135deg, #0056b3 0%, #0078d4 100%);
	--gradient-accent: linear-gradient(135deg, #0078d4 0%, #00bcf2 100%);
	--gradient-hero: linear-gradient(135deg, rgba(0, 86, 179, 0.95) 0%, rgba(0, 120, 212, 0.95) 100%);
	--gradient-glow: linear-gradient(135deg, rgba(0, 120, 212, 0.15) 0%, rgba(0, 188, 242, 0.15) 100%);
	--gradient-neon: linear-gradient(135deg, #0056b3, #0078d4, #00bcf2, #0078d4, #0056b3);
	
	/* 阴影效果 */
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
	--shadow-blue: 0 4px 20px rgba(0, 86, 179, 0.2);
	--shadow-glow: 0 0 40px rgba(0, 120, 212, 0.3);
	--shadow-neon: 0 0 20px rgba(0, 120, 212, 0.5), 0 0 40px rgba(0, 120, 212, 0.3), 0 0 60px rgba(0, 120, 212, 0.1);
	--shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
	
	/* 边框 */
	--border-light: #e8ecef;
	--border-blue: rgba(0, 86, 179, 0.3);
	--border-glow: rgba(0, 120, 212, 0.5);
	
	/* 毛玻璃效果 */
	--glass-bg: rgba(255, 255, 255, 0.7);
	--glass-border: rgba(255, 255, 255, 0.5);
	--glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', 'Microsoft YaHei', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	color: var(--text-color);
	line-height: 1.6;
	background-color: var(--white);
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}

/* 动态背景网格 */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(rgba(0, 120, 212, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 120, 212, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
	z-index: 0;
	animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
	0% { transform: translateY(0); }
	100% { transform: translateY(60px); }
}

/* 背景装饰光晕 */
body::after {
	content: '';
	position: fixed;
	top: 20%;
	right: 10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(0, 120, 212, 0.08) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
	animation: floatGlow 8s ease-in-out infinite;
	filter: blur(40px);
}

@keyframes floatGlow {
	0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
	50% { transform: translateY(-20px) scale(1.1); opacity: 1; }
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
	position: relative;
	z-index: 1;
}

/* Header Styles */
header {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 4px 30px rgba(0, 120, 212, 0.15);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(0, 120, 212, 0.1);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo {
	display: flex;
	align-items: center;
}

.logo h1 {
	color: var(--primary-color);
	font-size: 28px;
	margin-left: 10px;
	font-weight: 700;
	letter-spacing: 0.5px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 10px rgba(0, 120, 212, 0.3));
	animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
	0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 120, 212, 0.3)); }
	50% { filter: drop-shadow(0 0 20px rgba(0, 120, 212, 0.6)); }
}

.logo-icon {
	font-size: 32px;
	color: var(--primary-color);
	animation: pulse 2s ease-in-out infinite;
	filter: drop-shadow(0 0 15px rgba(0, 120, 212, 0.5));
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.8; transform: scale(1.05); }
}

/* Navigation with Dropdown */
nav ul {
	display: flex;
	list-style: none;
}

nav ul li {
	position: relative;
	margin-left: 30px;
}

nav ul li a {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	transition: all 0.3s;
	display: block;
	padding: 8px 0;
	white-space: nowrap;
	position: relative;
	font-size: 15px;
}

nav ul li a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.3s;
	box-shadow: 0 0 10px rgba(0, 120, 212, 0.5);
}

nav ul li a:hover {
	color: var(--primary-color);
	text-shadow: 0 0 10px rgba(0, 120, 212, 0.3);
}

nav ul li a:hover::before {
	width: 100%;
}

/* 二级菜单样式 */
nav > ul > li > ul {
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	min-width: 240px;
	box-shadow: 0 10px 40px rgba(0, 120, 212, 0.2);
	border-radius: 12px;
	border: 1px solid rgba(0, 120, 212, 0.2);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s;
	z-index: 100;
	display: block;
}

nav > ul > li:hover > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

nav > ul > li > ul > li {
	position: relative;
	margin: 0;
	width: 100%;
	display: block;
}

nav > ul > li > ul > li > a {
	padding: 14px 20px;
	border-bottom: 1px solid rgba(0, 120, 212, 0.1);
	display: flex;
	align-items: center;
	width: 100%;
}

nav > ul > li > ul > li > a i {
	margin-right: 12px;
	width: 20px;
	text-align: center;
	color: var(--secondary-color);
	filter: drop-shadow(0 0 5px rgba(0, 120, 212, 0.5));
}

nav > ul > li > ul > li:last-child > a {
	border-bottom: none;
}

/* 三级菜单样式 */
nav > ul > li > ul > li > ul {
	position: absolute;
	top: 0;
	left: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	min-width: 240px;
	box-shadow: 0 10px 40px rgba(0, 120, 212, 0.2);
	border-radius: 12px;
	border: 1px solid rgba(0, 120, 212, 0.2);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s;
	z-index: 101;
	display: block;
}

nav > ul > li > ul > li:hover > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

nav > ul > li > ul > li > ul > li {
	margin: 0;
	width: 100%;
	display: block;
}

nav > ul > li > ul > li > ul > li > a {
	padding: 14px 20px;
	border-bottom: 1px solid rgba(0, 120, 212, 0.1);
	display: flex;
	align-items: center;
	width: 100%;
}

nav > ul > li > ul > li > ul > li:last-child > a {
	border-bottom: none;
}

nav > ul > li > ul > li > ul:hover {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Language Switcher */
.language-switcher {
	position: relative;
}

.language-btn {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 120, 212, 0.2);
	padding: 8px 16px;
	border-radius: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	transition: all 0.3s;
	font-size: 14px;
	box-shadow: 0 2px 10px rgba(0, 120, 212, 0.1);
}

.language-btn:hover {
	background: rgba(255, 255, 255, 0.95);
	border-color: var(--secondary-color);
	box-shadow: 0 4px 20px rgba(0, 120, 212, 0.3);
	transform: translateY(-2px);
}

.language-btn i {
	margin-left: 6px;
}

.language-options {
	position: absolute;
	top: 100%;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(0, 120, 212, 0.2);
	border-radius: 12px;
	width: 130px;
	display: none;
	box-shadow: 0 10px 40px rgba(0, 120, 212, 0.2);
	margin-top: 8px;
}

.language-options.active {
	display: block;
}

.language-options a {
	display: block;
	padding: 12px 16px;
	text-decoration: none;
	color: var(--text-color);
	transition: all 0.3s;
	font-size: 14px;
}

.language-options a:hover {
	background: rgba(0, 120, 212, 0.1);
	color: var(--primary-color);
}

.mobile-menu {
	display: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--primary-color);
	filter: drop-shadow(0 0 10px rgba(0, 120, 212, 0.5));
}

/* Hero Section */
.hero {
	background: var(--gradient-hero);
	color: var(--white);
	padding: 120px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

/* Hero 动态背景 */
.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
	border-radius: 50%;
	animation: heroFloat 6s ease-in-out infinite;
	filter: blur(60px);
}

@keyframes heroFloat {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-30px, 30px); }
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	animation: heroFloat 8s ease-in-out infinite reverse;
	filter: blur(50px);
}

.hero h2 {
	font-size: 48px;
	margin-bottom: 24px;
	font-weight: 700;
	letter-spacing: 1px;
	position: relative;
	z-index: 1;
	animation: fadeInUp 1s ease-out;
	text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero p {
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto 40px;
	opacity: 0.95;
	line-height: 1.8;
	position: relative;
	z-index: 1;
	animation: fadeInUp 1s ease-out 0.3s backwards;
	text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn {
	display: inline-block;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--primary-color);
	padding: 14px 36px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	font-size: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 255, 255, 0.3);
	position: relative;
	z-index: 1;
	overflow: hidden;
	animation: fadeInUp 1s ease-out 0.6s backwards;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 120, 212, 0.2), transparent);
	transition: left 0.5s;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 50px rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 1);
}

.btn:hover::before {
	left: 100%;
}

/* Products Section */
.products {
	padding: 100px 0;
	background: var(--light-color);
	position: relative;
	overflow: hidden;
}

/* Products 动态背景 */
.products::before {
	content: '';
	position: absolute;
	top: 10%;
	left: -5%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(0, 120, 212, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	animation: slowFloat 10s ease-in-out infinite;
	filter: blur(50px);
}

@keyframes slowFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-40px); }
}

.products::after {
	content: '';
	position: absolute;
	bottom: 10%;
	right: -5%;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(0, 188, 242, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	animation: slowFloat 12s ease-in-out infinite reverse;
	filter: blur(45px);
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	z-index: 1;
}

.section-title h2 {
	color: var(--dark-color);
	font-size: 36px;
	margin-bottom: 16px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.section-title p {
	max-width: 700px;
	margin: 0 auto;
	color: var(--text-light);
	font-size: 16px;
	line-height: 1.8;
}

.page-products ul li{
	height:100%; overflow:hidden; list-style:none; padding:0; margin-bottom:20px;
}

.page-products ul li img{width:300px; float:left; margin-right:10px;}
.page-products ul li a{color:var(--primary-color);}
.page-products ul li p{color:var(--text-light);}

.page-news td,.page-jobs td{padding:10px;}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	position: relative;
	z-index: 1;
}

.product-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.4s;
	border: 1px solid rgba(0, 120, 212, 0.15);
	position: relative;
}

.product-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-glow);
	opacity: 0;
	transition: opacity 0.4s;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 120, 212, 0.25), 0 0 60px rgba(0, 120, 212, 0.1);
	border-color: rgba(0, 120, 212, 0.4);
}

.product-card:hover::before {
	opacity: 1;
}

.product-img {
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	background: var(--light-color);
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
	transform: scale(1.05);
}

.product-content {
	padding: 24px;
	position: relative;
	z-index: 1;
}

.product-content h3 {
	margin-bottom: 12px;
	font-weight: 600;
	font-size: 20px;
}
.product-content h3 a{color: var(--dark-color);}

/* News Section */
.news {
	padding: 100px 0;
	background: #ffffff;
	position: relative;
	overflow: hidden;
}

/* News 动态背景 */
.news::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 30%, rgba(0, 120, 212, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(0, 188, 242, 0.03) 0%, transparent 50%);
	animation: pulseBg 6s ease-in-out infinite;
}

@keyframes pulseBg {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 1; }
}

.news-container {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 48px;
	position: relative;
	z-index: 1;
}

.news-list {
	list-style: none;
}

.news-list li {
	margin-bottom: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(0, 120, 212, 0.1);
}

.news-list li:last-child {
	border-bottom: none;
}

.news-list .clearfix {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 24px;
	align-items: start;
}

.news-list .clearfix img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 120, 212, 0.2);
	border: 1px solid rgba(0, 120, 212, 0.2);
}

.news-list .clearfix h3 {
	margin-bottom: 12px;
}

.news-list .clearfix h3 a {
	color: var(--dark-color);
	text-decoration: none;
	font-size: 20px;
	font-weight: 600;
	transition: all 0.3s;
}

.news-list .clearfix h3 a:hover {
	color: var(--primary-color);
	text-shadow: 0 0 10px rgba(0, 120, 212, 0.3);
}

.news-list .clearfix p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 12px;
}

.news-list .clearfix p a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
}

.news-list li:not(.clearfix) a {
	display: block;
	padding: 12px 0;
	color: var(--text-color);
	text-decoration: none;
	transition: all 0.3s;
	border-left: 3px solid transparent;
	padding-left: 16px;
}

.news-list li:not(.clearfix) a:hover {
	color: var(--primary-color);
	border-left-color: var(--primary-color);
	padding-left: 20px;
	text-shadow: 0 0 10px rgba(0, 120, 212, 0.3);
}

.news-list li:not(.clearfix) a span {
	color: var(--text-light);
	font-size: 14px;
	margin-right: 12px;
	display: inline-block;
	width: 100px;
}

.news-sidebar {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 32px;
	border-radius: 16px;
	height: fit-content;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 120, 212, 0.15);
}

.news-sidebar h3 {
	color: var(--dark-color);
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 3px solid var(--primary-color);
	font-weight: 600;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 10px rgba(0, 120, 212, 0.4));
}

.news-categories {
	list-style: none;
}

.news-categories li {
	margin-bottom: 12px;
}

.news-categories li a {
	color: var(--text-color);
	text-decoration: none;
	transition: all 0.3s;
	display:block;
	border-bottom:1px dotted rgba(0, 120, 212, 0.2);
	padding-bottom:10px;
	margin-bottom:10px;
	justify-content: space-between;
}

.news-categories li a:hover {
	color: var(--primary-color);
	padding-left: 5px;
	text-shadow: 0 0 10px rgba(0, 120, 212, 0.3);
}

.news-categories li a span {
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 13px;
	background: var(--gradient-glow);
	color: var(--primary-color);
	font-weight: 500;
	box-shadow: 0 2px 10px rgba(0, 120, 212, 0.2);
}

.about-text a{color:var(--primary-color);}

/* About Section */
.about {
	padding: 100px 0;
	background: var(--light-color);
	position: relative;
	overflow: hidden;
}

/* About 动态背景 */
.about::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 700px;
	height: 700px;
	background: conic-gradient(from 0deg, transparent, rgba(0, 120, 212, 0.03), transparent 30%);
	animation: rotateBg 20s linear infinite;
	filter: blur(40px);
}

@keyframes rotateBg {
	100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.about-content {
	display: flex;
	align-items: center;
	gap: 60px;
	position: relative;
	z-index: 1;
}

.about-text {
	flex: 1;
	background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    border: 1px solid rgba(0, 120, 212, 0.15);
    position: relative;
	padding: 30px;
}

.about-text h2 {
	color: var(--dark-color);
	margin-bottom: 24px;
	font-weight: 700;
	font-size: 32px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 15px rgba(0, 120, 212, 0.4));
	animation: textGlow 4s ease-in-out infinite;
}

.about-text p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 16px;
}

.about-image {
	flex: 1;
	height: 450px;
	background: var(--light-color);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	font-size: 48px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 120, 212, 0.2);
	position: relative;
	border: 1px solid rgba(0, 120, 212, 0.2);
}

.about-image::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(from 0deg, transparent, rgba(0, 120, 212, 0.15), transparent 30%);
	animation: rotateBorder 4s linear infinite;
}

@keyframes rotateBorder {
	100% { transform: rotate(360deg); }
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: relative;
	z-index: 1;
}

/* Features Section */
.features {
	padding: 100px 0;
	background: var(--light-color);
	position: relative;
	overflow: hidden;
}

/* Features 动态背景 */
.features::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(rgba(0, 120, 212, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 120, 212, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	animation: gridMove 20s linear infinite;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 32px;
	position: relative;
	z-index: 1;
}

.feature-card {
	text-align: center;
	padding: 40px 24px;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	border: 1px solid rgba(0, 120, 212, 0.15);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-glow);
	opacity: 0;
	transition: opacity 0.3s;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0, 120, 212, 0.25), 0 0 60px rgba(0, 120, 212, 0.1);
	border-color: rgba(0, 120, 212, 0.4);
}

.feature-card:hover::before {
	opacity: 1;
}

.feature-icon {
	font-size: 56px;
	color: var(--primary-color);
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
	animation: iconFloat 3s ease-in-out infinite;
	filter: drop-shadow(0 0 15px rgba(0, 120, 212, 0.5));
}

@keyframes iconFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.feature-card h3 {
	margin-bottom: 16px;
	color: var(--dark-color);
	font-weight: 600;
	font-size: 20px;
	position: relative;
	z-index: 1;
}

.feature-card p {
	color: var(--text-light);
	line-height: 1.6;
	position: relative;
	z-index: 1;
}

/* Contact Section */
.contact {
	padding: 100px 0;
	background: var(--white);
	position: relative;
	overflow: hidden;
}

/* Contact 动态背景 */
.contact::before {
	content: '';
	position: absolute;
	top: 20%;
	right: 5%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(0, 120, 212, 0.06) 0%, transparent 70%);
	border-radius: 50%;
	animation: floatGlow 10s ease-in-out infinite;
	filter: blur(50px);
}

.contact-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 60px;
	position: relative;
	z-index: 1;
}

.contact-info h3 {
	color: var(--dark-color);
	margin-bottom: 24px;
	font-weight: 700;
	font-size: 24px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 15px rgba(0, 120, 212, 0.4));
	animation: textGlow 4s ease-in-out infinite;
}

.contact-detail {
	display: flex;
	margin-bottom: 20px;
	align-items: center;
}

.contact-detail i {
	color: var(--primary-color);
	margin-right: 16px;
	font-size: 22px;
	filter: drop-shadow(0 0 10px rgba(0, 120, 212, 0.5));
}

.contact-detail span {
	color: var(--text-light);
	line-height: 1.6;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px;
	margin-bottom: 16px;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 120, 212, 0.2);
	border-radius: 12px;
	color: var(--text-color);
	font-size: 15px;
	transition: all 0.3s;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15), 0 0 20px rgba(0, 120, 212, 0.2);
}

.contact-form textarea {
	height: 160px;
	resize: vertical;
}

.contact-form button {
	background: var(--gradient-primary);
	color: var(--white);
	border: none;
	padding: 14px 36px;
	border-radius: 30px;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s;
	box-shadow: 0 4px 20px rgba(0, 120, 212, 0.3);
}

.contact-form button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 120, 212, 0.5), 0 0 50px rgba(0, 120, 212, 0.2);
}

/* Footer */
footer {
	background: var(--dark-color);
	color: var(--white);
	padding: 60px 0 24px;
	position: relative;
	overflow: hidden;
}

/* Footer 动态背景 */
footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 10% 20%, rgba(0, 120, 212, 0.15) 0%, transparent 40%),
		radial-gradient(circle at 90% 80%, rgba(0, 188, 242, 0.15) 0%, transparent 40%);
	animation: pulseBg 8s ease-in-out infinite;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
	position: relative;
	z-index: 1;
}

.footer-column h3 {
	margin-bottom: 24px;
	color: var(--white);
	font-weight: 600;
	font-size: 18px;
	background: var(--gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 10px rgba(0, 120, 212, 0.5));
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 12px;
}

.footer-column ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s;
	font-size: 14px;
}

.footer-column ul li a:hover {
	color: var(--white);
	padding-left: 5px;
	text-shadow: 0 0 10px rgba(0, 120, 212, 0.5);
}

.copyright {
	text-align: center;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	position: relative;
	z-index: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
	nav ul {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		box-shadow: 0 10px 40px rgba(0, 120, 212, 0.2);
		padding: 20px;
		border: 1px solid rgba(0, 120, 212, 0.2);
	}
	
	nav ul.show {
		display: flex;
	}
	
	nav ul li {
		margin: 0 0 12px 0;
		width: 100%;
	}
	
	nav ul li ul {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		margin-top: 12px;
		margin-left: 16px;
		display: none;
		width: 100%;
		background: transparent;
		border: none;
	}
	
	nav ul li ul.show {
		display: block;
	}
	
	.mobile-menu {
		display: block;
	}
	
	.hero h2 {
		font-size: 36px;
	}
	
	.hero p {
		font-size: 16px;
	}
	
	.about-content {
		flex-direction: column;
	}
	
	.about-image {
		width: 100%;
	}
	
	.news-container {
		grid-template-columns: 1fr;
	}
	
	.news-list .clearfix {
		grid-template-columns: 1fr;
	}
	
	.news-list .clearfix img {
		height: 200px;
	}
	
	.products, .news, .about, .features, .contact {
		padding: 60px 0;
	}
}

 /* 页面主体布局 */
#page_main {
	display: flex;
	padding: 50px 0;
	gap: 40px;
	position: relative;
	z-index: 1;
}

.page-left {
	flex: 0 0 300px;
}

.page-right {
	flex: 1;
}

/* 面包屑导航 */
.site-nav {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 14px 18px;
	border-radius: 12px;
	margin-bottom: 32px;
	font-size: 14px;
	color: var(--text-light);
	border: 1px solid rgba(0, 120, 212, 0.15);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-nav a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s;
}

.site-nav a:hover {
	color: var(--secondary-color);
	text-shadow: 0 0 10px rgba(0, 120, 212, 0.3);
}

/* 左侧边栏 */
.left-about, .left-search, .left-contact {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	margin-bottom: 24px;
	overflow: hidden;
	border: 1px solid rgba(0, 120, 212, 0.15);
}

.left-about h2, .left-search h2, .left-contact h2 {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 18px 24px;
	font-size: 18px;
	margin: 0;
	font-weight: 600;
}

.left-about h2 span, .left-search h2 span, .left-contact h2 span {
	position: relative;
	padding-left: 12px;
}

.left-about h2 span::before, .left-search h2 span::before, .left-contact h2 span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 20px;
	background: var(--white);
	border-radius: 2px;
}

/* 左侧菜单 */
#LeftMenu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#LeftMenu li {
	border-bottom: 1px solid rgba(0, 120, 212, 0.1);
}

#LeftMenu li:last-child {
	border-bottom: none;
}

#LeftMenu li a {
	display: block;
	padding: 14px 24px;
	color: var(--text-color);
	text-decoration: none;
	transition: all 0.3s;
	font-size: 15px;
}

#LeftMenu li a:hover {
	background: rgba(0, 120, 212, 0.1);
	color: var(--primary-color);
	padding-left: 28px;
	text-shadow: 0 0 10px rgba(0, 120, 212, 0.3);
}

/* 左侧搜索 */
.left-search form {
	padding: 24px;
}

.left-search p {
	margin-bottom: 16px;
	color: var(--text-light);
}

.left-search select, .left-search input[type="text"] {
	width: 100%;
	padding: 12px;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 120, 212, 0.2);
	border-radius: 12px;
	color: var(--text-color);
	margin-bottom: 12px;
	font-size: 14px;
}

.left-search input[type="submit"] {
	background: var(--gradient-primary);
	color: var(--white);
	border: none;
	padding: 12px 24px;
	border-radius: 30px;
	cursor: pointer;
	width: 100%;
	font-weight: 600;
	transition: all 0.3s;
	font-size: 15px;
	box-shadow: 0 4px 20px rgba(0, 120, 212, 0.3);
}

.left-search input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 120, 212, 0.5);
}

/* 左侧联系方式 */
.left-contact {
	padding: 24px;
}

.left-contact p {
	margin-bottom: 12px;
	display: flex;
	color: var(--text-light);
}

.left-contact p span {
	font-weight: 600;
	min-width: 80px;
	color: var(--primary-color);
}

/* ==================== 优化后的页面内容区 ==================== */

/* 页面内容容器 */
.page-single {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
	line-height: 1.8;
	border: 1px solid rgba(0, 120, 212, 0.2);
	position: relative;
	overflow: hidden;
}

/* 页面内容动态背景 */
.page-single::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 10% 10%, rgba(0, 120, 212, 0.03) 0%, transparent 40%),
		radial-gradient(circle at 90% 90%, rgba(0, 188, 242, 0.03) 0%, transparent 40%);
	animation: pulseBg 8s ease-in-out infinite;
	pointer-events: none;
}

/* 页面标题 */
.page-single h1,
.page-single h2,
.page-single h3 {
	color: var(--dark-color);
	margin-bottom: 20px;
	font-weight: 700;
	position: relative;
	z-index: 1;
}

.page-single h1 {
	font-size: 32px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 15px rgba(0, 120, 212, 0.4));
	animation: textGlow 4s ease-in-out infinite;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid rgba(0, 120, 212, 0.2);
}

.page-single h2 {
	font-size: 26px;
	margin-top: 40px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip:: text;
	filter: drop-shadow(0 0 10px rgba(0, 120, 212, 0.3));
}

.page-single h3 {
	font-size: 22px;
	margin-top: 30px;
	color: var(--primary-color);
}

/* 页面段落 */
.page-single p {
	margin-bottom: 20px;
	color: var(--text-light);
	position: relative;
	z-index: 1;
	font-size: 16px;
}

/* 页面链接 */
.page-single a {
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.3s;
	position: relative;
}

.page-single a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.3s;
}

.page-single a:hover {
	color: var(--secondary-color);
	text-shadow: 0 0 10px rgba(0, 120, 212, 0.5);
}

.page-single a:hover::after {
	width: 100%;
}

/* 页面列表 */
.page-single ul,
.page-single ol {
	margin-bottom: 20px;
	padding-left: 30px;
	position: relative;
	z-index: 1;
}

.page-single ul li,
.page-single ol li {
	margin-bottom: 12px;
	color: var(--text-light);
}

.page-single ul li::marker {
	color: var(--primary-color);
}

.page-single ol li::marker {
	color: var(--primary-color);
	font-weight: 600;
}

/* 页面引用 */
.page-single blockquote {
	margin: 30px 0;
	padding: 20px 30px;
	background: rgba(0, 120, 212, 0.05);
	border-left: 4px solid var(--primary-color);
	border-radius: 8px;
	color: var(--text-light);
	position: relative;
	z-index: 1;
	box-shadow: 0 2px 10px rgba(0, 120, 212, 0.1);
}

/* 页面代码块 */
.page-single pre {
	margin: 30px 0;
	padding: 20px;
	background: rgba(26, 26, 46, 0.95);
	border-radius: 12px;
	overflow-x: auto;
	border: 1px solid rgba(0, 120, 212, 0.3);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 1;
}

.page-single code {
	font-family: 'Consolas', 'Monaco', monospace;
	font-size: 14px;
	color: var(--accent-color);
}

.page-single p code {
	display: inline-block;
	padding: 2px 8px;
	background: rgba(0, 120, 212, 0.1);
	border-radius: 4px;
	color: var(--primary-color);
	font-size: 14px;
}

/* 页面表格 */
.page-single table {
	width: 100%;
	margin: 30px 0;
	border-collapse: collapse;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 1;
}

.page-single thead {
	background: var(--gradient-primary);
}

.page-single th {
	padding: 16px;
	text-align: left;
	color: var(--white);
	font-weight: 600;
}

.page-single td {
	padding: 14px 16px;
	border-bottom: 1px solid rgba(0, 120, 212, 0.1);
	color: var(--text-light);
}

.page-single tbody tr:hover {
	background: rgba(0, 120, 212, 0.05);
}

/* 页面图片 */
.page-single img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 30px 0;
	box-shadow: 0 8px 30px rgba(0, 120, 212, 0.2);
	border: 1px solid rgba(0, 120, 212, 0.2);
	transition: all 0.3s;
	position: relative;
	z-index: 1;
}

.page-single img:hover {
	transform: scale(1.02);
	box-shadow: 0 12px 40px rgba(0, 120, 212, 0.3);
}

/* 页面分隔线 */
.page-single hr {
	margin: 40px 0;
	border: none;
	height: 2px;
	background: var(--gradient-primary);
	border-radius: 2px;
	position: relative;
	z-index: 1;
}

/* ==================== 优化后的新闻列表页 ==================== */

/* 新闻列表容器 */
.page-news {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 120, 212, 0.2);
	position: relative;
	overflow: hidden;
}

/* 新闻列表动态背景 */
.page-news::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 15% 20%, rgba(0, 120, 212, 0.03) 0%, transparent 40%),
		radial-gradient(circle at 85% 80%, rgba(0, 188, 242, 0.03) 0%, transparent 40%);
	animation: pulseBg 10s ease-in-out infinite;
	pointer-events: none;
}

/* 新闻列表项 */
.page-news ul {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 1;
}

.page-news ul li {
	margin-bottom: 30px;
	padding: 30px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 16px;
	border: 1px solid rgba(0, 120, 212, 0.15);
	transition: all 0.4s;
	position: relative;
	overflow: hidden;
}

.page-news ul li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-glow);
	opacity: 0;
	transition: opacity 0.4s;
}

.page-news ul li:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0, 120, 212, 0.2);
	border-color: rgba(0, 120, 212, 0.3);
}

.page-news ul li:hover::before {
	opacity: 1;
}

/* 新闻标题 */
.page-news ul li h3 {
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

.page-news ul li h3 a {
	color: var(--dark-color);
	text-decoration: none;
	font-size: 22px;
	font-weight: 600;
	transition: all 0.3s;
	display: block;
}

.page-news ul li h3 a:hover {
	color: var(--primary-color);
	text-shadow: 0 0 15px rgba(0, 120, 212, 0.4);
	transform: translateX(5px);
}

/* 新闻描述 */
.page-news ul li p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

/* 新闻日期 */
.page-news ul li .news-date {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(0, 120, 212, 0.1);
	border-radius: 20px;
	color: var(--primary-color);
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
	box-shadow: 0 2px 10px rgba(0, 120, 212, 0.15);
}

/* 新闻更多链接 */
.page-news ul li .news-more {
	display: inline-block;
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s;
	position: relative;
	z-index: 1;
}

.page-news ul li .news-more::after {
	content: ' →';
	transition: transform 0.3s;
}

.page-news ul li .news-more:hover {
	color: var(--secondary-color);
	text-shadow: 0 0 10px rgba(0, 120, 212, 0.5);
}

.page-news ul li .news-more:hover::after {
	transform: translateX(5px);
}

/* 新闻详情页 */
.page-newsdetail {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
	line-height: 1.8;
	border: 1px solid rgba(0, 120, 212, 0.2);
	position: relative;
	overflow: hidden;
}

/* 新闻详情动态背景 */
.page-newsdetail::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 10% 10%, rgba(0, 120, 212, 0.03) 0%, transparent 40%),
		radial-gradient(circle at 90% 90%, rgba(0, 188, 242, 0.03) 0%, transparent 40%);
	animation: pulseBg 8s ease-in-out infinite;
	pointer-events: none;
}

/* 新闻详情标题 */
.page-newsdetail h1 {
	color: var(--dark-color);
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 15px rgba(0, 120, 212, 0.4));
	animation: textGlow 4s ease-in-out infinite;
	position: relative;
	z-index: 1;
}

/* 新闻详情信息 */
.page-newsdetail .news-info {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid rgba(0, 120, 212, 0.15);
	position: relative;
	z-index: 1;
}

.page-newsdetail .news-info span {
	color: var(--text-light);
	font-size: 14px;
}

.page-newsdetail .news-info .date {
	color: var(--primary-color);
	font-weight: 500;
}

/* 新闻详情内容 */
.page-newsdetail .news-content {
	position: relative;
	z-index: 1;
}

.page-newsdetail .news-content p {
	margin-bottom: 20px;
	color: var(--text-light);
	font-size: 16px;
}

.page-newsdetail .news-content img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 30px 0;
	box-shadow: 0 8px 30px rgba(0, 120, 212, 0.2);
	border: 1px solid rgba(0, 120, 212, 0.2);
}

/* 版权信息 */
#copyright {
	background: var(--dark-color);
	color: var(--white);
	padding: 36px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#copyright p {
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.7);
}

#copyright a {
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s;
}

#copyright a:hover {
	color: var(--white);
	text-shadow: 0 0 10px rgba(0, 120, 212, 0.5);
}

/* 响应式布局 */
@media (max-width: 992px) {
	
	#page_main {
		flex-direction: column;
	}
	
	.page-left {
		flex: 1;
		width: 100%;
	}
	
	.page-single,
	.page-news,
	.page-newsdetail {
		padding: 30px;
	}
	
	.page-single h1 {
		font-size: 26px;
	}
	
	.page-newsdetail h1 {
		font-size: 26px;
	}
}
