.range-container{
	padding-top: 50px;
}
.range-content{
	max-width: 1200px;
	margin: 0 auto;
}
.range-title{
	text-align: center;
}
.range-title h2{
	color: var(---Text-5-, #272e47);
	font-family: PingFang SC;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: 56px;
	margin-bottom: 20px;
}
.range-desc{
	color: var(--Text-5, #272e47);
	font-family: PingFang SC;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
}
.range-phone{
	color: #4c6aff;
}

.range-list{
	margin-top: 50px;
}
.range-item{
	border-radius: 15px;
	background: #f9f9f9;
	height: auto;
	overflow: hidden;
	margin-bottom: 15px;
	padding: 20px 20px;
}
.range-item-tit{
	font-size: 18px;
	line-height: 50px;
	margin: 0px auto 5px;
	border-bottom: dashed 1px #dedede;
	padding-left: 20px;
	position: relative;
}
.range-item-tit:before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #4c6aff;
	border-radius: 50%;
	width: 4px;
	height: 4px;
}
.range-item-link{
	display: flex;
	flex-wrap: wrap;
}
.range-item-link a{
	font-size: 14px;
	width: 10%;
	text-align: center;
	display: block;
	line-height: 28px;
	color: #555;
}
.range-item-link a:hover{
	color: var(---Text-5-, #4c6aff);
}


/* 询盘模块 */
:root {
	--primary: #4c6aff;
	--primary-dark: #3347ab;
	--primary-light: #eef3fc;
	--accent: #f5a623;
	--gray-50: #f8fafc;
	--gray-100: #f1f5f9;
	--gray-200: #e2e8f0;
	--gray-600: #475569;
	--gray-800: #1e293b;
	--shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
	--shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.05);
	--shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.05);
	--radius-lg: 1.5rem;
	--radius-md: 1rem;
	--radius-sm: 0.75rem;
}
.inquiry-module {
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	margin: 2rem 0 3rem;
	overflow: hidden;
	border: 1px solid var(--gray-200);
}
.inquiry-header {
	background: linear-gradient(98deg, #eef3fc 0%, #ffffff 100%);
	padding: 1.5rem 2rem;
	border-bottom: 1px solid var(--gray-200);
}
.inquiry-header h2 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.inquiry-header p {
	color: var(--gray-600);
}
.inquiry-form-container {
	padding: 2rem;
	background: var(--gray-50);
}
.form-group {
	margin-bottom: 1rem;
}
.form-group label {
	display: block;
	font-weight: 500;
	margin-bottom: 0.3rem;
	font-size: 0.85rem;
}
.form-group input, .form-group textarea {
	width: 100%;
	padding: 0.7rem 1rem;
	border: 1px solid var(--gray-300);
	border-radius: 0.75rem;
	font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(44,94,156,0.1);
}
.form-button{
	position: relative;
}
.btn-submit {
	background: var(--primary);
	color: white;
	border: none;
	width: 100%;
	padding: 0.8rem;
	border-radius: 2rem;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: 0.2s;
}
.btn-submit:hover {
	background: var(--primary-dark);
}
.tel-big {
	margin-top: 1rem;
	text-align: center;
	font-size: 0.9rem;
}
.tel-big a {
	color: var(--primary);
	font-weight: 700;
	text-decoration: none;
}

/* 价格套餐区 */
.price-section {
	padding: 4rem 1rem;
	max-width: 1200px;
	margin: 0 auto;
}
.section-title {
	text-align: center;
	font-size: 2rem;
	color: var(--primary);
	margin-bottom: 3rem;
	position: relative;
}
.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: var(--primary);
	border-radius: 2px;
}
.price-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}
.price-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}
.price-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(22, 93, 255, 0.15);
	border-color: var(--primary);
}
.price-card.highlight {
	border-color: var(--primary);
	background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 100%);
}
.card-title {
	font-size: 1.5rem;
	color: var(--primary);
	margin-bottom: 1rem;
	font-weight: bold;
}
.price {
	font-size: 2.2rem;
	color: #333;
	font-weight: bold;
	margin: 1rem 0;
}
.price-unit {
	font-size: 1rem;
	color: #666;
}
.card-features {
	list-style: none;
	margin: 1.5rem 0;
	text-align: left;
}
.card-features li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #f0f0f0;
	color: #333;
	line-height: 1.6;
	font-size: 16px
}
.card-features li:last-child {
	border-bottom: none;
}
.card-button {
	display: inline-block;
	background: var(--primary);
	color: white;
	padding: 0.7rem 1.8rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease;
	margin-top: 1rem;
	font-size: 1rem
}
.card-button:hover {
	background: var(--primary-dark);
	color: #ffffff;
}
/* 功能概览区 */
.features-section {
	padding: 4rem 1rem 2rem;
	background: white;
}
.features-container {
	max-width: 1200px;
	margin: 0 auto;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}
.feature-item {
	background: #f8faff;
	padding: 2rem;
	border-radius: 12px;
	transition: all 0.3s ease;
}
.feature-item:hover {
	background: #eaf1ff;
	transform: translateY(-3px);
}
.feature-title {
	font-size: 1.3rem;
	color: var(--primary);
	margin-bottom: 1rem;
	font-weight: bold;
}
.feature-list {
	list-style: none;
}
.feature-list li {
	padding: 0.4rem 0;
	color: #555;
	font-size: 1rem;
}
/* Hero */
.hero {
	background: linear-gradient(135deg, #ffffff 0%, #f0f6fe 100%);
	padding: 2.5rem 0 2rem;
	border-bottom: 1px solid var(--gray-200);
}
.hero h1 {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 1rem;
}
.hero p{
	font-size: 1rem;
	color: #1e293b;
	line-height: 1.75;
}
.hero-desc {
	font-size: 1.1rem;
	color: var(--gray-600);
	max-width: 720px;
}
@media screen and (max-width: 1200px){

}
/* 响应式适配 */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2rem;
	}
	.section-title {
		font-size: 1.6rem;
	}
	.price-cards {
		grid-template-columns: 1fr;
	}
}