        /* 按钮容器 */
			.index-icon {
				position: fixed;
				right: 20px;
				top: 50%;
				transform: translateY(-50%);
				z-index: 1002;
				display: flex;
				flex-direction: column;
				gap: 16px;
			}

			.contact-icon1 {
				width: 40px;
				height: 40px;
				border-radius: 50%;
				background: white;
				border: 1px solid #e0e0e0;
				box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
				display: flex;
				align-items: center;
				justify-content: center;
				cursor: pointer;
				transition: transform 0.2s;
			}

			.contact-icon1:hover {
				transform: scale(1.1);
			}

			/* 图片样式：适配圆形容器 */
			.contact-icon1 img {
				width: 24px;
				height: 24px;
				display: block;
				object-fit: contain;
			}






			/* 居中弹窗样式 */
			.bubble {
				position: fixed;
				top: 50%;
				left: 50%;
				transform: translate(-20%, -30%);
				width: 280px;
				/* 可适当加宽 */
				padding: 20px;
				background: white;
				border-radius: 12px;
				box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
				z-index: 1001;
				display: none;
				opacity: 0;
				transition: opacity 0.3s ease;
			}

			.bubble.show {
				display: block;
				opacity: 1;
			}

			/* 移除箭头（不再需要） */
			.bubble::before {
				display: none !important;
			}

			/* 其他样式保持不变 */
			.static-info {
				font-size: 14px;
				line-height: 1.5;
				color: #333;
			}

			.bubble-form label {
				display: block;
				font-size: 13px;
				margin-top: 12px;
				color: #444;
			}

			.bubble-form input,
			.bubble-form textarea {
				width: 100%;
				padding: 8px 10px;
				margin-top: 4px;
				border: 1px solid #ccc;
				border-radius: 6px;
				font-size: 13px;
				box-sizing: border-box;
			}

			.bubble-form textarea {
				height: 70px;
				resize: vertical;
			}

			.bubble-form button {
				margin-top: 16px;
				width: 100%;
				padding: 8px;
				background-color: #25d366;
				color: white;
				border: none;
				border-radius: 6px;
				cursor: pointer;
				font-size: 14px;
				font-weight: bold;
			}
        
        
        
        .index-image-section {
          width: 100%;
          padding: 0 16px;
          margin: 32px 0;  
        }

        .image-container {
          width: 100%;
          height: auto;
          border-radius: 8px;
          overflow: hidden; 
        }

        .image-container img {
          width: 100%;
          height: auto;
          display: block;
          object-fit: cover;
        }
        
        .taiho-container {
            width: 100%;
            min-height: 600px;
            padding: 50px 80px; 
            position: relative;
            overflow: hidden;
        }

        /* TAIHO logo */
        .taiho-logo {
            font-size: 78px;
            font-weight: 900;
            color: #EF1515;  
            margin-bottom: 20px;
        }

        /* 公司名称 */
        .company-name {
            font-size: 28px;
            font-weight: 600;
            color: #333333;
            margin-bottom: 15px;
        }

        /* 介绍文本 */
        .intro-text {
            font-size: 18px;
            color: #666666;
            line-height: 1.6;
            max-width: 600px;
            margin-bottom: 25px;
        }

        /* 查看更多按钮 */
        .view-more-btn {
            background-color:#9FCD14;
            color: #ffffff;
            border: none;
            padding: 12px 24px;
            border-radius: 4px;
            font-size: 18px;
            font-weight: 900;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .view-more-btn:hover {
            color: #9CC814;
            background-color: #fff;
        }

        /* 数据统计区域 */
        .stats-group {
            position: absolute;
            top: 80px;
            right: 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 40px;
            font-weight: 700;
            color: #333333;
        }
        .stat-label {
            font-size: 14px;
            color: #666666;
            margin-top: 5px;
        }
       .index_products {
            padding: 50px;
            margin: 0 auto;
            max-width: 1600px;
            display: flex;
            flex-direction: column;
           gap: 80px; /* 项目间距 */
            height: auto;
        }

    .product-item {
      display: flex;
      align-items: center;  
      width: 100%;
      gap: 50px; /* 文字与图片间距（可选） */
    }

    .product-content {
      width: 50%;
      display: flex;
      flex-direction: column;
      gap: 12px; /* 内部元素间距 */
    }

    /* === 标题：带滚动墨水特效 === */
    .product-text1 {
      font-size:48px; /* 响应式字体 */
      letter-spacing: -0.01em;
      line-height: 1.1;
      margin: 0;

      /* 半透明灰色底色 */
      color: rgb(182, 182, 182, 0.2);
      background: linear-gradient(to right, #000, #000) no-repeat;
      -webkit-background-clip: text;
      background-clip: text;
      background-size: 0%;
      background-position: left; 
    }

    /* === 副标题 & 描述：正常白色文字 === */
    .product-subtitle {
      font-size: 28px;
      font-weight: 500;
      color: #666;
      margin: 0;
    }

    .product-description {
      font-size: 24px;
      color: #aaa;
      margin: 0;
      line-height: 1.5;
    }

    /* === 按钮区域 === */
    .product-buttons {
      display: flex;
      gap: 16px;
      margin-top: 12px;
    }

    .product-buttons a {
      padding: 10px 24px;
      border: 1px solid #E72518;
      background: #E72518 ;
      color: white;
      font-family: inherit;
      font-weight: 600;
      font-size: 20px;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.2s;
    }

    .product-buttons a:hover {
      color: #E72518;
	  background: #ffffff;
    }

    /* === 图片：50% 宽度，保持方形 === */
    .product-image {
      width: 50%; 
      object-fit: cover;
      border-radius: 8px;
    }
    
    
    
      
        /* 响应式适配（小屏幕调整布局） */
        @media (max-width: 992px) {
            .taiho-logo {
            font-size: 28px; 
        }
        .company-name {
            font-size: 18px; 
        }
        .intro-text {
            font-size: 16px; 
        }
        .product-text1{
            font-size: 18px; 
        }
            .product-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .product-content,
            .product-image {
                width: 100%;
            }

            .product-image {
                max-width: 300px;
                height: auto;
                aspect-ratio: auto;
            }

            .product-text {
                font-size: 28px;
            }
            .product-buttons button{
                font-size: 16px;
            }
            .product-subtitle{
                font-size:18px ;
            }
            .product-description{
                font-size: 16px;
            }
            .taiho-container {
                padding: 40px 30px;
                min-height: 600px;
            }
            .stats-group {
                position: static;
                margin-top: 40px;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .building-img {
                max-height: 180px;
            }

        }
        /* 媒体查询：适配移动端（768px及以下） */
    @media (max-width: 768px) {
      .index-success-stories {
        padding: 20px; /* 减小移动端内边距 */
      }
  
    }

        /* Section container */
    .index-success-stories {
      padding-top: 48px;
      padding-bottom: 48px;
      padding-left: 16px;
      padding-right: 16px;
    }

    @media (min-width: 768px) {
      .index-success-stories {
        padding-left: 32px;
        padding-right: 32px;
      }
    }

   /* ========== Section Container ========== */
    .index-success-stories {
      padding-top: 48px;
      padding-bottom: 48px;
      padding-left: 16px;
      padding-right: 16px;
    }

    @media (min-width: 768px) {
      .index-success-stories {
        padding-left: 32px;
        padding-right: 32px;
      }
    }

    /* ========== ========== */
    .index-success-stories{
        background-color: #90929B;
    }
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 32px;
    }

    .section-title {
      font-size: 32px;          /* text-3xl → 32px */
      font-weight: bold;
      color: #1f2937;           /* text-gray-800 */
    }

    .header-actions {
      display: flex;
      gap: 12px;                /* gap-3 → 12px */
    }

    .nav-button {
      width: 48px;              /* w-12 → 48px */
      height: 48px;             /* h-12 → 48px */
      border-radius: 9999px;    /* rounded-full */
      border: 1px solid #d1d5db; /* border-gray-300 equivalent */
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: white;
      cursor: pointer;
    }

    .view-all-link {
      padding-left: 24px;       /* px-6 → 24px */
      padding-right: 24px;
      height: 48px;             /* h-12 → 48px */
      display: flex;
      align-items: center;
      border-radius: 9999px;    /* rounded-full */
      border: 1px solid #9CC814; /* border-blue-600 */
      color:#9CC814;           /* text-blue-600 */
      text-decoration: none;
      font-size: 16px;          /* base size */
      transition: all 0.3s ease;
    }

    .view-all-link:hover {
      background-color: #9CC814;
      color: white;
    }

    /* ========== Carousel Core ========== */
    



.carousel-container {
  width: 100%;
  padding: 0 10px;
  overflow: hidden;
  position: relative;
}

.carousel-viewport {
  width: 100%;
  aspect-ratio: 16 / 5; /* 自适应高度 */
  position: relative;
  overflow: hidden;
}

.carousel-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel-item {
  position: absolute;
  top: 0;
  width: calc((100% - 30px) / 3);
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .carousel-item:not([data-active="true"])::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.65);
      z-index: 1;
    }

    .carousel-item:not([data-active="true"]) img {
      transform: scale(0.95);
    }

    .carousel-item[data-active="true"] img {
      transform: scale(1.02);
    }

    .carousel-item .content {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      z-index: 2;
      text-align: center;
      padding: 0 10%;
    }

    .carousel-item .content h3 {
      font-size: 24px;          /* text-2xl → 24px */
      font-weight: bold;
    }

    /* ========== Dots & Page Number ========== */
    .footer-controls {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 32px;         /* mt-8 → 32px */
    }

    .dot {
        margin-left: 10px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #e5e7eb; /* gray-200 */
      display: inline-block;
    }

    .dot.active {
      background-color: #9CC814; /* blue-600 */
      transform: scale(1.2);
    }

    #pageNumber {
      font-size: 18px;          /* text-lg → 18px */
      color: #4b5563;           /* text-gray-600 */
    }

    /* ========== Responsive: Mobile single item ========== */
    @media (max-width: 767px) {
      .carousel-item {
        width: calc(100% - 20px);
  }
    }
    
    
    .finished-products-section {
				background-color: var(--white-color);
				padding: 60px 0;
				width: 100%;
			}

			/* 容器（替换 product-container → showcase-container） */
			.showcase-container {
				width: 90%;
				max-width: 1200px;
				margin: 0 auto;
			}

			/* 区域标题（替换 section-title → showcase-heading） */
			.finished-products-section .showcase-heading {
				color: var(--primary-color);
				font-weight: 700;
				font-size: 28px;
				/* 字体单位px */
				margin-bottom: 40px;
				text-align: center;
				line-height: 1.2;
			}

			/* 卡片列表（替换 product-list → product-grid） */
			.product-grid {
				display: flex;
				flex-wrap: wrap;
				gap: 20px;
				/* 卡片间距 */
			}

			/* 卡片项（替换 product-item → product-card-wrapper） */
			.product-card-wrapper {
				width: 100%;
				display: flex;
				flex-direction: column;
			}

			/* 成品卡片（替换 product-card → product-card-box） */
			.product-card-box {
				border: 2px solid var(--primary-color);
				border-radius: 8px;
				overflow: hidden;
				transition: all 0.3s ease;
				background-color: var(--white-color);
				display: flex;
				flex-direction: column;
				height: 100%;
				/* 占满父容器高度 */
			}

			.product-card-box:hover {
				transform: translateY(-5px);
				box-shadow: 0 8px 16px rgba(231, 37, 24, 0.2);
			}

			/* 产品图片（替换 product-img → product-image） */
			.product-img {
				width: 100%;
				height: 200px;
				/* 固定图片高度 */
				object-fit: cover;
				/* 保持图片比例 */
				background-color: #f8f9fa;
				/* 图片加载失败占位 */
				flex-shrink: 0;
				/* 图片高度不伸缩 */
			}

			/* 产品内容（替换 product-content → product-details） */
			.product-details {
				padding: 20px;
				flex-grow: 1;
				/* 填充剩余高度，确保卡片等高 */
				display: flex;
				flex-direction: column;
			}

			/* 产品标题（替换 product-title → product-name） */
			.product-name {
				color: var(--primary-color);
				font-weight: 600;
				font-size: 18px;
				/* 字体单位px */
				margin-bottom: 10px;
			}

			/* 产品描述（替换 product-desc → product-description） */
			.product-description {
				color: #333;
				font-size: 14px;
				/* 字体单位px */
				line-height: 22.4px;
				/* 行高也用px，1.6*14=22.4 */
				flex-grow: 1;
				/* 文本占满剩余空间，底部对齐 */
			}

			/* 媒体查询：响应式适配 */
			/* 中屏：≥768px，2列展示 */
			@media (min-width: 768px) {
				.product-card-wrapper {
					width: calc(50% - 10px);
					/* 减去gap的一半，保证间距均匀 */
				}
			}

			/* 大屏：≥992px，4列展示 */
			@media (min-width: 992px) {
				.product-card-wrapper {
					width: calc(25% - 15px);
					/* 减去gap的3/4，保证间距均匀 */
				}
			}