/* ============================================================
   深圳市弘毅盛科技 - 全局样式
   Figma 设计稿像素级还原 + 移动端自适应
   基准：1rem = 16px；使用 flex/grid 布局
   ============================================================ */

/* ---------- Google Fonts 导入 ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;700&family=ABeeZee&display=swap');

/* ---------- CSS 变量（Figma 设计令牌） ---------- */
:root {
  /* 主色调 */
  --color-primary:       #1e2864;   /* Figma: #1e2864 深蓝主色 */
  --color-accent:        #2d4299;   /* Figma: #2d4299 蓝色强调 */
  --color-footer-bg:     #21347f;   /* Figma: #21347f 页脚背景 */
  --color-header-bg:     rgba(30, 40, 100, 0.7); /* Figma: rgba(30,40,100,0.7) 导航栏 */

  /* 文字颜色 */
  --color-text:          #333333;
  --color-text-secondary:#666666;
  --color-text-muted:    #999999;
  --color-text-white:    #ffffff;
  --color-footer-link:   rgba(255, 255, 255, 0.8);
  --color-footer-sub:    #838699;

  /* 边框 */
  --color-border:        #e0e0e0;
  --color-input-border:  #d1d5dc;

  /* 尺寸 */
  --header-height:       80px;      /* Figma: 导航栏高度 80px */
  --container-max:       1440px;    /* Figma: 内容区最大宽度 */
  --page-max:            1440px;    /* Figma: 页面设计宽度 */
  --section-pad-x:       clamp(1.25rem, 8vw, 7.8125rem); /* 125px → 20px */
  --footer-pad-x:        clamp(1.25rem, 4vw, 4rem);

  /* 阴影 */
  --shadow-card:         0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-news-img:     0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);

  /* 圆角 */
  --radius-card:         10px;
  --radius-btn:          10px;
}

/* ---------- 基础重置 ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: #ffffff;
  /* padding-top: var(--header-height); */
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

input,
textarea,
button {
  font-family: inherit;
  outline: none;
  border: none;
}

/* ---------- 通用容器 ---------- */
.container {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
}

/* ============================================================
   HEADER 导航栏
   Figma: 高度 96px(含padding)，背景 rgba(30,40,100,0.7)
   左右内边距各 240px（相对 1562px 设计稿）
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);          /* Figma 标注：导航栏高度 80px */
  background: rgba(30,49,125,0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px; /* Figma: pl-240px pr-240px / 1562px */
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* Logo */
.site-header .logo {
  font-family: 'ABeeZee', sans-serif;
  font-size: clamp(1.5rem, 2.3vw, 2.25rem); /* Figma: 36px */
  color: var(--color-text-white);
  
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* 主导航 */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 5.2vw, 5rem); /* Figma: 导航链接间距约 ~130px ÷ 7 → 使用 flex gap */
}

.nav-link:hover .drop-cont {
  display: block;
}

.drop-cont {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  display: none;
  text-align: center;
  padding-top: 10px;
  z-index: 1;
}

.drop-cont-ul {
  width: max-content;
  background-color: #fff;
  padding: 15px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  min-width: 150px;
}

.drop-cont-ul>li {
  line-height: 35px;
  color: #000;
}

.nav-link>a {
  font-size: 1rem; /* Figma: 16px */
  font-weight: 400;
  color: var(--color-text-white);
  
  padding-bottom: 2px;
  transition: border-bottom 0.2s;
}

.nav-link {
  position: relative;
}

.nav-links a.active {
  border-bottom: 2px solid var(--color-text-white); /* Figma: active 导航项下划线 */
}

.nav-links a:hover {
  opacity: 0.85;
}

/* 右侧工具区 */
.header-tools {
  display: flex;
  align-items: center;
  gap: 2rem; /* Figma: gap-32px */
  flex-shrink: 0;
}

.header-tools .search-icon {
  width: 18px;          /* Figma: 18px */
  height: 18px;
  cursor: pointer;
  object-fit: contain;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Figma: gap-8px */
  font-size: 1rem;
  color: var(--color-text-white);
  cursor: pointer;
}

.lang-switcher .dropdown-icon {
  width: 12px;          /* Figma: 12px */
  height: 7px;
  object-fit: contain;
}

.block-img {
  display: block;
  width: 100%;
}

/* 汉堡菜单（移动端） */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background-color: transparent;
  outline: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   Hero Banner 顶部横幅（各页面复用）
   Figma: 高度 400px，黑色半透明遮罩
   ============================================================ */
.hero-banner {
  position: relative;
  /* max-height: clamp(200px, 26vw, 400px);  */
  overflow: hidden;
  max-height: 500px;
}

.hero-banner .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner .hero-overlay {
  /* position: absolute; */
  /* inset: 0; */
  /* background: rgba(0, 0, 0, 0.4);  */
}

/* 带渐变遮罩（招聘页） */
/* .hero-banner .hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,40,100,0.8), rgba(45,66,153,0.8));
} */

/* ============================================================
   FOOTER 页脚
   Figma: 背景 #21347f，高度 477px
   ============================================================ */
.site-footer {
  background: var(--color-footer-bg);  /* Figma: #21347f 页脚背景色 */
  position: relative;
  overflow: hidden;
  padding: 4rem var(--footer-pad-x) 0; /* Figma: top-64px */
  border-radius: 20px 20px 0 0 ;
}

/* 装饰性光晕 */
.site-footer::before,
.site-footer::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.site-footer::before {
  width: 600px;
  height: 600px;
  background: rgba(45, 66, 153, 0.3);
  filter: blur(64px);  /* Figma: blur-64px */
  right: -100px;
  top: -300px;
}
.site-footer::after {
  width: 400px;
  height: 400px;
  background: rgba(26, 42, 94, 0.4);
  filter: blur(40px);  /* Figma: blur-40px */
  left: -100px;
  bottom: -100px;
}

.footer-inner {
  position: relative;
  z-index: 1;
  /* max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: clamp(200px, 27%, 416px) 1fr; 
  gap: 2rem; */
  padding-bottom: 2rem;
}

/* 左侧品牌区 */
.footer-brand .footer-logo {
  font-family: 'ABeeZee', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem); /* Figma: 80px */
  color: var(--color-text-white);
  text-transform: lowercase;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;                          /* Figma: gap-8px */
  margin-bottom: 1.5rem;
}

.footer-contact p {
  font-size: 1rem;                  /* Figma: 14px */
  color: var(--color-text-white);
  line-height: 1.43;
}

.footer-contact p img {
  vertical-align: middle;
}

.social-links {
  display: flex;
  gap: 0.75rem;                         /* Figma: gap-12px */
}

.social-btn {
  width: 40px;                          /* Figma: 40px */
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2); /* Figma: rgba(255,255,255,0.2) */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.social-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}
.social-btn img {
  width: 20px;                          /* Figma: 20px */
  height: 20px;
  object-fit: contain;
}

/* 右侧导航菜单网格 */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Figma: 5列 */
  gap: 1.25rem;
}

.footer-nav-col h4 {
  font-size: 1rem;                      /* Figma: 16px */
  font-weight: 500;
  color: var(--color-text-white);
  margin-bottom: 1.25rem;
  
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;                        /* Figma: gap-14px */
}

.footer-nav-col ul li a,
.footer-nav-col ul li span {
  font-size: 0.875rem;                  /* Figma: 14px */
  color: var(--color-footer-link);
  line-height: 1.43;
  
  transition: color 0.2s;
}
.footer-nav-col ul li a:hover {
  color: var(--color-text-white);
}

/* 版权栏 */
.footer-copyright {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Figma: border-t rgba(255,255,255,0.1) */
  padding: 1rem 0;
}

.footer-copyright p {
  font-size: 0.875rem;                  /* Figma: 14px */
  color: var(--color-footer-sub);
}

.footer-copyright a {
  font-size: 0.75rem;                   /* Figma: 12px */
  color: var(--color-footer-sub);
}

/* ============================================================
   Section 通用样式
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.25rem); /* Figma: 36px */
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: clamp(1rem, 1.15vw, 1.125rem); /* Figma: 18px */
  color: var(--color-text-secondary);
  line-height: 1.56;
}

.divider-bar {
  width: 80px;                           /* Figma: 80px 蓝色分隔线 */
  height: 4px;
  background: linear-gradient(90deg, #2d4299, #1e2864);
  margin: 0.75rem auto 1rem;
}

/* ============================================================
   新闻详情页（index.html）样式
   ============================================================ */

/* 返回链接 */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;                  /* Figma: 14px */
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.back-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* 文章标题区 */
.article-header {
  margin-bottom: 2rem;
}

.article-header h1 {
  font-size: clamp(1.25rem, 2vw, 2rem);  /* Figma: 32px */
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.625;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  gap: 1.5rem;                           /* Figma: gap-24px */
}

.article-meta span {
  font-size: 0.875rem;                   /* Figma: 14px */
  color: var(--color-text-muted);
  line-height: 1.43;
}

/* 文章配图 */
.article-cover {
  width: 100%;
  border-radius: var(--radius-card);    /* Figma: rounded-10px */
  box-shadow: var(--shadow-news-img);   /* Figma: shadow */
  margin-bottom: 3rem;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 文章正文 */
.article-body {
  max-width: 772px;
  margin: 0 auto;
}

.article-body p {
  font-size: 1rem;                       /* Figma: 16px */
  line-height: 2;                        /* Figma: leading-32px */
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.article-body h3 {
  font-size: 1.5rem;                     /* Figma: 24px */
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  margin-top: 1rem;
}

/* 分隔线 */
.article-divider {
  border: none;
  border-top: 1px solid var(--color-border); /* Figma: border-t #e0e0e0 */
  margin: 2rem 0 1.5rem;
}

/* 上下篇导航 */
.article-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.article-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;                       /* Figma: 16px */
  color: var(--color-text-secondary);
}

.article-nav-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* ============================================================
   新闻列表页（news.html）样式
   ============================================================ */
.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  /* display: flex;
  gap: 2rem;                            
  align-items: flex-start;
  padding: 3rem 0;                       
  border-bottom: 1px solid var(--color-border); */
}

.news-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;                           /* Figma: gap-8px */
  min-width: 100px;
  flex-shrink: 0;
}

.news-date-block .day {
  font-size: clamp(2rem, 3.6vw, 3.5rem); /* Figma: 56px */
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.news-date-block .month-year {
  font-size: 0.875rem;                   /* Figma: 14px */
  color: var(--color-accent);
  line-height: 1.43;
}

.news-content {
  flex: 1;
  min-width: 0;
}

.news-content h3 {
  font-size: clamp(1rem, 1.4vw, 1.375rem); /* Figma: 22px */
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.625;
  margin-bottom: 0.75rem;
}

.news-content p {
  font-size: 0.9375rem;                  /* Figma: 15px */
  line-height: 1.625;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;                   /* Figma: 14px */
  font-weight: 500;
  color: var(--color-accent);
}

.read-more img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.news-thumb {
  width: 240px; 
  height: 160px; 
  overflow: hidden;
  flex-shrink: 0;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
}

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;                           /* Figma: gap-8px */
  margin-top: 3rem;
  padding-bottom: 3rem;
}

.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;                    /* Figma: rounded-4px */
  border: 1px solid var(--color-border);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  background: transparent;
}

.page-btn.active {
  background: var(--color-accent);       /* Figma: bg-#2d4299 active */
  border-color: var(--color-accent);
  color: var(--color-text-white);
}

.page-btn:hover:not(.active) {
  background: rgba(45, 66, 153, 0.08);
}

/* ============================================================
   联系我们页（contact.html）样式
   ============================================================ */
.contact-section {
  background: #fff;
  padding: 4rem var(--section-pad-x);    /* Figma: py-96px */
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;                             /* Figma: gap-64px */
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.5rem); /* Figma: 40px */
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.contact-info .company-name {
  font-size: 1.25rem;                    /* Figma: 20px */
  color: var(--color-text);
  margin-bottom: 2rem;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  /* gap: 0.625rem;  */
}

.contact-detail-list .detail-row {
  font-size: 1rem;                       /* Figma: 16px */
  color: var(--color-text);
  line-height: 1.5;
}

.contact-qr-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: .8rem;
}

/* 单个：上图为二维码、下为文字；两个 .contact-qr-item 横排 */
.contact-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}

.contact-qr-item img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 8px;
  /* background: #f3f4f6; */
  /* border: 1px solid #e5e7eb; */
}

.contact-qr-caption {
  display: block;
  width: 100%;
  margin-top: .5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* 地图占位 */
.map-placeholder {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #eee;
  height: 400px;                         /* Figma: 400px */
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 在线留言区 */
.inquiry-product-ref {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #333;
}

.product-inquiry-section {
  margin-top: 2rem;
}

.message-section {
  background: #f9fafb;
  padding: 4rem var(--section-pad-x);
}

.msg-divider-bar {
  width: 80px;
  height: 4px;
  background: var(--color-accent);       /* Figma: #2d4299 */
  margin: 1rem auto 1.5rem;
}

.msg-sub {
  text-align: center;
  font-size: 1rem;                       /* Figma: 16px */
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
}

/* 询盘感谢页 /thank-you */
.thank-you-section .message-title {
  text-align: center;
}

.thank-you-text {
  text-align: center;
  font-size: 1.125rem;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

.thank-you-text--sub {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 0;
}

.thank-you-link-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.thank-you-link-secondary:hover {
  opacity: 0.9;
}

.form-card {
  max-width: 900px;                      /* Figma: 900px */
  margin: 0 auto;
  background: #fff;
  border-radius: 1rem;                   /* Figma: rounded-16px */
  box-shadow: 0 10px 15px 0 rgba(0,0,0,.1), 0 4px 6px 0 rgba(0,0,0,.1);
  padding: 3rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;                           /* Figma: gap-24px */
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;                           /* Figma: gap-8px */
}

.form-group label {
  font-size: 0.875rem;                   /* Figma: 14px */
  font-weight: 500;
  color: var(--color-text);
}

.form-group label .required {
  color: #fb2c36;                        /* Figma: #fb2c36 必填标记 */
}

.form-group input,
.form-group textarea {
  border: 1px solid var(--color-input-border); /* Figma: border #d1d5dc */
  border-radius: var(--radius-btn);
  padding: 0.75rem 1rem;                 /* Figma: py-12px px-16px */
  font-size: 1rem;
  color: var(--color-text);
  background: #fff;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
}

.form-group textarea {
  height: 170px;                         /* Figma: 170px */
  resize: vertical;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;                          /* Figma: 48px */
  padding: 0 2rem;
  border-radius: var(--radius-btn);
  background: linear-gradient(90deg, #1e2864, #2d4299); /* Figma: 渐变按钮 */
  color: var(--color-text-white);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
  min-width: 156px;                      /* Figma: 156px */
}

.btn-primary:hover {
  opacity: 0.9;
}

/* ============================================================
   招贤纳士页（recruitment.html）样式
   ============================================================ */
.recruit-intro {
  padding: 4rem var(--section-pad-x);
  text-align: center;
  background: linear-gradient(to bottom, #fff, #f9fafb);
}

.recruit-intro p {
  max-width: 900px;
  margin: 0 auto 1rem;
  font-size: 1.125rem;                   /* Figma: 18px */
  color: var(--color-text-secondary);
  line-height: 1.625;
}

.recruit-intro .highlight {
  font-size: 1.25rem;                    /* Figma: 20px */
  font-weight: 600;
  color: var(--color-accent);
}

.recruitment-section {
  padding: 3rem var(--section-pad-x) 5rem;
  background: #fff;
}

.recruitment-section h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.25rem); /* Figma: 36px */
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 2.5rem;
}

.job-list {
  max-width: 1000px;                     /* Figma: 1000px */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-item {
  border: 1px solid var(--color-border); /* Figma: border #e0e0e0 */
  border-radius: var(--radius-card);
  overflow: hidden;
}

.job-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;                  /* Figma: py-24px px-32px */
  background: linear-gradient(90deg, rgb(248,249,251), #fff); /* Figma: gradient bg */
  cursor: pointer;
  transition: background 0.2s;
}

.job-toggle:hover {
  background: linear-gradient(90deg, rgb(240,242,248), #fff);
}

.job-toggle h3 {
  font-size: clamp(1rem, 1.4vw, 1.375rem); /* Figma: 22px */
  font-weight: 600;
  color: var(--color-primary);
}

.job-toggle .chevron {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  flex-shrink: 0;
  object-fit: contain;
}

.job-item.open .chevron {
  transform: rotate(180deg);
}

.job-content {
  display: none;
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 2rem;
}

.job-item.open .job-content {
  display: block;
}

.job-section-title {
  font-size: 1.125rem;                   /* Figma: 18px */
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-accent); /* Figma: border-b-2 #2d4299 */
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.job-section {
  margin-bottom: 2rem;
}

.job-list-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.job-list-items li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9375rem;                  /* Figma: 15px */
  color: var(--color-text-secondary);
  line-height: 1.625;
}

.job-list-items li .bullet {
  color: var(--color-accent);
  flex-shrink: 0;
  line-height: 1.625;
}

/* ============================================================
   质量中心页（quality.html）样式
   ============================================================ */
.quality-content {
  padding: 4rem var(--section-pad-x);   /* Figma: py-96px */
  background: #fff;
  min-height: 400px;
}

.quality-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;                             /* Figma: 内容左右分布 */
  /* align-items: center; */
}

.quality-layout1 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.quality-image-wrap {
  border-radius: 1rem;                   /* Figma: rounded-16px */
  overflow: hidden;
  /* box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);  */
  /* aspect-ratio: 4/3; */
}

.quality-text p

.quality-image-wrap img {
  width: 100%;
  /* height: 100%;
  object-fit: cover; */
}

.quality-text-title {
  font-size: clamp(1.5rem, 2.3vw, 2.25rem); /* Figma: 36px */
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.quality-bar {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2d4299, #1e2864);
  margin-bottom: 1.5rem;
}

.tel-img {
  width: 24px;
}

.quality-text p {
  font-size: 1.0625rem;
  color: #000;  
  line-height: 1.625;
  margin-bottom: 2rem;
}

.quality-layout1 .quality-text p {
  font-size: 1.3rem;
}

/* ============================================================
   产品中心页（products.html）样式
   ============================================================ */
.products-section {
  padding: 4rem var(--section-pad-x);
  background: #fff;
}

.products-section h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.25rem); /* Figma: 36px */
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 0.75rem;
}

.products-section .section-sub {
  text-align: center;
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
}

.product-table-wrap {
  border-radius: 0.875rem;              /* Figma: rounded-14px */
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.product-table-wrap img {
  width: 100%;
  height: auto;
  /* display: block; */
}

/* ============================================================
   新闻详情 主内容区布局
   ============================================================ */
.news-detail-wrapper {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.news-detail-inner {
  max-width: 772px;                      /* Figma: 772px 内容宽度 */
  margin: 0 auto;
  padding: 5rem 0;
}

/* ============================================================
   响应式断点
   ============================================================ */


.swiper-banner .swiper-pagination-bullet {
  background: linear-gradient(to right, #fff, #fff);
  opacity: 1;
}

.swiper-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background:linear-gradient(to right, #3f5e9f, #5c6ba1) ;
}

.logo-img {
  max-width: 185px;
  display: block;
}

.center-box {
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 1490px) {
  .center-box {
    padding: 0 2rem;
  }
}

.center-box1 {
  max-width: 1680px;
  margin: 0 auto;
}

@media (max-width: 1720px) {
  .center-box1 {
    padding: 0 2rem;
  }
}

.normal-pd {
  padding: 4rem 0;
}

.normal-tit-group {
  text-align: center;
}



.about-desc {
  font-size: 19px;
  line-height: 2em;
  max-width: 1240px;
  margin: 0 auto;
}

.more-btn {
  display: inline-flex;
  width: 80px;
  height: 35px;
  border-radius: 999px;
  border: 1px solid #1e317d;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0,-50%);
  color: #2a3c84;
}

.normal-tit {
  font-size: 60px;
  position: relative;
  text-transform: uppercase;
}

.normal-tit-en {
  font-size: 36px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}



.normal-tit-en::after {
  content: '';
  width: 36px;
  height: 2px;
  background-color: #1e317d;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about-list {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.about-list>li {
  flex:0 0 calc((100% - 60px) / 3);
  background-color: #fff;
  box-shadow:0 0 46px rgba(33,52,127,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
  position: relative;
}

.about-list>li::after {
  content: '';
  width: 30px;
  height: 30px;
  background-color: #1e317d;
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 50%;
}

.about-list-num {
  font-size: 67.8px;
  color: #1e317d;
  font-weight: 600;
}

.about-list-text {
  font-size: 16px;
}

.about-img {
  margin-top: 120px;
}

.products-list {
  display: flex;
  gap: 20px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.products-list>li {
  flex: 0 0 calc((100% - 20px) / 2);
  position: relative;
}

.products-mask {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 40px;
}

.products-mask-tit {
  font-size: 34px;
  font-weight: 600;
}

.hide-pc  {
  display: none;
}

.text-center {
  text-align: center;
}

.mt20 {
  margin-top: 20px;
}

html,body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main  {
  flex: 1;
}


.news-list-left-tit {
  font-size: 20px;
  color: #000;
  font-weight: 600;
}

.news-list>li>a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;        
  padding: 3rem 0;   
}

.news-list>li {
  /* padding: 20px 0; */
  border-top: 1px solid #e0e0e0;
}

.news-list-left {
  flex:0 0 34.02%;
}

.news-list-center {
  flex:0 0 27.77%;
}

.news-list-right {
  flex:0 0 23.61%;
}

.news-list-img-box {
  width: 100%;
  height: 240px;
}

.news-list-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.corporate-culture-tit {
  width: 440px;
  height: 88px;
  background-color: #2ea2f0;
  border-radius: 10px;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  position: relative;
  max-width: 100%;
}

.corporate-culture-tit::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #046cb1;
  transform: translate(4px,4px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 10px;
}



.corporate-culture-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.corporate-culture-list>li {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 calc((100% - 60px) / 3);
}



.culture-list-tit{
  font-size: 40px;
  color: #000;
  font-weight: 600;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.culture-list-tit::after {
  content: '';
  width: 200px;
  height: 4px;
  background-color: #040404;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%,0);
}



/* 平板 ≤ 1024px */
@media (max-width: 1024px) {

  .site-header {
    padding: 0 clamp(1rem, 4vw, 3rem);
  }

  .nav-links {
    gap: 1.25rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-qr-list {
    flex-wrap: wrap;
  }

  .quality-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .normal-tit-left {
    text-align: left;
  }
  .swiper-banner .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background: linear-gradient(to right, #fff, #fff);
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
  
  .swiper-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 60px;
    border-radius: 999px;
    background:linear-gradient(to right, #3f5e9f, #5c6ba1) ;
  }
}

.quality-list-top {
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  position: relative;
  border:2px solid #2d59a8;
}

.culture-list-top {
  width: 70%;
  padding-top: 70%;
  position: relative;
  border-radius: 50%;
  position: relative;
  border:2px solid #2d59a8;
  margin: 80px 0;
}

.quality-list-top::before,.culture-list-top::before {
  content: '';
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 2px dashed #2d59a8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.quality-list-top-inner{
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.culture-list-bottom {
  flex: 1;
  position: relative;
}

.map-iframe {
  width: 100%;
  height: 100%;
}

.culture-list-bottom-text {
  background: #4faeed;
  color: #fff;
  padding: 20px;
  height: 100%;
  line-height: 1.8em;
  font-size: 24px;
  transform: translate(-10px,0);
}

.culture-list-bottom::before {
  content: '';
  width: 100%;
  height: 100%;
  background: #046cb1;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0,10px);
  z-index: -1;
}

.quality-list-bottom {
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), rgba(38,84,190,0.7));
  padding: 20px 20px 40px;
  border-radius: 10px;
  width: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-end;
  font-size: 80px;
  color: #000;
  font-weight: 600;
}

.quality-list {
  display: flex;
  gap: 100px;
  
}

.quality-list>li {
  flex:  0 0 calc((100% - 200px) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
}


/* 移动端 ≤ 768px */
@media (max-width: 768px) {
  .form-submit {
    justify-content: center;
  }
  .form-card {
    padding: 2rem;
  }
  .culture-list-top {
    width: 100%;
    padding-top: 100%;
    margin: 30px 0;
  }
  .culture-list-bottom-text {
    font-size: 18px;
  }
  .culture-list-tit {
    font-size: 30px;
  }
  .corporate-culture-tit {
    font-size: 30px;
  }
  .news-list-center {
    margin: 10px 0;
  }
  .hide-pc {
    display: block;
  }

  .hide-pc .more-btn {
    position: static;
    transform: none;
    width: 160px;
    height: 40px;
  }
  .hide-web {
    display: none;
  }
  .about-img {
    margin-top: 40px;
  }
  .about-list>li {
    min-height: 150px;
  }
  .about-list-num {
    font-size: 48px;
  }

  
  .about-list {
    gap: 20px;
    margin-top: 20px;
  }
  .products-list {
    margin-top: 20px;
  }
  .products-mask-tit {
    font-size: 20px;
  }
  .products-mask {
    padding: 20px;
  }

  .about-list,.products-list,.quality-list,.news-list>li>a,.corporate-culture-list {
    flex-direction: column;
    flex-wrap: initial;
  }


  .quality-list {
    gap: 20px;
    margin-top: 20px;
  }
  .quality-list-bottom {
    min-height: initial;
    font-size: 40px;
    padding: 20px;
  }

  /* .normal-pd {
    padding: 30px 0;
  } */
  .about-desc {
    font-size: 14px;
  }
  .normal-tit-en {
    font-size: 18px;
  }
  .normal-tit {
    font-size: 32px;
  }
  

  :root {
    --header-height: 60px;
  }

  body {
    padding-top: var(--header-height);
  }

  /* 导航隐藏，汉堡菜单显示 */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(30, 40, 100, 0.97);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .header-tools .lang-switcher {
    display: none;
  }

  /* 新闻列表 */
  .news-item {
    flex-direction: column;
  }

  .news-thumb {
    width: 100%;
    height: 200px;
  }

  .news-date-block {
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
  }

  /* 分页 */
  .pagination {
    gap: 0.375rem;
  }

  /* 表单 */
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* 招聘 */
  .job-toggle {
    padding: 1rem 1.25rem;
  }

  .job-content {
    padding: 1rem 1.25rem;
  }

  /* 质量 */
  .quality-layout {
    grid-template-columns: 1fr;
  }

  /* 详情页 */
  .news-detail-inner {
    padding: 2.5rem 0;
  }
}





/* 超小屏 ≤ 480px */
@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .hero-banner {
    max-height: 180px;
  }

  .news-date-block .day {
    font-size: 2rem;
  }

  .article-header h1 {
    font-size: 1.125rem;
  }
}

.product-list-section {
  padding: 10rem 0;
}

/* 产品列表页：顶部通栏背景（与 moban 产品列表一致） */
.product-list-section.product-list-section--page {
  /*background-size: cover;*/
  /*background-position: center;*/
  /*background-repeat: no-repeat;*/
  /*background-image: url('img/d56a6df7-f0dc-46de-beef-a777a771a64d-e2d28abe89.png');*/
  margin-top: 10px;
}

.product-list-section--page .product-list-inner {
  position: relative;
  z-index: 1;
}


.product-list-right {
  width: 48%;
}

.relative {
  position: relative;
}

.col-fff {
  color: #fff;
}

.product-list-inner {
  display: flex;
  justify-content: space-between;
}

.product-list-inner .quality-text h2 {
  color: #fff;
}

.product-list-inner .quality-text .quality-bar {
  background: linear-gradient(90deg, #fff, #fff);
}

.product-list-inner .quality-text .quality-body1  p {
  color: #fff;
}

@media (min-width: 768px) { 
  .product-list-inner .quality-text .quality-body1  p{
    font-size: 30px;
    line-height: 1.6em;
  }
}



.product-list-box-ul {
  display: flex;
  margin-top: 10px;
  gap: 5px;
}

.product-list-box-ul>li {
  flex: 1;
}

.product-list-img {
  display: block;
  width: 100%;
}

.product-list-box {
  padding-bottom: 50px;
}

.product-list-section {
  position: relative;
}

.product-list-section-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.contact-heading {
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  font-weight: 500;
  color: #333;
  margin-bottom: 0.375rem;
}

.contact-company {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: .5rem;
  line-height: 1.5;
}

.contact-detail-item {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
}

.message-title {
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  font-weight: 500;
  color: #333;
  text-align: center;
  margin-bottom: 0.75rem;
}

.contact-section-wrap {
  max-width: var(--page-max);
  margin: 0 auto;
}

@media (max-width: 768px) { 
  .product-list-inner {
    flex-direction: column;
  }
  .product-list-right {
    width: 100%;
  }
  .product-list-section {
    padding: 4rem 0;
  }
  .product-list-section-bg {
     background: linear-gradient(to right, rgba(30,40,100,0.8), rgba(45,66,153,0.8));
  }
}

/* 全站右侧悬浮二维码 */
.float-qr-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 9998;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-right: none;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.float-qr-sidebar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-accent);
  pointer-events: none;
}

.float-qr-sidebar .contact-qr-list--float {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 0;
}

.float-qr-sidebar .contact-qr-list--float .contact-qr-item {
  padding: 12px 16px 12px 12px;
  border-bottom: 1px solid #e5e7eb;
}

.float-qr-sidebar .contact-qr-list--float .contact-qr-item:last-child {
  border-bottom: none;
}

.float-qr-sidebar .contact-qr-list--float .contact-qr-item img {
  width: 100px;
  height: 100px;
}

.float-qr-sidebar .contact-qr-list--float .contact-qr-caption {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .float-qr-sidebar {
    display: none;
  }
}

/* 全站右下角留言弹窗 */
.float-message-widget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.float-message-panel {
  width: 320px;
  max-width: calc(100vw - 32px);
  border: 1px solid #c5c5c5;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.float-message-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 10px 12px;
  border: 0;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.float-message-title {
  flex: 1;
}

.float-message-chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.float-message-panel.is-collapsed .float-message-chevron {
  transform: rotate(-135deg);
}

.float-message-panel.is-collapsed .float-message-body {
  display: none;
}

.float-message-body {
  padding: 12px;
}

.float-message-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.float-message-input,
.float-message-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  font-size: 12px;
  color: #333;
  background: #fff;
}

.float-message-input:focus,
.float-message-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.float-message-textarea {
  min-height: 90px;
  resize: vertical;
}

.float-message-captcha-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.float-message-captcha-input {
  flex: 1;
  min-width: 0;
}

.float-message-captcha-img {
  flex-shrink: 0;
  height: 40px;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  cursor: pointer;
}

.float-message-submit {
  width: 100%;
  margin-top: 4px;
  padding: 10px;
  border: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.float-message-submit:hover {
  opacity: 0.88;
  filter: brightness(1.05);
}

.float-message-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .float-message-widget {
    right: 8px;
    bottom: 8px;
  }

  .float-message-panel {
    width: calc(100vw - 16px);
  }
}
