/* 首页样式 - 按照设计图比例缩放 */

/* 基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'HarmonyOS Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
  width: 100%;
}

/* Flexbox 工具类 */
.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.justify-between {
  justify-content: space-between;
}

/* 页面容器 - 使用缩放比例 */
.page {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.box_1 {
  width: 100%;
  background: url(../../cn/images/65f7f8bec59ff2b55c90cc90edd079bf.png) center no-repeat;
  background-size: cover;
}

/* Hero Section */
.group_1 {
  width: 100%;
  min-height: 100vh;
  background: url(../../cn/images/6b2034d10546bbcc131d59d3d7adc91b.png) center center no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Header Navigation */
.group_2 {
  position: relative;
  width: 100%;
  height: 100px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  padding: 0 6%;
}

.image_1 {
  height: 60px;
  width: auto;
}

.image_2 {
  height: 70px;
  width: auto;
  margin-left: 15px;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
}

.image_3,
.image_4 {
  display: none !important;
  visibility: hidden;
  width: 0;
  height: 0;
  opacity: 0;
}

.image_5 {
  height: 40px;
  width: auto;
  margin-left: auto;
  cursor: pointer;
}

.text_1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  display: flex;
  gap: 60px;
}

.hero-text-overlay {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 10;

  /* Flex layout to fill space and push buttons down */
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
}

.hero-title {
  width: 100%;
  color: rgba(64, 67, 71, 1);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-desc {
  width: 100%;
  max-width: 1100px;
  color: rgba(64, 67, 71, 1);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
}

/* Hide old text elements if they still exist in HTML before update */
.text-group_1,
.text_2,
.paragraph_1 {
  display: none;
}

/* Hero Buttons */
.image-wrapper_1 {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 166px;
  flex-wrap: wrap;
}

.image_6,
.image_7 {
  width: clamp(250px, 20vw, 350px);
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.image_6:hover,
.image_7:hover {
  transform: scale(1.05);
}

/* Service Cards Section */
.group_3 {
  width: 100%;
  padding: 100px 0;
  background: #f8f9fa;
}

.box_2 {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Service Card Base */
.box_3,
.box_4,
.box_6,
.box_7 {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 20px;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 450px;
}

.box_3:hover,
.box_4:hover,
.box_6:hover,
.box_7:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-btn {
  border: none;
  padding: 12px 38px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  /* margin-left: 30px; */
  transition: background-color 0.3s ease;
  font-family: 'HarmonyOS Sans SC', sans-serif;
}

.primary-btn {
  background-color: #ff6b00;
  color: #fff;
}

.secondary-btn {
  background-color: #fff;
  color: #000;
}

/* Card 1 */
.section_1 {
  width: 120px;
  height: 120px;
  background: url(../../cn/images/305ec985d09864920bfa32268e022a64.png) center no-repeat;
  background-size: contain;
  margin-bottom: 30px;
}

.text-group_2 {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text_3 {
  display: block;
  color: rgba(64, 67, 71, 1);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.paragraph_2 {
  display: block;
  color: rgba(186, 186, 186, 1);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 500;
  line-height: 1.6;
}

/* Card 2 */
.image-text_1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.box_5 {
  width: 120px;
  height: 120px;
  background: url(../../cn/images/dab3c6597c6455f8e05b807019733591.png) center no-repeat;
  background-size: contain;
  margin-bottom: 20px;
}

.text-group_3 {
  display: block;
  color: rgba(64, 67, 71, 1);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  width: 100%;
}

.paragraph_3 {
  display: block;
  color: rgba(186, 186, 186, 1);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  width: 100%;
}

/* Card 3 */
.group_4 {
  width: 120px;
  height: 120px;
  background: url(../../cn/images/f595535726d508c44ff9fb59c9403e4f.png) center no-repeat;
  background-size: contain;
  margin-bottom: 30px;
}

.text-group_4 {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text_4 {
  display: block;
  color: rgba(64, 67, 71, 1);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.paragraph_4 {
  display: block;
  color: rgba(186, 186, 186, 1);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

/* Card 4 */
.group_5 {
  width: 120px;
  height: 120px;
  background: url(../../cn/images/9ae625373b5ef5f6a4bb571faa0a0e8e.png) center no-repeat;
  background-size: contain;
  margin-bottom: 30px;
}

.text-group_5 {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text_5 {
  display: block;
  color: rgba(64, 67, 71, 1);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.paragraph_5 {
  display: block;
  color: rgba(186, 186, 186, 1);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

/* Products Section */
.group_6 {
  width: 100%;
  padding: 80px 0 120px;
  background: #f5f5f5;
}

.block_1 {
  text-align: center;
  margin-bottom: 20px;
}

.text-group_6 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text_6 {
  color: rgba(36, 36, 36, 1);
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 600;
  margin-bottom: 15px;
}

.text_7 {
  color: rgba(113, 113, 113, 1);
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 400;
}

.block_2 {
  display: flex;
  justify-content: center;
  margin: 20px 0 60px;
}

.group_7 {
  background-color: rgba(251, 165, 104, 1);
  border-radius: 5px;
  width: 180px;
  height: 8px;
}

/* Products Grid - 产品卡片网格 */
.products-grid {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.product-card {
  width: calc((100% - 80px) / 3);
  background-color: rgba(255, 255, 255, 1);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(225, 225, 225, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top;
  cursor: zoom-in;
}

.product-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.product-title {
  color: rgba(0, 0, 0, 1);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 600;
  margin-bottom: 12px;
}

.product-desc {
  color: rgba(127, 127, 127, 1);
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 15px;
}

.product-link {
  color: rgba(255, 136, 52, 1);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.product-link:hover {
  color: rgba(255, 100, 20, 1);
}

/* 保留旧样式兼容性 */
.block_3 {
  display: none;
}

.image-wrapper_2 {
  display: none;
}

.image_9,
.image_10 {
  display: none;
}

/* Industry Layout Section */
.group_8 {
  width: 100%;
  padding: 80px 0 100px;
  background: url(../../cn/images/2c451c74ac213ec523f78a47575452f0.png) center center no-repeat;
  background-size: cover;
  position: relative;
  min-height: 900px;
}

.group_9 {
  text-align: center;
  margin-bottom: 20px;
}

.text-group_7 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text_11 {
  color: rgba(36, 36, 36, 1);
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 600;
  margin-bottom: 12px;
}

.text_12 {
  color: rgba(113, 113, 113, 1);
  font-size: clamp(14px, 1.3vw, 22px);
  font-weight: 400;
}

.group_10 {
  display: flex;
  justify-content: center;
  margin: 18px 0 40px;
}

.group_11 {
  background-color: rgba(251, 165, 104, 1);
  border-radius: 5px;
  width: 180px;
  height: 8px;
}

/* 产业布局地图容器 */
.group_12 {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 650px;
  padding: 40px 20px;
}

/* 地图背景 - 使用伪元素 */
.group_12::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  max-width: 750px;
  aspect-ratio: 1.1;
  background: url(../../cn/images/c8ad2bb3cb22e4a0c1b05fdf00855051.png) center center no-repeat;
  background-size: contain;
  z-index: 1;
}



/* 地图标记点容器 */
.image-wrapper_3,
.image-wrapper_4,
.image-wrapper_5 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  max-width: 750px;
  aspect-ratio: 1.1;
  z-index: 2;
  pointer-events: none;
}

/* 标记图标 */
.image_11,
.image_12,
.image_13,
.image_14,
.image_15,
.image_16,
.image_17,
.image_18 {
  position: absolute;
  width: 30px;
  height: auto;
  z-index: 2;
}

/* 标记点位置 - 根据设计图调整 */
.image_11 {
  /* 主标记 */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none
}

.image_12 {
  /* 云南 */
  left: 44%;
  bottom: 6%;
}

.image_13 {
  /* 北京 */
  right: 23%;
  top: 44%;
}

.image_14 {
  /* 浙江 */
  right: 15%;
  top: 70%;
}

.image_15 {
  /* 江西 */
  left: 68%;
  top: 79%;
}

.image_16 {
  /* 青海 */
  left: 31%;
  top: 53%;
}

.image_17,
.image_18 {
  display: none;
}

/* 分公司标签通用样式 - 使用带指向线的背景图片 */
.text-wrapper_1,
.text-wrapper_2,
.text-wrapper_3,
.text-wrapper_4,
.text-wrapper_5 {
  position: absolute;
  /* border: 2px solid rgba(0, 0, 0, 0.64); */
  background-repeat: no-repeat;
  background-position: -2px -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

/* 云南分公司 - 左下 */
.text-wrapper_1 {
  left: 33%;
  bottom: 0%;
  width: clamp(200px, 17vw, 280px);
  height: clamp(90px, 8vw, 130px);
  background-image: url(../../cn/images/ecefb693d503ab55c6ec198f935109a7.png);
  background-size: calc(100% + 4px) calc(100% + 4px);
}

/* 北京分公司 - 右上 */
.text-wrapper_2 {
  right: 26%;
  top: 37%;
  width: clamp(200px, 17vw, 280px);
  height: clamp(90px, 8vw, 130px);
  background-image: url(../../cn/images/e2f8c71bf04fc4d14454db921b734de2.png);
  background-size: calc(100% + 4px) calc(100% + 4px);
}

/* 浙江分公司 - 右中 */
.text-wrapper_3 {
  right: 23%;
  top: 52%;
  width: clamp(200px, 17vw, 280px);
  height: clamp(90px, 8vw, 130px);
  background-image: url(../../cn/images/66ff102fe096690f8beeb240ec0eb8ed.png);
  background-size: calc(100% + 4px) calc(100% + 4px);
}

/* 江西分公司 - 右下 */
.text-wrapper_4 {
  right: 28%;
  bottom: 16%;
  width: clamp(200px, 17vw, 280px);
  height: clamp(90px, 8vw, 130px);
  background-image: url(../../cn/images/2764dfc3f944e1b8ba2d40bd78d3be7d.png);
  background-size: calc(100% + 4px) calc(100% + 4px);
}

/* 青海分公司 - 左上 */
.text-wrapper_5 {
  left: 29%;
  top: 41%;
  width: clamp(200px, 17vw, 280px);
  height: clamp(90px, 8vw, 130px);
  background-image: url(../../cn/images/7f1641fe86e3c9be23503a9c5ce0672f.png);
  background-size: calc(100% + 4px) calc(100% + 4px);
}

.text_13,
.text_14,
.text_15,
.text_16,
.text_17 {
  color: rgba(0, 0, 0, 1);
  font-size: clamp(16px, 1.4vw, 24px);
  font-weight: 500;
  white-space: nowrap;
}

/* News Section */
.group_13 {
  width: 100%;
  padding: 80px 0 0px;
  background: #fff;
  position: relative;
}

.text-group_8 {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text_18 {
  color: rgba(36, 36, 36, 1);
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 600;
  margin-bottom: 12px;
}

.text_19 {
  color: rgba(113, 113, 113, 1);
  font-size: clamp(14px, 1.3vw, 22px);
  font-weight: 400;
}

.block_4 {
  background-color: rgba(251, 165, 104, 1);
  border-radius: 5px;
  width: 180px;
  height: 8px;
  margin: 18px auto 50px;
}

/* 新闻卡片容器 - 按设计图布局 */
.block_5 {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  align-items: stretch;
}

/* 新闻卡片通用样式 */
.group_14,
.group_15,
.group_16 {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
}

.group_14:hover,
.group_15:hover,
.group_16:hover {
  transform: translateY(-5px);
}

/* 第一个新闻卡片 - 小卡片，只有文字背景 */
.group_14 {
  min-height: auto;
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}

/* 第二个新闻卡片 - 大卡片，图片在上 */
.group_15 {
  min-height: auto;
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}

/* 第三个新闻卡片 - 大卡片，图片在上 */
.group_16 {
  min-height: auto;
  grid-column: 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}

.text_20,
.text_22,
.text_25 {
  color: rgba(39, 39, 39, 1);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.image_19,
.image_21,
.image_23 {
  display: none;
}

.paragraph_6,
.paragraph_7,
.paragraph_8 {
  color: rgba(39, 39, 39, 1);
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 15px;
}


.text-wrapper_6,
.text-wrapper_7 {
  background-color: rgba(251, 165, 104, 1);
  border-radius: 12px;
  padding: 6px 16px;
  display: inline-block;
  width: fit-content;
  margin: 10px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.text-wrapper_6:hover,
.text-wrapper_7:hover {
  background-color: rgba(255, 136, 52, 1);
}

.text_23,
.text_26 {
  color: rgba(255, 255, 255, 1);
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 500;
}

.text_21,
.text_24,
.text_27 {
  color: rgba(39, 39, 39, 1);
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 400;
  margin-top: 10px;
}

/* 新闻描述容器 - 修复格式错乱 */
.news-desc-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.news-desc-wrapper .paragraph_7,
.news-desc-wrapper .paragraph_8 {
  margin-bottom: 0;
  flex: 1;
}

.news-desc-wrapper .text-wrapper_6,
.news-desc-wrapper .text-wrapper_7 {
  margin: 0;
  flex-shrink: 0;
}

/* 新闻卡片图片容器 - 图片在上方 */
.news-image-wrapper,
.image-wrapper_6,
.image-wrapper_7 {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.image_20,
.image_22,
.image_24 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 新闻卡片文字内容区域 */
.group_14 .text_22,
.group_14 .image_19,
.group_14 .paragraph_7,
.group_14 .text-wrapper_6,
.group_14 .text_24,
.group_15 .text_22,
.group_15 .image_21,
.group_15 .paragraph_7,
.group_15 .text-wrapper_6,
.group_15 .text_24,
.group_16 .text_25,
.group_16 .image_23,
.group_16 .paragraph_8,
.group_16 .text-wrapper_7,
.group_16 .text_27 {
  padding-left: 25px;
  padding-right: 25px;
}

.group_14 .text_22,
.group_15 .text_22,
.group_16 .text_25 {
  margin-top: 25px;
}

.group_14 .text_24,
.group_15 .text_24,
.group_16 .text_27 {
  padding-bottom: 25px;
}

.image_25 {
  width: 350px;
  max-width: 90%;
  height: auto;
  margin: 50px auto 40px;
  display: block;
}

.image_27 {
  display: none;
}

.view-more-btn {
  display: block;
  width: fit-content;
  margin: 40px auto 60px;
  padding: 15px 60px;
  background: linear-gradient(180deg, #FFB07E 0%, #FF9048 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.view-more-btn:hover {
  opacity: 0.9;
}

/* Footer Section */
.image-wrapper_8 {
  width: 100%;
  padding: 60px 0;
  background: url(../../cn/images/7639553e58bbd163dbf839fda71fd470.png) center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.image_26 {
  width: 95%;
  max-width: 1500px;
  height: auto;
}

/* 响应式设计 */
@media (max-width: 1600px) {
  .group_12::before {
    width: 50%;
    max-width: 600px;
  }

  .image-wrapper_3,
  .image-wrapper_4,
  .image-wrapper_5 {
    width: 50%;
    max-width: 600px;
  }

  .text-wrapper_1,
  .text-wrapper_2,
  .text-wrapper_3,
  .text-wrapper_4,
  .text-wrapper_5 {
    padding: 20px 35px;
  }
}

@media (max-width: 1400px) {
  .group_8 {
    min-height: 750px;
  }

  .group_12 {
    min-height: 550px;
  }

  .group_12::before {
    width: 45%;
    max-width: 500px;
  }

  .image-wrapper_3,
  .image-wrapper_4,
  .image-wrapper_5 {
    width: 45%;
    max-width: 500px;
  }

  .text-wrapper_1,
  .text-wrapper_2,
  .text-wrapper_3,
  .text-wrapper_4,
  .text-wrapper_5 {
    padding: 18px 30px;
  }
}

/* Adjust breakpoint to ensure 4 columns don't get too squished before switching to 2 */
@media (max-width: 1350px) {
  .box_2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1200px) {
  .text_1 {
    font-size: 16px;
    gap: 40px;
  }

  /* Remove conflicting box_2 definition if it exists inside this media query in the original file.
     Similar to Chinese file, it likely has:
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  */


  .products-grid {
    gap: 30px;
  }

  .product-card {
    width: calc((100% - 30px) / 2);
  }

  .block_5 {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .group_14 {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .group_15 {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .group_16 {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .group_8 {
    min-height: 650px;
  }

  .group_12 {
    min-height: 450px;
  }

  .group_12::before {
    width: 40%;
    max-width: 400px;
  }

  .image-wrapper_3,
  .image-wrapper_4,
  .image-wrapper_5 {
    width: 40%;
    max-width: 400px;
  }

  .text-wrapper_1,
  .text-wrapper_2,
  .text-wrapper_3,
  .text-wrapper_4,
  .text-wrapper_5 {
    padding: 15px 25px;
  }

  .text_13,
  .text_14,
  .text_15,
  .text_16,
  .text_17 {
    font-size: clamp(14px, 1.2vw, 18px);
  }
}

@media (max-width: 992px) {
  .group_8 {
    min-height: auto;
    padding: 60px 0;
  }

  .group_12 {
    flex-direction: column;
    min-height: auto;
    padding: 20px;
  }

  .group_12::before {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 80%;
    max-width: 400px;
    margin: 30px auto;
  }

  .image-wrapper_3,
  .image-wrapper_4,
  .image-wrapper_5 {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 80%;
    max-width: 400px;
    margin: -400px auto 0;
  }

  .text-wrapper_1,
  .text-wrapper_2,
  .text-wrapper_3,
  .text-wrapper_4,
  .text-wrapper_5 {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 10px auto;
    width: 250px;
    height: 100px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .group_2 {
    height: 80px;
    padding: 0 4%;
  }

  .image_1 {
    height: 45px;
  }

  .image_2 {
    height: 55px;
    margin-left: 20px;
  }

  .image_5 {
    height: 30px;
  }

  .text_1 {
    position: static;
    transform: none;
    font-size: 14px;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }

  .text-group_1 {
    padding: 60px 5%;
  }

  .paragraph_1 br {
    display: none;
  }

  .image-wrapper_1 {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 60px;
  }



  .image_6,
  .image_7 {
    width: 80%;
    max-width: 300px;
  }

  .group_3,
  .group_6,
  .group_13 {
    padding: 60px 0;
  }

  .box_2 {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .box_3,
  .box_4,
  .box_6,
  .box_7 {
    min-height: 350px;
    padding: 40px 25px;
  }

  .products-grid {
    gap: 25px;
  }

  .product-card {
    width: 100%;
  }

  .product-image {
    height: 200px;
  }

  .block_5 {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .group_14 {
    grid-column: 1;
    grid-row: auto;
    min-height: 200px;
  }

  .group_15,
  .group_16 {
    grid-column: 1;
    grid-row: auto;
  }

  .image-wrapper_6,
  .image-wrapper_7 {
    height: 220px;
  }

  .image-wrapper_8 {
    min-height: 280px;
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .group_2 {
    flex-direction: column;
    height: auto;
    padding: 15px 4%;
  }

  .image_2 {
    margin-left: 0;
    margin-top: 10px;
  }

  .text_1 {
    font-size: 12px;
    gap: 15px;
  }

  .text_2 {
    font-size: 28px;
  }

  .paragraph_1 {
    font-size: 14px;
  }

  .box_3,
  .box_4,
  .box_6,
  .box_7 {
    min-height: 300px;
    padding: 30px 20px;
  }

  .section_1,
  .box_5,
  .group_4,
  .group_5 {
    width: 90px;
    height: 90px;
  }

  .text-wrapper_1,
  .text-wrapper_2,
  .text-wrapper_3,
  .text-wrapper_4,
  .text-wrapper_5 {
    padding: 12px 20px;
  }

  .image-wrapper_6,
  .image-wrapper_7 {
    height: 180px;
  }
}

/* New Industry Layout Map Image */
.map-image-container {
  width: 100%;
  max-width: 700px;
  margin: 40px auto 0;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.industry-map-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Adjust group_8 to fit the new content better */
.group_8 {
  min-height: auto;
  padding-bottom: 80px;
  background: url(../../cn/images/2c451c74ac213ec523f78a47575452f0.png) center center no-repeat;
  background-size: cover;
}

/* Lightbox Styles */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  padding-top: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  margin: auto;
  display: block;
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  animation-name: zoom;
  animation-duration: 0.3s;
  cursor: default;
}

@keyframes zoom {
  from {
    transform: scale(0.1);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.clickable-image {
  cursor: zoom-in;
  transition: transform 0.2s ease;
  display: block;
}

.clickable-image:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}