			* {
				margin: 0;
				padding: 0;
				box-sizing: border-box;
				font-family: 'Helvetica Neue', Arial, sans-serif;
			}
			a{
				text-decoration: none;
			}
			:root {
				--primary: #8B7355;
				--secondary: #D4BFA8;
				--accent: #A68A64;
				/* --light: #F5F1EB; */
				--dark: #1D2319;
				--text: #6C6F69;
			}
			body {
				background-color: var(--light);
				color: var(--text);
				line-height: 1.6;
				overflow-x: hidden;
			}
			.container {
				max-width: 1440px;
				margin: 0 auto;
				/* padding: 0 20px; */
			}
			/* 固定在背景图上的导航栏 */
			.fixed-nav {
				position: fixed;
				top: 0;
				left: 0;
				width: 100%;
				background-color: rgba(255, 255, 255, 0.7);
				/* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
				z-index: 1000;
				transition: background-color 0.3s;
			}
			.nav-content {
				display: flex;
				justify-content: space-between;
				align-items: center;
				padding: 15px 0;
			}
			.logo {
				font-size: 28px;
				font-weight: bold;
				color: var(--primary);
			}
			.logo span {
				color: var(--accent);
			}
			nav ul {
				display: flex;
				list-style: none;
			}
			nav ul li {
				margin-left: 30px;
			}
			nav ul li a {
				text-decoration: none;
				color: #1D2319;
				font-weight: 500;
				transition: color 0.3s;
				position: relative;
			}
			nav ul li a:hover {
				color: #8EA268;
			}
			nav ul li a::after {
				content: '';
				position: absolute;
				width: 0;
				height: 2px;
				bottom: -5px;
				left: 0;
				background-color: #8EA268;
				transition: width 0.3s;
			}
			nav ul li a:hover::after {
				width: 100%;
			}
			/* 右侧功能区域 */
			.nav-right {
				display: flex;
				align-items: center;
			}
			/* 搜索框样式 - 图标在内部 */
			.search-bar {
				position: relative;
				margin-right: 20px;
			}
			.search-bar input {
				padding: 8px 40px 8px 15px;
				border: 1px solid #ddd;
				border-radius: 20px;
				outline: none;
				width: 200px;
				transition: width 0.3s, border-color 0.3s;
				background-color: #f9f9f9;
			}
			.search-bar input:focus {
				width: 250px;
				border-color: var(--primary);
				background-color: white;
			}
			.search-bar button {
				position: absolute;
				right: 8px;
				top: 50%;
				transform: translateY(-50%);
				background: none;
				border: none;
				cursor: pointer;
				padding: 0;
				width: 20px;
				height: 20px;
			}
			.search-bar button img {
				width: 100%;
				height: 100%;
				object-fit: contain;
			}
			/* 微信图标区域 */
			.wechat-icon {
				position: relative;
				cursor: pointer;
			}
			.wechat-icon i {
				font-size: 24px;
				color: #1D2319;
				transition: color 0.3s;
			}
			.wechat-icon:hover i {
				color: #8EA268;
			}
			.wechat-qr {
				position: absolute;
				top: 40px;
				right: 0;
				width: 150px;
				background-color: white;
				border-radius: 10px;
				box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
				padding: 15px;
				opacity: 0;
				visibility: hidden;
				transform: translateY(10px);
				transition: all 0.3s;
				z-index: 1001;
			}
			.wechat-qr img {
				width: 100%;
				border-radius: 5px;
			}
			.wechat-qr p {
				text-align: center;
				font-size: 12px;
				margin-top: 8px;
				color: var(--text);
			}
			.wechat-icon:hover .wechat-qr {
				opacity: 1;
				visibility: visible;
				transform: translateY(0);
			}
			/* 英雄区域内容 */
			.hero-content {
				/* margin-top: 80px; */
				width: 100%;
				/* height: calc(100vh - 80px); */
				display: flex;
				justify-content: center;
				align-items: center;
				/* overflow: hidden; */
			}
			.hero-content img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				
			}
			.cta-button {
				background-color: var(--primary);
				color: white;
				border: none;
				padding: 12px 30px;
				border-radius: 30px;
				font-weight: 500;
				cursor: pointer;
				transition: background-color 0.3s, transform 0.3s;
				font-size: 16px;
			}
			.cta-button:hover {
				background-color: var(--accent);
				transform: translateY(-3px);
			}
			/* 品牌介绍上部区域 */
			.brand-intro-top {
			    padding: 80px 0 70px;
			    background-color: white;
			}
			
			.intro-content {
			    display: flex;
			    align-items: center;
			    gap: 50px;
			}
			
			.video-container {
			    flex: 1;
			    border-radius: 10px;
			    overflow: hidden;
			    position: relative;
			    background-color: #000;
			    aspect-ratio: 16/9;
			}
			
			.video-container video {
			    width: 100%;
			    height: 100%;
			    object-fit: cover;
			}
			
			.video-placeholder {
			    width: 100%;
			    height: 100%;
			    display: flex;
			    flex-direction: column;
			    justify-content: center;
			    align-items: center;
			    background: linear-gradient(135deg, var(--primary), var(--accent));
			    color: white;
			}
			
			.video-placeholder i {
			    font-size: 60px;
			    margin-bottom: 20px;
			}
			
			.intro-text {
			    flex: 1;
			}
			
			.section-subtitle {
			    font-size: 14px;
			    color: #C9CFC4;
			    text-transform: uppercase;
			    letter-spacing: 2px;
			}
			
			.section-title {
			    font-size: 50px;
			    color: #1D2319;
				font-weight: 600;
			}
			
			.brand-slogan {
			    font-size: 18px;
			    color: #1D2319;
			    margin-bottom: 5px;
			    font-weight: 500;
			}
			
			.intro-text p {
			    margin-bottom: 15px;
			}
			
			.learn-more-btn {
			    display: inline-block;
			    background-color: #73825B;
			    color: white;
			    padding: 12px 60px;
			    border-radius: 30px;
			    text-decoration: none;
			    font-weight: 500;
			    transition: background-color 0.3s, transform 0.3s;
			}
			
			.learn-more-btn:hover {
			    background-color: #8EA268;
			    transform: translateY(-3px);
			}
			
			/* 数字统计区域 */
			.stats-section {
			  /*  padding: 80px 0; */
			   
			}
			
			.stats-section .stats-grid {
			    display: grid;
			    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
			    gap: 40px;
			}
			
			.stat-item {
			    text-align: center;
			    padding: 30px 20px;
			    background-color: #E8ECE1;
			    border-radius: 10px;
				
			   /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
			    transition: transform 0.3s;
			}
			
			.stat-item:hover {
			    transform: translateY(-10px);
			}
			
			.stat-number {
			    font-size: 42px;
			    font-weight: bold;
			    color: #434F3B;
			   /* margin-bottom: 10px; */
			    display: block;
			}
			
			.stat-label {
			    font-size: 18px;
			    color: var(--text);
			}
			
			/* 头皮头发解决方案 */
			.services-container {
			   /* max-width: 1200px; */
			    width: 100%;
				margin: 80px 0;
			}
			
			.services-title {
			    text-align: center;
			   /* margin-bottom: 50px; */
			    color: #333;
			    font-size: 50px;
			    font-weight: 600;
			}
			.services-text{
				font-size: 20px;
				color: #6C6F69;
				text-align: center;
				padding-bottom: 50px;
			}
			.services-grid {
			    display: flex;
			    flex-direction: column;
			   /* gap: 30px; */
			}
			
			.services-grid .row {
			    display: grid;
			   gap: 0px;
			}
			
			.top-row {
			    grid-template-columns: repeat(3, 1fr);
			}
			
			.bottom-row {
			    grid-template-columns: repeat(2, 1fr);
			    width: 100%;
			    margin: 0 auto;
			}
			
			.service-item {
			    position: relative;
			    height: 520px;
			    
			    overflow: hidden;
			    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
			    transition: all 0.4s ease;
			    cursor: pointer;
			}
			
			.service-item img {
			    width: 100%;
			    height: 100%;
			    object-fit: cover;
			    transition: transform 0.6s ease;
			}
			
			.service-item:hover {
			    /* transform: translateY(-8px); */
			   /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); */
			}
			
			.service-item:hover img {
			    transform: scale(1.15);
			}
			
			.service-label {
			    position: absolute;
			    bottom: 0;
			    left: 0;
			    width: 100%;
			    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
			    color: white;
			    padding: 25px 20px 20px;
			    text-align: center;
			    font-size: 34px;
			    font-weight: 600;
			    letter-spacing: 1px;
			}
			/* 我们的优势 */
			.advantages-section {
			    max-width: 1200px;
			    width: 100%;
				margin: 0 auto;
			}
			
			.section-header {
			    text-align: center;
			    margin-bottom: 60px;
			}
			
			.section-header h1 {
			    font-size: 50px;
			    color: var(--dark);
			    margin-bottom: 15px;
			    position: relative;
			    display: inline-block;
			}
			
			.section-header h1::after {
			    content: '';
			    position: absolute;
			    bottom: -10px;
			    left: 50%;
			    transform: translateX(-50%);
			    width: 80px;
			    height: 3px;
			    background-color: #8EA268;
			}
			
			.advantages-layout {
			    display: grid;
			    grid-template-areas: 
			        "left center right"
			        "bottom bottom bottom";
			    /* grid-template-columns: 1fr 1.2fr 1fr; */
			   /* gap: 30px; */
			    align-items: start;
			}
			
			.left-column {
			    grid-area: left;
				width: 100%;
			}
			.left-column .advantage-text{
				text-align: right;
			}
			.left-column .advantage-card1{
				justify-content: end;
			}
			.center-column {
			    grid-area: center;
				text-align: center;
			}
			
			.right-column {
			    grid-area: right;
			}
			.left-column .card-icon{
				
				padding-left: 24px;
			}
			.right-column .card-icon{
				padding-right: 24px;
			}
			.bottom-row {
			    grid-area: bottom;
			    display: flex;
			    justify-content: center;
				text-align: center;
			}
			
			.advantage-card {
			    position: relative;
				
				position: relative;
				overflow: hidden;
				/* text-align: center; */
				/* margin-bottom: 30px; */
			  
			}
			.advantage-card1{
				display: flex;
				align-items: center;
				margin-bottom: 100px;
			}
			
			.card-icon {
				
			}
			
			.card-title {
			    font-size: 36px;
			    color: var(--dark);
			    font-weight: 600;
				padding-bottom: 8px;
			
			}
			
			.card-content ul {
			    list-style-type: none;
			    padding-left: 0;
			}
			
			.card-content li {
			    position: relative;
			    font-size: 16px;
			}
			
			
			/* 五大优势特殊样式 */
			.five-advantages {
			    height: 100%;
			}
			
			.five-advantages .card-content {
			    display: grid;
			    grid-template-columns: 1fr;
			    gap: 15px;
			}
			
			/* 底部专业设备样式 */
			.bottom-row .advantage-card {
			    max-width: 500px;
			    width: 100%;
			    margin-bottom: 0;
			}
			
			/* 在线申请 */
			.join-form-container {
				margin: 80px 0 50px;
				/* margin: 0 auto; */
			   /* max-width: 800px; */
			   /* width: 100%; */
			  /*  background-color: white; */
			   /* border-radius: 15px; */
				
			    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
			   /* overflow: hidden; */
			  /* position: relative; */
			}
			
			.form-header {
			    background: url(../img/join_bg.png) no-repeat;
				background-size: cover;
			    color: white;
			    padding: 40px 30px;
			    text-align: center;
				height: 620px;
				padding-top: 150px;
				width: 100%;
			}
			
			.form-header h1 {
			    font-size: 70px;
			    margin-bottom: 15px;
			    font-weight: 600;
			}
			
			.form-header p {
			    font-size: 40px;
			    opacity: 0.9;
			}
			
			.form-content {
			    padding: 40px 30px;
				max-width: 1440px;
				 width: 100%;
				 margin: 0 auto;
				 background-color: #ffffff;
				 margin-top: -200px;
				 border-radius: 16px;
			}
			
			.form-group {
			    margin-bottom: 25px;
			}
			
			.form-row {
			    display: grid;
			    grid-template-columns: 1fr 1fr;
			    gap: 20px;
			}
			
			.form-label {
			    display: block;
			    margin-bottom: 8px;
			    font-weight: 500;
			    color: var(--dark);
				font-size: 20px;
			}
			
			.form-input {
			    width: 100%;
			    padding: 15px 15px;
			    border: 1px solid #ddd;
			    border-radius: 8px;
			    font-size: 16px;
			    transition: border-color 0.3s, box-shadow 0.3s;
			}
			
			.form-input:focus {
			    outline: none;
			    border-color: #8EA268;
				
			  /*  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1); */
			}
			
			.form-input::placeholder {
			    color: #aaa;
			}
			
			.form-select {
			    width: 100%;
			    padding: 15px 15px;
			    border: 1px solid #ddd;
			    border-radius: 8px;
			    font-size: 16px;
			    background-color: white;
			    cursor: pointer;
			    transition: border-color 0.3s, box-shadow 0.3s;
			}
			
			.form-select:focus {
			    outline: none;
			    border-color: #8EA268;
			    /* box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1); */
			}
			
			textarea.form-input {
			    min-height: 100px;
			    resize: vertical;
			}
			
			.captcha-group {
			    display: flex;
			    align-items: center;
			    gap: 15px;
			}
			
			.captcha-input {
			    flex: 1;
			}
			
			.captcha-image {
			    width: 120px;
			    height: 40px;
			    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
			    border-radius: 5px;
			    display: flex;
			    align-items: center;
			    justify-content: center;
			    font-weight: bold;
			    color: #73825B;
			    border: 1px solid #ddd;
			    user-select: none;
			}
			
			.submit-btn {
			    width: 100%;
			    background: #8EA268;
			    color: white;
			    border: none;
			    padding: 15px;
			    border-radius: 8px;
			    font-size: 18px;
			    font-weight: 600;
			    cursor: pointer;
			    transition: transform 0.3s, box-shadow 0.3s;
			    margin-top: 10px;
			}
			
			.submit-btn:hover {
			    transform: translateY(-3px);
			    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
			}
			
			.phone-number {
			    color: #ffffff;
			    font-weight: 600;
			    text-decoration: none;
			}
			
			.phone-number:hover {
			    text-decoration: underline;
			}
			
			/* 新闻中心 */
			.news-container {
			    max-width: 1440px;
			    margin: 0 auto;
			}
			
			/* 头部区域 */
			.news-header {
			    display: flex;
			    justify-content: space-between;
			    align-items: center;
			    margin-bottom: 50px;
			}
			
			.section-title {
			    flex: 1;
			}
			
			.section-title h1 {
			    font-size: 42px;
			    color: var(--dark);
			    position: relative;
			    display: inline-block;
			}
			
			.section-title h1::after {
			    content: '';
			    position: absolute;
			    bottom: -10px;
			    left: 0;
			    width: 80px;
			    height: 3px;
			    background-color: #8EA268;
			}
			
			.header-buttons {
			    display: flex;
			    gap: 20px;
			}
			
			.header-btn {
			    background: white;
			    color: #8EA268;
			    padding: 12px 25px;
			    border-radius: 25px;
			    text-decoration: none;
			    font-weight: 500;
			    border: 2px solid #8EA268;
			    transition: all 0.3s ease;
			    display: flex;
			    align-items: center;
			    gap: 8px;
			}
			
			.header-btn:hover {
			    background: #8EA268;
			    color: white;
			    transform: translateY(-2px);
			    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
			}
			
			/* 新闻网格 */
			.news-grid {
			    display: grid;
			    grid-template-columns: repeat(3, 1fr);
			    gap: 40px;
			    margin-bottom: 50px;
			}
			
			.news-card {
			    background-color: white;
			    border-radius: 12px;
			    overflow: hidden;
			    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
			    transition: transform 0.3s ease, box-shadow 0.3s ease;
			}
			
			.news-card:hover {
			    transform: translateY(-8px);
			    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
			}
			
			.news-image {
			    width: 100%;
			    height: 262px;
			    background: linear-gradient(135deg, var(--primary), var(--accent));
			    display: flex;
			    align-items: center;
			    justify-content: center;
			    color: white;
			    font-size: 18px;
			    position: relative;
			    overflow: hidden;
			}
			
			.news-badge {
			    position: absolute;
			    top: 15px;
			    left: 15px;
			    background-color: rgba(255, 255, 255, 0.9);
			    color: var(--primary);
			    padding: 5px 10px;
			    border-radius: 20px;
			    font-size: 12px;
			    font-weight: 600;
			}
			
			.award-content {
			    text-align: center;
			    padding: 20px;
			}
			
			.award-title {
			    font-size: 16px;
			    color: white;
			    margin-bottom: 10px;
			    opacity: 0.9;
			}
			
			.award-name {
			    font-size: 24px;
			    color: white;
			    font-weight: 600;
			    margin-bottom: 15px;
			}
			
			.award-year {
			    font-size: 18px;
			    color: white;
			    font-weight: 500;
			}
			
			.news-content {
			    padding: 20px;
			}
			
			.news-title {
			    font-size: 18px;
			    color: var(--dark);
			    margin-bottom: 15px;
			    font-weight: 600;
			    line-height: 1.4;
			}
			
			.news-meta {
			    display: flex;
			    align-items: center;
			    gap: 15px;
			    margin-bottom: 5px;
			    font-size: 14px;
			    color: #888;
			}
			
			.news-source {
			    color: var(--primary);
			    font-weight: 500;
			}
			
			.news-date {
			    color: #999;
			}
			
			.news-excerpt {
			    color: var(--text);
			    font-size: 16px;
			    margin-bottom: 0;
			}
			
			/* 查看更多 */
			.view-more {
			    text-align: center;
			}
			
			.view-more-btn {
			    display: inline-flex;
			    align-items: center;
			    gap: 8px;
			    background: #8EA268;
			    color: white;
			    padding: 15px 50px;
			    border-radius: 30px;
			    text-decoration: none;
			    font-weight: 500;
			    transition: transform 0.3s ease, box-shadow 0.3s ease;
			}
			
			.view-more-btn:hover {
			    transform: translateY(-3px);
			    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
			}
			/* 立即咨询 */
			.hero-content-bren {
			    background:url(../img/bg.png);
			    background-size: cover;
			    background-position: center;
				text-align: center;
			    position: relative;
				padding: 100px 0;
				margin-top: 80px;
			}
			
			/* .hero-content {
			    color: white;
			    padding: 0 20px;
			}
			 */
			.hero-title {
			    font-size: 3.5rem;
			    font-weight: 700;
			    margin-bottom: 30px;
			    line-height: 1.2;
				color: #ffffff;
				padding-bottom: 10px;
			}
			
			.consult-btn {
			    display: inline-block;
			    background: #73825B;
			    color: white;
			    padding: 16px 45px;
			    border-radius: 50px;
			    text-decoration: none;
			    font-size: 1.3rem;
			    font-weight: 600;
			    transition: all 0.3s ease;
			    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
			    border: 2px solid rgba(255, 255, 255, 0.2);
			}
			
			.consult-btn:hover {
			    transform: translateY(-5px);
			    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
			    background: #8EA268;
			}
			
			.stats-highlight {
			    display: inline-block;
			    background: linear-gradient(135deg, rgba(139, 115, 85, 0.9), rgba(166, 138, 100, 0.9));
			    padding: 5px 15px;
			    border-radius: 30px;
			    margin-bottom: 10px;
			    font-weight: 600;
			}
			.hero-xian{
				width: 140px;
				height: 8px;
				background: #fff;
				margin:  0 auto 80px;

			}
			
			/* 动画效果 */
			@keyframes fadeInUp {
			    from {
			        opacity: 0;
			        transform: translateY(30px);
			    }
			    to {
			        opacity: 1;
			        transform: translateY(0);
			    }
			}
			
			.hero-title, .hero-subtitle, .consult-btn {
			    animation: fadeInUp 1s ease-out;
			}
			
			.hero-subtitle {
			    animation-delay: 0.2s;
			    animation-fill-mode: both;
			}
			
			.consult-btn {
			    animation-delay: 0.4s;
			    animation-fill-mode: both;
			}
			/* 底部 */
			.main-content {
			    flex: 1;
			    padding: 40px 20px;
			    max-width: 1200px;
			    margin: 0 auto;
			    text-align: center;
			}
			
			.main-content h1 {
			    color: var(--dark);
			    margin-bottom: 20px;
			    font-size: 2.5rem;
			}
			
			.main-content p {
			    font-size: 1.2rem;
			    max-width: 600px;
			    margin: 0 auto;
			}
			
			/* 底部导航样式 */
			.footer {
			    background-color:#252621;
			    color: #ccc;
			    padding: 50px 0 20px;
			}
			
			/* .footer-container {
			    max-width: 1440px;
			    margin: 0 auto;
			    padding: 0 20px;
			} */
			
			/* Logo区域 */
			.footer-logo {
			    margin-bottom: 40px;
			    text-align: center;
			}
			
			.footer-logo h2 {
			  /*  color: white;
			    font-size: 28px;
			    margin-bottom: 10px; */
			}
			
			.footer-logo p {
			    color: #aaa;
			    font-size: 16px;
			}
			
			/* 主要内容区域 */
			.footer-main {
				width: 1440px;
				margin: 0 auto;
			    display: grid;
			    grid-template-columns: 2fr 1fr;
			    gap: 60px;
			    margin-bottom: 40px;
			}
			
			/* 左侧导航区域 */
			.footer-nav {
			    display: grid;
			    grid-template-columns: repeat(6, 1fr);
			    gap: 30px;
			}
			
			.nav-column h3 {
			    color: white;
			    font-size: 16px;
			    margin-bottom: 20px;
			    font-weight: 600;
			}
			
			.nav-links {
			    list-style: none;
			}
			
			.nav-links li {
			    margin-bottom: 12px;
			}
			
			.nav-links a {
			    color: #ccc;
			    text-decoration: none;
			    transition: color 0.3s ease;
			    font-size: 14px;
			}
			
			.nav-links a:hover {
			    color: #8EA268;
			}
			
			/* 右侧公众号区域 */
			.wechat-section {
			    text-align: center;
			}
			
			.wechat-title {
			    color: white;
			    font-size: 16px;
			    margin-bottom: 20px;
			    font-weight: 600;
			}
			
			.wechat-codes {
			    display: flex;
			    justify-content: center;
			    gap: 20px;
			    margin-bottom: 30px;
			}
			
			.wechat-item {
			    text-align: center;
			}
			
			/* .wechat-qr {
			    width: 100px;
			    height: 100px;
			    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
			    border-radius: 8px;
			    margin-bottom: 10px;
			    display: flex;
			    align-items: center;
			    justify-content: center;
			    color: var(--primary);
			    font-size: 12px;
			    font-weight: bold;
			} */
			
			.wechat-name {
			    color: #ccc;
			    font-size: 12px;
			}
			
			.hotline {
			    /* background: rgba(255, 255, 255, 0.1); */
			    padding: 15px;
			    border-radius: 8px;
			    text-align: center;
			}
			
			.hotline-text {
			    color: #fff;
			    font-size: 24px;
			    margin-bottom: 5px;
			}
			
			.hotline-number {
			    color: var(--secondary);
			    font-size: 20px;
			    font-weight: 700;
			}
			
			/* 底部版权区域 */
			.footer-bottom {
			    border-top: 1px solid #4B4A4A;
			    padding-top: 20px;
			    display: flex;
			    justify-content: space-between;
			    align-items: center;
			    flex-wrap: wrap;
			    gap: 15px;
			}
			.footer-bottom-link{
				width: 1440px;
				margin: 0 auto;
				display: flex;
				justify-content: space-between;
				color: #fff;
			}
			
			.copyright {
			    font-size: 14px;
			    color: #fff;
			}
			
			.icp a{
			    font-size: 14px;
			    color: #fff;
			}
			/* 品牌故事 */
			.brand-story-page {
			    max-width: 100%;
			    margin: 0 auto;
			    background-color: white;
			}
			
			/* 图片区域 */
			.brand-header-section {
				margin-top: 80px;
				text-align: center;
			   /* width: 100%;
			    height: 400px;
			    background: linear-gradient(135deg, rgba(139, 115, 85, 0.9), rgba(166, 138, 100, 0.9)), 
			                url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
			    background-size: cover;
			    background-position: center;
			    display: flex;
			    align-items: center;
			    justify-content: center;
			    position: relative; */
			}
			
			.header-content {
			    text-align: center;
			    color: white;
			    padding: 0 20px;
			}
			
			.page-main-title {
			    font-size: 48px;
			    font-weight: bold;
			    margin-bottom: 20px;
			    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
			}
			
			/* 文本内容区域 */
			.story-content-section {
				
			    background: #fff;
			    max-width: 1440px;
			    margin: 0 auto;
			
				
			}
			.story-content-text{
				padding:  40px 0;
				margin-top: -120px;
				background: #fff;
				position: relative;
				z-index: 999;
				
			}
			
			/* 一级标题 */
			.level1-title {
			    font-size: 42px;
			    color: var(--dark);
			    margin-bottom: 30px;
			    font-weight: 600;
			    text-align: center;
			}
			
			/* 段落文本 */
			.content-paragraph {
			    margin-bottom: 25px;
			    font-size: 16px;
			    
			    text-align: justify;
			    line-height: 2;
			}
			.content-paragraph h4{
				color: #1D2319;
				font-size: 24px;
			}
			.content-paragraph p{
				color: #6C6F69;
				font-size: 16px;
			}
			
			
			/* 二级标题 */
			.level2-title {
			    font-size: 24px;
			    color: var(--primary);
			    margin: 40px 0 25px 0;
			    font-weight: 600;
			    padding-bottom: 8px;
			    border-bottom: 2px solid var(--secondary);
				position: relative;
			}
			
			/* 信念部分 */
			.belief-section {
			    background: linear-gradient(135deg, var(--light), #f8f6f2);
			    padding: 35px;
			    border-radius: 8px;
			    margin: 40px 0;
			    border-left: 4px solid var(--primary);
			}
			
			.belief-title {
			    font-size: 20px;
			    color: var(--dark);
			    margin-bottom: 20px;
			    font-weight: 600;
				
			}
			.h-boide{
				width: 80px;
				height: 4px;
				background: #8EA268;
				margin: 10px auto;
			}
			.belief-content {
			    font-size: 16px;
			    color: var(--text);
			    line-height: 2;
			    font-style: italic;
			}
			/* 品牌理念 */
			.brand-concept-container {
			    max-width: 1440px;
			    margin: 0 auto;
			    
			}
			
			/* 左右布局 */
			.concept-layout {
			    display: grid;
			    grid-template-columns: 1.2fr 0.8fr;
			   /* min-height: 600px; */
			}
			
			/* 左侧内容区域 */
			.concept-content {
			   /* padding: 60px 50px; */
			    display: flex;
			    flex-direction: column;
			}
			
			.content-title {
			    font-size: 42px;
			    color: var(--dark);
			    margin-bottom: 40px;
			    font-weight: 600;
			    text-align: left;
				
			}
			.content-title .h-boide{
				margin: 10px auto 0 0;
			}
			/* 两列并排布局 */
			.concept-grid {
			    display: grid;
			    grid-template-columns: 1fr 1fr;
			    gap: 40px;
			}
			
			/* 品牌理念项目 */
			.concept-item {
			    margin-bottom: 20px;
			}
			
			.concept-label {
			    font-size: 24px;
			    color: #8EA268;
			    font-weight: 600;
			    margin-bottom: 12px;
			    display: block;
			}
			
			.concept-value {
			    font-size: 20px;
			    color: var(--dark);
			    font-weight: 600;
			    line-height: 1.4;
			}
			
			
			
			.values-list {
			    color: var(--text);
			    font-size: 16px;
			    font-weight: 500;
			}
			
			/* 年份信息 */
			.year-info {
			    margin-top: auto;
			    text-align: left;
			}
			
			.year-text {
			    font-size: 24px;
			    color: var(--primary);
			    font-weight: 600;
			}
			
			/* 右侧图片区域 */
			.concept-image {
			   /* background: linear-gradient(135deg, rgba(139, 115, 85, 0.9), rgba(166, 138, 100, 0.9)), 
			                url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
			    background-size: cover;
			    background-position: center;
			    position: relative; */
			}
			/* 企业文化 */
			.culture-grid {
			    max-width: 1440px;
			    margin: 0 auto;
			}
			.culture-pic{
				text-align: center;
				width: 100%;
				 margin-top: -220px;
			}
			.culture-pic img{
				width: 100%;
			}
			/* 主标题 */
			.culture-title {
			    text-align: center;
			    margin-bottom: 50px;
				margin-top: 60px;
			}
			
			.culture-title h1 {
			    font-size: 48px;
			    color: var(--dark);
			    font-weight: 600;
			    margin-bottom: 5px;
			}
			
			.culture-subtitle {
			    font-size: 20px;
			    color: #6C6F69;
			    font-weight: 600;
			}
			
			/* 三个列表布局 */
			.culture-grid {
			    display: grid;
			    grid-template-columns: repeat(3, 1fr);
			    gap: 30px;
			}
			
			/* 文化项样式 */
			.culture-item {
			    position: relative;
			    /* height: 400px; */
				width: 450px;
				height: 590px;
			    border-radius: 15px;
			    overflow: hidden;
			    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
			    display: flex;
			    flex-direction: column;
			    justify-content: center;
			    align-items: center;
			    text-align: center;
			    color: white;
			    padding: 40px 30px;
			}
			
			/* 背景图片 */
			.culture-item::before {
			    content: '';
			    position: absolute;
			    top: 0;
			    left: 0;
			    width: 100%;
			    height: 100%;
			    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
			    z-index: 1;
			}
			
			.culture-item:nth-child(1)::before {
			    background: url(../img/cutrue_pic_bg_1.png) no-repeat;
			    background-size: cover;
			    background-position: center;
			}
			
			.culture-item:nth-child(2)::before {
			    background: url(../img/cutrue_pic_bg_2.png) no-repeat;
			    background-size: cover;
			    background-position: center;
			}
			
			.culture-item:nth-child(3)::before {
			    background: url(../img/cutrue_pic_bg_3.png) no-repeat;
			    background-size: cover;
			    background-position: center;
			}
			
			.culture-content {
			    position: relative;
			    z-index: 2;
			}
			
			/* 顶部大文本 */
			.culture-main-text {
			    font-size: 42px;
			    font-weight: bold;
			    margin-bottom: 30px;
			    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
			}
			
			/* 中间中等文本 */
			.culture-middle-text {
			    font-size: 28px;
			    font-weight: 600;
			    margin-bottom: 25px;
			    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
			}
			
			/* 底部小文本 */
			.culture-desc-text {
			    font-size: 30px;
			    font-weight: 500;
			    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
			    line-height: 1.6;
				padding-top: 60px;
			}
			/* 工厂介绍 */
			.factory-container {
			   width: 100%;
			    margin: 0 auto 80px;
			    background-color: white;
			    border-radius: 15px;
			    overflow: hidden;
			    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
				 position: relative;
			}
			
			/* 左右布局 */
			.factory-layout {
			   /* display: grid; */
			    /* grid-template-columns: 1fr 1fr; */
			    /* min-height: 600px; */
				/* background: url(../img/ind_pic.png) content-box; */
			}
			
			/* 左侧背景图 */
			.factory-image {
			   /* background: url(../img/ind_pic.png) no-repeat; */
			  
			}
			.factory-image img{
				width: 100%;
				height: 100%;
			}
			/* 右侧文本内容 */
			.factory-content {
			    padding: 60px 50px;
			    display: flex;
			    flex-direction: column;
			    justify-content: center;
				position: absolute;
				top: 50%;
				right: 5%;
				transform: translateY(-50%);
				width: 40%;
			}
			.factory-title .h-boide{
				margin: 10px auto 0 0;
			}
			.factory-title {
			    font-size: 42px;
			    color: var(--dark);
			    margin-bottom: 30px;
			    font-weight: 600;
			    text-align: left;
			}
			
			.factory-subtitle {
			    font-size: 20px;
			    color: #1D2319;
			    margin-bottom: 40px;
			    font-weight: 600;
			    line-height: 1.5;
			}
			
			.factory-text {
			    font-size: 16px;
			    color: var(--text);
			    margin-bottom: 25px;
			    text-align: justify;
			    line-height: 2;
			}
			
			.factory-text:last-child {
			    margin-bottom: 0;
			}
			/* 发展历程 */
			.timeline-footer{
				margin-top: 80px;
			}
			.timeline-title{
				text-align: center;
				
			}
			
			.timeline-title h2{
				font-size: 42px;
				color: #1D2319;
			}
			.vision {
			    font-size: 20px;
			    color: #6C6F69;
			   /* font-style: italic; */
			}
			.timeline {
			    position: relative;
			    max-width: 1000px;
			    margin: 0 auto;
			}
			.timeline::after {
			    content: '';
			    position: absolute;
			    width: 4px;
			    background-color: #8EA268;
			    top: 140px;
			    bottom: 0;
			    left: 50%;
			    margin-left: -3px;
			}
			.timeline-item {
			    padding: 10px 40px;
			    position: relative;
			    width: 50%;
			    clear: both;
			}
			.timeline-item:nth-child(odd) {
			    left: 0;
			}
			.timeline-item:nth-child(even) {
			    left: 50%;
			}
			.timeline-item::after {
			    content: '';
			    position: absolute;
			    width: 20px;
			    height: 20px;
			    background-color: white;
			    border: 4px solid #8EA268;
			    border-radius: 50%;
			    top: 15px;
			    z-index: 1;
			}
			.timeline-item:nth-child(odd)::after {
			    right: -10px;
			}
			.timeline-item:nth-child(even)::after {
			    left: -10px;
			}
			.timeline-content {
			    padding: 5px;
			    background-color: white;
			    border-radius: 8px;
			   /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
			    position: relative;
			}
			.timeline-content::before {
			    content: '';
			    position: absolute;
			    width: 0;
			    height: 0;
			    top: 15px;
			    border: 10px solid transparent;
			}
			.timeline-item:nth-child(odd) .timeline-content::before {
			    border-left-color: white;
			    right: -20px;
			}
			.timeline-item:nth-child(even) .timeline-content::before {
			    border-right-color: white;
			    left: -20px;
			}
			.year {
			    font-size: 30px;
			    font-weight: bold;
			    color: #8EA268;
			    margin-bottom: 10px;
			}
			.brand-name {
			    font-size: 18px;
			    font-weight: bold;
			    margin-bottom: 10px;
			    padding: 5px 10px;
			    border-radius: 4px;
			    display: inline-block;
			}
			.kalan {
			    background-color: #e8f4fd;
			    color: #2980b9;
			}
			.yisicai {
			    background-color: #f9ebea;
			    color: #c0392b;
			}
			.zhuce{
				background-color: #E8ECE1;
				color: #8EA268;
			}
			.merger {
			    background-color: #eafaf1;
			    color: #27ae60;
			}
			.description {
			    font-size: 16px;
			    line-height: 1.5;
				padding-bottom: 10px;
			}
			.highlight {
			    color: #e74c3c;
			    font-weight: bold;
			}
			.merger-event {
			    text-align: center;
			    margin: 40px 0;
			    padding: 30px;
			    background: linear-gradient(135deg, #3498db, #2ecc71);
			    border-radius: 10px;
			    color: white;
			    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
			}
			.merger-event h2 {
			    font-size: 28px;
			    margin-bottom: 10px;
			}
			.merger-event p {
			    font-size: 18px;
			}
			/* 人才发展 */
			.talent-container{
				background: url(../img/center.png) no-repeat;
				background-size: cover;
				padding: 80px 0 90px;
			}
			.six-column-timeline {
			    max-width: 1440px;
			    margin: 0 auto;
			   /* padding: 30px; */
			}
			.talent-header {
			    text-align: center;
			    margin-bottom: 50px;
			    padding: 20px;
			}
			.talent-title {
			    font-size: 42px;
			    color: #1D2319;
			    margin-bottom: 10px;
			    font-weight: 700;
			   
			}
			.talent-slogan {
			    font-size: 22px;
			    color: #6C6F69;
			    
			    margin-bottom: 50px;
			}
			.talent-description {
			    max-width: 800px;
			    margin: 0 auto;
			    font-size: 18px;
			    color: #555;
			    background: rgba(255, 255, 255, 0.7);
			    padding: 20px;
			    border-radius: 10px;
			    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
			}
			.six-column-timeline {
			    display: flex;
			    justify-content: space-between;
			    align-items: flex-end; /* 关键：从底部对齐 */
			    margin-top: 80px;
			    position: relative;
			    height: 500px;
			}
			.timeline-column {
			    width: 15%;
			    display: flex;
			    flex-direction: column;
			    align-items: center;
			    position: relative;
			}
			.column-content {
			    background: white;
			    padding: 10px 10px 14px;
			    border-radius: 10px;
			    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
			    width: 100%;
			    text-align: center;
			    margin-bottom: 15px;
			    transition: transform 0.3s ease, box-shadow 0.3s ease;
			
			}
			.column-content:hover {
			    transform: translateY(-5px);
			    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
			}
			.column-year {
			    font-size: 24px;
			    font-weight: bold;
			    color: #2c3e50;
			    margin-bottom: 5px;
			}
			.column-description {
			    font-size: 16px;
			    color: #6C6F69;
			    line-height: 2;
			}
			.column-connector {
			    width: 4px;
			    background: #3498db;
			    position: absolute;
			    bottom: 0;
			}
			.column-dot {
			    width: 20px;
			    height: 20px;
			    border-radius: 50%;
			    background: #3498db;
			    border: 4px solid white;
			    box-shadow: 0 0 0 3px #3498db;
			    position: absolute;
			    bottom: 0;
			    z-index: 3;
			}
			/* 不同列的高度和颜色 */
			.column-1 .column-connector { height: 80px; background: #ff9a9e; }
			.column-1 .column-dot { background: #ff9a9e; box-shadow: 0 0 0 3px #ff9a9e; }
			.column-1 .column-content { border-top: 4px solid #ff9a9e; margin-bottom: 100px; }
			
			.column-2 .column-connector { height: 120px; background: #a1c4fd; }
			.column-2 .column-dot { background: #a1c4fd; box-shadow: 0 0 0 3px #a1c4fd; }
			.column-2 .column-content { border-top: 4px solid #a1c4fd; margin-bottom: 140px; }
			
			.column-3 .column-connector { height: 160px; background: #ffecd2; }
			.column-3 .column-dot { background: #ffecd2; box-shadow: 0 0 0 3px #ffecd2; }
			.column-3 .column-content { border-top: 4px solid #ffecd2; margin-bottom: 180px; }
			
			.column-4 .column-connector { height: 200px; background: #84fab0; }
			.column-4 .column-dot { background: #84fab0; box-shadow: 0 0 0 3px #84fab0; }
			.column-4 .column-content { border-top: 4px solid #84fab0; margin-bottom: 220px; }
			
			.column-5 .column-connector { height: 240px; background: #d4fc79; }
			.column-5 .column-dot { background: #d4fc79; box-shadow: 0 0 0 3px #d4fc79; }
			.column-5 .column-content { border-top: 4px solid #d4fc79; margin-bottom: 260px; }
			
			.column-6 .column-connector { height: 280px; background: #a6c0fe; }
			.column-6 .column-dot { background: #a6c0fe; box-shadow: 0 0 0 3px #a6c0fe; }
			.column-6 .column-content { border-top: 4px solid #a6c0fe; margin-bottom: 300px; }
			
			.column-7 .column-connector { height: 320px; background: #fccb90; }
			.column-7 .column-dot { background: #fccb90; box-shadow: 0 0 0 3px #fccb90; }
			.column-7 .column-content { border-top: 4px solid #fccb90; margin-bottom: 340px; }
			/* 课程培训 */
			.classical{
				background: url(../img/class-pic.png) no-repeat;
				background-size: cover;
				padding: 90px 0;
			}
			.classical-title{
				text-align: center;
				font-size: 42px;
				color: #fff;
			}
			.classical-title h1{
				text-align: center;
				font-size: 42px;
				color: #fff;
			}
			.classical-title .h-boide{
				background-color: #fff;
			}
			.subtitle {
			    font-size: 22px;
			    color: #fff;
			    
			    line-height: 1.8;
				
			}
			.content-section {
			    overflow: hidden;
				max-width: 1440px;
				margin: 0 auto;
				padding-top: 40px;
			}
			.tabs {
			    display: flex;
			    background: linear-gradient(135deg, #8EA268, #79956C);
			    padding: 0;
			}
			.tab {
			    flex: 1;
			    padding: 20px;
			    text-align: center;
			    color: white;
			    font-size: 20px;
			    font-weight: bold;
			    cursor: pointer;
			    transition: all 0.3s ease;
			    border-bottom: 4px solid transparent;
			}
			.tab:hover {
			    background-color: rgba(255,255,255,0.1);
			}
			.tab.active {
			    background-color: rgba(255,255,255,0.2);
			    border-bottom: 4px solid white;
			}
			.swiper-container {
			    position: relative;
			    height: 500px;
			    overflow: hidden;
			}
			.swiper-wrapper {
			    position: relative;
			    width: 100%;
			    height: 100%;
			    display: flex;
			    transition: transform 0.6s ease;
			}
			.swiper-slide {
			    position: absolute;
			    top: 0;
			    left: 0;
			    width: 100%;
			    height: 100%;
			    padding: 40px 0;
			    display: flex;
			    align-items: center;
			    gap: 40px;
			    opacity: 0;
			    transform: translateX(100%);
			    transition: all 0.6s ease;
			}
			.swiper-slide.active {
			    opacity: 1;
			    transform: translateX(0);
			    position: relative;
			}
			.swiper-slide.prev {
			    opacity: 0;
			    transform: translateX(-100%);
			}
			.swiper-slide.next {
			    opacity: 0;
			    transform: translateX(100%);
			}
			.text-content {
			    flex: 1;
				text-align: left;
			}
			.image-content {
			    flex: 1;
			    display: flex;
			    justify-content: center;
			    align-items: center;
			}
			.image-content img{
				width: 100%;
			}
			.swiper-slide h2 {
			    font-size: 32px;
			    color: #fff;
			    margin-bottom: 20px;
			}
			.swiper-slide p {
			    font-size: 20px;
			    color: #fff;
			    line-height: 1.8;
			}
			.course-image {
			    width: 100%;
			    max-width: 655px;
			    height: 328px;
			    border-radius: 10px;
			    object-fit: cover;
			    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
			}
			/* 企业福利 */
			.welfare-container {
			    max-width: 1440px;
			    margin: 0 auto 80px;
			   /* padding: 30px; */
			}
			.welfare-header {
			    text-align: center;
			    margin-bottom: 50px;
			    padding: 20px;
			}
			.welfare-title {
			    font-size: 42px;
			    color: #2c3e50;
			    margin-bottom: 15px;
			    font-weight: 700;
			}
			.welfare-slogan {
			    font-size: 22px;
			    color: #666;
			    margin-bottom: 20px;
			}
			.welfare-grid {
			    display: flex;
			    flex-direction: column;
			    align-items: center;
			    gap: 50px;
			}
			.welfare-row {
			    display: flex;
			    justify-content: center;
			    gap: 40px;
			    width: 100%;
			}
			.welfare-row.first-row {
			    justify-content: space-between;
			}
			.welfare-row.second-row {
			    justify-content: center;
				gap: 140px;
			}
			.welfare-item {
			    text-align: center;
			    display: flex;
			    flex-direction: column;
			    align-items: center;
			    width: 224px;
			}
			.welfare-icon {
			    width: 124px;
			    height: 124px;
			    border-radius: 50%;
			    display: flex;
			    align-items: center;
			    justify-content: center;
			    margin-bottom: 20px;
			    font-size: 32px;
			    color: white;
			    font-weight: bold;
			}
			/* .welfare-number {
			    font-size: 24px;
			    font-weight: bold;
			    color: #2c3e50;
			    margin-bottom: 15px;
			} */
			.welfare-name {
			    font-size: 24px;
			    font-weight: bold;
			    color: #2c3e50;
			    margin-bottom: 15px;
			}
			.welfare-desc {
			    font-size: 16px;
			    color: #555;
			    line-height: 1.5;
			}
			/* 人才招聘 */
			.recruitment{
			    background: url(../img/talent_pic.png) no-repeat;
			    background-size: cover;
			   /* background-position: center;
			    background-attachment: fixed; */
			    color: #333;
			    line-height: 1.6;
			    height: 910px;
			}
			.recruitment-wrapper {
			    max-width: 1440px;
			    margin: 0 auto;
			   padding-top: 10%;
			    text-align: left;
			}
			.recruitment-header {
			    margin-bottom: 2%;
			}
			.recruitment-title {
			    font-size: 42px;
			    color: #fff;
			    margin-bottom: 20px;
			    font-weight: 700;
			}
			.recruitment-title .h-boide{
				background-color: #fff;
				margin:10px auto 0 0;
			}
			.recruitment-subtitle {
			    font-size: 26px;
			    color: #fff;
			}
			.contact-info {
			    margin-top: 40px;
			}
			.contact-item {
			    margin-bottom: 30px;
			    font-size: 20px;
			    color: #fff;
			}
			.contact-label {
			  /*  font-weight: bold; */
			    color: #fff;
			    margin-right: 15px;
			    display: inline-block;
			    min-width: 160px;
			}
			.contact-value {
			    color: #fff;
			    font-weight: 500;
			}
			.recruitment-footer {
			    text-align: center;
			    margin-top: 80px;
			    padding: 30px;
			    color: #7f8c8d;
			    font-size: 14px;
			    border-top: 1px solid #eee;
			}
			/* 加盟我们-加盟流程 */
			.nav-container {
			    max-width: 1440px;
			    margin: 0 auto;
			    padding: 20px;
			}
			.nav-bar {
			    display: flex;
			    justify-content: center;
			    gap: 120px;
			    border-bottom: 2px solid #ddd;
			    padding: 20px 0;
			}
			.nav-item {
			    font-size: 28px;
			   /* font-weight: 700; */
			    color: #6C6F69;
			    text-decoration: none;
			    padding: 10px 20px;
			    position: relative;
			    transition: color 0.3s ease;
			}
			.nav-item:hover {
			    color: #79956C;
			}
			.nav-item.active {
			    color: #79956C;
				font-weight: 700;
			}
			.nav-item.active::after {
			    content: '';
			    position: absolute;
			    bottom: -22px;
			    left: 0;
			    width: 100%;
			    height: 6px;
			    background: #79956C;
			}
			.wrapper-container {
			    max-width: 1440px;
			    margin: 0 auto;
			    padding: 60px 20px;
			}
			.content-wrapper {
			    display: flex;
			    gap: 60px;
			    align-items: center;
			}
			.image-section {
			    flex: 1;
			}
			.industry-image {
			    width: 100%;
			   /* height: 500px;
			    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
			    border-radius: 15px;
			    display: flex;
			    align-items: center;
			    justify-content: center;
			    color: white;
			    font-size: 24px;
			    font-weight: bold;
			}
			.text-section {
			    flex: 1;
			}
			.main-title {
			    font-size: 42px;
			    color: #1D2319;
			    margin-bottom: 20px;
			    font-weight: 700;
			    line-height: 1.3;
			}
			.description {
			    font-size: 18px;
			    color: #555;
			    margin-bottom: 20px;
			    line-height: 1.8;
			}
			.stats-grid {
			    display: grid;
			    grid-template-columns: repeat(2, 1fr);
			    gap: 30px;
			}
			.stat-item {
			    text-align: center;
			    padding: 30px 20px;
			    background: #f8f9fa;
			    border-radius: 10px;
			    transition: transform 0.3s ease;
			}
			.stat-item:hover {
			    transform: translateY(-5px);
			}
			.stat-number-wrapper {
			    display: flex;
			    align-items: baseline;
			    justify-content: center;
			   margin-bottom: 10px;
			}
			.stat-number {
			    font-size: 46px;
			    font-weight: 700;
			    color: #73825B;
			}
			.stat-unit {
			    font-size: 24px;
			    color: #73825B;
			    font-weight: 500;
			    margin-left: 5px;
			}
			.stat-label {
			    font-size: 16px;
			    color: #7f8c8d;
			}
			.source-note {
			    font-size: 14px;
			    color: #95a5a6;
			    margin-top: 20px;
			    font-style: italic;
			}
			/* 养发加盟就找头趣 */
			.strength-container {
			    max-width: 1400px;
			    margin: 0 auto;
			    padding: 80px 20px;
			}
			.page-header {
			    text-align: center;
			    margin-bottom: 60px;
			}
			.main-title {
			    font-size: 42px;
			    color: #1D2319;
			    margin-bottom: 10px;
			    font-weight: 700;
			}
			.sub-title {
			    font-size: 24px;
			    color: #6C6F69;
			}
			.strength-layout {
			    display: flex;
			    align-items: center;
			    justify-content: space-between;
			    /* gap: 40px; */
			    position: relative;
			}
			.left-list, .right-list {
			    flex: 1;
			    display: flex;
			    flex-direction: column;
			    gap: 40px;
				z-index: 9999;
			}
			.left-list .strength-one{
				margin-right: -70px;
			}
			.left-list .strength-two{
				margin-right: -20px;
			}
			.left-list .strength-three{
				margin-right: -60px;
			}
			.right-list .strength-one{
				margin-left: -70px;
			}
			.right-list .strength-two{
				margin-left: -20px;
			}
			.right-list .strength-three{
				margin-left: -60px;
			}
			.center-visual {
			    flex: 1.2;
			    text-align: center;
			    position: relative;
			    z-index: 2;
			}
			.core-visual {
			  /*  width: 300px;
			    height: 300px;
			    background: linear-gradient(135deg, #3498db, #2ecc71);
			    border-radius: 50%; */
			    display: flex;
			    align-items: center;
			    justify-content: center;
			    color: white;
			    font-size: 24px;
			    font-weight: bold;
			    margin: 0 auto;
			    /* box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3); */
			}
			.strength-item {
			    display: flex;
			    align-items: flex-start;
				align-items: center;
			    gap: 20px;
			   /* padding: 25px;
			    background: #f8f9fa;
			    border-radius: 12px; */
			    transition: transform 0.3s ease;
				padding-bottom: 25px;
			}
			.strength-item:hover {
			    transform: translateY(-5px);
			}
			/* 左侧列表样式 - 图标在右侧，文本右对齐 */
			.left-list .strength-item {
			    flex-direction: row-reverse;
			    text-align: right;
			}
			.left-list .strength-content {
			    flex: 1;
			}
			.left-list .strength-icon {
			    width: 60px;
			    height: 60px;
			    background: #3498db;
			    border-radius: 50%;
			    display: flex;
			    align-items: center;
			    justify-content: center;
			    color: white;
			    font-size: 24px;
			    flex-shrink: 0;
			}
			/* 右侧列表样式 - 图标在左侧，文本左对齐 */
			.right-list .strength-item {
			    flex-direction: row;
			    text-align: left;
			}
			.right-list .strength-content {
			    flex: 1;
			}
			.right-list .strength-icon {
			    width: 60px;
			    height: 60px;
			    background: #2ecc71;
			    border-radius: 50%;
			    display: flex;
			    align-items: center;
			    justify-content: center;
			    color: white;
			    font-size: 24px;
			    flex-shrink: 0;
			}
			.strength-name {
			    font-size: 20px;
			    font-weight: 700;
			    color: #1D2319;
			    margin-bottom: 10px;
			}
			.strength-desc {
			    font-size: 16px;
			    color: #666;
			    line-height: 1.6;
			}
			.source-note {
			    text-align: center;
			    margin-top: 40px;
			    font-size: 12px;
			    color: #95a5a6;
			    font-style: italic;
			}
			
			@media (max-width: 1200px) {
			    .strength-layout {
			        flex-direction: column;
			        gap: 60px;
			    }
			    .left-list, .right-list {
			        width: 100%;
			    }
			    .center-visual {
			        order: -1;
			    }
			}
			
			@media (max-width: 768px) {
			    .strength-container {
			        padding: 60px 15px;
			    }
			    .main-title {
			        font-size: 32px;
			    }
			    .sub-title {
			        font-size: 20px;
			    }
			    .core-visual {
			        width: 200px;
			        height: 200px;
			        font-size: 20px;
			    }
			}
			/* 加盟流程 */
			.process {
			    background: url(../img/process_bg.png) no-repeat;
			    background-size: cover;
			    background-position: center;
			   /* background-attachment: fixed; */
			    color: #333;
			    line-height: 1.6;
				padding-bottom: 20px;
			   /* min-height: 100vh; */
			}
			.process-container {
			    max-width: 1440px;
			    margin: 0 auto;
			    padding: 80px 0px;
			}
			.process-header {
			    text-align: center;
			    margin-bottom: 80px;
			}
			.process-title {
			    font-size: 42px;
			    color: #1D2319;
			    margin-bottom: 1s0px;
			    font-weight: 700;
			}
			.process-subtitle {
			    font-size: 24px;
			    color: #7f8c8d;
			}
			.process-flow {
			    display: grid;
			    grid-template-columns: repeat(4, 1fr);
			    gap: 108px;
			    position: relative;
			}
			.process-step {
			    text-align: center;
			    position: relative;
			    z-index: 2;
			}
			.step-number {
			    width: 80px;
			    height: 80px;
			    background: linear-gradient(135deg, #8EA268, #79956C);
			    border-radius: 50%;
			    display: flex;
			    align-items: center;
			    justify-content: center;
			    color: white;
			    font-size: 30px;
			    font-weight: bold;
			    margin: 0 auto 15px auto;
			    border: 3px solid white;
			    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
			    position: relative;
			    z-index: 3;
			}
			.step-name {
			    font-size: 30px;
			    font-weight: 700;
			    color: #1D2319;
			    margin-bottom: 8px;
			}
			.step-desc {
			    font-size: 24px;
			    color: #6C6F69;
			    line-height: 1.4;
			}
			.rectangle-connector {
			    position: absolute;
			    top: 38px;
			    left: 0px;
			    right: 0px;
			    height: 300px;
			   /* background: linear-gradient(to right, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1)); */
			    border: 2px solid #ddd;
			    border-left: none;
			    border-radius: 0 150px 150px 0;
			    z-index: 1;
			}
			
			
			.process-join{
				margin: 0px 0 50px
			}
			
			/* 中国养发服务行业规模 */
			.hair-industry-wrapper {
			    max-width: 1440px;
			    margin: 0 auto;
			   padding: 60px 20px;
			}
			.industry-block {
			    display: flex;
			    align-items: center;
			    gap: 60px;
			    margin-bottom: 80px;
			}
			.block-reversed {
			    flex-direction: row-reverse;
			}
			.content-part {
			    flex: 1;
			}
			.visual-part {
			    flex: 1;
			}
			.industry-visual {
			    width: 100%;
			    height: 400px;
			    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			    border-radius: 10px;
			    display: flex;
			    align-items: center;
			    justify-content: center;
			    color: white;
			    font-size: 18px;
			    font-weight: bold;
			}
			.block-heading {
			    font-size: 38px;
			    color: #1D2319;
			    margin-bottom: 20px;
			    font-weight: 700;
			    line-height: 1.3;
			}
			.block-subheading {
			    font-size: 18px;
			    color: #6C6F69;
			    margin-bottom: 30px;
			    font-weight: 500;
			}
			.industry-paragraph {
			    font-size: 18px;
			    color: #555;
			    margin-bottom: 30px;
			    line-height: 2;
			}
			.data-items {
			    margin-bottom: 30px;
			}
			.data-point {
			    font-size: 18px;
			    color: #555;
			    margin-bottom: 8px;
			    padding-left: 15px;
			    position: relative;
			}
			.data-point::before {
			    content: "•";
			    color: #79956C;
			    font-size: 18px;
			    position: absolute;
			    left: 0;
			}
			.pressure-section {
			    margin-bottom: 30px;
			}
			.pressure-heading {
			    font-size: 42px;
			    font-weight: 700;
				color: #1D2319;

			    margin-bottom: 15px;
			}
			.pressure-text {
			    font-size: 18px;
			    color: #6C6F69;
			    line-height: 1.7;
			    margin-bottom: 20px;
			}
			.percent-display {
				text-align: center;
			   /* background: #f8f9fa;
			    padding: 20px;
			    border-radius: 8px;
			    border-left: 4px solid #3498db; */
			    margin-bottom: 20px;
			}
			.percent-value {
			    font-size: 36px;
			    font-weight: 700;
			    color: #3498db;
			    margin-bottom: 10px;
			}
			.percent-caption {
			    font-size: 14px;
			    color: #666;
			}
			.reference-info {
			    font-size: 16px;
			    color: #6C6F69;
				text-align: right;
			    /* font-style: italic; */
			}
			.baldness-grid {
			    display: grid;
			    grid-template-columns: repeat(3, 1fr);
			    gap: 20px;
			    margin: 25px 0;
			}
			.grid-cell {
			    text-align: center;
			    padding: 20px 15px;
			    background: #f8f9fa;
			    border-radius: 8px;
			}
			.cell-value {
			    font-size: 28px;
			    font-weight: 700;
			    color: #3498db;
			    margin-bottom: 8px;
			}
			.cell-label {
			    font-size: 12px;
			    color: #666;
			    line-height: 1.4;
			}
			/*  */
			.main-dec {
			   
			  background: url(../img/main_pic.png) no-repeat;
			 background-size: cover;
			 height: 920px;
			    /* background-size: 200px 200px;
			    min-height: 100vh;
			    display: flex;
			    flex-direction: column;
			    justify-content: center;
			    align-items: center;
			    padding: 20px; */
			}
			
			.main-container {
			   /* max-width: 800px; */
			    width: 100%;
			   /* background-color: rgba(255, 255, 255, 0.85);
			    border-radius: 15px;
			    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
			    padding: 40px;
			    text-align: center;
			    position: relative;
			    overflow: hidden;
				color: #ffffff;
			}
			
			/* .main-container::before {
			    content: "";
			    position: absolute;
			    top: 0;
			    left: 0;
			    right: 0;
			    height: 5px;
			    background: linear-gradient(90deg, #8b7355, #c4a77d, #8b7355);
			} */
			
			.main-slogan {
			    font-size: 96px;
			    font-weight: bold;
			    color: #fff;
			    margin-bottom: 30px;
			    letter-spacing: 8px;
			    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
			    animation: textFadeIn 1.5s ease-out;
				padding-top: 160px;
			}
			.main-container .h-boide{
				width: 200px;
				height: 8px;
				background: #fff;
			}
			.company-name {
			    font-size: 30px;
			   /* font-weight: bold; */
			    color: #fff;
			    margin-bottom: 40px;
			    letter-spacing: 5px;
			    position: relative;
			    display: inline-block;
			    animation: textSlideIn 1s ease-out;
				padding-top: 40px;
			}
			
			/* .company-name::after {
			    content: "";
			    position: absolute;
			    bottom: -10px;
			    left: 10%;
			    width: 80%;
			    height: 2px;
			    background: linear-gradient(90deg, transparent, #fff, transparent);
			} */
			
			/* .company-description {
				text-align: center;
			    font-size: 18px;
			    color: #fff;
			    margin-bottom: 30px;
			    line-height: 1.8;
			    text-align: justify;
			    padding: 0 20px;
			    animation: textFadeInUp 1.5s ease-out 0.5s both;
			}
			
			.company-tagline {
			    font-size: 22px;
			    font-weight: bold;
			    color: #8b7355;
			    margin-top: 40px;
			    padding-top: 20px;
			    border-top: 1px dashed #c4a77d;
			    animation: textFadeIn 2s ease-out 1s both;
			} */
			
			.bg-decoration {
			    position: absolute;
			    width: 150px;
			    height: 150px;
			    opacity: 0.1;
			    z-index: 0;
			}
			
			.bg-decoration-top {
			    top: -50px;
			    left: -50px;
			    background: radial-gradient(circle, #8b7355 0%, transparent 70%);
			}
			
			.bg-decoration-bottom {
			    bottom: -50px;
			    right: -50px;
			    background: radial-gradient(circle, #c4a77d 0%, transparent 70%);
			}
			
			/* @keyframes textFadeIn {
			    from { opacity: 0; }
			    to { opacity: 1; }
			}
			
			@keyframes textSlideIn {
			    from { 
			        opacity: 0;
			        transform: translateY(-30px);
			    }
			    to { 
			        opacity: 1;
			        transform: translateY(0);
			    }
			}
			
			@keyframes textFadeInUp {
			    from { 
			        opacity: 0;
			        transform: translateY(20px);
			    }
			    to { 
			        opacity: 1;
			        transform: translateY(0);
			    }
			} */
			/* 门店服务 */
			.page-header {
			    text-align: center;
			    margin-bottom: 60px;
				margin-top: 80px;
			}
			
			.main-title {
			    font-size: 42px;
			    font-weight: bold;
			    color: #1D2319;
			    margin-bottom: 10px;
			}
			
			.sub-title {
			    font-size: 20px;
			    color: #6C6F69;
			}
			
			.services-row {
			    display: flex;
			    justify-content: center;
			    gap: 22px;
			    max-width: 1440px;
			    /* width: 100%; */
				margin:  0 auto;
			}
			
			.service-card {
			    display: flex;
			    flex-direction: column;
			    align-items: center;
			    text-align: center;
			   width: 272px;
			}
			
			/* .service-icon {
			    width: 140px;
			    height: 140px;
			    border-radius: 50%;
			    background: linear-gradient(135deg, #e8d0b3, #c4a77d);
			    margin-bottom: 20px;
			    display: flex;
			    align-items: center;
			    justify-content: center;
			    color: #5d4037;
			    font-size: 40px;
			} */
			
			.service-name {
			    font-size: 20px;
			    font-weight: bold;
			    color: #1D2319;
			    line-height: 1.4;
				padding: 20px 0 6px;
			}
			.service-card p{
				font-size: 16px;
			}
			/* 头趣产品 */
			.page-heading {
			    text-align: center;
			    margin-bottom: 40px;
			    width: 100%;
				padding-top: 80px;
			}
			
			.main-heading {
			    font-size: 36px;
			    font-weight: bold;
			    color: #333;
			    margin-bottom: 15px;
			}
			
			.sub-heading {
			    font-size: 20px;
			    color: #666;
			    line-height: 1.5;
			}
			
			.products-grid {
			    display: grid;
			    grid-template-columns: repeat(4, 1fr);
			    gap: 20px;
			    max-width: 1440px;
			    width: 100%;
			    margin-bottom: 40px;
				margin:  0 auto;
				padding-bottom: 20px;
			}
			
			.product-item {
			    display: flex;
			    flex-direction: column;
			    align-items: center;
			    text-align: center;
			}
			
			.product-image {
			    /* width: 200px;
			    height: 200px; */
			    
			    margin-bottom: 20px;
				border-radius: 12px;
			    overflow: hidden;
			   /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
			    transition: transform 0.3s ease;
			}
			
			.product-image img {
			    width: 100%;
			    height: 100%;
			    object-fit: cover;
			    transition: transform 0.3s ease;
			}
			
			.product-item:hover .product-image {
			    transform: scale(1.05);
			}
			
			.product-item:hover .product-image img {
			    transform: scale(1.1);
			}
			
			.product-name {
			    font-size: 20px;
			    font-weight: bold;
				color:#1D2319;
			}
			
			.footer-note {
				width: 1440px;
				margin:  0 auto;
			    text-align: center;
			    font-size: 16px;
			    color: #888;
			    max-width: 600px;
			    line-height: 1.6;
			    margin-top: 20px;
			    padding-top: 20px;
				padding-bottom: 80px;
			   /* border-top: 1px solid #eee; */
			}
			.news-cont{
				width: 1440px;
				margin:  0 auto;
				padding: 60px 0 ;
			}
			.new-de{
				width: 1440px;
				margin: 0 auto;
				padding-bottom: 80px;
				
			}
			.de-title{
				text-align: center;
				padding: 80px 0 40px;
			}
			.de-title h4{
				font-size: 30px;
				color: #1D2319;
				padding-bottom: 10px;
			}
			.de-title p{
				color: #6C6F69;
				font-size: 16px;
			}
			
			.de-text p{
				line-height: 2;
				font-size: 18;
				padding-top: 20px;
			}
			/* 响应式设计 */
			@media (max-width: 900px) {
			    .products-grid {
			        grid-template-columns: repeat(2, 1fr);
			        gap: 25px;
			    }
			}
			
			@media (max-width: 600px) {
			    .products-grid {
			        grid-template-columns: 1fr;
			        gap: 20px;
			    }
			    
			    .main-heading {
			        font-size: 30px;
			    }
			    
			    .sub-heading {
			        font-size: 18px;
			    }
			}
			
			/* 响应式设计 */
			@media (max-width: 1100px) {
			    .services-row {
			        gap: 30px;
			    }
			    
			    .service-card {
			        width: 170px;
			    }
			    
			    .service-icon {
			        width: 120px;
			        height: 120px;
			        font-size: 36px;
			    }
			}
			
			@media (max-width: 768px) {
			    .services-row {
			        flex-wrap: wrap;
			        gap: 35px;
			    }
			    
			    .service-card {
			        width: 160px;
			    }
			    
			    .main-title {
			        font-size: 28px;
			    }
			    
			    .sub-title {
			        font-size: 20px;
			    }
			}
			@media (max-width: 768px) {
			    .main-container {
			        padding: 30px 20px;
			    }
			    
			    .main-slogan {
			        font-size: 24px;
			        letter-spacing: 5px;
			    }
			    
			    .company-name {
			        font-size: 36px;
			    }
			    
			    .company-description {
			        font-size: 16px;
			        padding: 0 10px;
			    }
			    
			    .company-tagline {
			        font-size: 18px;
			    }
			}
			
			@media (max-width: 992px) {
			    .industry-block {
			        flex-direction: column;
			        gap: 40px;
			    }
			    .block-reversed {
			        flex-direction: column;
			    }
			    .baldness-grid {
			        grid-template-columns: repeat(2, 1fr);
			    }
			}
			
			@media (max-width: 576px) {
			    .hair-industry-wrapper {
			        padding: 40px 15px;
			    }
			    .block-heading {
			        font-size: 28px;
			    }
			    .industry-visual {
			        height: 300px;
			    }
			    .baldness-grid {
			        grid-template-columns: 1fr;
			    }
			    .cell-value {
			        font-size: 24px;
			    }
			}
			
			@media (max-width: 992px) {
			    .process-flow {
			        grid-template-columns: repeat(2, 1fr);
			        gap: 30px;
			    }
			    .rectangle-connector {
			        display: none;
			    }
			}
			
			@media (max-width: 576px) {
			    .process-container {
			        padding: 60px 15px;
			    }
			    .process-title {
			        font-size: 36px;
			    }
			    .process-subtitle {
			        font-size: 20px;
			    }
			    .process-flow {
			        grid-template-columns: 1fr;
			        gap: 25px;
			    }
			    .step-number {
			        width: 50px;
			        height: 50px;
			        font-size: 18px;
			    }
			}
			@media (max-width: 992px) {
			    .content-wrapper {
			        flex-direction: column;
			        gap: 40px;
			    }
			    .image-section, .text-section {
			        width: 100%;
			    }
			    .industry-image {
			        height: 300px;
			    }
			}
			
			@media (max-width: 576px) {
			    .container {
			        padding: 40px 15px;
			    }
			    .main-title {
			        font-size: 28px;
			    }
			    .description {
			        font-size: 16px;
			    }
			    .stats-grid {
			        grid-template-columns: 1fr;
			        gap: 20px;
			    }
			    .stat-number {
			        font-size: 36px;
			    }
			    .stat-unit {
			        font-size: 20px;
			    }
			}
			
			@media (max-width: 768px) {
			    .nav-bar {
			        gap: 30px;
			    }
			    .nav-item {
			        font-size: 24px;
			        padding: 8px 15px;
			    }
			}
			
			@media (max-width: 576px) {
			    .nav-bar {
			        flex-direction: column;
			        gap: 15px;
			        align-items: center;
			    }
			    .nav-item {
			        font-size: 20px;
			    }
			    .nav-item.active::after {
			        bottom: -12px;
			    }
			}
			
			@media (max-width: 768px) {
			    .recruitment-wrapper {
			        padding: 60px 30px;
			    }
			    .recruitment-title {
			        font-size: 42px;
			    }
			    .recruitment-subtitle {
			        font-size: 22px;
			    }
			    .contact-item {
			        font-size: 18px;
			    }
			}
			
			@media (max-width: 576px) {
			    .recruitment-wrapper {
			        padding: 40px 20px;
			    }
			    .recruitment-title {
			        font-size: 36px;
			    }
			    .recruitment-subtitle {
			        font-size: 20px;
			    }
			    .contact-item {
			        font-size: 16px;
			    }
			    .contact-label {
			        display: block;
			        margin-bottom: 5px;
			        min-width: auto;
			    }
			}
			
			@media (max-width: 992px) {
			    .welfare-row {
			        flex-wrap: wrap;
			        justify-content: center !important;
			        gap: 30px;
			    }
			    .welfare-item {
			        width: 200px;
			    }
			}
			
			@media (max-width: 576px) {
			    .welfare-item {
			        width: 100%;
			        max-width: 280px;
			    }
			    .welfare-title {
			        font-size: 32px;
			    }
			    .welfare-slogan {
			        font-size: 18px;
			    }
			}
			/* 头趣时空 */
			/* .time-container{
				margin: 0;
			} */
			.time-container .factory-content{
				left: 5%;
			}
			@media screen and (max-width: 768px) {
			    .timeline::after {
			        left: 31px;
			    }
			    .timeline-item {
			        width: 100%;
			        padding-left: 70px;
			        padding-right: 25px;
			    }
			    .timeline-item:nth-child(even) {
			        left: 0;
			    }
			    .timeline-item:nth-child(odd)::after,
			    .timeline-item:nth-child(even)::after {
			        left: 21px;
			    }
			    .timeline-item:nth-child(odd) .timeline-content::before,
			    .timeline-item:nth-child(even) .timeline-content::before {
			        border-right-color: white;
			        border-left-color: transparent;
			        left: -20px;
			        right: auto;
			    }
			}
			
			
			/* 响应式设计 */
			@media (max-width: 968px) {
			    .factory-layout {
			        grid-template-columns: 1fr;
			    }
			    
			    .factory-image {
			        height: 300px;
			        order: -1;
			    }
			    
			    .factory-content {
			        padding: 40px 30px;
			    }
			}
			
			@media (max-width: 768px) {
			    .factory-title {
			        font-size: 28px;
			    }
			    
			    .factory-subtitle {
			        font-size: 18px;
			    }
			    
			    .factory-text {
			        font-size: 15px;
			    }
			}
			
			@media (max-width: 480px) {
			    body {
			        padding: 30px 15px;
			    }
			    
			    .factory-content {
			        padding: 30px 20px;
			    }
			    
			    .factory-title {
			        font-size: 24px;
			    }
			    
			    .factory-subtitle {
			        font-size: 16px;
			    }
			}
			/* 响应式设计 */
			@media (max-width: 968px) {
			    .culture-grid {
			        grid-template-columns: repeat(2, 1fr);
			    }
			}
			
			@media (max-width: 768px) {
			    .culture-grid {
			        grid-template-columns: 1fr;
			    }
			    
			    .culture-title h1 {
			        font-size: 36px;
			    }
			    
			    .culture-subtitle {
			        font-size: 26px;
			    }
			    
			    .culture-item {
			        height: 350px;
			    }
			    
			    .culture-main-text {
			        font-size: 36px;
			    }
			    
			    .culture-middle-text {
			        font-size: 24px;
			    }
			}
			
			@media (max-width: 480px) {
			    body {
			        padding: 30px 15px;
			    }
			    
			    .culture-title h1 {
			        font-size: 32px;
			    }
			    
			    .culture-subtitle {
			        font-size: 22px;
			    }
			    
			    .culture-item {
			        height: 300px;
			        padding: 30px 20px;
			    }
			    
			    .culture-main-text {
			        font-size: 32px;
			    }
			    
			    .culture-middle-text {
			        font-size: 20px;
			    }
			    
			    .culture-desc-text {
			        font-size: 16px;
			    }
			}
			/* 响应式设计 */
			@media (max-width: 968px) {
			    .concept-layout {
			        grid-template-columns: 1fr;
			    }
			    
			    .concept-image {
			        height: 300px;
			        order: -1;
			    }
			    
			    .concept-content {
			        padding: 40px 30px;
			    }
			}
			
			@media (max-width: 768px) {
			    .concept-grid {
			        grid-template-columns: 1fr;
			        gap: 20px;
			    }
			    
			    .content-title {
			        font-size: 28px;
			    }
			    
			    .concept-value {
			        font-size: 16px;
			    }
			    
			    .slogan-value {
			        font-size: 18px;
			    }
			    
			    .year-text {
			        font-size: 20px;
			    }
			}
			
			@media (max-width: 480px) {
			    body {
			        padding: 30px 15px;
			    }
			    
			    .concept-content {
			        padding: 30px 20px;
			    }
			    
			    .content-title {
			        font-size: 24px;
			    }
			}
			/* 响应式设计 */
			@media (max-width: 768px) {
			    .brand-header-section {
			        height: 300px;
			    }
			    
			    .page-main-title {
			        font-size: 36px;
			    }
			    
			    .story-content-section {
			        padding: 40px 30px;
			    }
			    
			    .level1-title {
			        font-size: 26px;
			    }
			    
			    .level2-title {
			        font-size: 20px;
			    }
			}
			
			@media (max-width: 480px) {
			    .brand-header-section {
			        height: 250px;
			    }
			    
			    .page-main-title {
			        font-size: 28px;
			    }
			    
			    .story-content-section {
			        padding: 30px 20px;
			    }
			    
			    .level1-title {
			        font-size: 22px;
			    }
			}
			
			
			/* 响应式设计 */
			@media (max-width: 1024px) {
			    .footer-nav {
			        grid-template-columns: repeat(2, 1fr);
			    }
			    
			    .footer-main {
			        gap: 40px;
			    }
			}
			
			@media (max-width: 768px) {
			    .footer-main {
			        grid-template-columns: 1fr;
			        gap: 30px;
			    }
			    
			    .footer-nav {
			        grid-template-columns: 1fr;
			        gap: 25px;
			    }
			    
			    .wechat-codes {
			        flex-wrap: wrap;
			    }
			    
			    .footer-bottom {
			        flex-direction: column;
			        text-align: center;
			    }
			    
			    .main-content h1 {
			        font-size: 2rem;
			    }
			    
			    .main-content p {
			        font-size: 1rem;
			    }
			}
			
			/* 响应式设计 */
			@media (max-width: 1024px) {
				.news-grid {
				    grid-template-columns: repeat(2, 1fr);
				}
			    .advantages-layout {
			        grid-template-areas: 
			            "center center"
			            "left right"
			            "bottom bottom";
			        grid-template-columns: 1fr 1fr;
			    }
				.services-grid {
				    grid-template-columns: repeat(3, 1fr);
				}
			}
			
			@media (max-width: 480px) {
				.hero-title {
				    font-size: 2rem;
				}
				
				.hero-subtitle {
				    font-size: 1.2rem;
				}
				
				.consult-btn {
				    padding: 12px 30px;
				    font-size: 1rem;
				}
				.header-buttons {
				    flex-direction: column;
				    width: 100%;
				}
				
				.header-btn {
				    text-align: center;
				    justify-content: center;
				}
			    .services-grid {
			        grid-template-columns: 1fr;
			    }
			}
			/* 响应式设计 */
			@media (max-width: 768px) {
				.hero-title {
				    font-size: 2.5rem;
				}
				
				.hero-subtitle {
				    font-size: 1.4rem;
				}
				
				.consult-btn {
				    padding: 14px 35px;
				    font-size: 1.1rem;
				}
				.news-header {
				    flex-direction: column;
				    gap: 30px;
				    text-align: center;
				}
				
				.section-title h1::after {
				    left: 50%;
				    transform: translateX(-50%);
				}
				
				.header-buttons {
				    justify-content: center;
				}
				
				.news-grid {
				    grid-template-columns: 1fr;
				}
				
				.section-title h1 {
				    font-size: 32px;
				}
				.form-row {
				    grid-template-columns: 1fr;
				}
				
				.form-header h1 {
				    font-size: 28px;
				}
				
				.form-content {
				    padding: 30px 20px;
				}
				.advantages-layout {
				    grid-template-areas: 
				        "center"
				        "left"
				        "right"
				        "bottom";
				    grid-template-columns: 1fr;
				}
				
				.section-header h1 {
				    font-size: 36px;
				}
				
				.advantage-card {
				    padding: 25px 20px;
				}
				.nav-content {
					flex-direction: column;
					text-align: center;
				}
				nav ul {
					margin-top: 20px;
					flex-wrap: wrap;
					justify-content: center;
				}
				nav ul li {
					margin: 0 10px 10px;
				}
				.nav-right {
					margin-top: 20px;
				}
				.search-bar input {
					width: 150px;
				}
				.search-bar input:focus {
					width: 180px;
				}
				.intro-content {
				    flex-direction: column;
				}
				
				.services-grid {
				    grid-template-columns: repeat(2, 1fr);
				}
				.top-row {
				    grid-template-columns: 1fr;
				}
				
				.bottom-row {
				    grid-template-columns: 1fr;
				}
				
				.service-item {
				    height: 250px;
				}
				
				.services-title {
				    font-size: 28px;
				}
			}