@charset "utf-8";
/* CSS Document */
/* AB模板网 整站模板下载 */
/* 模板：Www.AdminBuy.Cn */
/* 仿站：Fang.AdminBuy.Cn */
/* 素材：Sc.AdminBuy.Cn */
/* js特效：js.AdminBuy.Cn */
/* QQ：9490489 */
/* 微信：wwwadminbuycn */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
:root {
--primary: #1a3a5f;
--secondary: #c9a063;
--light: #f8f9fa;
--dark: #212529;
--gray: #6c757d;
--success: #28a745;
}
body {
	background-color: #ffffff;
	color: var(--dark);
	line-height: 1.6;
}
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}                /* Header Styles */
header {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}
.header-top {
	background-color: var(--primary);
	color: white;
	padding: 8px 0;
	font-size: 0.9rem;
}
.header-top-content {
	display: flex;
	justify-content: space-between;
}
.header-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}
.logo {
	display: flex;
	align-items: center;
}
.logo h1 {
	font-size: 1.8rem;
	color: var(--primary);
	font-weight: 700;
}
.logo h1 img{height: 55px; display: block;}
.logo span {
	color: var(--secondary);
}
nav ul {
	display: flex;
	list-style: none;
}
nav ul li {
	margin-left: 25px;
}
nav ul li a {
	text-decoration: none;
	color: var(--dark);
	font-weight: 500;
	position: relative;
	padding: 5px 0;
	transition: color 0.3s;
}
nav ul li a:hover {
	color: var(--secondary);
}
nav ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--secondary);
	transition: width 0.3s;
}
nav ul li a:hover::after {
	width: 100%;
}                /* Hero Section */
.hero {
	background: linear-gradient(rgba(26, 58, 95, 0.8), rgba(26, 58, 95, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a3a5f"/></svg>');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 80px 0;
	text-align: center;
}
.hero h2 {
	font-size: 2.8rem;
	margin-bottom: 20px;
	font-weight: 700;
}
.hero p {
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto 30px;
}
.stats {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}
.stat-item {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(5px);
	border-radius: 10px;
	padding: 20px;
	min-width: 180px;
	text-align: center;
}
.stat-item .number {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--secondary);
}                /* About Section */
.section {
	padding: 80px 0;
}
.section-title {
	text-align: center;
	margin-bottom: 50px;
}
.section-title h2 {
	font-size: 2.2rem;
	color: var(--primary);
	position: relative;
	display: inline-block;
	padding-bottom: 15px;
}
.section-title h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: var(--secondary);
}
.about-content {
	display: flex;
	gap: 40px;
	align-items: center;
}
.about-text {
	flex: 1;
}
.about-text h3 {
	font-size: 1.8rem;
	color: var(--primary);
	margin-bottom: 20px;
}
.about-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 30px;
}
.feature-box {
	background-color: var(--light);
	padding: 20px;
	border-radius: 8px;
	border-left: 4px solid var(--secondary);
}
.feature-box h4 {
	color: var(--primary);
	margin-bottom: 10px;
}                /* Products Section */
.products {
	background-color: var(--light);
}
.categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-bottom: 40px;
}
.category-btn {
	background-color: white;
	border: 1px solid #ddd;
	border-radius: 30px;
	padding: 10px 25px;
	cursor: pointer;
	transition: all 0.3s;
	font-weight: 500;
}
.category-btn:hover, .category-btn.active {
	background-color: var(--primary);
	color: white;
	border-color: var(--primary);
}
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}
.product-card {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.product-img {
	height: 280px;
	background-color: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray);
	font-weight: 500;
}
.product-info {
	padding: 20px;
}
.product-info h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
	color: var(--primary);
}
.product-price {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--secondary);
	margin-bottom: 10px;
}
.product-moq {
	color: var(--gray);
	margin-bottom: 15px;
	font-size: 0.9rem;
}
.btn {
	display: inline-block;
	padding: 12px 30px;
	background-color: var(--primary);
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 500;
	transition: background-color 0.3s;
	border: none;
	cursor: pointer;
	text-align: center;
}
.btn:hover {
	background-color: #0d2a4a;
}
.btn-secondary {
	background-color: var(--secondary);
}
.btn-secondary:hover {
	background-color: #b08c4e;
}                /* Why Choose Us */
.advantages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}
.advantage-card {
	text-align: center;
	padding: 30px 20px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}
.advantage-card:hover {
	transform: translateY(-5px);
}
.advantage-icon {
	font-size: 2.5rem;
	color: var(--secondary);
	margin-bottom: 20px;
}
.advantage-card h3 {
	margin-bottom: 15px;
	color: var(--primary);
}                /* EEAT Section */
.eeat-section {
	background: linear-gradient(to right, var(--primary), #2c5a8f);
	color: white;
}
.eeat-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}
.eeat-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 30px;
	text-align: center;
	backdrop-filter: blur(5px);
}
.eeat-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--secondary);
}                /* Contact Section */
.contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}
.contact-info h3 {
	color: var(--primary);
	margin-bottom: 20px;
	font-size: 1.8rem;
}
.contact-details {
	margin-bottom: 30px;
}
.contact-details p {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.contact-icon {
	margin-right: 10px;
	color: var(--secondary);
	width: 24px;
	text-align: center;
}
.contact-form .form-group {
	margin-bottom: 20px;
}
.contact-form input, .contact-form textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
}
.contact-form textarea {
	height: 150px;
	resize: vertical;
}                /* Footer */
footer {
	background-color: var(--primary);
	color: white;
	padding: 30px 0 30px;
}
.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}
.footer-column h3 {
	font-size: 1.3rem;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}
.footer-column h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background-color: var(--secondary);
}
.footer-column ul {
	list-style: none;
}
.footer-column ul li {
	margin-bottom: 10px;
}
.footer-column ul li a {
	color: #ddd;
	text-decoration: none;
	transition: color 0.3s;
}
.footer-column ul li a:hover {
	color: var(--secondary);
}
.copyright {
	text-align: center;
	font-size: 0.9rem;
	color: #aaa;
}               
.copyright a{ color: #aaa; text-decoration:none}
 /* Responsive */
@media (max-width: 992px) {
.about-content {
	flex-direction: column;
}
.contact {
	grid-template-columns: 1fr;
}
nav ul {
	display: none;
}
.mobile-menu-btn {
	display: block;
}
}
@media (max-width: 768px) {
	.section{padding: 40px 0;}
	.header-top{display: none;}
.hero h2 {
	font-size: 2.2rem;
}
.stats {
	gap: 15px;
}
.stat-item {
	min-width: 140px;
	padding: 15px;
}
.stat-item .number {
	font-size: 2rem;
}
.feature-box {
	grid-column: span 2;
}
}
@media (max-width: 576px) {
.header-main {
	flex-direction: column;
	text-align: center;
	
}
.product-grid {
	grid-template-columns: 1fr;
}
.stats {
	flex-direction: column;
	align-items: center;
}
.stat-item {
	width: 100%;
	max-width: 300px;
}
}