@charset "utf-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
	background-color: #ffffff;
	color: #1e293b;
	line-height: 1.5;
	scroll-behavior: smooth;
}

/* 清爽大气主色调 */
:root {
	--primary: #0f3b5c;
	--primary-light: #2c6285;
	--accent: #e67e22;
	--accent-light: #f39c12;
	--gray-bg: #f8fafc;
	--card-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
	--border-light: #e9edf2;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

/* 导航栏 */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	z-index: 1000;
	transition: 0.2s;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	padding: 14px 0;
}
.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--primary);
}
.logo span {
	color: var(--accent);
}
.nav-links {
	display: flex;
	gap: 40px;
	align-items: center;
}
.nav-links a {
	text-decoration: none;
	color: #2c3e50;
	font-weight: 500;
	transition: 0.2s;
}
.nav-links a:hover {
	color: var(--accent);
}
.nav-btn {
	background: var(--primary);
	color: white !important;
	padding: 8px 28px;
	border-radius: 40px;
	font-weight: 600;
	transition: 0.2s;
}
.nav-btn:hover {
	background: var(--primary-light);
	transform: translateY(-2px);
}
.menu-icon {
	display: none;
	font-size: 26px;
	cursor: pointer;
	color: var(--primary);
}

/* Hero 首屏 */
.hero {
	padding: 140px 0 100px;
	background: linear-gradient(135deg, #f0f9ff 0%, #e6f0fa 100%);
	position: relative;
}
.hero-content {
	max-width: 1000px;
	text-align: center;
	margin: 0 auto;
}
.hero-badge {
	display: inline-block;
	background: rgba(15, 59, 92, 0.1);
	padding: 6px 20px;
	border-radius: 40px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 24px;
}
.hero h2 {
	font-size: 3.4rem;
	font-weight: 800;
	line-height: 1.2;
	color: #0f2b3c;
	margin-bottom: 20px;
}
.hero h2 span {
	color: var(--accent);
}
.hero-desc {
	font-size: 1.2rem;
	color: #2d4a6e;
	max-width: 650px;
	margin: 0 auto 32px;
}
.btn-group {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}
.btn-primary, .btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 36px;
	border-radius: 50px;
	font-weight: 600;
	transition: 0.25s;
	text-decoration: none;
}
.btn-primary {
	background: var(--primary);
	color: white;
	box-shadow: 0 12px 20px -12px rgba(15, 59, 92, 0.3);
}
.btn-primary:hover {
	background: var(--primary-light);
	transform: translateY(-3px);
}
.btn-outline {
	border: 1.5px solid var(--primary);
	color: var(--primary);
	background: transparent;
}
.btn-outline:hover {
	background: rgba(15, 59, 92, 0.05);
	transform: translateY(-2px);
}

/* 自定义文章区域（首屏下方）清爽卡片 */
.custom-section {
	padding: 70px 0 60px;
	background: white;
	border-bottom: 1px solid var(--border-light);
}
.custom-wrapper {
	background: var(--gray-bg);
	border-radius: 40px;
	padding: 40px 48px;
	box-shadow: var(--card-shadow);
	border: 1px solid rgba(0,0,0,0.03);
}
.section-mini-title {
	display: inline-block;
	font-size: 0.8rem;
	background: #eef2ff;
	padding: 5px 16px;
	border-radius: 30px;
	color: var(--primary);
	margin-bottom: 20px;
}
.editable-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--primary);
	line-height: 1.3;
	margin-bottom: 16px;
	border-left: 5px solid var(--accent);
	padding-left: 20px;
	border-radius: 12px;
}
.editable-content {
	font-size: 1.05rem;
	color: #334155;
	line-height: 1.65;
}
.editable-content p {
	margin-bottom: 1.2rem;
}
[contenteditable="true"] {
	outline: none;
	border-radius: 12px;
	transition: background 0.1s;
	cursor: text;
}
.edit-hint {
	text-align: right;
	font-size: 0.7rem;
	color: #8ba0bc;
	margin-top: 20px;
	border-top: 1px dashed #dce3ec;
	padding-top: 16px;
}

/* 价格说明卡片 */
.price-card {
	background: white;
	border-radius: 28px;
	padding: 32px 40px;
	margin: 40px 0 20px;
	box-shadow: var(--card-shadow);
	border: 1px solid var(--border-light);
}
.price-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 16px;
}
.price-list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin: 24px 0 16px;
}
.price-item {
	background: #f1f5f9;
	padding: 10px 24px;
	border-radius: 60px;
	font-weight: 500;
	color: #1e293b;
}
.badge-free {
	background: #e6f7ec;
	color: #2e7d32;
	padding: 8px 20px;
	border-radius: 40px;
	font-weight: 600;
	display: inline-block;
}

/* 通用板块 */
.section-pad {
	padding: 80px 0;
}
.section-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #0f2b3c;
	margin-bottom: 16px;
	text-align: center;
}
.section-sub {
	text-align: center;
	color: #5b6e8c;
	max-width: 700px;
	margin: 0 auto 48px;
	font-size: 1.1rem;
}
.grid-4, .grid-3, .grid-2 {
	display: grid;
	gap: 32px;
}
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.service-card, .step-card, .advantage-card {
	background: #ffffff;
	border-radius: 28px;
	padding: 32px 24px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.02), 0 2px 6px rgba(0,0,0,0.05);
	border: 1px solid var(--border-light);
	transition: 0.25s;
}
.service-card:hover, .step-card:hover {
	transform: translateY(-6px);
	border-color: var(--accent-light);
	box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
}
.service-icon {
	font-size: 2.4rem;
	color: var(--accent);
	margin-bottom: 20px;
}
.step-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: rgba(15, 59, 92, 0.2);
	line-height: 1;
	margin-bottom: 12px;
}
.step-card h3, .service-card h3 {
	font-size: 1.4rem;
	margin-bottom: 12px;
}
.service-list-item {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 20px;
}
.service-tag {
	background: #f1f5f9;
	padding: 8px 24px;
	border-radius: 40px;
	font-weight: 500;
	color: var(--primary);
}

/* 售后列表 2列网格紧凑 */
.after-sales-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
	margin-top: 20px;
}
.after-item {
	background: #f9fbfe;
	border-radius: 20px;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	border: 1px solid #eef2f8;
}
.after-item i {
	font-size: 1.6rem;
	color: var(--accent);
	width: 40px;
}
.after-item span {
	font-weight: 500;
}

/* 优势网格 */
.advantage-card i {
	font-size: 2rem;
	color: var(--accent);
	margin-bottom: 16px;
	display: inline-block;
}

/* 联系人区域 */
.contact-row {
	background: var(--gray-bg);
	border-radius: 48px;
	padding: 56px 48px;
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	margin-top: 40px;
}
.contact-info {
	flex: 1;
}
.contact-info h3 {
	font-size: 1.8rem;
	margin-bottom: 20px;
}
.contact-detail {
	margin: 32px 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.contact-detail i {
	width: 30px;
	color: var(--accent);
}
.contact-form {
	flex: 1;
	background: white;
	border-radius: 32px;
	padding: 32px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}
.form-group {
	margin-bottom: 20px;
}
.form-group input, .form-group textarea {
	width: 100%;
	padding: 14px 20px;
	border: 1px solid #cfdfed;
	border-radius: 36px;
	font-family: inherit;
	transition: 0.2s;
}
.form-group textarea {
	border-radius: 28px;
}
.form-group input:focus, .form-group textarea:focus {
	outline: none;
	border-color: var(--accent);
}
.submit-btn {
	background: var(--primary);
	color: white;
	border: none;
	padding: 14px 24px;
	border-radius: 40px;
	font-weight: bold;
	width: 100%;
	font-size: 1rem;
	cursor: pointer;
}

footer {
	background: #0f2b3c;
	color: #cfdfed;
	padding: 48px 0 32px;
	text-align: center;
	margin-top: 60px;
}

@media (max-width: 860px) {
	.container {
		padding: 0 24px;
	}
	.hero h1 {
		font-size: 2.3rem;
	}
	.custom-wrapper {
		padding: 28px 24px;
	}
	.editable-title {
		font-size: 1.6rem;
	}
	.menu-icon {
		display: block;
	}
	.nav-links {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 80%;
		height: calc(100vh - 70px);
		background: white;
		box-shadow: 4px 0 20px rgba(0,0,0,0.1);
		flex-direction: column;
		justify-content: flex-start;
		padding-top: 50px;
		gap: 28px;
		transition: 0.3s;
		z-index: 999;
		border-right: 1px solid #e2e8f0;
	}
	.nav-links.active {
		left: 0;
	}
	.contact-row {
		padding: 32px 24px;
	}
}
.fade-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}
hr {
	margin: 20px 0;
	border-color: var(--border-light);
}
.fa-heart:before{
    color: #f00;
    font-size: 36px;
    padding-right: 10px;
}
/* 新闻资讯板块 (新增) */
.news-section {
	background: white;
	padding: 60px 0 70px;
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
}
.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 32px;
	margin-top: 20px;
}
.news-card {
	background: #ffffff;
	border-radius: 28px;
	padding: 28px;
	transition: all 0.3s ease;
	border: 1px solid var(--border-light);
	box-shadow: 0 5px 12px rgba(0,0,0,0.02);
}
.news-card:hover {
	transform: translateY(-6px);
	border-color: var(--accent-light);
	box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
}
.news-date {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.85rem;
	color: #6c86a3;
	margin-bottom: 16px;
}
.news-date i {
	color: var(--accent);
}
.news-tag {
	background: #eef2ff;
	padding: 4px 12px;
	border-radius: 30px;
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--primary);
	margin-left: 12px;
}
.news-title {
	font-size: 1.45rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 14px;
	line-height: 1.3;
}
.news-summary {
	color: #4a5b7a;
	line-height: 1.6;
	margin-bottom: 20px;
}
.read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--accent);
	font-weight: 600;
	text-decoration: none;
	font-size: 0.9rem;
	transition: gap 0.2s;
}
.read-more:hover {
	gap: 12px;
	color: var(--accent-light);
}
.news-more-btn {
	text-align: center;
	margin-top: 48px;
}
.btn-more-news {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	border: 1.5px solid var(--primary);
	color: var(--primary);
	padding: 12px 32px;
	border-radius: 40px;
	font-weight: 600;
	transition: 0.2s;
	text-decoration: none;
}
.btn-more-news:hover {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
}
.ds_sxztit,.ds_dqxztit{	border-bottom: 1px solid #D4D4D4;
	padding:12px 0;
	box-shadow: 0 1px 0 #FFF;
	margin-bottom: 1px; color:#297ad6}
.ds_sxzcon,.ds_dqzcon{ text-indent:2em; padding:20px 0;}
section.custom-section h3{	margin: 20px 0 ;
	padding: 3px 20px;
	border-top: 1px solid #f2f2f2;
	border-bottom: 1px solid #000;
	color: #444;
	font-size: 1.05em;
	line-height: 1.8em;
	font-weight: 600;}
.fa-yen-sign{color:#e67e22;font-size: 2rem;padding-right:15px;}
span.linear {
	background: linear-gradient(135deg, #F9E7B3, #D4AF37);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}