/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 01 2025 | 00:21:22 */
.template-1 {
        
		* { margin: 0; padding: 0; box-sizing: border-box; }
        * { 
            /* 
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif; 
            color: #333; 
			*/
			font-size:22px;
			line-height: 1.6; 
            overflow-x: hidden;
        }
        /* ===== 响应式基础 ===== */
        section { 
            min-height: 100vh; 
            padding: 15% 10%;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            z-index: 2;
        }

        /* 响应式断点 */
        @media (max-width: 1024px) { /* 平板 */
            section { padding: 20% 8%; }
        }
        
        @media (max-width: 768px) { /* 手机 */
            section { padding: 25% 5%; min-height: auto; }
            .section-title { font-size: 2.2rem !important; }
        }

        /* ===== 各区域独特样式 ===== */
        
        /* 首页：全屏视差背景 */
        #home { 
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                        url('https://jp.ceramiccatalyticfilter.com/wp-content/uploads/2025/03/1741158718-c3a99783-58c0-49ba-9ada-a900e8ac4a0f.jpg') fixed;
            background-size: cover;
            text-align: center;
            color: white;
        }
        #home .content-container { 
			background: rgba(255,255,255, 0.85); 
            padding: 60px 40px;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
            animation: fadeUp 1s ease-out forwards;
        }
        
        /* 材料部分：左侧悬浮图文 */
        #materials { 
            background-color: #f0f7e9;
        }
        .floating-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        .floating-img {
            flex: 1;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            overflow: hidden;
            animation: float 6s ease-in-out infinite;
        }
        .floating-text {
            flex: 1;
        }
        @media (max-width: 768px) {
            .floating-content { flex-direction: column; }
        }

        /* 技术部分：卡片式布局 */
        #technology {
            background: linear-gradient(135deg, #1a3a27 0%, #2c6e49 100%);
            color: white;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .tech-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: transform 0.3s;
        }
        .tech-card:hover {
            transform: translateY(-10px);
        }

        /* 效益部分：时间轴设计 */
        #benefits {
            background: linear-gradient(to right, #e3f2e8 50%, #d4e9dd 50%);
        }
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
        }
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background: #8cb369;
            transform: translateX(-50%);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            width: calc(50% - 40px);
        }
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        .timeline-item:nth-child(even) {
            left: calc(50% + 40px);
        }
        @media (max-width: 768px) {
            .timeline::before { left: 30px; }
            .timeline-item { width: 100%; left: 60px !important; }
        }

        /* 评价部分：网格布局 */
        #testimonials {
            background: url('https://images.unsplash.com/photo-1527525443983-6e60c75fff29?ixlib=rb-4.0.3&auto=format&fit=crop&w=2126&q=80') center/cover;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .testimonial-card {
            background: rgba(255, 255, 255, 0.9);
            padding: 30px;
            border-radius: 15px;
            position: relative;
        }
        .testimonial-card::before {
            content: "";
            font-size: 120px;
            position: absolute;
            top: -40px;
            left: 10px;
            color: rgba(44, 110, 73, 0.2);
        }
        @media (max-width: 768px) {
            .testimonial-grid { grid-template-columns: 1fr; }
        }

        /* 互动部分：计算器模块 */
        #interactive {
            background: linear-gradient(45deg, #a8d5ba 0%, #76c7c0 100%);
        }
        .calculator {
            max-width: 500px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        /* 动画效果 */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        /* 通用样式 */
        .section-title {
            font-size: 2.8rem;
            color: #2c6e49;
            margin-bottom: 30px;
            font-weight: 700;
        }
        #technology .section-title, 
        
        .btn {
            display: inline-block;
            background: #2c6e49;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s;
            border: 2px solid #2c6e49;
        }
        .btn:hover {
            background: transparent;
            color: #2c6e49;
        }
        #technology .btn:hover { color: white; border-color: white; }
	
		.blend-effect {
		  position: relative;
		  filter: blur(3px);
		  mix-blend-mode: multiply; /* 混合模式增强融合 */
		  opacity: 0.9;
		}

		.blend-effect::after {
		  content: "";
		  position: absolute;
		  top: 5px;
		  left: 5px;
		  right: -5px;
		  bottom: -5px;
		  background: inherit;
		  filter: blur(3px) contrast(20%);
		  z-index: -1;
		}
		.edge-blur {
		  position: relative;
		  overflow: hidden;
		}

		.edge-blur::after {
		  content: "";
		  position: absolute;
		  top: 5px;
		  left: 5px;
		  right: -5px;
		  bottom: -5px;
		  background: inherit;
		  filter: blur(10px);
		  z-index: -1;
		}
	
}



/***********************
 * 以下为自定义附加样式
 ***********************/

/*隐藏文章页下面的Tag*/
.meta_bottom {
	display:none !important;
}


.dt-container{
	max-width:1600px !important;
}

.dt_slider .dt_slider-content {
	max-width:110rem !important;
}

.tag-cloud-link{
	width:150px;
}


.menu-item-1151 > a,
.menu-item-1152 > a,
.menu-item-1149 > a,
.menu-item-1155 > a,
.menu-item-1154 > a,
.menu-item-1150 > a,
.menu-item-1153 > a{
  cursor: default;  /* 禁用鼠标指针的点击手势 */
  color: #666;      /* 调整颜色以区别于可点击项 */
	pointer-events: none !important;
}

.dt_footer--one {
	margin-top:0px !important;
}
/* 页面模式1的样式 */
.template-1 {
        
		* { margin: 0; padding: 0; box-sizing: border-box; }
        * { 
            /* 
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif; 
            color: #333; 
			*/
			font-size:22px;
			line-height: 1.6; 
            overflow-x: hidden;
			overflow-y: hidden;
        }
        /* ===== 响应式基础 ===== */
        section { 
            /* min-height: 100vh; */
            padding: 5% 10%;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            z-index: 2;
        }

        /* 响应式断点 */
        @media (max-width: 1024px) { /* 平板 */
            section { padding: 20% 8%; }

		}
        
        @media (max-width: 768px) { /* 手机 */
            section { padding: 25% 5%; min-height: auto; }
            .section-title { font-size: 2.2rem !important; }
        }
	
		.content-container{
			text-align:center;
		}

        /* ===== 各区域独特样式 ===== */
        
        /* 首页：全屏视差背景 */
        #home { 
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
            background-size: cover;
            text-align: center;
            color: white;
        }
        #home .content-container { 
			background: rgba(255,255,255, 0.85); 
            padding: 60px 40px;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
            animation: fadeUp 1s ease-out forwards;
        }
        
        /* 材料部分：左侧悬浮图文 */
        #materials { 
            background-color: #f0f7e9;
        }
        .floating-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        .floating-img {
            flex: 1;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            overflow: hidden;
            animation: float 6s ease-in-out infinite;
        }
        .floating-text {
            flex: 1;
        }
        @media (max-width: 768px) {
            .floating-content { flex-direction: column; }
        }

        /* 技术部分：卡片式布局 */
        #technology {
            background: linear-gradient(135deg, #1a3a27 0%, #2c6e49 100%);
            color: white;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .tech-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: transform 0.3s;
        }
        .tech-card:hover {
            transform: translateY(-10px);
        }

        /* 效益部分：时间轴设计 */
        #benefits {
            background: linear-gradient(to right, #e3f2e8 50%, #d4e9dd 50%);
        }
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
        }
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background: #8cb369;
            transform: translateX(-50%);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            width: calc(50% - 40px);
        }
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        .timeline-item:nth-child(even) {
            left: calc(50% + 40px);
        }
        @media (max-width: 768px) {
            .timeline::before { left: 30px; }
            .timeline-item { width: 100%; left: 60px !important; }
        }

        /* 评价部分：网格布局 */
        #testimonials {
            background: url('https://images.unsplash.com/photo-1527525443983-6e60c75fff29?ixlib=rb-4.0.3&auto=format&fit=crop&w=2126&q=80') center/cover;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .testimonial-card {
            background: rgba(255, 255, 255, 0.9);
            padding: 30px;
            border-radius: 15px;
            position: relative;
        }
        .testimonial-card::before {
            content: """;
            font-size: 120px;
            position: absolute;
            top: -40px;
            left: 10px;
            color: rgba(44, 110, 73, 0.2);
        }
        @media (max-width: 768px) {
            .testimonial-grid { grid-template-columns: 1fr; }
        }

        /* 互动部分：计算器模块 */
        #interactive {
            background: linear-gradient(45deg, #a8d5ba 0%, #76c7c0 100%);
        }
        .calculator {
            max-width: 500px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        /* 动画效果 */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        /* 通用样式 */
        .section-title {
            font-size: 2.8rem;
            color: #2c6e49;
            margin-bottom: 30px;
            font-weight: 700;
        }
        #technology .section-title, 
        
        .btn {
            display: inline-block;
            background: #2c6e49;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s;
            border: 2px solid #2c6e49;
        }
        .btn:hover {
            background: transparent;
            color: #2c6e49;
        }
        #technology .btn:hover { color: white; border-color: white; }
	
		.blend-effect {
		  position: relative;
		  filter: blur(3px);
		  mix-blend-mode: multiply; /* 混合模式增强融合 */
		  opacity: 0.9;
		}

		.blend-effect::after {
		  content: "";
		  position: absolute;
		  top: 5px;
		  left: 5px;
		  right: -5px;
		  bottom: -5px;
		  background: inherit;
		  filter: blur(3px) contrast(20%);
		  z-index: -1;
		}
		.edge-blur {
		  position: relative;
		  overflow: hidden;
		}

		.edge-blur::after {
		  content: "";
		  position: absolute;
		  top: 5px;
		  left: 5px;
		  right: -5px;
		  bottom: -5px;
		  background: inherit;
		  filter: blur(10px);
		  z-index: -1;
		}
	
	/* FAQ版块样式 */
	.eco-faq-section {
	  background: linear-gradient(to bottom, #f0f7e9, #e3f2e8);
	  padding: 10px 5%;
	  border-radius: 20px;
	  margin: 50px auto;
	  box-shadow: 0 10px 30px rgba(44, 110, 73, 0.15);
	  
	}

	.eco-faq-section > .container{
	  text-align:center;
	  width:100%;
	}
	.faq-categories {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 15px;
	  margin: 30px 0 40px;
	  justify-content: center;
	}

	.category-btn {
	  background: white;
	  border: 2px solid #8cb369;
	  color: #2c6e49;
	  padding: 10px 25px;
	  border-radius: 50px;
	  cursor: pointer;
	  font-weight: 600;
	  transition: all 0.3s;
	}

	.category-btn.active,
	.category-btn:hover {
	  background: #2c6e49;
	  color: white;
	}

	.faq-container {
	  margin:0 auto;
	  
	}

	.faq-item {
	  background: white;
	  border-radius: 15px;
	  margin-bottom: 20px;
	  overflow: hidden;
	  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	}

	.faq-question {
	  padding: 20px 25px;
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  cursor: pointer;
	  font-weight: 600;
	  color: #1a3a27;
	  transition: background 0.3s;
	}

	.faq-question:hover {
	  background-color: #f8faf7;
	}

	.faq-question i {
	  transition: transform 0.3s;
	}

	.faq-question.active i {
	  transform: rotate(180deg);
	}

	.faq-answer {
	  max-height: 0;
	  overflow: hidden;
	  transition: max-height 0.5s ease;
	  border-top: 1px dashed #d4e9dd;
	}

	.faq-answer > div {
	  padding: 25px;
	}

	.material-images {
	  display: flex;
	  gap: 20px;
	  margin-top: 20px;
	}

	.material-images img {
	  width: 45%;
	  border-radius: 10px;
	  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	}

	.cert-badges {
	  display: flex;
	  gap: 30px;
	  margin: 20px 0;
	}

	.badge {
	  text-align: center;
	}

	.badge img {
	  width: 80px;
	  height: 80px;
	  object-fit: contain;
	}

	.cert-video {
	  margin-top: 30px;
	}

	.cert-video video {
	  width: 100%;
	  border-radius: 15px;
	}
}	

.contact-form7 {
	.two-column-row {
    	overflow: hidden; /* Clears floats */
	}

	.column-field {
		float: left;
		width: 48%; /* Adjust for spacing */
		padding-right: 2%; /* Add some spacing between fields */
		box-sizing: border-box; /* Include padding in width calculation */
	}

	.column-field:last-child {
		padding-right: 0; /* Remove right padding for the last field in the row */
 }
}

.template-2{
	  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        section {
            min-height: 100vh;
            padding: 80px 15%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            transition: all 0.5s ease;
        }
        
        .content-box {
            background-color: rgba(255, 255, 255, 0.85);
            padding: 40px;
            border-radius: 15px;
            
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }
        
        h1, h2 {
            color: #2c6e49;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        h1 {
            font-size: 3.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }
        
        h2 {
            font-size: 2.5rem;
            border-bottom: 3px solid #8cb369;
            padding-bottom: 10px;
            display: inline-block;
        }
        
        p {
            font-size: 2.0rem;
            margin-bottom: 20px;
            color: #333;
            line-height: 1.8;
        }
        
        ul {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        
        li {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .icon-list li {
            list-style: none;
            margin-left: 0;
            display: flex;
            align-items: center;
        }
        
        .icon-list i {
            color: #8cb369;
            margin-right: 15px;
            font-size: 1.5rem;
        }
        
        .nav-dots {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
        }
        
        .dot {
            display: block;
            width: 14px;
            height: 14px;
            border: 2px solid #2c6e49;
            border-radius: 50%;
            margin: 15px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background-color: #2c6e49;
        }
        
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2.5rem;
            color: #fff;
            animation: bounce 2s infinite;
            cursor: pointer;
            z-index: 10;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
            40% {transform: translateY(-20px) translateX(-50%);}
            60% {transform: translateY(-10px) translateX(-50%);}
        }
        
        footer {
            background-color: #1d3a27;
            color: #fff;
            text-align: center;
            padding: 25px;
            font-size: 1.1rem;
        }
        
        .contact-btn {
            display: inline-block;
            background-color: #2c6e49;
            color: white;
            padding: 15px 35px;
            font-size: 1.2rem;
            text-decoration: none;
            border-radius: 50px;
            margin-top: 20px;
            transition: all 0.3s ease;
            border: 2px solid #2c6e49;
            font-weight: 600;
        }
        
        .contact-btn:hover {
            background-color: transparent;
            color: #2c6e49;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            section {
                padding: 60px 10%;
            }
            
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 50px 5%;
            }
            
            .content-box {
                padding: 30px;
            }
            
            h1 {
                font-size: 2.3rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
        }
}

.template-3 {
	.btn {
            display: inline-block;
            background: #2c6e49;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s;
            border: 2px solid #2c6e49;
        }
        .btn:hover {
            background: transparent;
            color: #2c6e49;
        }
}

.template-4{
	:root {
            /* 新蓝绿色系 */
            --eco-primary: #48C9B0;    /* 生态绿 */
            --eco-secondary: #5DADE2;  /* 海洋蓝 */
            --eco-accent: #D4AC0D;     /* 大地金 */
            --eco-light: #F4F6F7;      /* 清新白 */
            --eco-dark: #145A32;       /* 森林深绿 */
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif; 
            color: #333; line-height: 1.6;
            background-color: #F0F7E9;
        }
        
        /* ===== 全局样式 ===== */
        section { 
            min-height: 100vh; 
            padding: 8% 5%;
            position: relative;
            overflow: hidden;
        }
        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            z-index: 2;
        }
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 30px;
            font-weight: 700;
            position: relative;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--eco-accent);
        }

        /* ===== 区块1：全屏视差首页（蓝绿渐变） ===== */
        #hero {
            background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-secondary) 100%);
            color: white;
            display: flex;
            align-items: center;
            text-align: center;
        }
        #hero .section-title {
            color: white;
            font-size: 4rem;
            text-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        #hero .section-title:after {
            left: 50%;
            transform: translateX(-50%);
            background: var(--eco-light);
        }
        .video-container {
            width: 80%;
            height: 400px;
            margin: 40px auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
            position: relative;
        }
        .video-placeholder {
            background: linear-gradient(45deg, #1a3a27, #4c956c);
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ===== 区块2：材料创新（悬浮卡片+不对称布局） ===== */
        #material-innovation {
            background-color: var(--eco-light);
        }
        .asymmetrical-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            align-items: center;
        }
        .card-stack {
            position: relative;
            height: 500px;
        }
        .floating-card {
            position: absolute;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(140, 179, 105, 0.2);
            transition: all 0.4s;
        }
        .floating-card:nth-child(1) {
            width: 80%;
            top: 0;
            left: 0;
            z-index: 3;
        }
        .floating-card:nth-child(2) {
            width: 70%;
            top: 100px;
            right: 0;
            z-index: 2;
            transform: rotate(-3deg);
        }
        .floating-card:nth-child(3) {
            width: 75%;
            top: 220px;
            left: 10%;
            z-index: 1;
            transform: rotate(2deg);
        }
        .floating-card:hover {
            transform: translateY(-15px) rotate(0deg);
            z-index: 4;
        }

        /* ===== 区块3：技术演进（时间轴+视频嵌入） ===== */
        #tech-timeline {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                        url('https://images.unsplash.com/photo-1489549132488-d00b7eee80f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
            color: white;
        }
        .timeline-container {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
        }
        .timeline-bar {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: rgba(255,255,255,0.3);
        }
        .timeline-item {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 40px;
            width: calc(50% - 30px);
            position: relative;
            border: 1px solid var(--eco-primary);
        }
        .timeline-video {
            width: 100%;
            height: 200px;
            background: rgba(72, 201, 176, 0.2);
            border-radius: 12px;
            margin-top: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ===== 区块4：产品展示（3D模型+参数对比表） ===== */
        #product-showcase {
            background: linear-gradient(45deg, #e3f2e8 0%, #d4e9dd 100%);
        }
        .product-comparison {
            display: grid;
            
            gap: 40px;
            align-items: center;
        }
        .model-viewer {
            height: 500px;
            background: linear-gradient(120deg, var(--eco-light), #ffffff);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        .spec-table {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .spec-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            border-bottom: 1px solid #eee;
            padding: 15px 0;
        }
        .spec-header {
            font-weight: 700;
            color: var(--eco-dark);
        }

        /* ===== 区块5：数据仪表盘（动态图表+地图可视化） ===== */
        #impact-dashboard {
            background-color: #1a3a27;
            color: white;
        }
        .dashboard-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 50px;
        }
        .chart-container {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid var(--eco-primary);
        }
        .world-map {
            height: 400px;
            
            border-radius: 15px;
            position: relative;
        }
        .map-marker {
            position: absolute;
            width: 16px;
            height: 16px;
            background: var(--eco-accent);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 0 8px rgba(212, 172, 13, 0.3);
        }

        /* 更多区块样式...（每个区块独立设计） */

        /* ===== 响应式设计 ===== */
        @media (max-width: 1024px) {
            .asymmetrical-grid, .product-comparison, .dashboard-grid {
                grid-template-columns: 1fr;
            }
            .card-stack {
                height: 400px;
                margin-bottom: 100px;
            }
        }
        @media (max-width: 768px) {
            .section-title { font-size: 2.2rem; }
            .video-container { height: 300px; }
        }
}