/* =============================
   EN 英文站：独立样式
   ============================= */

/* 字体：与老站 gst.com.cn 保持一致（正文 Arial 系，中文 fallback 微软雅黑） */
:root {
  --font-base: Arial, Helvetica, "Microsoft YaHei", "PingFang SC", sans-serif;
}

/* English Header */
.site-header-en {
  position: relative;
  z-index: 100;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0; /* 与中文 header 对齐：通栏贴边 */
  height: 8rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  /* 通栏：覆盖 style.css .site-header 的 max-width:1440px 限宽，白底撑满浏览器宽度 */
  width: 100%;
  max-width: none;
  margin: 0;
  /* 内容保持原 1440px 布局居中，不随超宽屏拉开（超 1440px 时两侧留白给白底）；
     居中基础上左右再内收 40px，避免 logo / 语言切换贴边 */
  padding: 0 max(40px, calc(50% - 680px));
}

.site-header-en .site-branding img,
.site-header-en .site-branding .site-title {
  max-height: 4rem;
}

/* EN Home 透明悬浮 Header（图即全屏：banner 顶满视口，header 悬浮其上） */
.site-header-en.is-transparent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header-en.is-transparent .en-menu a {
  color: #FFFFFF;
}
.site-header-en.is-transparent .en-menu a:hover {
  color: #32BEBD;
}
/* 透明 header 下 mega-panel 白底，面板内链接恢复深色（不被上面的白色规则误伤） */
.site-header-en .mega-panel a,
.site-header-en.is-transparent .mega-panel a {
  color: #475569;
}
.site-header-en .mega-panel a:hover,
.site-header-en.is-transparent .mega-panel a:hover {
  color: var(--color-primary, #0d47a1);
}
.site-header-en .mega-panel .mega-col-title,
.site-header-en.is-transparent .mega-panel .mega-col-title {
  font-weight: 700;
  color: var(--color-primary, #0d47a1);
}
.site-header-en .mega-panel .mega-col-title a,
.site-header-en.is-transparent .mega-panel .mega-col-title a {
  color: inherit;
  text-decoration: none;
}
/* 单列二级菜单（Industries / Resources Center）：面板紧贴当前菜单项下方，不从左侧全宽铺开 */
.site-header-en .nav-item.has-mega.mega-single {
  position: relative; /* 覆盖 style.css 的 position:static，让面板相对本菜单项定位 */
}
.site-header-en .nav-item.has-mega.mega-single > .mega-panel {
  left: 0;
  right: auto;
  width: auto;
  min-width: 26rem;
  border-top: none;
  border-radius: 0 0 1.2rem 1.2rem;
  box-shadow: 0 1.6rem 3.2rem rgba(15, 23, 42, 0.14);
}
.site-header-en .nav-item.has-mega.mega-single > .mega-panel .mega-inner {
  padding: 2.4rem 2.4rem 2.8rem;
  white-space: nowrap;
}
.site-header-en .nav-item.has-mega.mega-single .mega-cols {
  display: block;
}
.site-header-en .nav-item.has-mega.mega-single .mega-col {
  min-width: 0;
  flex: none;
}
.site-header-en.is-transparent .en-header-actions .lang-link {
  color: rgba(255, 255, 255, 0.85);
}
.site-header-en.is-transparent .en-header-actions .lang-link.is-active {
  color: #FFFFFF;
  font-weight: 600;
}
.site-header-en.is-transparent .lang-separator {
  color: rgba(255, 255, 255, 0.6);
}
.site-header-en.is-transparent .mobile-menu-toggle .menu-icon-bar {
  background: #FFFFFF;
}
/* 滚动后恢复白底深字 */
.site-header-en.is-transparent.scrolled {
  background: #FFFFFF;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}
.site-header-en.is-transparent.scrolled .en-menu a {
  color: #333333;
}
.site-header-en.is-transparent.scrolled .en-menu a:hover {
  color: #00acc1;
}
.site-header-en.is-transparent.scrolled .en-header-actions .lang-link {
  color: #64748B;
}
.site-header-en.is-transparent.scrolled .en-header-actions .lang-link.is-active {
  color: #003395;
}
.site-header-en.is-transparent.scrolled .lang-separator {
  color: #C0C8D4;
}
.site-header-en.is-transparent.scrolled .mobile-menu-toggle .menu-icon-bar {
  background: #333333;
}
@media (max-width: 768px) {
  .site-header-en.is-transparent {
    background: rgba(10, 30, 62, 0.35);
  }
  .site-header-en.is-transparent.scrolled {
    background: #FFFFFF;
  }
}

.en-menu {
  display: flex;
  gap: 4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.en-menu a {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.en-menu a:hover {
  color: #00acc1;
}

.en-header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.en-header-actions .lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.en-header-actions .lang-link {
  font-size: 1.4rem;
  color: #64748B;
  text-decoration: none;
}

.en-header-actions .lang-link.is-active {
  color: #003395;
  font-weight: 600;
}

/* Buttons */
.en-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
  height: 4.5rem; 
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.en-btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #0ea5e9 0%, #00bcab 55%, #15d6c1 100%);
  border-color: transparent;
}

.en-btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.en-btn-outline {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}

.en-btn-outline:hover {
  background: rgba(255,255,255,0.2);
}

.en-btn-small {
  padding: 0 2rem;
  height: 3.8rem;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(90deg, #0ea5e9 0%, #00bcab 55%, #15d6c1 100%);
}

/* Hero */
.en-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  /* Full-bleed：突破 .site-main 的 max-width:1440px 限宽，背景铺满浏览器宽度 */
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.en-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.en-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,30,62,0.85) 0%, rgba(10,30,62,0.5) 55%, rgba(10,30,62,0.3) 100%);
  z-index: 1;
}

.en-hero .container {
  position: relative;
  z-index: 2;
}

.en-hero-content {
  max-width: 72rem;
  padding: 3rem 0 0;
}

.en-hero-title {
  margin: 0 0 3.5rem;
  /* 字号随视口自适应，保证 40 字符整句在桌面端单行显示（全大写约占 26em 宽） */
  font-size: clamp(2.6rem, 3.4vw, 3.6rem);
  font-weight: bold;
  line-height: 1.35;
  letter-spacing: 0em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.en-hero-desc {
  font-size: 1.8rem;
  line-height: 2.9rem;
  color: #FFFFFF;
  margin: 0 0 2rem;
  max-width: 80rem;
}

.en-hero-actions {
  display: flex;
  gap: 2.3rem;
  flex-wrap: wrap;
}

.en-hero-actions .en-btn-primary {  
  color: #FFFFFF;
  letter-spacing: 0em;
  background: linear-gradient(90deg, #0ea5e9 0%, #00bcab 55%, #15d6c1 100%); 
  box-shadow: 0px 8px 24px 0px rgba(13, 148, 136, 0.3),0px 0px 0px 0px rgba(0, 0, 0, 0),0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.en-hero-actions .en-btn-primary .icon {
  margin-left: 0.8rem;
  width: 1.6rem;
  height: 1.6rem;
}
.en-hero-actions .en-btn-outline { 
  padding: 0 2.5rem;
  color: #334155;
  letter-spacing: 0em;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.04),0px 0px 0px 0px rgba(0, 0, 0, 0),0px 0px 0px 0px rgba(0, 0, 0, 0);
}


/* Section common */
.en-section-head-center {
  text-align: center;
  /* max-width: 80rem; */
  margin: 0 auto 5.5rem;
}

.en-section-head-center.light .en-section-title,
.en-section-head-center.light .en-section-subtitle {
  color: #fff;
}

.en-section-head-row { 
  margin-bottom: 6.8rem; 
}

.en-section-title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 4.4rem;
  color: #333333;
  text-align: center; 
  letter-spacing: 0em;
}

.en-section-subtitle {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: #64748B;
  text-align: center;
  margin: 2rem 0 0 0;
}

.en-section-desc {
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #64748B;
  text-align: center;
  margin: 1.6rem 0 0 0;
}

.en-link-all {
  font-size: 1.5rem;
  font-weight: 600;
  color: #003395;
  text-decoration: none;
  white-space: nowrap;
}

.en-link-all:hover {
  text-decoration: underline;
}

/* Stats */
.en-stats {
  padding: 8rem 0;
  background: #fff;
}

.en-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* display: flex; 
  justify-content: center;
  align-items: center;
  gap: 8.8rem; */
  text-align: center;
}

.en-stats .stats-container {
   padding: 1rem 9rem 0; 
}

.en-stat-item {
  padding-bottom: 2rem;
}

.en-stat-number {
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
  background: linear-gradient(90deg, #0ea5e9 0%, #00bcab 55%, #15d6c1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  letter-spacing: 0em;
  margin-bottom: 1rem;
} 

.en-stat-desc {
  font-size: 2rem;
  color: #444653;
  line-height: 2.2rem;
  letter-spacing: 0em;
  white-space: pre-line;
}

/* Event */
.en-event {
  padding: 5.5rem 0;
  background: #f4f7fb;
}
.en-event-list {
  display: flex;
  flex-direction: column;
  gap: 4.3rem;
}
.en-event-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.3rem;
  overflow: hidden;
  align-items: center;
}
.en-event-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.en-event-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08rem;
  color: #003395;
  background: rgba(0, 51, 149, 0.08);
  border: 1px solid rgba(0, 51, 149, 0.18);
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.en-event-meta {
  font-size: 1.8rem;
  color: #003395;
  line-height: 2rem;
  letter-spacing: 0px;
  margin-bottom: 1.5rem;
}

.en-event-title {
  font-size: 3rem;
  color: #333333;
  line-height: 4.6rem;
  font-weight: 700;
  margin-bottom: 2.3rem;
}

.en-event-desc {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #64748B;
  margin-bottom: 2.5rem;
}

.en-event-image {
  height: 28.8rem;
  border-radius: 1rem;
  overflow: hidden;
}
.en-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-column .en-btn-primary {
  padding: 0 4rem;
  height: 49.5px;
}

/* Newsroom */
.en-newsroom {
  padding: 5.3rem 0 6.4rem;
  background: #fff;
}

.en-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  row-gap: 7.6rem;
  column-gap: 7.2rem;
  padding: 0 0.8rem;
}

.en-news-card { 
  
} 

.en-news-meta {
  display: flex; 
  gap: 2rem; 
  margin: 0 0 0.5rem 0;
}

.en-news-tag {
  display: inline-block;
  padding: 0.25rem 0.9rem;
  height: 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #003395; 
  line-height: 1.5rem;
  letter-spacing: 0.1px;
  box-sizing: border-box;
  border: 1px solid #003395;
}

.en-news-date {
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: #64748D;
}

.en-news-title { 
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.8rem;
  color: #333333;
  letter-spacing: -0.2px; 
  text-decoration: none;
}
.en-news-title:hover {
  text-decoration: none;
}

.en-news-desc {
  font-size: 1.4rem;
  line-height: 2.1rem;
  color: #64748B;
  padding-bottom: 3.3rem;
  overflow: hidden;           
  text-overflow: ellipsis;       
  display: -webkit-box; 
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;   
}

.en-section-link-row {
  margin-top: 1.7rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
}
.en-section-link-row .en-link-all {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.1rem;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
  color: #32BEBD;
}
.en-section-link-row .icon {
width: 16px;
height: 16px;
}

/* Products */
.en-products {
  padding: 6.8rem 0 2.5rem;
  background: #fff;
}

.en-products .container {
  /* 恢复 .container 默认左右对称内边距，避免内容左偏 */
  padding: 0;
}

.en-product-grid {
  display: flex;
  transition: transform 0.3s ease;
  padding-bottom: 1.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
}

.en-product-grid::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari/Opera */
}

/* 产品轮播（与中文版一致：左右箭头 + 横向滚动轨道） */
.products-carousel-container {
  position: relative;
  overflow: hidden;
  padding: 0 6rem;
}

.products-carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  padding-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.products-carousel-track::-webkit-scrollbar {
  display: none;
}

.products-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #E3E8EE;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.products-carousel-arrow img {
  width: 1.8rem;
  height: 1.8rem;
}

.products-carousel-arrow:hover {
  background: #EAF2FD;
  border-color: #0ea5e9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.products-carousel-prev {
  left: 0.5rem;
}

.products-carousel-next {
  right: 0.5rem;
}

/* 轨道内的英文产品卡片：桌面端一行展示 3 张（含 2 个 2rem 间距） */
.products-carousel-track .en-product-card {
  flex: 0 0 calc((100% - 4rem) / 3);
  min-width: 0;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.en-product-card {
  background: #FFFFFF;
  /* border-radius: var(--radius); */
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  /* min-width: 37.6rem; 桌面端一行 3 张时不再固定最小宽度，改由 flex 计算 */
  /* flex-shrink: 0; */
  scroll-snap-align: start;

  padding: 2.5rem 2.5rem 1.5rem;
  margin-right: 2rem;
  /* box-sizing: border-box; */
}

.en-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.en-product-image {
  position: relative;
  width: 100%;
  max-width: 52rem;
  aspect-ratio: 32.7 / 25.6;
  overflow: hidden;
  margin: 0 auto;
}

.en-product-image .en-product-tag {
  position: absolute;
  top: 1.6rem;
  left: 1.8rem;
  padding: 0.35rem 0.9rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  letter-spacing: 0em;

  color: #32BEBD;
  background: #FFFFFF;
  box-sizing: border-box;
  border: 1px solid #32BEBD;
} 

.en-product-card:hover .en-product-image .en-product-tag {
  color: #FFFFFF;
  background: #32BEBD;
  box-sizing: border-box;
  border: 1px solid #FFFFFF;
} 

.en-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
  transition: transform 0.3s ease;
  /* padding: 1rem; */
}
.en-product-card:hover .en-product-image img {
  transform: scale(1.03);
} 

.en-product-txt {
  margin-top: 2.4rem;
  margin-bottom: 1.4rem;
  min-height: 82px;
  text-align: center;
}

.en-product-title {
  font-size: 1.8rem;
  line-height: 2.8rem;
  letter-spacing: 0em;
  color: #0F172A; 
  margin-bottom: 0.5rem;
}

.en-product-desc {
  font-size: 1.4rem; 
  line-height: 2rem;
  letter-spacing: 0em;
  color: #64748B; 
}

.en-products .en-btn-small {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 4.2rem;
  text-align: center;
  letter-spacing: 0.02em;
  height: 4.2rem;
  color: #64748B;
  background: transparent;
  box-sizing: border-box;
  border: 1px solid #E2E8F0;
}
.en-product-card:hover .en-btn-small {
  color: #FFFFFF;
  background: linear-gradient(90deg, #0ea5e9 0%, #00bcab 55%, #15d6c1 100%);
  box-sizing: border-box;
  border: 1px solid transparent;
}

.pad-r16 {
  padding-right: 12rem;
}
.mag-b5 {
  margin-bottom: 5.3rem;
} 
.mag-b8 {
  margin-bottom: 8rem;
}

/* Cases */
.en-cases {
  position: relative;
  padding: 2.5rem 0;
  color: #333333;
  overflow: hidden;
  background: #fff;
}

.en-cases-bg {
  display: none;
}

.en-cases .container {
  position: relative;
  z-index: 1;
  max-width: 1440px;
}

.en-cases .en-section-head-center.light .en-section-title,
.en-cases .en-section-head-center.light .en-section-subtitle {
  color: #0a1e3e;
}

.en-cases-grid {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.en-case-card {
  display: flex;
  align-items: center;
  gap: 4.8rem;
  max-width: 1152px;
  margin: 0 auto;
}

.en-case-card--reverse {
  flex-direction: row-reverse;
}

.en-case-image {
  flex: 0 0 49%; 
  overflow: hidden;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1),0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.en-case-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  transition: transform 0.5s ease;
}

.en-case-card:hover .en-case-image img {
  transform: scale(1.03);
}

.en-case-content {
  flex: 1;
  padding: 0;
}

.en-case-category {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #002068;
  margin-bottom: 1.5rem; 
}

.en-case-title {
  font-size: 3rem; 
  line-height: 3.75rem;
  letter-spacing: 0px;
  margin: 0 0 1.6rem;
  color: #333333;
}

.en-case-desc {
  padding: 0.87rem 0 1.6rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #64748B;
  margin: 0 0 1.6rem;
}

.en-case-link {
  display: inline-flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #32BEBD;
  line-height: 2.4rem;
  text-decoration: none;
  letter-spacing: 0px;
  border-bottom: 1px solid #32BEBD;
  padding-bottom: 0.5rem;
  transition: border-color 0.25s ease, color 0.25s ease;
} 
.en-case-link:hover {
  text-decoration: none;
}

.en-case-arrow {
  margin-left: 4px;
  width: 1.6rem;
  height: 1.6rem;
  margin-bottom: 4px;
}
 
/* EN Home · Any Questions / Help（4 卡片，参考 wisualarm 首页该区块布局） */
.en-help-section {
  padding: 7.2rem 0 8rem;
  background: #F7FBFF;
  overflow: hidden;
}
.en-help-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5.6rem;
}
.en-help-title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 4.4rem;
  color: #333333;
  text-align: center;
  margin: 0 0 1.6rem;
  letter-spacing: 0em;
}
.en-help-desc {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #64748B;
  text-align: center;
  max-width: 68rem;
  margin: 0;
}
.en-help-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}
.en-help-card {
  position: relative;
  display: flex;
  background: #FFFFFF;
  border-radius: 1rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.en-help-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #32BEBD;
}
.en-help-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 4.8rem 3.2rem 4rem;
  text-decoration: none;
  color: inherit;
}
.en-help-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 1.6rem;
  background: #e6faf9;
  color: #32BEBD;
  margin-bottom: 2.4rem;
}
.en-help-icon svg {
  width: 3.2rem;
  height: 3.2rem;
  display: block;
}
.en-help-card-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.8rem;
  color: #333333;
  text-align: center;
  margin: 0 0 1.2rem;
}
.en-help-card-desc {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #64748B;
  text-align: center;
  margin: 0 0 2.8rem;
}
.en-help-card-link {
  margin-top: auto;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.2rem;
  color: #32BEBD;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #32BEBD;
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}
.en-help-card:hover .en-help-card-link {
  opacity: 0.75;
}
@media (max-width: 1024px) {
  .en-help-section {
    padding: 5.6rem 0 6.4rem;
  }
  .en-help-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 640px) {
  .en-help-section {
    padding: 4.8rem 0 5.6rem;
  }
  .en-help-title {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
  .en-help-desc {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .en-help-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .en-help-card a {
    padding: 3.2rem 2.4rem 2.8rem;
  }
}

/* English Footer */
.site-footer-en {
  /* 通栏：覆盖 style.css .site-footer 的 max-width:1440px 限宽，渐变背景撑满浏览器宽度 */
  width: 100%;
  max-width: none;
  margin: 0;
  background: linear-gradient(135deg, #0A1E3E 0%, #003395 55%, #0D47A1 100%);
  color: rgba(255,255,255,0.85);
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.en-footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.en-footer-brand {
  text-align: left;
}

.en-footer-brand .site-title,
.en-footer-brand .footer-logo {
  /* 白版 logo（1080×263）：英文版缩小尺寸；PC 左对齐，移动端居中 */
  display: block;
  height: auto;
  width: auto;
  max-height: 4rem;
  max-width: 12rem;
  margin: 0 0 1.8rem;
}

.en-footer-desc {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 1.8rem;
  max-width: 32rem;
}


.en-footer-column {
  text-align: left;
}

.en-footer-column h4 {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #FFFFFF;
  margin: 0 0 2.4rem;
}

.en-footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.en-footer-column li + li {
  margin-top: 1.2rem;
}

.en-footer-column a {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.78);
  line-height: 2rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.en-footer-column a:hover {
  color: #32BEBD;
}

.en-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 2.2rem;
  text-align: center;
  font-size: 1.2rem;
  line-height: 3.1rem; 
  letter-spacing: 0em;
  color: rgba(255,255,255,0.7);
  padding-bottom: 4.8rem;
}

.en-footer-bottom a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.en-footer-bottom a:hover {
  color: #32BEBD;
}

/* 英文页脚 Follow Us（独立列） */
.en-footer-follow {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.en-footer-follow-label {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #FFFFFF;
}

.en-footer-follow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease, transform 0.3s ease;
}

.en-footer-follow-link svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: #FFFFFF;
}

.en-footer-follow-link:hover {
  background: #0A66C2;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .site-header-en {
    padding: 0 2rem;
  }
  .en-menu {
    display: none;
  }
  .en-stats-grid,
  .en-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .en-news-grid,
  .en-cases-grid {
    display: block;
  }
  .en-case-card,
  .en-case-card--reverse {
    flex-direction: column;
    gap: 2rem;
  }
  .en-case-image {
    flex: none;
    width: 100%;
  }
  .en-footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .en-hero {
    min-height: 100vh;
    min-height: 100svh;
  }
  .en-hero-title {
    font-size: 3rem;
  }
  .en-hero-desc {
    font-size: 1.6rem;
  }
  .en-section-title {
    font-size: 2.8rem;
  }
  .en-stats-grid,
  .en-product-grid,
  .en-footer-main {
    grid-template-columns: 1fr;
  }

  /* 英文页脚移动端：整体居中 */
  .en-footer-brand,
  .en-footer-column,
  .en-footer-bottom {
    text-align: center;
  }

  .en-footer-follow {
    justify-content: center;
  }

  .en-footer-brand .footer-logo {
    margin: 0 auto 1.8rem;
  }

  .en-footer-desc {
    margin: 0 auto 1.8rem;
  }

  /* 产品轮播移动端：一行 1 个，卡片固定 250px 宽横向滚动 */
  .products-carousel-container {
    padding: 0;
  }
  .products-carousel-track {
    padding-left: calc((100% - 250px) / 2);
    padding-right: calc((100% - 250px) / 2);
  }
  .products-carousel-arrow {
    width: 36px;
    height: 36px;
  }
  .products-carousel-arrow img {
    width: 1.4rem;
    height: 1.4rem;
  }
  .products-carousel-prev {
    left: 0.5rem;
  }
  .products-carousel-next {
    right: 0.5rem;
  }
  /* 必须用与桌面端同特异性的选择器覆盖，否则 .products-carousel-track .en-product-card 的 min-width:0 会覆盖此规则 */
  .products-carousel-track .en-product-card {
    flex: 0 0 250px;
    min-width: 250px;
  }
}

/* =============================
   EN Products Page
   ============================= */

/* Series Tabs */
.en-prod-tabs-section {
  padding: 2rem 0 2.5rem;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.en-prod-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #E2E8F0;
  overflow-x: auto;
}

.en-prod-tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 2.4rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #64748B;
  line-height: 1.4;
  text-decoration: none;
  background: none;
  border: 0;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.en-prod-tab:hover {
  color: #32BEBD;
}

.en-prod-tab.is-active {
  color: #32BEBD;
  border-bottom-color: #32BEBD;
}

/* Page Header — 布局与 EN Industries hero 一致 */
.en-prod-header {
  position: relative;
  padding: 10rem 0 8rem;
  overflow: hidden;
  min-height: 40rem;
  background: #fff;
  /* Full-bleed：突破 .site-main 的 max-width:1440px 限宽，背景铺满浏览器宽度 */
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Hero 顶部 Banner 图（后台可配置：ACF 字段 en_product_hero_banner） */
.en-prod-hero-banner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #f1f5f9;
  z-index: 0;
}

.en-prod-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 38, 0.45);
  z-index: 1;
}

.en-prod-header-inner {
  position: relative;
  z-index: 2;
  max-width: 80rem;
}

.en-prod-badge {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
}

.en-prod-badge::before {
  content: '';
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  background: #059669;
  border-radius: 50%;
  margin-right: 0.6rem;
  vertical-align: middle;
}

.en-prod-title {
  margin: 0 0 3.5rem;
  font-size: 4.6rem;
  font-weight: bold;
  color: #0a1e3e;
  text-transform: uppercase;
  letter-spacing: 0px;
  line-height: 6.3rem;
}

.en-prod-desc {
  font-size: 1.8rem;
  color: #64748B;
  line-height: 2.9rem;
  margin: 0;
}

/* Banner 图上叠加的文案（白色，保证可读性） */
.en-prod-header.has-hero-banner .en-prod-title {
  color: #FFFFFF;
}

.en-prod-header.has-hero-banner .en-prod-desc {
  color: #FFFFFF;
}

/* Layout */
.en-prod-layout .container {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.en-prod-sidebar {
  width: 26rem;
  flex-shrink: 0;
  position: sticky;
  top: 9rem;
}

.en-prod-sidebar-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.6rem;
  padding-left: 1rem;
  border-left: 3px solid #32BEBD;
}

.en-prod-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.en-prod-cat-item {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.en-prod-cat-item a {
  display: block;
  color: #334155;
  text-decoration: none;
  padding: 1.2rem 1.6rem;
  border-radius: 0.6rem;
}

.en-prod-cat-item:hover {
  background: #e6faf9;
}

.en-prod-cat-item:hover a {
  color: #32BEBD;
}

.en-prod-cat-item.is-active,
.en-prod-cat-item.is-active a {
  color: #32BEBD;
  background: #e6faf9;
  font-weight: 600;
}

.en-prod-sidebar-panel {
  display: none;
}

.en-prod-sidebar-panel.is-active {
  display: block;
}

.en-prod-sidebar-empty {
  font-size: 1.4rem;
  color: #94A3B8;
  margin: 0;
}

.en-prod-main {
  flex: 1;
  min-width: 0;
}

.en-prod-series-content {
  display: none;
}

.en-prod-series-content.is-active {
  display: block;
}

/* Product Grid — 对齐中文版 products-layout：2 列、卡片阴影 + 等高 */
.en-prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 7rem;
}

.en-prod-card {
  position: relative;
  margin: 0;
  padding: 1.6rem 2.1rem 2.5rem;
  background: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.08);
  min-height: 44rem;
  height: 100%;
}

.en-prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.en-prod-featured {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.4rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: #32BEBD;
  border-radius: 0.4rem;
  z-index: 2;
}

.en-prod-card-image {
  position: relative;
  max-height: 22rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.en-prod-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.en-prod-card:hover .en-prod-card-image img {
  transform: scale(1.03);
}

.en-prod-card-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #0F172A;
  line-height: 1.9rem;
  margin: 1.6rem 0 0.6rem;
}

/* Software 系列无产品图：卡片更紧凑，标题上移 */
.en-prod-card-no-image {
  min-height: 24rem;
}

.en-prod-card-no-image .en-prod-card-title {
  margin-top: 0.4rem;
}

.en-prod-card-subtitle {
  font-size: 1.4rem;
  font-weight: normal;
  color: #333333;
  line-height: 2rem;
  margin: 0 0 1.4rem;
}

.en-prod-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.4rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6rem;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  color: #32BEBD;
  background: #e6faf9;
  border: 1.5px solid #32BEBD;
  border-radius: 6.8rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.en-prod-card-btn-block {
  display: block;
  width: 100%;
  margin-top: auto;
  margin-bottom: 1.2rem;
}

.en-prod-card-btn:hover {
  background: #32BEBD;
  color: #fff;
  text-decoration: none;
}

.en-prod-layout {
  scroll-margin-top: 170px;
}

.en-prod-category {
  scroll-margin-top: 170px;
  margin-top: 5rem;
}

.en-prod-category:first-child {
  margin-top: 0;
}

.en-prod-category-title {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0px;
  color: #333333;
  line-height: 3.4rem;
  padding-bottom: 1.5rem;
  display: inline-block;
  margin: 0 0 2.4rem;
}

.en-prod-category-title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 10.6rem;
  height: 0.4rem;
  background: #32BEBD;
  border-radius: 1.6rem;
}

.en-prod-subcategory-title {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0px;
  color: #333333;
  line-height: 3.4rem;
  padding-bottom: 1.5rem;
  display: inline-block;
  margin: 2.4rem 0 1.2rem;
}

.en-prod-subcategory-title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 10.6rem;
  height: 0.4rem;
  background: #32BEBD;
  border-radius: 1.6rem;
}

.en-prod-category > .en-prod-subcategory-title:first-of-type {
  margin-top: 0;
}

.en-prod-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin: auto 0 0;
  padding-top: 1rem;
}

.en-prod-card-actions .en-prod-card-btn {
  margin: 0;
  flex: 1 1 auto;
}

.en-prod-card-link {
  font-size: 1.2rem;
  font-weight: 500;
  color: #64748B;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border: 1px solid #E2E8F0;
  border-radius: 4rem;
  transition: all 0.2s ease;
}

.en-prod-card-link:hover {
  color: #32BEBD;
  border-color: #32BEBD;
}

/* Empty State */
.en-prod-empty {
  padding: 4rem 0;
  text-align: center;
  font-size: 1.4rem;
  color: #94A3B8;
}

/* Pagination */
.en-prod-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #E2E8F0;
}

.en-prod-page-link,
.en-prod-page-num,
.en-prod-page-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.6rem;
  height: 3.6rem;
  padding: 0 0.8rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #64748B;
  text-decoration: none;
  border-radius: 0.6rem;
  transition: all 0.2s ease;
}

.en-prod-page-link:hover,
.en-prod-page-num:hover {
  background: #f1f5f9;
  color: #003395;
}

.en-prod-page-num.is-active {
  background: #003395;
  color: #fff;
  font-weight: 600;
}

.en-prod-page-link.is-disabled {
  color: #cbd5e1;
  cursor: not-allowed;
}

/* Tab Panels */
.en-prod-panel {
  display: none;
}

.en-prod-panel.is-active {
  display: block;
}

/* Full-width main (no sidebar) */
.en-prod-main--full {
  width: 100%;
}

/* Document / Download List */
.en-doc-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.en-doc-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 0.8rem;
  transition: box-shadow 0.2s ease;
}

.en-doc-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.en-doc-icon {
  flex-shrink: 0;
  width: 5.6rem;
  height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #003395;
  border-radius: 0.8rem;
}

.en-doc-icon--software {
  color: #32BEBD;
}

.en-doc-info {
  flex: 1;
  min-width: 0;
}

.en-doc-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0F172A;
  margin: 0 0 0.6rem;
  line-height: 1.4;
}

.en-doc-desc {
  font-size: 1.3rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0 0 0.8rem;
}

.en-doc-meta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.en-doc-meta-item {
  font-size: 1.2rem;
  color: #94A3B8;
  padding: 0.3rem 0.8rem;
  background: #f8fafc;
  border-radius: 0.4rem;
}

.en-doc-download {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  padding: 1rem 1.8rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #003395;
  text-decoration: none;
  border: 1.5px solid #003395;
  border-radius: 6rem;
  transition: all 0.2s ease;
}

.en-doc-download:hover {
  background: #003395;
  color: #fff;
}

.en-doc-download svg {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .en-prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .en-prod-tabs-section {
    position: static;
    box-shadow: none;
  }
  .en-prod-layout .container {
    flex-direction: column;
  }
  .en-prod-sidebar {
    width: 100%;
    position: static;
  }
  .en-prod-cat-list {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
  }
  .en-prod-cat-item {
    white-space: nowrap;
    margin-bottom: 0;
  }
  .en-prod-grid {
    grid-template-columns: 1fr;
  }
  .en-prod-header {
    padding: 6rem 0 5rem;
  }
  .en-prod-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
  }
  .en-prod-desc {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}

/* =============================
   EN Certifications Page
   ============================= */

.en-cert-layout .container {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

/* Resources Center 页面内 Certifications 分类 tab（与 Declarations 同款） */
.en-cert-section .en-res-cert-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.en-cert-section .en-res-cert-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border: 1px solid #E2E8F0;
  border-radius: 999px;
  background: #fff;
  font-family: inherit;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6rem;
  color: #64748B;
  cursor: pointer;
  transition: all 0.2s ease;
}

.en-cert-section .en-res-cert-tab:hover {
  border-color: #003395;
  color: #003395;
}

.en-cert-section .en-res-cert-tab.is-active {
  background: #003395;
  border-color: #003395;
  color: #fff;
}

.en-cert-section .en-res-cert-count {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 51, 149, 0.08);
  color: #003395;
}

.en-cert-section .en-res-cert-tab.is-active .en-res-cert-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.en-cert-section .en-cert-main {
  padding: 0 0 2rem;
}

/* Sidebar */
.en-cert-sidebar {
  width: 24rem;
  flex-shrink: 0;
  padding-top: 2rem;
}

.en-cert-sidebar-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.6rem;
}

.en-cert-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.en-cert-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 500;
  color: #334155;
  padding: 1.2rem 1.6rem;
  margin-bottom: 0.2rem;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.en-cert-cat-item:hover {
  color: #003395;
  background: #f8fafc;
}

.en-cert-cat-item.is-active {
  color: #003395;
  background: #f0f7ff;
  border-left-color: #003395;
  font-weight: 600;
}

.en-cert-cat-arrow {
  font-size: 1.6rem;
  color: #94A3B8;
}

/* Main Content */
.en-cert-main {
  flex: 1;
  min-width: 0;
  padding: 2rem 0 4rem;
}

.en-cert-header {
  margin-bottom: 3rem;
}

.en-cert-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #0a1e3e;
  margin: 0 0 1.2rem;
  line-height: 1.2;
}

.en-cert-desc {
  font-size: 1.5rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
  max-width: 70rem;
}

/* Table */
.en-cert-table-wrap {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 0.8rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

.en-cert-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.3rem;
}

.en-cert-table thead {
  background: #f8fafc;
  border-bottom: 1px solid #E2E8F0;
}

.en-cert-table th {
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  white-space: nowrap;
}

.en-cert-table th.en-cert-th-compliance,
.en-cert-table th.en-cert-th-action {
  text-align: center;
  width: 12rem;
}

.en-cert-row {
  border-bottom: 1px solid #F1F5F9;
  transition: background 0.15s ease;
}

.en-cert-row:last-child {
  border-bottom: none;
}

.en-cert-row:hover {
  background: #FAFBFC;
}

.en-cert-cell-model {
  padding: 1.6rem 2rem;
}

.en-cert-model-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0F172A;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

.en-cert-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: #003395;
  padding: 0.2rem 0.6rem;
  border-radius: 0.3rem;
  margin-right: 0.6rem;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.en-cert-model-desc {
  font-size: 1.2rem;
  color: #94A3B8;
  line-height: 1.5;
}

.en-cert-cell-compliance {
  padding: 1.6rem 2rem;
  text-align: center;
  vertical-align: middle;
}

.en-cert-badge {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  padding: 0.5rem 1.2rem;
  border-radius: 0.4rem;
  border: 1px solid #a7f3d0;
}

.en-cert-cell-action {
  padding: 1.6rem 2rem;
  text-align: center;
  vertical-align: middle;
}

.en-cert-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #003395;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.en-cert-pdf-link:hover {
  opacity: 0.7;
}

.en-cert-pdf-link svg {
  flex-shrink: 0;
}

/* 失效文件：置灰且不可点击 */
.en-cert-pdf-link.is-unavailable {
  color: #94a3b8;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.75;
}

/* Pagination */
.en-cert-panel {
  display: none;
}

.en-cert-panel.is-active {
  display: block;
}

.en-cert-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
}

.en-cert-page-link,
.en-cert-page-num,
.en-cert-page-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.6rem;
  height: 3.6rem;
  padding: 0 0.8rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #64748B;
  text-decoration: none;
  border-radius: 0.6rem;
  transition: all 0.2s ease;
}

.en-cert-page-link:hover,
.en-cert-page-num:hover {
  background: #f1f5f9;
  color: #003395;
}

.en-cert-page-num.is-active {
  background: #003395;
  color: #fff;
  font-weight: 600;
}

.en-cert-page-link.is-disabled {
  color: #cbd5e1;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1024px) {
  .en-cert-layout .container {
    flex-direction: column;
  }
  .en-cert-sidebar {
    width: 100%;
    padding-top: 0;
  }
  .en-cert-cat-list {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
  }
  .en-cert-cat-item {
    margin-bottom: 0;
    white-space: nowrap;
  }
  .en-cert-cat-arrow {
    display: none;
  }
  .en-cert-title {
    font-size: 2.4rem;
  }
  .en-cert-table th,
  .en-cert-table td {
    padding: 1.2rem 1.2rem;
  }
}

@media (max-width: 640px) {
  .en-cert-table-wrap {
    overflow-x: auto;
  }
  .en-cert-table {
    min-width: 56rem;
  }
}

/* =============================
   EN Industries Page
   ============================= */

/* Hero */
.en-ind-hero {
  position: relative;
  padding: 10rem 0 8rem;
  overflow: hidden;
  min-height: 40rem;
  /* Full-bleed：突破 .site-main 的 max-width:1440px 限宽，背景铺满浏览器宽度 */
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.en-ind-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
} 

.en-ind-hero-content {
  position: relative;
  z-index: 1;
  max-width: 80rem;
}

.en-ind-hero-title {
  margin: 0 0 3.5rem;
  font-size: 4.6rem;
  font-weight: bold;
  color: #fff; 
  text-transform: uppercase;
  letter-spacing: 0px; 
  line-height: 6.3rem;
}

.en-ind-hero-desc {
  font-size: 1.8rem;
  color: #FFFFFF;
  line-height: 2.9rem;
  margin: 0;
  /* max-width: 80rem; */
}

/* Sectors */
.en-ind-sectors {
  padding: 0.3rem 0 7rem;
  background: #fff;
}
.en-ind-sectors .container{
  padding: 0;
}

.en-ind-sector {
  padding: 5rem 14.4rem;
  display: flex;
  align-items: center;
  gap: 4.8rem; 
}

.en-ind-sector:last-child {
  margin-bottom: 0;
}

.en-ind-sector.is-reverse {
  padding: 3rem 14.4rem;
  flex-direction: row-reverse;
  background: linear-gradient(90deg, #f4f7fb 27%, #f4f7fb99 64%, #f4f7fb00 100%);
}

.en-ind-sector-image {
  flex: 1;
  min-width: 0; 
  overflow: hidden; 
}

.en-ind-sector-image img {
  width: 100%;
  height: 33.7rem;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.en-ind-sector:hover .en-ind-sector-image img {
  transform: scale(1.03);
}

.en-ind-sector-info {
  flex: 1;
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.en-ind-sector-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: #003395;
  line-height: 2rem;
  text-transform: uppercase;
  letter-spacing: 1.4px; 
}

.en-ind-sector-title {
  font-size: 3.6rem; 
  color: #333333; 
  line-height: 4rem;
  letter-spacing: 0px;
}

.en-ind-sector-desc {
  font-size: 1.6rem;
  color: #64748B;
  line-height: 2.6rem; 
  letter-spacing: 0px; 
}

.en-ind-sector-btn {
  display: inline-flex;
  align-items: center; 
  padding: 1.6rem 3.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.4rem;
  color: #fff;
  background: linear-gradient(90deg, #0ea5e9 0%, #00bcab 55%, #15d6c1 100%);
  
  text-decoration: none;
  letter-spacing: 0px;
  transition: all 0.2s ease;
} 

.en-ind-sector-btn:hover {
  background: #2aa8a7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(50,190,189,0.3);
}

.en-ind-sector-btn .icon {
  margin-left: 1.2rem;
  width: 1.5rem;
  height: 1.5rem;

  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.en-ind-sector-btn:hover .icon {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .en-ind-sectors .container {
    /* 桌面由 .en-ind-sector 的 14.4rem 左右内边距撑边距，窄屏交给容器，避免内容被压缩 */
    padding: 0 2rem;
  }
  .en-ind-sector,
  .en-ind-sector.is-reverse {
    flex-direction: column;
    gap: 3rem;
    padding: 5rem 0;
  }
  .en-ind-sector.is-reverse {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .en-ind-sector-image,
  .en-ind-sector-info {
    width: 100%;
  }
  .en-ind-sector-image img {
    height: 28rem;
  }
  .en-ind-hero-title {
    font-size: 3.6rem;
  }
}

@media (max-width: 640px) {
  .en-ind-hero {
    padding: 6rem 0 5rem;
  }
  .en-ind-hero-title {
    font-size: 2.8rem;
  }
  .en-ind-hero-desc {
    font-size: 1.3rem;
  }
  .en-ind-sector-image img {
    height: 22rem;
  }
  .en-ind-sector-info {
    gap: 2.2rem;
  }
  .en-ind-sector-title {
    font-size: 2.2rem;
  }
  .en-ind-sector-btn {
    padding: 1.4rem 2.4rem;
    font-size: 1.4rem;
  }
}

/* =============================
   EN Resources Page
   ============================= */

/* Hero — 布局与 EN Industries hero 一致 */
.en-res-hero {
  position: relative;
  padding: 10rem 0 8rem;
  overflow: hidden;
  min-height: 40rem;
  color: #fff;
  /* Full-bleed：突破 .site-main 的 max-width:1440px 限宽，背景铺满浏览器宽度 */
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.en-res-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
} 

.en-res-hero-content {
  position: relative;
  z-index: 1;
  max-width: 80rem;
}

.en-res-hero-title {
  margin: 0 0 3.5rem;
  font-size: 4.6rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0px;
  line-height: 6.3rem;
}

.en-res-hero-desc {
  font-size: 1.8rem;
  color: #FFFFFF;
  line-height: 2.9rem;
  margin: 0;
}

/* Sections */
.en-res-section {
  padding: 5.4rem 0 4rem;
  background: #fff;
}

.mag-b5 {
  margin-bottom: 5rem;
}

.en-res-section + .en-res-section {
  border-top: 1px solid #F1F5F9;
}

.en-res-section-header {
  display: flex;
  align-items: self-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.en-res-section-title {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 4.9rem;
  letter-spacing: 0px; 
  color: #333333; 
  margin: 0;
}

.en-res-section-title::after {
  content: '';
  display: block;
  width: 10.6rem;
  height: 0.4rem;
  background: #32BEBD;
  margin-top: 1.1rem;
  border-radius: 0.2rem;
}

/* Resource Types Entry Cards */
.en-res-types-section {
  padding: 4rem 0 2rem;
}
.en-res-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.en-res-type-card {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 2.4rem;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 1.2rem;
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.en-res-type-card:hover {
  border-color: #32BEBD;
  box-shadow: 0 1.2rem 3rem rgba(50, 190, 189, 0.16);
  transform: translateY(-0.3rem);
  text-decoration: none;
}
.en-res-type-icon {
  flex: 0 0 auto;
  width: 5.4rem;
  height: 5.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: #E8F9F8;
}
.en-res-type-icon .icon {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: contain;
}
.en-res-type-body {
  flex: 1 1 auto;
  min-width: 0;
}
.en-res-type-title {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 2.6rem;
  color: #333;
  margin: 0 0 0.4rem;
}
.en-res-type-desc {
  font-size: 1.3rem;
  line-height: 2rem;
  color: #64748B;
  margin: 0;
}
.en-res-type-arrow {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #32BEBD;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  transition: transform 0.25s ease;
}
.en-res-type-card:hover .en-res-type-arrow {
  transform: translateX(0.3rem);
}

.en-res-view-all {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.2rem;
  color: #32BEBD;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;  
}
.en-res-view-all:hover {
  text-decoration: none;
}
 
.en-res-view-all .icon {
  width: 1.6rem;
  height: 1.6rem;
}
 

/* Video Grid */
.en-res-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.en-res-video-card {
  padding: 2.1rem 2.1rem 1.3rem;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 0.8rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease;

  border: 1px solid #E2E8F0;
}

.en-res-video-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.en-res-video-thumb { 
  height: 19rem;
  overflow: hidden;
}

.en-res-video-thumb img,
.en-res-video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0d1b2a;
  transition: transform 0.3s ease;
}

.en-res-video-card:hover .en-res-video-thumb img,
.en-res-video-card:hover .en-res-video-thumb video {
  transform: scale(1.03);
}

.en-res-video-badge {
  margin: 2.1rem 0 0 0.2rem;
  padding:  0 0.8rem;

  display: inline-flex;
  align-items: center;
  gap: 0.4rem; 
  font-size: 1rem; 
  font-weight: 500;
  line-height: 1.4rem;
  height: 2rem;
  color: #003395;    
  border: 1px solid #003395;
}
.en-res-video-badge .icon {
  width: 1.4rem;
  height: 1.4rem;
}

.en-res-card-title {
  font-size: 2rem;
  font-weight: 500;
  color: #0F172A; 
  letter-spacing: 0em;
  margin: 1.9rem 0 1.5rem;
  line-height: 2.8rem;
}

.en-res-card-desc {
  font-size: 1.4rem;
  color: #64748B;
  line-height: 2rem;
  margin: 0 0rem 2.85rem;

  overflow: hidden;       
  text-overflow: ellipsis;   
  display: -webkit-box;   
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.en-res-card-meta {
  display: flex;
  align-items: self-end;
  justify-content: space-between;
  padding: 1rem 0.8rem 0.7rem 0;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.en-res-card-date {
  font-size: 1.4rem;
  color: #94A3B8;
  line-height: 2rem;
  letter-spacing: 0em;
}

.en-res-card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #32BEBD;
  height: 2rem;
  letter-spacing: 0em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.en-res-card-action .icon {
  width: 1.6rem;
  height: 1.6rem;
}

.en-res-card-action:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* Catalog Grid */
.en-res-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}

.en-res-catalog-card {
  display: flex;
  gap: 2rem;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 0.8rem;
  padding: 2rem;
  transition: box-shadow 0.2s ease;
}

.en-res-catalog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.en-res-catalog-cover {
  position: relative;
  flex-shrink: 0;
  width: 12.6rem;  
  overflow: hidden;
}

.en-res-catalog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.en-res-catalog-badge, 
.en-res-decl-badge { 
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.7rem;
  border: 0.1rem solid #003395;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4rem;
  color: #003395;
  height: 2rem;
}
.en-res-catalog-badge .icon,
.en-res-decl-badge .icon {
  margin-right: 0.4rem;
  width: 1.4rem;
  height: 1.4rem;
}

.en-res-catalog-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.en-catalog-section .en-res-catalog-grid {
  padding: 2rem 2.9rem 1.6rem 2.5rem; 
  gap: 3rem;
  border-radius: 1rem;
}
.en-catalog-section .en-res-catalog-card {
  align-items: center;
  gap: 2.5rem;
}

.en-res-catalog-info .en-res-card-title {
  margin: 2.2rem 0 1.5rem;
}

.en-res-catalog-info .en-res-card-desc {
  margin: 0 0 3.2rem;
}

.en-res-catalog-info .en-res-card-meta {
  padding: 1.2rem 0 0.5rem 0.2rem; 
  margin-top: auto;
}

/* Declarations Grid */
.en-res-decl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.en-res-decl-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 0.8rem;
  padding: 2.5rem;
  transition: box-shadow 0.2s ease;
}

.en-res-decl-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.en-res-decl-badge {
 
}

.en-res-decl-title {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #333333; 
  line-height: 2.4rem;
}

.en-res-decl-desc {
  font-size: 1.4rem;
  color: #64748B;
  line-height: 2rem;
  margin: 0.8rem 0 2.4rem;
}

.en-res-decl-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.7rem;
  border-top: 1px solid #E2E8F0;
}

.en-res-decl-date {
  font-size: 1.4rem; 
  color: #64748B;
  letter-spacing: 0em;
  line-height: 2rem;
}

.en-res-decl-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #32BEBD;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.en-res-decl-action .icon {
  margin-right: 0.6rem;
  width: 1.6rem;
  height: 1.6rem;
}

.en-res-decl-action:hover {
  opacity: 0.7;
}

/* Declarations Tabs */
.en-res-decl-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.en-res-decl-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border: 1px solid #E2E8F0;
  border-radius: 999px;
  background: #fff;
  font-family: inherit;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6rem;
  color: #64748B;
  cursor: pointer;
  transition: all 0.2s ease;
}

.en-res-decl-tab:hover {
  border-color: #003395;
  color: #003395;
}

.en-res-decl-tab.is-active {
  background: #003395;
  border-color: #003395;
  color: #fff;
}

.en-res-decl-count {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 51, 149, 0.08);
  color: #003395;
}

.en-res-decl-tab.is-active .en-res-decl-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.en-res-decl-loading {
  grid-column: 1 / -1;
  padding: 4rem 0;
  text-align: center;
  font-size: 1.4rem;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 1024px) {
  .en-res-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .en-res-decl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .en-res-type-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .en-res-video-grid {
    grid-template-columns: 1fr;
  }
  .en-res-catalog-grid {
    grid-template-columns: 1fr;
  }
  .en-res-catalog-card {
    flex-direction: column;
  }
  .en-res-catalog-cover {
    width: 100%;
    height: 20rem;
  }
  .en-res-decl-grid {
    grid-template-columns: 1fr;
  }
  .en-res-hero-title {
    font-size: 3rem;
  }
  .en-res-section-title {
    font-size: 2rem;
  }
}

/* =============================
   EN News & Events Page
   ============================= */

/* Hero — 布局与 EN Industries hero 一致 */
.en-news-hero {
  position: relative;
  padding: 10rem 0 8rem;
  overflow: hidden;
  min-height: 40rem;
  /* Full-bleed：突破 .site-main 的 max-width:1440px 限宽，背景铺满浏览器宽度 */
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.en-news-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.en-news-hero-content {
  position: relative;
  z-index: 1;
  max-width: 80rem;
}

.en-news-hero-title {
  margin: 0 0 3.5rem;
  font-size: 4.6rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  line-height: 6.3rem;
  letter-spacing: 0px;
}

.en-news-hero-desc {
  font-size: 1.8rem;
  color: #FFFFFF;
  line-height: 2.9rem; 
  margin: 0;
}

/* Title Section */
.en-news-title-section {
  padding: 5.4rem 0 1.5rem;
  background: #fff;
  text-align: center;
}

.en-news-main-title {
  font-size: 4.6rem;
  font-weight: 700;
  color: #333333;
  line-height: 4.8rem;
  letter-spacing: 0.05em;
  margin: 0 0 1.6rem;
}

.en-news-main-subtitle {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 2.8rem;
  color: #64748B;
  margin: 0;
}

/* Sections */
.en-news-section {
  padding: 0 0 7.2rem;
  background: #fff;
}

.en-news-section + .en-news-section {
  border-top: 1px solid #F1F5F9;
}

.en-news-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.2rem;
}

.en-news-section-title {
  position: relative;
  font-size: 3.6rem;
  font-weight: 700;
  color: #333333;
  line-height: 5.2rem;
  padding-bottom: 1.5rem;
  margin: 0;
}

.en-news-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 10.6rem;
  height: 0.4rem;
  background: #32BEBD;
  border-radius: 1.6rem;
}

.en-news-section-title--center {
  text-align: center;
}

.en-news-section-title--center::after {
  display: none;
}

.en-news-view-all {
 display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.2rem;
  color: #32BEBD;
  white-space: nowrap;
  text-decoration: none; 
}

.en-news-view-all:hover {
  text-decoration: none; 
}

.en-news-view-all .link-icon {
  width: 1.6rem;
  height: 1.6rem;
}

/* GST Updates Grid */
.en-news-update-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.7rem;
}

.en-news-update-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;

  text-decoration: none; 
}

.en-news-update-card:hover {
  text-decoration: none; 
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); 
}

.en-news-update-image {
  position: relative;
  height: 16.8rem;
  overflow: hidden;
  background: #F8FAFC;
}

.en-news-update-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.en-news-update-card:hover .en-news-update-image img {
  transform: scale(1.05);
}

/* GST Updates 元信息（日期 + 标签），对齐中文 .trend-meta */
.en-news-update-meta {
  display: flex;
  align-items: center;
  padding: 1.5rem 1.5rem 0;
  margin-bottom: 0.8rem;
}

.en-news-update-date {
  display: inline-block;
  font-size: 1.2rem;
  color: #64748D;
  line-height: 2rem;
}

.en-news-update-tag {
  margin-left: 0.8rem;
  padding: 0.2rem 0.7rem;
  font-size: 1rem;
  font-weight: 500;
  height: 2rem;
  line-height: 1.4rem;
  letter-spacing: 0em;
  color: #32BEBD;
  box-sizing: border-box;
  border: 0.1rem solid #32BEBD;
}

.en-news-update-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333333;
  line-height: 2.4rem;
  margin: 0 1.5rem 1.8rem; 
 
  overflow: hidden; 
  text-overflow: ellipsis; 
  display: -webkit-box; 
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;  
}

.en-news-update-card:hover .en-news-update-title {
  /* color: #32BEBD;  */
}

/* Announcements —— 日期+标签在第一行（对齐中文 .notice-meta），标题可点击跳转 */
.en-news-announce-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3.4rem;
  row-gap: 3rem; 
}

.en-news-announce-card {
  padding-bottom: 1.4rem;
  border-bottom: 2px solid #E2E8F0;
}

.en-news-announce-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}

.en-news-announce-date {
  display: inline-block;
  font-size: 1.2rem;
  color: #64748D;
  line-height: 1.8rem;
}

.en-news-announce-tag {
  margin-left: 2.6rem;
  padding: 0.2rem 0.7rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4rem;
  color: #003395;
  box-sizing: border-box;
  border: 1px solid #003395; 
}

.en-news-announce-title {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 500;
  color: #333333; 
  min-height: 4.2rem;
}

.en-news-announce-title a {
  color: #333333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.en-news-announce-title a:hover {
  color: #32BEBD;
}

.en-news-announce-desc {
  font-size: 1.4rem;
  line-height: 2rem;
  color: #64748B; 
  /* 统一展示 2 行：卡片高度一致，底部 border 分隔线对齐 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box; 
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}


/* Contact Section — mirrors Chinese .pr-contact-section (样式独立，en- 命名空间) */
.en-news-contact-section {
  background: #fff;
  padding: 3rem 0 16.3rem;
}

.en-news-contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.en-news-contact-heading { 
  margin-bottom: 1.7rem;
  font-size: 3.6rem;
  font-weight: bold;
  color: #333333;
  line-height: 4.9rem;
}

.en-news-contact-dot {
  margin-bottom: 1.4rem;
  width: 10.6rem;
  height: 0.4rem;
  border-radius: 1rem;
  background: #32BEBD;
}

.en-news-contact-desc {
  margin-bottom: 4.8rem;
  font-size: 1.8rem;
  font-weight: normal;
  text-align: center;
  line-height: 2.8rem;
  color: #64748B;
}

.en-news-contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.6rem;
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 5rem 2rem 4.7rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.08);
}

.en-news-contact-photo {
  width: 11.6rem;
  height: 11.6rem;
  overflow: hidden;
  border-radius: 1rem;
  flex-shrink: 0;
}

.en-news-contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.en-news-contact-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.en-news-contact-name {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.8rem; 
  color: #1A1C1C;
}

.en-news-contact-position {
  font-size: 1.2rem;
  color: #64748B;
  line-height: 2rem; 
}

.en-news-contact-meta {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #64748B;
}

/* Responsive */
@media (max-width: 1024px) {
  .en-news-update-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .en-news-hero-title {
    font-size: 3.2rem;
  }
  .en-news-main-title {
    font-size: 2.4rem;
  }
  .en-news-update-grid {
    grid-template-columns: 1fr;
  }
  .en-news-announce-list {
    grid-template-columns: 1fr;
  }
  .en-news-contact-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .en-news-contact-info {
    text-align: center;
  }
  .en-news-contact-photo {
    width: 12rem;
    height: 12rem;
  }
}

/* =============================
   EN Contact Us Page
   ============================= */

/* Page Title */
.en-contact-page-title {
  font-size: 3.6rem;
  font-weight: bold;
  color: #333333;
  letter-spacing: 0px; 
  line-height: 4.9rem;
}

.en-contact-page-title::after {
  content: '';
  display: block;
  width: 10.6rem;
  height: 0.4rem;
  background: #32BEBD;
  margin-top: 1.1rem;
  border-radius: 0.2rem;
}

/* Branches Section */
.en-contact-branches {
  padding: 3.6rem 0 4rem;
  background: #fff;
}

.en-contact-branches-layout {
  display: flex; 
  align-items: flex-start;
  margin-top: 4.6rem; 
  border: 1px solid #E2E8F0;
  border-radius: 1rem;
}

.en-contact-branches-list {
  width: 44%;
  flex-shrink: 0;

  background: linear-gradient(180deg, #f4f7fb 27%, #f4f7fb99 64%, #f4f7fb00 100%);
  padding: 7.5rem 4.8rem 4.8rem;
  height: 100%;
}

.en-contact-branch-card {  
  margin-bottom: 2.6rem;
}

.en-contact-branch-name {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6rem;
  letter-spacing: 1.2px;
  color: #003395;
  padding-left: 1rem;
  border-left: 2px solid #32BEBD;
  text-align: left;
  margin-bottom: 0.4rem;
}

.en-contact-branch-address {
  font-size: 1.6rem;
  color: #333333;
  line-height: 2.4rem;
  margin: 0 0 0.4rem;
}

.en-contact-branch-tel,
.en-contact-branch-email {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2rem; 
  color: #64748B;
} 
 

/* Inquiry Form */
.en-contact-form-wrap {
  flex: 1;
  min-width: 0;
  padding: 3.4rem 6.5rem;
}

.en-contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0a1e3e;
  margin: 0 0 2rem;
}

.en-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.en-contact-form-row {
  display: flex;
  gap: 1.6rem;
}

.en-contact-form-group {
  flex: 1;
  min-width: 0;
}

.en-contact-form-group--full {
  width: 100%;
}

.en-contact-form-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}

.en-contact-form-input,
.en-contact-form-select,
.en-contact-form-textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  font-size: 1.4rem;
  color: #0F172A;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 0.6rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.en-contact-form-input:focus,
.en-contact-form-select:focus,
.en-contact-form-textarea:focus {
  border-color: #003395;
}

.en-contact-form-textarea {
  resize: vertical;
  min-height: 10rem;
}

.en-contact-verify {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.en-contact-verify .en-contact-form-input {
  flex: 1;
}

.en-contact-verify-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #64748B;
  background: #f1f5f9;
  border: 1px solid #E2E8F0;
  border-radius: 0.6rem;
  letter-spacing: 2px;
}

.en-contact-form-submit {
  width: 100%;
  padding: 1.4rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background: #32BEBD;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s ease;
}

.en-contact-form-submit:hover {
  background: #2aa8a7;
}

/* Distribution Section */
.en-contact-distribution {
  padding: 3rem 0 6rem;
  /* background: #f8fafc;
  border-top: 1px solid #E2E8F0; */
  min-height: 90rem;
}

.en-contact-distribution-desc {
  font-size: 1.4rem;
  color: #64748B;
  line-height: 2rem;
  margin: 3.2rem 0 4.6rem; 
}

/* Region Tabs */
.en-contact-region-tabs {
  display: flex;
  gap: 1.6rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.en-contact-region-tab {
  padding: 1.2rem 3.2rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #32BEBD;
  background: #fff;
  border: 1px solid #32BEBD; 
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0px;
}

.en-contact-region-tab:hover {
  color: #003395;
  border-color: #003395;
}

.en-contact-region-tab.is-active {
  color: #fff;
  background: #32BEBD;
  border-color: #32BEBD;
}

/* Region Panels */
.en-contact-region-panel {
  display: none;
}

.en-contact-region-panel.is-active {
  display: block;
}

.en-contact-region-layout {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}

/* Country List */
.en-contact-country-list {
  width: 20rem;
  flex-shrink: 0;
  border-right: 1px solid #E2E8F0;
}

.en-contact-region-name {
  font-size: 2.4rem;
  font-weight: 500;
  color: #0a1e3e;
  line-height: 3.2rem;
  margin: 0 0 3.2rem; 
}

.en-contact-country-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.en-contact-country-item {
  font-size: 1.6rem; 
  color: #64748B;
  line-height: 2.4rem;
  margin-bottom: 1.6rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.en-contact-country-item.is-active {
  color: #32BEBD;
  font-weight: 600;
}

.en-contact-country-item:hover {
  color: #32BEBD;
}

/* Distributors */
.en-contact-distributors {
  flex: 1;
  min-width: 0;
}

.en-contact-distributors-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #94A3B8;
  line-height: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1.2px; 
  margin: 0 0 3.2rem;
}

.en-contact-distributor-card {
  padding: 3.2rem;
  background: #F4F7FB; 
  margin-bottom: 2.4rem;
  transition: box-shadow 0.2s ease;
}

.en-contact-distributor-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.en-contact-distributor-name {
  font-size: 2.4rem;
  font-weight: 500;
  color: #333333;
  line-height: 3.2rem;
  margin: 0 0 0.8rem;
}

.en-contact-distributor-address {
  font-size: 1.6rem; 
  line-height: 2.4rem;
  color: #64748B;
  margin: 0 0 1.6rem;
}

.en-contact-distributor-mate {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-bottom: 0.2rem;
}
.en-contact-distributor-tel,
.en-contact-distributor-email {
  font-size: 1.4rem;
  font-weight: 500;
  color: #64748B;
  line-height: 2rem; 
  display: flex;
  align-items: center;
} 

.en-contact-distributor-tel .mate-icon {
  width: 1.05rem;
  height: 1.05rem;
  margin-right: 0.8rem;
}
.en-contact-distributor-email .mate-icon {
  width: 1.16rem;
  height: 0.93rem;
  margin-right: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .en-contact-branches-layout {
    flex-direction: column;
  }
  .en-contact-branches-list {
    width: 100%;
  }
  .en-contact-region-layout {
    flex-direction: column;
  }
  .en-contact-country-list {
    width: 100%;
  }
  .en-contact-country-list ul {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
  }
  .en-contact-country-item {
    border-bottom: none;
    padding: 0.6rem 1.2rem;
    background: #fff;
    border-radius: 0.4rem;
    border: 1px solid #E2E8F0;
  }
}

@media (max-width: 768px) {
  .en-contact-form-wrap {
    /* padding: 2.4rem 1.6rem; */
    text-align: center;
  }
  .en-contact-form-wrap .en-contact-form,
  .en-contact-form-wrap .fluentform {
    text-align: center;
  }
  .en-contact-form-wrap .en-contact-form-title,
  .en-contact-form-wrap .en-contact-form-label,
  .en-contact-form-wrap .ff-el-input--label,
  .en-contact-form-wrap .ff-el-input--content {
    text-align: center;
  }
  .en-contact-form-wrap .en-contact-form-input,
  .en-contact-form-wrap .en-contact-form-select,
  .en-contact-form-wrap .en-contact-form-textarea,
  .en-contact-form-wrap .ff-el-form-control {
    text-align: center;
  }
  .en-contact-form-wrap .en-contact-form-submit,
  .en-contact-form-wrap .ff-btn-submit {
    display: block !important;
    margin: 0 auto !important;
    width: 80% !important;
    max-width: 32rem;
  }
  .en-contact-form-row {
    flex-direction: column;
    gap: 1.2rem;
  }
  .en-contact-region-tabs {
    gap: 0.6rem;
  }
  .en-contact-region-tab {
    padding: 0.8rem 1.4rem;
    font-size: 1.2rem;
  }
  .en-contact-page-title {
    font-size: 2.2rem;
  }
}

/* 英文详情页产品图：固定占位宽高，不随图片实际尺寸变化 */
.product-hero-image {
  height: 42rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-hero-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

/* =============================
   EN Company Page
   ============================= */

.en-company-hero {
  position: relative;
  padding: 10rem 0 8rem;
  min-height: 40rem;
  color: #fff;
  overflow: hidden;
  /* Full-bleed：突破 .site-main 的 max-width:1440px 限宽，背景铺满浏览器宽度 */
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.en-company-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
} 

.en-company-hero .container {
  position: relative;
  z-index: 2;
}

.en-company-hero-content { 
  position: relative;
  z-index: 1;
  max-width: 80rem;
}

.en-company-hero-title {
  font-size: 4.6rem;
  font-weight: bold;
  line-height: 6.3rem;
  margin-bottom: 3.5rem;
  letter-spacing: 0px;
}

.en-company-hero-desc {
  font-size: 1.8rem;
  line-height: 2.9rem;
  color: #FFFFFF;
  margin: 0 0 1.1rem; 
}

/* Overview（参考中文 template-about.php 的 .overview-section 双卡片布局） */
.en-company-overview {
  padding: 7.6rem 0;
  background: #fff;
}

.en-company-overview .container {
  padding: 0;
}

.en-company-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.en-company-overview-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 1rem;
  padding: 4rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.en-company-overview-card-header {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2rem;
}

.en-company-overview-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 0.4rem;
  background: linear-gradient(180deg, #e8f0fe 0%, #f0f6ff 100%);
  flex-shrink: 0;
}
.en-company-overview-icon img {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
}

.en-company-overview-card-title {
  position: relative;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2.8rem;
  letter-spacing: 0em;
  color: #333333;
  margin: 0;
  padding-bottom: 1.4rem;
}
.en-company-overview-card-title::after {
  position: absolute;
  left: 0;
  bottom: 0.4rem;
  content: "";
  display: block;
  width: 6.8rem;
  height: 0.2rem;
  background: #32BEBD;
  border-radius: 1.6rem;
}

.en-company-overview-card-text {
  font-size: 1.5rem;
  color: #475569;
  line-height: 2.55rem;
  min-height: 10.2rem;
  margin: 0 0 2.4rem;
}

.en-company-overview-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.en-company-overview-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(180deg, #e8f0fe 0%, #f0f6ff 100%);
  border-radius: 0.4rem;
  line-height: 1.6rem;
  font-size: 1.4rem;
  color: #64748B;
}
.en-company-overview-badge-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 10rem;
  background: #32BEBD;
  flex-shrink: 0;
}

/* History */
.en-company-history {
  padding: 5.4rem 0 0;
  background: #fff;
  scroll-margin-top: 110px;
}

/* =============================
   英文 Company · History / 企业发展
   独立样式（不依赖中文 style.css 的 .timeline / .section-title-bar 类）
   视觉与中文 template-about.php 的 .timeline-section 保持一致
   ============================= */

/* 标题栏：左对齐 + 青色下划线（对应中文 .section-title-bar） */
.en-company-history-head {
  display: flex;
  flex-direction: column;
  align-items: center; 
}
.en-company-history-title {
  position: relative;
  font-size: 3.6rem;
  font-weight: bold;
  color: #333333;
  text-align: center;
  line-height: 4.9rem;
  padding-bottom: 1.1rem;
  margin: 0;
}

.en-company-history-dot {
  margin-bottom: 0.9rem;
  width: 10.6rem;
  height: 0.4rem;
  border-radius: 1rem;
  background: #32BEBD; 
}
 

/* 描述（标题栏下方） */
.en-company-history-subtitle {
  display: flex;
  align-items: center;
  padding: 0.3rem 0;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #64748B;
  text-align: center; 
  min-height: 4.6rem;
}

/* 时间轴 */
.en-timeline {
  position: relative;
}
.en-timeline-years {
  position: relative;
  z-index: 2;
  padding: 0 12rem;
  margin-top: 3.2rem;
  white-space: nowrap;
  overflow-x: auto;
}
.en-timeline-year {
  display: inline-block;
  background: transparent;
  border: none;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2.8rem;
  color: #64748B;
  cursor: pointer;
  padding: 1.7rem 6.2rem 1.2rem;
  position: relative;
  transition: color 0.2s ease;
}
.en-timeline-year.is-active,
.en-timeline-year:hover {
  background: linear-gradient(90deg, #0ea5e9 0%, #00bcab 55%, #15d6c1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.en-timeline-year.is-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #32BEBD;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.en-timeline-year.is-active {
  border-left: 2px solid #32BEBD;
}
.en-timeline-content {
  padding: 6.9rem 17rem 9.4rem 15rem;
  position: relative;
  background: linear-gradient(90deg, #f4f7fb 27%, #f4f7fb99 64%, #f4f7fb00 100%);
}
.en-timeline-panel {
  display: none;
  background: #fff;
  border-radius: 8px;
  padding: 4.1rem 3.6rem;
  min-height: 23.2rem;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.08);
}
.en-timeline-panel.is-active {
  display: block;
  animation: gstEnTimelineFadeIn 0.35s ease;
}
@keyframes gstEnTimelineFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.en-timeline-panel-year {
  display: inline-block;
  padding: 0 0.6rem;
  margin-bottom: 1.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #32BEBD;
  height: 2rem;
  line-height: 1.8rem;
  border: 1px solid #32BEBD;
  box-sizing: border-box;
}
.en-timeline-panel-title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2.8rem;
  color: #333333;
  margin-bottom: 1.4rem;
}
.en-timeline-panel-desc {
  font-size: 1.8rem;
  color: #64748B;
  line-height: 2.9rem;
  margin: 0;
}

/* 时间轴：带图片时左侧文字 + 右侧图片（与中文企业发展一致） */
.en-timeline-panel.is-active.has-media {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: stretch;
  gap: 3rem;
}
.en-timeline-panel-media {
  border-radius: 1.2rem;
  overflow: hidden;
}
.en-timeline-panel-media img {
  width: 100%;
  height: 100%;
  min-height: 23.2rem;
  object-fit: cover;
  display: block;
}

/* Principles */
.en-company-principles {
  padding: 3.2rem;
  background: #fff;
  scroll-margin-top: 110px;
}

.en-company-principles-box {
  margin-top: 1rem;
  padding-right: 1.4rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  letter-spacing: 1.6px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #002068;
}
.en-company-principles-box .box-icon {
  margin-right: 0.8rem;
  width: 2.2rem;
  height: 2.1rem;
}

.en-company-principles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.4rem;
  margin-top: 1.9rem;
}

.en-company-principle-card {
  background: #F4F7FB;
  border-radius: 8px;
  padding: 2.4rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.en-company-principle-step {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: #32BEBD;
  line-height: 2rem;
  margin-bottom: 1.6rem; 
}

.en-company-principle-icon {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 1.2rem;
  margin-bottom: 2.4rem;
}

.en-company-principle-title {
  font-size: 2.4rem;
  font-weight: 500;
  color: #002068;
  line-height: 3.2rem;
  margin-bottom: 1.2rem;
}

.en-company-principle-desc {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #64748B;
  letter-spacing: 0px;
}

/* Responsive */
@media (max-width: 1024px) {
  .en-company-principles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .en-company-hero-title {
    font-size: 3.6rem;
  }
  .en-company-overview {
    padding: 4rem 0;
  }
  /* Company Profile / Global Certifications：卡片与屏幕边缘留边距，两卡间距加大 */
  .en-company-overview .container {
    padding: 0 2rem;
  }
  .en-company-overview-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .en-company-overview-card {
    padding: 2.4rem;
  }
  .en-company-overview-card-text {
    min-height: 0;
  }
  /* Our History 移动端适配 */
  .en-company-history-title {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
  .en-company-history-subtitle {
    min-height: 0;
  }
  .en-timeline-years {
    padding: 0 1rem;
    margin-top: 2.4rem;
  }
  .en-timeline-year {
    font-size: 2rem;
    line-height: 2.4rem;
    padding: 1.2rem 1.6rem 1rem;
  }
  .en-timeline-content {
    padding: 3rem 2rem 4rem;
  }
  .en-timeline-panel {
    padding: 2.4rem;
  }
  .en-timeline-panel.is-active.has-media {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .en-timeline-panel-media img {
    min-height: 18rem;
  }
  .en-timeline-panel-title {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .en-timeline-panel-desc {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
  /* ISO 9001 标识：移动端居中 */
  .en-company-principles-box {
    justify-content: center;
    padding-right: 0;
  }
  .en-company-principles-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================
   视频播放弹窗（与中文版 style.css 保持一致）
   ============================= */
body.video-modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.video-modal[hidden] {
  display: none;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(2px);
}

.video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  background: #fff;
  border-radius: 1.2rem;
  padding: 2.4rem 2.4rem 2.8rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  animation: videoModalIn 0.28s ease both;
}

@keyframes videoModalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.video-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  width: 3.6rem;
  height: 3.6rem;
  border: none;
  border-radius: 50%;
  background: #F1F5F9;
  color: #0F172A;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.video-modal__close:hover {
  background: #E2E8F0;
}

.video-modal__title {
  margin: 0 0 1.6rem;
  padding-right: 3.6rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #0F172A;
}

.video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 0.8rem;
  overflow: hidden;
}

.video-modal__player {
  width: 100%;
  height: 100%;
  display: block;
}

.video-modal__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #94a3b8;
  font-size: 1.4rem;
}

@media (max-width: 600px) {
  .video-modal {
    padding: 1rem;
  }
  .video-modal__dialog {
    padding: 1.8rem 1.6rem 2rem;
  }
}

/* Event responsive */
@media (max-width: 1024px) {
  .en-event-card {
    gap: 2.5rem;
  }
  .en-event-title {
    font-size: 2.4rem;
    line-height: 3.4rem;
  }
  .en-event-meta {
    font-size: 1.6rem;
  }
  .en-event-desc {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}

@media (max-width: 768px) {
  .en-event {
    padding: 3rem 0;
  }
  .en-event-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .en-event-image {
    order: -1;
    height: 22rem;
  }
  .en-event-title {
    font-size: 2rem;
    line-height: 3rem;
  }
  .en-event-meta {
    font-size: 1.4rem;
  }
  .en-event-desc {
    font-size: 1.4rem;
    line-height: 2.4rem;
    margin-bottom: 1.5rem;
  }
}

/* =========================================================
   EN Industry Solution Detail — 英文站独立副本
   说明：以下为英文站行业详情页独立样式，不复用中文 style.css
   的 .ind-detail-* 定义，避免未来中文版样式变更影响英文站。
   若需调整英文站详情页样式，请直接修改本段。
   ========================================================= */
.industry-detail-hero {
  position: relative;
  background: #002068;
  min-height: 40rem;
  overflow: hidden;
  color: #fff;
}
.ind-detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.ind-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 30, 62, 0.88) 0%, rgba(13, 71, 161, 0.6) 55%, rgba(13, 71, 161, 0.22) 100%);
}
.ind-detail-blueprint {
  display: none;
}
.ind-detail-hero-inner {
  position: relative;
  z-index: 2;
}
.ind-detail-hero-title {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  padding: 8.5rem 0 0 0;
  margin-bottom: 4.8rem;
  color: #fff;
}
.ind-detail-hero-desc {
  font-size: 1.8rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 60rem;
  padding: 0;
  margin: 0;
}

/* 行业核心痛点 */
.industry-detail-pains {
  padding: 4rem 0 7rem;
  background: #fff;
}
.ind-detail-sec-head {
  margin-bottom: 2rem;
}
.ind-detail-sec-title {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3;
  color: #1b1b1d;
}
.ind-detail-sec-title::after {
  content: "";
  display: block;
  width: 8rem;
  height: 4px;
  margin-top: 0.8rem;
  background: #32BEBD;
}
.ind-detail-pain-grid {
  display: grid;
  grid-template-columns: 1fr; /* 一行一个 */
  gap: 1.6rem;
}
.ind-detail-pain-card {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  background: #F0F6FC;
  border: 1px solid #D8E3F0;
  border-radius: 0.8rem;
  padding: 2.4rem 3.2rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.ind-detail-pain-card:hover {
  border-color: #002068;
}
.ind-detail-pain-title {
  flex-shrink: 0;
  width: 30rem;
  font-size: 1.7rem;
  font-weight: 600;
  color: #002068;
  margin: 0;
  padding: 0 2.4rem 0 0;
  border: none;
  border-right: 1px solid #D8E3F0;
}
.ind-detail-pain-desc {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #444653;
  white-space: pre-line;
}

/* 选中/高亮态：默认与普通卡片一致，hover 时加深蓝边框 */
.ind-detail-pain-card.active {
  background: #F0F6FC;
  border-color: #D8E3F0;
}
.ind-detail-pain-card.active:hover {
  border-color: #002068;
}

/* 全场景保护方案 Tab */
.industry-detail-tabs-section {
  background: #fff;
}

/* 方案视频（位于 Tab 内容区、核心架构下方） */
.ind-detail-video-block {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E6ECF5;
}
.ind-detail-video-wrap {
  margin-top: 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 16px rgba(0, 32, 104, 0.12);
}
.ind-detail-video-player {
  display: block;
  width: 100%;
  max-height: 72vh;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: contain;
}

#contact-info {
  margin-top: 20px;
}
.ind-detail-tabs-layout {
  display: flex;
  align-items: stretch;
}
.ind-detail-tabs-sidebar {
  width: 33.333%;
  background: #fff;
  border-right: 1px solid #c4c5d5;
  padding-left: 0;
}
.ind-detail-tabs-sidebar-head {
  background: #fff;
  color: #1b1b1d;
}
.ind-detail-tabs-title {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
  text-align: left;
  padding: 1.2rem 2rem 1.2rem 2rem;
  margin: 0;
}
.ind-detail-tab-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  border-left: 4px solid transparent;
  padding: 1.4rem 1.6rem 1.4rem 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #747684;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.ind-detail-tab-btn:hover {
  background: #eef4fd;
  color: var(--color-primary);
}
.ind-detail-tab-btn.active {
  background: #eef4fd;
  color: var(--color-primary);
  border-left-color: var(--color-primary);
}

.ind-detail-tabs-content {
  width: 66.666%;
  padding: 0.8rem 2.4rem;
}
.ind-detail-tab-panel {
  display: none;
}
.ind-detail-tab-panel.active {
  display: block;
}
.ind-detail-tab-title {
  font-size: 2.4rem;
  font-weight: 500;
  color: #002068;
  text-align: left;
  padding-bottom: 1.6rem;
}
.ind-detail-tab-title::after {
  content: "";
  display: block;
  width: 6rem;
  height: 4px;
  margin-top: 1.2rem;
  background: var(--color-primary);
}
.ind-detail-tab-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}
.ind-detail-risk-box,
.ind-detail-solution-box {
  border-radius: 0.8rem;
  padding: 2.4rem;
  background: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 32, 104, 0.08);
  text-align: left;
}
.ind-detail-risk-box {
  background: #fdf5f5;
  border-left: 4px solid #c0392b;
}
.ind-detail-solution-box {
  background: #f0f6ff;
  border-left: 4px solid var(--color-primary);
}
.ind-detail-box-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: none;
  text-align: left;
}
.ind-detail-risk-title {
  color: #c0392b;
}
.ind-detail-solution-title {
  color: var(--color-primary);
}
.ind-detail-box-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: currentColor;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}
.ind-detail-list {
  list-style: none;
}
.ind-detail-list li {
  position: relative;
  padding-left: 0.8rem;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #444653;
}
.ind-detail-risk-list li::before {
  content: "-";
  position: absolute;
  left: -10px;
  color: #c0392b;
  font-weight: 700;
}
.ind-detail-solution-list li::before {
  content: "+";
  position: absolute;
  left: -10px;
  color: var(--color-primary);
  font-weight: 700;
}

/* Tab 内产品 */
.ind-detail-tab-products {
  margin-top: 4rem;
  padding-top: 3.2rem;
}
.ind-detail-products-subtitle {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3;
  color: #1b1b1d;
  margin-bottom: 2.4rem;
}
.ind-detail-products-subtitle::after {
  content: "";
  display: block;
  width: 8rem;
  height: 4px;
  margin-top: 0.8rem;
  background: var(--color-primary);
}
.ind-detail-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.ind-detail-tab-architecture {
  margin-top: 4rem;
  padding-top: 3.2rem;
}
.ind-detail-architecture-img {
  background: #fff;
  border-radius: 0.8rem;
  padding: 2.4rem;
  box-shadow: 0 4px 16px rgba(0, 32, 104, 0.08);
  text-align: center;
}
.ind-detail-architecture-img img {
  max-width: 100%;
  height: auto;
}
.ind-detail-tab-principles {
  margin-top: 4rem;
  padding-top: 3.2rem;
}
.ind-detail-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.ind-detail-principle-card {
  background: #fff;
  border-radius: 0.8rem;
  padding: 2.4rem;
  box-shadow: 0 4px 16px rgba(0, 32, 104, 0.08);
  text-align: center;
}
.ind-detail-principle-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #002068;
  margin-bottom: 0.8rem;
}
.ind-detail-principle-desc {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #444653;
}
@media (max-width: 992px) {
  .ind-detail-principle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .ind-detail-principle-grid {
    grid-template-columns: 1fr;
  }
}
.ind-detail-tab-processes {
  margin-top: 4rem;
  padding-top: 3.2rem;
}
.ind-detail-process-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.ind-detail-process-item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  background: #fff;
  border-radius: 0.8rem;
  padding: 2rem 2.4rem;
  box-shadow: 0 4px 16px rgba(0, 32, 104, 0.08);
}
.ind-detail-process-step {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #002068;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ind-detail-process-body {
  flex: 1;
}
.ind-detail-process-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #002068;
  margin-bottom: 0.4rem;
}
.ind-detail-process-desc {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #444653;
}
.ind-detail-product-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2.5rem 1.5rem;
}
.ind-detail-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.ind-detail-product-img {
  position: relative;
  height: 25.6rem;
  background: #f0edef;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ind-detail-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  color: #747684;
  transition: transform 0.3s ease;
}
.ind-detail-product-card:hover .ind-detail-product-img img {
  transform: scale(1.03);
}
.ind-detail-product-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ind-detail-product-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0F172A;
  margin-top: 2.4rem;
  margin-bottom: 0.5rem;
  line-height: 2.8rem;
}
.ind-detail-product-link {
  display: block;
  margin-top: auto;
  color: #94A3B8;
  font-weight: 600;
  font-size: 1.4rem;
  text-align: center;
  /* 覆盖 style.css 同选择器的 uppercase，英文版保持 Learn More 原样大小写 */
  text-transform: none;
  letter-spacing: 0.02em;
  height: 4.2rem;
  line-height: 4.2rem;
  background: transparent;
  border: 1px solid #fff;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border 0.2s ease;
}
.ind-detail-product-link:hover {
  color: #fff;
  background: #32BEBD;
  border: 1px solid #32BEBD;
}

/* CTA */
.industry-detail-cta {
  background: #002068;
  color: #fff;
  padding: 7rem 0;
}
.ind-detail-cta-box {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5rem 4rem;
  background: rgba(255,255,255,0.05);
  border-radius: 0.8rem;
}
.ind-detail-cta-corner {
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  border: 2px solid rgba(255,255,255,0.7);
}
.ind-detail-cta-corner.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; border-top-left-radius: 0.4rem; }
.ind-detail-cta-corner.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; border-top-right-radius: 0.4rem; }
.ind-detail-cta-corner.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; border-bottom-left-radius: 0.4rem; }
.ind-detail-cta-corner.br { bottom: -2px; right: -2px; border-left: none; border-top: none; border-bottom-right-radius: 0.4rem; }
.ind-detail-cta-eyebrow {
  font-family: Arial, Helvetica, "Microsoft YaHei", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.2rem;
  color: #b5c4ff;
  margin-bottom: 1.6rem;
}
.ind-detail-cta-title {
  font-size: 3.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2.4rem;
}
.ind-detail-cta-desc {
  font-family: Arial, Helvetica, "Microsoft YaHei", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #dce1ff;
  max-width: 520px;
  margin: 0 auto 3.2rem;
}
.ind-detail-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #fff;
  color: #002068;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 1.4rem 3.2rem;
  border-radius: 0.4rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.ind-detail-cta-btn:hover {
  background: #32BEBD;
  color: #fff;
}

/* 响应式 */
@media (max-width: 992px) {
  .industry-detail-hero { min-height: 260px; }
  .ind-detail-hero-title { font-size: 3.2rem; }
  .ind-detail-hero-desc { font-size: 1.6rem; }
  .ind-detail-pain-grid { grid-template-columns: 1fr; }
  .ind-detail-pain-title { width: 24rem; }
  .ind-detail-tabs-layout { flex-direction: column; }
  .ind-detail-tabs-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #c4c5d5; padding-left: 0; }
  .ind-detail-tabs-sidebar-head { padding: 2.4rem; }
  .ind-detail-tabs-content { width: 100%; padding: 3.2rem 2rem; }
  .ind-detail-tab-cols { grid-template-columns: 1fr; }
  .ind-detail-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .ind-detail-pain-grid { grid-template-columns: 1fr; }
  .ind-detail-pain-card { flex-direction: column; gap: 1.2rem; padding: 2rem; }
  .ind-detail-pain-title { width: 100%; padding-right: 0; border-right: none; padding-bottom: 1rem; }
  .ind-detail-product-grid { grid-template-columns: 1fr; }
  .ind-detail-cta-title { font-size: 2.4rem; }
}

/* =========================================================
   EN Products: Search Area + Search Results
   ========================================================= */
.en-products-search-area {
  background: #ffffff;
  padding: 3rem 0;
  border-bottom: 1px solid #eef2f7;
}
.en-products-search-form {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 88rem;
  margin: 0 auto;
  background: #f4f7fb;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 0.8rem 0.8rem 0.8rem 2.4rem;
  transition: border-color 0.25s ease;
}
.en-products-search-form:focus-within {
  border-color: #32BEBD;
}
.en-products-search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #1a2332;
  outline: none;
  padding: 0.8rem 0;
}
.en-products-search-input::placeholder {
  color: #94a3b8;
}
.en-products-search-input::-webkit-search-cancel-button {
  cursor: pointer;
}
.en-products-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex: none;
  background: #32BEBD;
  color: #fff;
  border: 0;
  border-radius: 5px;
  padding: 1.1rem 2.6rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease;
}
.en-products-search-btn:hover {
  background: #29a8a7;
}
.en-products-search-btn svg {
  width: 1.8rem;
  height: 1.8rem;
}

/* 搜索结果：复用 en-prod-grid 卡片样式 */
.en-products-search-results {
  background: #f8fafc;
  padding: 4.5rem 0 6rem;
  min-height: 40rem;
}
.en-search-results-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.en-search-results-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}
.en-search-results-count {
  font-size: 1.4rem;
  color: #64748b;
}
.en-search-results-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}
.en-search-results-empty {
  text-align: center;
  color: #64748b;
  padding: 6rem 0;
  font-size: 1.5rem;
}

/* 搜索区域/结果响应式 */
@media (max-width: 1024px) {
  .en-search-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .en-products-search-area {
    padding: 2rem 0;
  }
  .en-products-search-form {
    flex-wrap: wrap;
    padding: 1.2rem 1.2rem 1.2rem 1.6rem;
    gap: 1rem;
  }
  .en-products-search-btn {
    width: 100%;
    justify-content: center;
  }
  .en-products-search-results {
    padding: 3.5rem 0 4.5rem;
  }
  .en-search-results-grid {
    grid-template-columns: 1fr;
  }
  .en-search-results-title {
    font-size: 2.1rem;
  }
}

/* ===== 英文新闻详情：富文本区域字号加大（根字号 10px，覆盖 style.css 的 1rem=10px） ===== */
.news-article-content {
  font-size: 1.7rem;
  line-height: 1.8;
}

.news-article-content h2 {
  font-size: 2.4rem;
}

.news-article-content h3 {
  font-size: 2rem;
}

.news-article-content h4 {
  font-size: 1.8rem;
}

.news-article-content table {
  font-size: 1.5rem;
}
