* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a{
	text-decoration: none;
}
body {
	font-family: "Microsoft YaHei", Arial, sans-serif;
	color: #333;
	line-height: 1.6;
}
.logo a{
	color: #fff;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.container h1 {
	color: #fff;
}
header {
	background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
	padding: 20px 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

header .logo {
	float: left;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
}

header nav {
	float: right;
}

header nav ul {
	list-style: none;
}

header nav ul li {
	display: inline-block;
	margin-left: 30px;
}

header nav ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s;
}

header nav ul li a:hover {
	color: #ffcc00;
}

.banner {
	/* background: linear-gradient(135deg, #0066cc 0%, #004080 100%); */
	color: #fff;
	text-align: center;
	/* padding: 180px 0 100px; */
	/* margin-top: 60px; */
	position: relative;
	overflow: hidden;
}

.banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 64, 128, 0.95) 100%); */
	z-index: 1;
}

.banner-swiper {
	position: relative;
	z-index: 2;
}

.banner-swiper .swiper-slide {
	min-height: 680px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	background-size: cover;
	background-position: center;
	padding-bottom: 100px;
}



.banner-content {
	position: relative;
	z-index: 3;
}

.banner-content h1 {
	font-size: 48px;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	color: #fff;
}

.banner-content p {
	font-size: 20px;
	margin-bottom: 40px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	color: #fff;
}

.banner-content .btn {
	display: inline-block;
	background: #fff;
	color: #004080;
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 5px;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.banner-content .btn:hover {
	background: #ffd700;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 204, 0, 0.5);
}

.swiper-pagination {
	position: absolute;
	bottom: 30px !important;
	z-index: 4;
}

.swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.5);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	transition: all 0.3s;
}

.swiper-pagination-bullet-active {
	background: #ffcc00;
	width: 30px;
	border-radius: 6px;
}

.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: rgba(255, 204, 0, 0.8);
}

.swiper-button-prev::after,
.swiper-button-next::after {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
}

.section {
	padding: 60px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 40px;
}

.section-title h2 {
	font-size: 32px;
	color: #004080;
	margin-bottom: 10px;
}

.section-title span {
	color: #666;
}

.about-section {
	background: #f8f9fa;
}

.about-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.about-content p {
	font-size: 16px;
	color: #555;
	line-height: 1.9;
	margin-bottom: 30px;
	text-align: justify;
}

.about-content .btn {
	display: inline-block;
	background: linear-gradient(135deg, #0066cc, #004080);
	color: #fff;
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.about-content .btn:hover {
	background: linear-gradient(135deg, #004080, #0066cc);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.product-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 40px;
	justify-content: center;
}

.category-btn {
	padding: 12px 28px;
	background: #fff;
	border: 2px solid #0066cc;
	color: #0066cc;
	border-radius: 30px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
	font-weight: 500;
}

.category-btn:hover {
	background: #e6f0ff;
	border-color: #004080;
}

.category-btn.active {
	background: linear-gradient(135deg, #0066cc, #004080);
	color: #fff;
	border-color: #0066cc;
	box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.solutions-grid, .products-grid, .cases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.solution-card, .product-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.3s;
}

.solution-card:hover, .product-card:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	transform: translateY(-5px);
}

.solution-card img, .product-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.3s;
}

.solution-card:hover img, .product-card:hover img {
	transform: scale(1.05);
}

.solution-card .content, .product-card .content {
	padding: 20px;
}

.solution-card h3, .product-card h3 {
	color: #333;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 600;
}

.solution-card p, .product-card p {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

.solution-card-link {
	display: block;
	text-decoration: none;
}

.case-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
	cursor: pointer;
}

.case-card:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	transform: translateY(-5px);
}

.case-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.3s;
}

.case-card:hover img {
	transform: scale(1.05);
}

.case-info {
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.case-info h3 {
	color: #333;
	font-size: 18px;
	font-weight: 600;
	margin: 0;
}

.case-link {
	color: #0066cc;
	font-size: 20px;
	transition: color 0.3s;
}

.case-card:hover .case-link {
	color: #004080;
}

.case-card .content {
	padding: 20px;
}
.cases-grid a{
	text-decoration: none!important;
}
.case-card .content h3 {
	color: #333;
		text-decoration: none!important;
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 10px 0;
}

.case-card .content p {
	color: #666;
			text-decoration: none!important;
	font-size: 14px;
	margin: 0;
	line-height: 1.6;
}

.stats-section {
	background: linear-gradient(135deg, #0066cc 0%, #004080 100%);
	color: #fff;
	text-align: center;
	padding: 60px 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 30px;
}

.stat-item {
	text-align: center;
}

.stat-item .value {
	font-size: 48px;
	font-weight: bold;
	color: #ffcc00;
}

.stat-item .label {
	font-size: 16px;
	margin-top: 10px;
}

.honors-section {
	background: #f8f9fa;
}

.honors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 25px;
}

.honor-card {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	border: 1px solid #eee;
	overflow: hidden;
}

.honor-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
	border-color: #0066cc;
}

.honor-card img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 15px;
}

.honor-card h4 {
	color: #004080;
	font-size: 15px;
	font-weight: 600;
	margin: 0;
	line-height: 1.4;
}

.philosophy-section {
	background: #fff;
}

.philosophy-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.philosophy-card {
	background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
	border-radius: 10px;
	padding: 30px 20px;
	text-align: center;
	transition: all 0.3s;
	border: 2px solid transparent;
}

.philosophy-card:hover {
	transform: translateY(-5px);
	background: linear-gradient(135deg, #e6f0ff, #d4e4ff);
	border-color: #0066cc;
}

.philosophy-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #ffcc00, #ffb700);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 28px;
	color: #004080;
}

.philosophy-card h4 {
	color: #004080;
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: 600;
}

.philosophy-card p {
	color: #555;
	font-size: 15px;
	line-height: 1.8;
}

.factory-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	margin-bottom: 15px;
	transition: transform 0.3s;
}

.philosophy-card:hover .factory-img {
	transform: scale(1.03);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.news-card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s;
}

.news-card:hover {
	transform: translateY(-5px);
}

.news-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.news-card .content {
	padding: 20px;
}

.news-card h3 {
	color: #004080;
	margin-bottom: 10px;
	font-size: 16px;
}

.news-card .meta {
	color: #999;
	font-size: 14px;
}

.news-card .meta span {
	margin-right: 15px;
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 40px;
}

.pagination .page-link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid #ddd;
	border-radius: 5px;
	text-decoration: none;
	color: #333;
	transition: all 0.3s;
}

.pagination .page-link:hover {
	background: #004080;
	color: #fff;
	border-color: #004080;
}

.pagination .page-link.active {
	background: #004080;
	color: #fff;
	border-color: #004080;
}

.news-detail-section {
	background: #f8f9fa;
}

.case-detail-section {
	background: #f8f9fa;
}

.case-detail-wrap {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

.case-detail-main {
	background: #fff;
	border-radius: 10px;
	padding: 40px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.case-detail-title {
	color: #004080;
	font-size: 28px;
	margin-bottom: 20px;
	line-height: 1.4;
	font-weight: 600;
}

.case-detail-cover {
	margin-bottom: 25px;
	text-align: center;
}

.case-detail-cover img {
	max-width: 600px;
	width: 100%;
	border-radius: 8px;
}

.case-detail-desc {
	color: #666;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 25px;
	padding: 20px;
	background-color: #f8f9fa;
	border-radius: 8px;
	border-left: 4px solid #0066cc;
}

.case-detail-footer {
	margin-top: 40px;
	padding-top: 25px;
	border-top: 1px solid #eee;
}

.news-detail-wrap {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 40px;
}

.news-detail-main {
	background: #fff;
	border-radius: 10px;
	padding: 40px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.news-detail-title {
	color: #004080;
	font-size: 28px;
	margin-bottom: 15px;
	line-height: 1.4;
}

.news-detail-meta {
	color: #999;
	font-size: 14px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
	margin-bottom: 25px;
}

.news-detail-meta span {
	margin-right: 25px;
}

.news-detail-meta i {
	margin-right: 5px;
}

.news-detail-cover {
	margin-bottom: 25px;
	text-align: center;
}

.news-detail-cover img {
	max-width: 600px;
	width: 100%;
	border-radius: 8px;
}

.news-detail-content {
	color: #333;
	font-size: 16px;
	line-height: 1.9;
}

.news-detail-content img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	margin: 15px 0;
}

.news-detail-content p {
	margin-bottom: 18px;
}

.news-detail-content h1,
.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4,
.news-detail-content h5,
.news-detail-content h6 {
	color: #004080;
	font-weight: 600;
	margin: 25px 0 15px;
	line-height: 1.3;
}

.news-detail-content h1 {
	font-size: 28px;
}

.news-detail-content h2 {
	font-size: 24px;
}

.news-detail-content h3 {
	font-size: 20px;
}

.news-detail-content h4 {
	font-size: 18px;
}

.news-detail-content h5 {
	font-size: 16px;
}

.news-detail-content h6 {
	font-size: 14px;
}

.news-detail-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 15px;
}

.news-detail-content table th,
.news-detail-content table td {
	padding: 12px 15px;
	border: 1px solid #ddd;
	text-align: left;
}

.news-detail-content table th {
	background-color: #f5f7fa;
	font-weight: 600;
	color: #333;
}

.news-detail-content table tr:nth-child(even) {
	background-color: #fafbfc;
}

.news-detail-content table tr:hover {
	background-color: #f0f3f6;
}

.news-detail-content ul,
.news-detail-content ol {
	margin: 15px 0;
	padding-left: 30px;
}

.news-detail-content ul {
	list-style-type: disc;
}

.news-detail-content ol {
	list-style-type: decimal;
}

.news-detail-content li {
	margin-bottom: 8px;
	line-height: 1.8;
}

.news-detail-content a {
	color: #0066cc;
	text-decoration: underline;
}

.news-detail-content a:hover {
	color: #004080;
}

.news-detail-content strong,
.news-detail-content b {
	font-weight: 600;
	color: #333;
}

.news-detail-content em,
.news-detail-content i {
	font-style: italic;
}

.news-detail-content blockquote {
	margin: 20px 0;
	padding: 15px 20px;
	background-color: #f5f7fa;
	border-left: 4px solid #0066cc;
	color: #666;
	font-style: italic;
	border-radius: 0 6px 6px 0;
}

.news-detail-content code {
	display: inline-block;
	padding: 2px 6px;
	background-color: #f4f4f4;
	border-radius: 4px;
	font-family: "Consolas", "Monaco", "Courier New", monospace;
	font-size: 14px;
	color: #c7254e;
}

.news-detail-content pre {
	margin: 20px 0;
	padding: 15px;
	background-color: #f4f4f4;
	border-radius: 6px;
	overflow-x: auto;
}

.news-detail-content pre code {
	padding: 0;
	background-color: transparent;
	color: #333;
}

.news-detail-content hr {
	border: none;
	border-top: 1px solid #eee;
	margin: 30px 0;
}

.case-detail-content {
	color: #333;
	font-size: 16px;
	line-height: 1.9;
}

.case-detail-content img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	margin: 15px 0;
}

.case-detail-content p {
	margin-bottom: 18px;
}

.case-detail-content h1,
.case-detail-content h2,
.case-detail-content h3,
.case-detail-content h4,
.case-detail-content h5,
.case-detail-content h6 {
	color: #004080;
	font-weight: 600;
	margin: 25px 0 15px;
	line-height: 1.3;
}

.case-detail-content h1 {
	font-size: 28px;
}

.case-detail-content h2 {
	font-size: 24px;
}

.case-detail-content h3 {
	font-size: 20px;
}

.case-detail-content h4 {
	font-size: 18px;
}

.case-detail-content h5 {
	font-size: 16px;
}

.case-detail-content h6 {
	font-size: 14px;
}

.case-detail-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 15px;
}

.case-detail-content table th,
.case-detail-content table td {
	padding: 12px 15px;
	border: 1px solid #ddd;
	text-align: left;
}

.case-detail-content table th {
	background-color: #f5f7fa;
	font-weight: 600;
	color: #333;
}

.case-detail-content table tr:nth-child(even) {
	background-color: #fafbfc;
}

.case-detail-content table tr:hover {
	background-color: #f0f3f6;
}

.case-detail-content ul,
.case-detail-content ol {
	margin: 15px 0;
	padding-left: 30px;
}

.case-detail-content ul {
	list-style-type: disc;
}

.case-detail-content ol {
	list-style-type: decimal;
}

.case-detail-content li {
	margin-bottom: 8px;
	line-height: 1.8;
}

.case-detail-content a {
	color: #0066cc;
	text-decoration: underline;
}

.case-detail-content a:hover {
	color: #004080;
}

.case-detail-content strong,
.case-detail-content b {
	font-weight: 600;
	color: #333;
}

.case-detail-content em,
.case-detail-content i {
	font-style: italic;
}

.case-detail-content blockquote {
	margin: 20px 0;
	padding: 15px 20px;
	background-color: #f5f7fa;
	border-left: 4px solid #0066cc;
	color: #666;
	font-style: italic;
	border-radius: 0 6px 6px 0;
}

.case-detail-content code {
	display: inline-block;
	padding: 2px 6px;
	background-color: #f4f4f4;
	border-radius: 4px;
	font-family: "Consolas", "Monaco", "Courier New", monospace;
	font-size: 14px;
	color: #c7254e;
}

.case-detail-content pre {
	margin: 20px 0;
	padding: 15px;
	background-color: #f4f4f4;
	border-radius: 6px;
	overflow-x: auto;
}

.case-detail-content pre code {
	padding: 0;
	background-color: transparent;
	color: #333;
}

.case-detail-content hr {
	border: none;
	border-top: 1px solid #eee;
	margin: 30px 0;
}

.solution-detail-section {
	background: #f8f9fa;
}

.solution-detail-wrap {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

.solution-detail-main {
	background: #fff;
	border-radius: 10px;
	padding: 40px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.solution-detail-title {
	color: #004080;
	font-size: 28px;
	margin-bottom: 20px;
	line-height: 1.4;
	font-weight: 600;
}

.solution-detail-cover {
	margin-bottom: 25px;
	text-align: center;
}

.solution-detail-cover img {
	max-width: 600px;
	width: 100%;
	border-radius: 8px;
}

.solution-detail-desc {
	color: #666;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 25px;
	padding: 20px;
	background-color: #f8f9fa;
	border-radius: 8px;
	border-left: 4px solid #0066cc;
}

.solution-detail-content {
	color: #333;
	font-size: 16px;
	line-height: 1.9;
}

.solution-detail-content img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	margin: 15px 0;
}

.solution-detail-content p {
	margin-bottom: 18px;
}

.solution-detail-content h1,
.solution-detail-content h2,
.solution-detail-content h3,
.solution-detail-content h4,
.solution-detail-content h5,
.solution-detail-content h6 {
	color: #004080;
	font-weight: 600;
	margin: 25px 0 15px;
	line-height: 1.3;
}

.solution-detail-content h1 {
	font-size: 28px;
}

.solution-detail-content h2 {
	font-size: 24px;
}

.solution-detail-content h3 {
	font-size: 20px;
}

.solution-detail-content h4 {
	font-size: 18px;
}

.solution-detail-content h5 {
	font-size: 16px;
}

.solution-detail-content h6 {
	font-size: 14px;
}

.solution-detail-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 15px;
}

.solution-detail-content table th,
.solution-detail-content table td {
	padding: 12px 15px;
	border: 1px solid #ddd;
	text-align: left;
}

.solution-detail-content table th {
	background-color: #f5f7fa;
	font-weight: 600;
	color: #333;
}

.solution-detail-content table tr:nth-child(even) {
	background-color: #fafbfc;
}

.solution-detail-content table tr:hover {
	background-color: #f0f3f6;
}

.solution-detail-content ul,
.solution-detail-content ol {
	margin: 15px 0;
	padding-left: 30px;
}

.solution-detail-content ul {
	list-style-type: disc;
}

.solution-detail-content ol {
	list-style-type: decimal;
}

.solution-detail-content li {
	margin-bottom: 8px;
	line-height: 1.8;
}

.solution-detail-content a {
	color: #0066cc;
	text-decoration: underline;
}

.solution-detail-content a:hover {
	color: #004080;
}

.solution-detail-content strong,
.solution-detail-content b {
	font-weight: 600;
	color: #333;
}

.solution-detail-content em,
.solution-detail-content i {
	font-style: italic;
}

.solution-detail-content blockquote {
	margin: 20px 0;
	padding: 15px 20px;
	background-color: #f5f7fa;
	border-left: 4px solid #0066cc;
	color: #666;
	font-style: italic;
	border-radius: 0 6px 6px 0;
}

.solution-detail-content code {
	display: inline-block;
	padding: 2px 6px;
	background-color: #f4f4f4;
	border-radius: 4px;
	font-family: "Consolas", "Monaco", "Courier New", monospace;
	font-size: 14px;
	color: #c7254e;
}

.solution-detail-content pre {
	margin: 20px 0;
	padding: 15px;
	background-color: #f4f4f4;
	border-radius: 6px;
	overflow-x: auto;
}

.solution-detail-content pre code {
	padding: 0;
	background-color: transparent;
	color: #333;
}

.solution-detail-content hr {
	border: none;
	border-top: 1px solid #eee;
	margin: 30px 0;
}

.solution-detail-footer {
	margin-top: 40px;
	padding-top: 25px;
	border-top: 1px solid #eee;
}

.news-detail-footer {
	margin-top: 40px;
	padding-top: 25px;
	border-top: 1px solid #eee;
}

.back-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #0066cc;
	text-decoration: none;
	padding: 10px 24px;
	border: 1px solid #0066cc;
	border-radius: 6px;
	transition: all 0.3s;
}

.back-btn:hover {
	background: #0066cc;
	color: #fff;
}

.news-detail-sidebar {
	background: #fff;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	height: fit-content;
	position: sticky;
	top: 100px;
}

.sidebar-title {
	color: #004080;
	font-size: 18px;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #0066cc;
}

.sidebar-news-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-news-list li {
	border-bottom: 1px solid #f0f0f0;
}

.sidebar-news-list li:last-child {
	border-bottom: none;
}

.sidebar-news-list a {
	display: block;
	padding: 12px 0;
	text-decoration: none;
	transition: all 0.3s;
}

.sidebar-news-list a:hover {
	padding-left: 8px;
}

.sidebar-news-title {
	display: block;
	color: #333;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 5px;
	transition: color 0.3s;
}

.sidebar-news-list a:hover .sidebar-news-title {
	color: #0066cc;
}

.sidebar-news-date {
	color: #999;
	font-size: 12px;
}

@media (max-width: 768px) {
	.news-detail-wrap {
		grid-template-columns: 1fr;
	}
	.news-detail-main {
		padding: 25px;
	}
}

.error-section {
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 80px 0;
}

.error-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.error-code {
	font-size: 180px;
	font-weight: bold;
	color: #004080;
	line-height: 1;
	margin-bottom: 20px;
	text-shadow: 4px 4px 0 rgba(0, 102, 204, 0.1);
	letter-spacing: -5px;
}

.error-title {
	font-size: 32px;
	color: #333;
	margin-bottom: 15px;
	font-weight: 600;
	letter-spacing: 2px;
}

.error-desc {
	font-size: 16px;
	color: #666;
	margin-bottom: 35px;
	line-height: 1.6;
}

.error-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.error-actions .btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 30px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: all 0.3s;
}

.error-actions .btn-primary {
	background: #0066cc;
	color: #fff;
}

.error-actions .btn-primary:hover {
	background: #004080;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.error-actions .btn-secondary {
	background: #fff;
	color: #0066cc;
	border: 1px solid #0066cc;
}

.error-actions .btn-secondary:hover {
	background: #0066cc;
	color: #fff;
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.error-code {
		font-size: 120px;
	}
	.error-title {
		font-size: 24px;
	}
	.error-actions {
		flex-direction: column;
	}
	.error-actions .btn {
		width: 100%;
		justify-content: center;
	}
}

.products-grid {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.product-card img {
	height: 180px;
}

.about-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.about-content p {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	margin-bottom: 30px;
}

.contact-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	margin-bottom: 40px;
}

.contact-item {
	text-align: center;
}

.contact-item i {
	font-size: 32px;
	color: #0066cc;
	margin-bottom: 10px;
}

.contact-item h4 {
	color: #004080;
	margin-bottom: 5px;
}

.contact-item p {
	color: #666;
}

.contact-form {
	max-width: 600px;
	margin: 0 auto;
	background: #f9f9f9;
	padding: 40px;
	border-radius: 10px;
}

.contact-form input, .contact-form textarea {
	width: 100%;
	padding: 12px;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
}

.contact-form textarea {
	height: 150px;
	resize: vertical;
}

.contact-form button {
	background: #0066cc;
	color: #fff;
	padding: 12px 30px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.3s;
}

.contact-form button:hover {
	background: #004080;
}

.captcha-row {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 20px;
}

.captcha-row input {
	flex: 1;
}

.captcha-img {
	width: 160px;
	height: 65px;
	cursor: pointer;
	border-radius: 5px;
}

footer {
	background: #0a1628;
	color: #fff;
}

.footer-top {
	padding: 60px 0;
	background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
}

.footer-col {
	padding: 0 15px;
}

.footer-logo {
	font-size: 28px;
	font-weight: bold;
	color: #ffcc00;
	margin-bottom: 20px;
	letter-spacing: 2px;
}

.footer-desc {
	color: #999;
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 25px;
}

.footer-social {
	display: flex;
	gap: 15px;
}

.social-link {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s;
}

.social-link:hover {
	background: #ffcc00;
	color: #0a1628;
	transform: translateY(-3px);
}

.footer-col h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-col h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, #ffcc00, transparent);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links li a {
	color: #999;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
}

.footer-links li a:hover {
	color: #ffcc00;
	padding-left: 5px;
}

.contact-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-list .contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #999;
	font-size: 14px;
}

.contact-list .contact-item i {
	color: #ffcc00;
	font-size: 16px;
	flex-shrink: 0;
	margin-top: 2px;
}

.footer-bottom {
	padding: 25px 0;
	background: #060d18;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-bottom-left p {
	color: #666;
	font-size: 13px;
}

.footer-bottom-right {
	display: flex;
	gap: 25px;
}

.footer-bottom-right a {
	color: #666;
	text-decoration: none;
	font-size: 13px;
	transition: color 0.3s;
}

.footer-bottom-right a:hover {
	color: #ffcc00;
}

@media (max-width: 768px) {
	header {
		padding: 15px 0;
	}

	header .logo {
		font-size: 20px;
	}

	header nav ul li {
		margin-left: 15px;
	}

	header nav ul li a {
		font-size: 14px;
	}

	.banner {
		padding: 120px 0 60px;
	}

	.banner-swiper .swiper-slide {
		min-height: 300px;
	}

	.banner-content h1 {
		font-size: 32px;
	}

	.banner-content p {
		font-size: 16px;
	}

	.banner-content .btn {
		padding: 10px 20px;
		font-size: 16px;
	}

	.swiper-button-prev,
	.swiper-button-next {
		width: 35px;
		height: 35px;
	}

	.section-title h2 {
		font-size: 24px;
	}

	.stats-grid {
		gap: 20px;
	}

	.stat-item .value {
		font-size: 32px;
	}

	.contact-info {
		gap: 20px;
	}
}