 :root {
 	--primary-red: #d32f2f;
 	--dark-red: #b71c1c;
 	--light-red: #ef5350;
 	--gold: #ffd700;
 	--dark-gray: #333333;
 	--light-gray: #f5f5f5;
 	--white: #ffffff;
 	--anchor-offset: 150px;
 	/* 固定头部高度偏移 */
 }

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

 html {
 	scroll-behavior: smooth;
 }

 body {
 	background-color: var(--light-gray);
 	color: var(--dark-gray);
 	line-height: 1.6;
 }

 /* 锚点滚动偏移（给有 id 的区块留出顶部空间） */
 section[id],
 [id].section-anchor {
 	scroll-margin-top: var(--anchor-offset);
 }

 /* 导航栏样式 */
 header {
 	background: linear-gradient(to right, var(--dark-red), var(--primary-red));
 	color: var(--white);
 	padding: 1rem 2rem;
 	position: sticky;
 	top: 0;
 	z-index: 100;
 	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
 }

 .navbar {
 	display: flex;
 	justify-content: space-between;
 	align-items: center;
 	max-width: 1300px;
 	margin: 0 auto;
 }

 .logo {
 	display: flex;
 	align-items: center;
 	font-size: 1.8rem;
 	font-weight: bold;
 }

 .logo i {
 	color: var(--gold);
 	margin-right: 10px;
 }
 
 .logo span{
	 margin-left: 10px;
 }

 .nav-links {
 	display: flex;
 	list-style: none;
 }

 .nav-links li {
 	margin-left: 2rem;
 }

 .nav-links a {
 	color: var(--white);
 	text-decoration: none;
 	font-weight: 500;
 	transition: color 0.3s;
 }

 .nav-links a:hover {
 	color: var(--gold);
 }

 .btn {
 	background-color: var(--gold);
 	color: var(--dark-gray);
 	padding: 0.5rem 1.5rem;
 	border: none;
 	border-radius: 4px;
 	font-weight: bold;
 	cursor: pointer;
 	transition: all 0.3s;
 }

 .btn:hover {
 	background-color: #ffc400;
 	transform: translateY(-2px);
 }

 /* 主内容区样式 */
 .container {
 	max-width: 1300px;
 	margin: 0 auto;
 	padding: 2rem;
 }

 /* 英雄区域 */
 .hero {
 	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('146@2x.jpg') no-repeat center center/cover;
 	color: var(--white);
 	padding: 5rem 2rem;
 	text-align: center;
 	border-radius: 8px;
 	margin-bottom: 2rem;
 }

 .hero h1 {
 	font-size: 2.5rem;
 	margin-bottom: 1rem;
 }

 .hero p {
 	font-size: 1.2rem;
 	max-width: 700px;
 	margin: 0 auto 2rem;
 }

 /* 版块标题样式 */
 .section-title {
 	text-align: center;
 	margin-bottom: 2rem;
 	color: var(--dark-red);
 	font-size: 2rem;
 	position: relative;
 	padding-bottom: 0.5rem;
 }

 .section-title::after {
 	content: '';
 	position: absolute;
 	bottom: 0;
 	left: 50%;
 	transform: translateX(-50%);
 	width: 80px;
 	height: 3px;
 	background-color: var(--primary-red);
 }

 /* 文字内容区域 */
 .text-content {
 	background-color: var(--white);
 	padding: 2.5rem;
 	border-radius: 8px;
 	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 	margin-bottom: 3rem;
 	line-height: 1.8;
 }

 .text-content h3 {
 	color: var(--primary-red);
 	/* margin-bottom: 1rem; */
 	font-size: 1.5rem;
 }

 .text-content p {
 	margin-bottom: 1.5rem;
 	font-size: 1.1rem;
 }

 /* 关于我们区域 - 样式1 */
 .about-section {
 	display: flex;
 	align-items: center;
 	gap: 3rem;
 	margin-bottom: 4rem;
 }

 .about-text {
 	flex: 1;
 }

 .about-text p {
 	margin-bottom: 0.5rem;
 }

 .about-text ul {
 	margin-left: 1.5rem;
 	margin-bottom: 1.5rem;
 }

 .about-text ul li {
 	list-style: disc;
 }

 .about-text ul li p {
 	font-weight: bold;
 }

 .about-text h3 {
 	margin-bottom: 1.5rem;
 }

 .about-image {
 	flex: 1;
 	border-radius: 8px;
 	overflow: hidden;
 	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 .about-image img {
 	width: 100%;
 	height: auto;
 	display: block;
 	transition: transform 0.5s;
 }

 .about-image:hover img {
 	transform: scale(1.05);
 }

 /* 图片展示区域 */
 .gallery {
 	margin-bottom: 3rem;
 }

 .gallery-grid {
 	display: grid;
 	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 	gap: 1.5rem;
 }

 .gallery-item {
 	position: relative;
 	border-radius: 8px;
 	overflow: hidden;
 	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 	height: 250px;
 }

 .gallery-item img {
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 	transition: transform 0.3s;
 }

 .gallery-item:hover img {
 	transform: scale(1.05);
 }

 .gallery-caption {
 	position: absolute;
 	bottom: 0;
 	left: 0;
 	right: 0;
 	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
 	color: var(--white);
 	padding: 1rem;
 	transform: translateY(100%);
 	transition: transform 0.3s;
 }

 .gallery-item:hover .gallery-caption {
 	transform: translateY(0);
 }

 /* 投资理念区域 */
 .investment-principles {
 	display: grid;
 	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 	gap: 2rem;
 	margin-bottom: 3rem;
 }

 .principle-text {
 	grid-column: 1 / 4;
 	text-align: center;
 	font-size: 18px;
 }

 .principle-card {
 	background-color: var(--white);
 	padding: 2rem;
 	border-radius: 8px;
 	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 	text-align: center;
 	transition: transform 0.3s;
 }

 .principle-card:hover {
 	transform: translateY(-5px);
 }

 .principle-icon {
 	font-size: 2.5rem;
 	color: var(--primary-red);
 	margin-bottom: 1rem;
 }

 /* 数据展示区域 */
 .stats {
 	/* background: linear-gradient(to right, var(--dark-red), var(--primary-red));
            color: var(--white); */
 	padding: 3rem 2rem;
 	border-radius: 8px;
 	margin-bottom: 3rem;
 	text-align: center;
 }

 .stats-list li {
 	list-style: decimal !important;
 }

 .stat-desc {
 	font-weight: 600;
 }

 .stat-subdesc {
 	font-size: 14px;
 }

 .stats-container {
 	display: grid;
 	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 	gap: 1.5rem;
 	max-width: 1200px;
 	margin: 0 auto;
 }

 .stat-item {
 	padding: 1.5rem;
 }

 .stat-number {
 	font-size: 2.5rem;
 	font-weight: bold;
 	margin-bottom: 0.5rem;
 }

 /* 团队介绍区域 */
 .team {
 	margin-bottom: 3rem;
 }

 .team-grid {
 	display: grid;
 	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 	gap: 2rem;
 }

 .team-member {
 	background-color: var(--white);
 	border-radius: 8px;
 	overflow: hidden;
 	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 	text-align: center;
 }

 .team-img {
 	height: 280px;
 	background-color: #ddd;
 	background-position: center;
 	background-size: cover;
 }

 .team-info {
 	padding: 1.5rem;
 }

 .team-name {
 	color: var(--primary-red);
 	margin-bottom: 0.5rem;
 }

 /* 新闻资讯区域 */
 .news {
 	margin-bottom: 3rem;
 }

 .news-grid {
 	display: grid;
 	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 	gap: 1.5rem;
 }

 .news-card {
 	background-color: var(--white);
 	border-radius: 8px;
 	overflow: hidden;
 	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 .news-img {
 	height: 180px;
 	background-color: #ddd;
 	background-position: center;
 	background-size: cover;
 }

 .news-content {
 	padding: 1.5rem;
 }

 .news-date {
 	color: var(--primary-red);
 	font-size: 0.9rem;
 	margin-bottom: 0.5rem;
 }

 /* 页脚样式 */
 footer {
 	background-color: var(--dark-gray);
 	color: var(--white);
 	padding: 2rem;
 	text-align: center;
 }

 .footer-content {
 	max-width: 1300px;
 	margin: 0 auto;
	margin-top: 30px;
 	display: flex;
 	flex-wrap: wrap;
 	justify-content: space-between;
 }

 .footer-section {
 	flex: 1;
 	min-width: 250px;
 	margin-bottom: 1.5rem;
 	padding: 0 1rem;
 }
 
 .footer-section p{
	 font-size: 20px;
	 text-align: left;
 }

 .footer-section h3 {
 	color: var(--gold);
 	margin-bottom: 1rem;
 	font-size: 1.2rem;
 }
 
 .footer-section img{
	 max-width: 400px;
 }

 .footer-bottom {
 	margin-top: 2rem;
 	padding-top: 1rem;
 	border-top: 1px solid #555;
 }

 /* 流程图样式 */
 .flowchart-section {
 	margin-bottom: 4rem;
 	padding: 0 2rem;
 	border-radius: 12px;
 }

 .flowchart-container {
 	display: flex;
 	max-width: 1200px;
 	gap: 20px;
 	/* margin: 0 auto; */
 	position: relative;
 }

 .flow-step {
 	margin-bottom: 2rem;
 	position: relative;
 	width: 25%;
 }

 .step-content {
 	background-color: var(--white);
 	padding: 30px;
 	border-radius: 8px;
 	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
 	border-left: 6px solid var(--primary-red);
 	position: relative;
 	height: 370px;
 }

 .step-subcontent {
 	background-color: var(--white);
 	padding: 10px 20px;
 	border-radius: 8px;
 	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
 	border-left: 6px solid var(--primary-red);
 }

 .step-subcontent ul {
 	margin-bottom: 0;
 }

 .step-number {
 	width: 40px;
 	height: 40px;
 	background-color: var(--primary-red);
 	color: var(--white);
 	border-radius: 50%;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	font-size: 1.3rem;
 	font-weight: bold;
 	position: absolute;
 	left: 30px;
 	top: 2rem;
 	box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
 	z-index: 2;
 }

 .step-title {
 	color: var(--primary-red);
 	font-size: 1.3rem;
 	margin-bottom: 1.5rem;
 	font-weight: bold;
 	margin-left: 3rem;
 }

 .step-details {
 	list-style: none;
 	padding: 0;
 	margin-left: 1rem;
 }

 .step-details li {
 	position: relative;
 	padding-left: 1.2rem;
 	margin-bottom: 0.8rem;
 	line-height: 1.6;
 	color: var(--dark-gray);
 	font-size: 0.95rem;
 }

 .step-details li::before {
 	content: '';
 	width: 6px;
 	height: 6px;
 	background-color: var(--primary-red);
 	border-radius: 50%;
 	position: absolute;
 	left: 0;
 	top: 0.6rem;
 }

 /* 移除连接线 */
 .flow-connector {
 	display: none;
 }

 /* 流程图动画效果 */
 .flow-step {
 	opacity: 0;
 	transform: translateY(20px);
 	animation: fadeInUp 0.5s ease-out forwards;
 }

 .flow-step:nth-child(1) {
 	animation-delay: 0.1s;
 }

 .flow-step:nth-child(2) {
 	animation-delay: 0.2s;
 }

 .flow-step:nth-child(3) {
 	animation-delay: 0.3s;
 }

 .flow-step:nth-child(4) {
 	animation-delay: 0.4s;
 }

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

 .step-number:hover {
 	transform: scale(1.05);
 	transition: transform 0.2s ease;
 }

 .step-content:hover {
 	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
 	transition: box-shadow 0.3s ease;
 }

 /* MM2H服务区域样式 */
 .mm2h-services {
 	margin-bottom: 3rem;
 }

 .services-container {
 	display: flex;
 	gap: 2rem;
 }

 .service-column {
 	flex: 1;
 	background-color: var(--white);
 	padding: 2rem;
 	border-radius: 8px;
 	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 .left-column {
 	flex: 1.2;
 }

 .right-column {
 	flex: 0.8;
 }

 .service-header {
 	display: flex;
 	align-items: center;
 	margin-bottom: 1.5rem;
 }

 .service-number {
 	width: 30px;
 	height: 30px;
 	background-color: #e0e0e0;
 	color: var(--dark-gray);
 	border-radius: 4px;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	font-weight: bold;
 	margin-right: 1rem;
 	font-size: 1.1rem;
 }

 .service-title {
 	color: var(--dark-gray);
 	font-size: 1.2rem;
 	font-weight: bold;
 	margin: 0;
 }

 .service-description {
 	color: var(--dark-gray);
 	line-height: 1.6;
 	margin-bottom: 1.5rem;
 	font-size: 0.95rem;
 }

 .service-features {
 	list-style: none;
 	padding: 0;
 	margin: 0;
 }

 .service-features li {
 	position: relative;
 	padding-left: 1.2rem;
 	margin-bottom: 0.8rem;
 	color: var(--dark-gray);
 	font-size: 0.9rem;
 	line-height: 1.5;
 }

 .service-features li::before {
 	content: '';
 	width: 6px;
 	height: 6px;
 	background-color: var(--dark-gray);
 	border-radius: 50%;
 	position: absolute;
 	left: 0;
 	top: 0.5rem;
 }

 /* 政策更新区域样式 */
 .policy-update {
 	background-color: #e3f2fd;
 	padding: 2rem;
 	border-radius: 8px;
 	margin-bottom: 3rem;
 	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 .policy-container {
 	max-width: 1200px;
 	margin: 0 auto;
 }

 .policy-header {
 	display: flex;
 	align-items: center;
 	margin-bottom: 1rem;
 }

 .policy-icon {
 	width: 24px;
 	height: 24px;
 	background-color: #2196f3;
 	color: var(--white);
 	border-radius: 50%;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	font-weight: bold;
 	font-size: 0.9rem;
 	margin-right: 1rem;
 }

 .policy-title {
 	color: var(--dark-gray);
 	font-size: 1.1rem;
 	font-weight: bold;
 	margin: 0;
 }

 .policy-content {
 	color: var(--dark-gray);
 	line-height: 1.6;
 	margin: 0;
 	font-size: 0.95rem;
 }

 /* 投资优势区域样式 */
 .investment-advantages {
 	margin-bottom: 3rem;
 }

 .advantages-container {
 	display: grid;
 	grid-template-columns: repeat(3, 1fr);
 	gap: 2rem;
 	/* max-width: 1200px; */
 	margin: 0 auto;
 }

 .advantage-card {
 	background-color: var(--white);
 	padding: 1.5rem;
 	border-radius: 8px;
 	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
 }

 .advantage-title {
 	color: var(--dark-gray);
 	font-size: 1rem;
 	font-weight: bold;
 	margin-bottom: 1rem;
 }

 .progress-container {
 	display: flex;
 	align-items: center;
 	margin-bottom: 1rem;
 }

 .progress-bar {
 	flex: 1;
 	height: 8px;
 	background-color: #e0e0e0;
 	border-radius: 4px;
 	overflow: hidden;
 	margin-right: 1rem;
 }

 .progress-fill {
 	height: 100%;
 	background-color: #673ab7;
 	border-radius: 4px;
 	transition: width 1s ease-in-out;
 }

 .progress-percentage {
 	color: var(--dark-gray);
 	font-weight: bold;
 	font-size: 0.9rem;
 }

 .advantage-description {
 	color: var(--dark-gray);
 	font-size: 0.85rem;
 	line-height: 1.4;
 	margin: 0;
 }

 /* 详细说明区域样式 */
 .detailed-description {
 	margin-bottom: 3rem;
 }

 .description-container {
 	max-width: 1200px;
 	margin: 0 auto;
 }

 .description-container p {
 	color: var(--dark-gray);
 	line-height: 1.6;
 	margin-bottom: 1.5rem;
 	font-size: 0.95rem;
 }

 .description-container p:last-child {
 	margin-bottom: 0;
 }

 /* 响应式设计 */
 @media (max-width: 768px) {
 	:root {
 		--anchor-offset: 120px;
 	}

 	.navbar {
 		flex-direction: column;
 	}

 	.nav-links {
 		margin-top: 0.5rem;
 		flex-wrap: wrap;
 		justify-content: center;
 	}

 	.nav-links li {
 		margin: 0.5rem;
 	}

 	.hero {
 		padding: 3rem 1rem;
 	}

 	.hero h1 {
 		font-size: 2rem;
 	}

 	.text-content {
 		padding: 1.5rem;
 	}

 	/* 流程图响应式 */
 	.flowchart-section {
 		padding: 0.8rem 1rem;
 	}

 	.step-content {
 		padding: 2rem 1.5rem;
 		margin-left: 1rem;
 	}

 	.step-number {
 		left: -20px;
 		width: 40px;
 		height: 40px;
 		font-size: 1.1rem;
 	}

 	.step-title {
 		margin-left: 0.5rem;
 		font-size: 1.2rem;
 	}

 	.step-details {
 		margin-left: 0.5rem;
 	}

 	/* MM2H服务响应式 */
 	.services-container {
 		flex-direction: column;
 		gap: 1.5rem;
 	}

 	.service-column {
 		padding: 1.5rem;
 	}

 	.advantages-container {
 		grid-template-columns: 1fr;
 		gap: 1.5rem;
 	}

 	.policy-update {
 		padding: 1.5rem;
 	}
 }
 
 
 
 @media (max-width: 1000px) {
 	body{
		overflow-x: hidden;
	}
	
	header {
	    padding: 0.5rem 1rem;
	}
	
	.logo span {
	    font-size: 21px;
	}
	
	.container {
	    padding: 1rem;
	}
	
	.about-section{
		display: block;
	}
	
	.investment-principles{
		display: block;
	}
	
	.principle-card{
		margin-bottom: 10px;
	}
	
	.flowchart-container{
		display: block;
	}
	
	.flow-step{
		width: 100%;
	}
	
	.flowchart-section{
		margin-bottom: 0.5rem;
	}
	
	.stat-item {
	    padding: 0.5rem;
	}
	
	.stats {
	    padding: 1rem 1rem;
	    margin-bottom: 1rem;
	}
	
	footer{
		padding: 2rem 1rem;
	}
	
	footer h1{
		line-height: 30px;
	}
	
	footer h2{
		line-height: 35px;
	}
	
	.footer-section img{
		max-width: 100%;
	}
	
 }
 
