@charset "UTF-8";

/*==========================================================================
  KEYENCE 中国官网 - 样式�?(基于 www.keyence.com.cn 复刻)
==========================================================================*/

/* ===== CSS Custom Properties ===== */
:root {
  --color-primary: #C9A063;
  --color-primary-hover: #b88f54;
  --color-secondary: #1D6F16;
  --color-secondary-hover: #165a10;
  --color-text: #333;
  --color-text-light: #969a9b;
  --color-text-muted: #b9bdbe;
  --color-bg: #fff;
  --color-bg-light: #EDF9F7;
  --color-bg-footer: #484b4c;
  --color-bg-footer-dark: #2e3133;
  --color-border: #d8d8d8;
  --color-border-light: #d0d0d0;
  --color-border-dark: #545859;
  --color-link-new: #0064c7;
  --font-family-base: "Helvetica Neue", Helvetica, Arial, "Microsoft YaHei", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
  --font-family-en: myriad-pro, Helvetica, Arial, sans-serif;
  --max-width: 1280px;
  --max-width-banner: 1320px;
  --header-height: 128px;
  --header-height-searchbar: 32px;
  --header-height-mobile: 56px;
}

/* ===== Reset & Base ===== */
:root { font-size: 62.5%; }
*, *::before, *::after { padding: 0; margin: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  min-width: 320px;
  font-family: var(--font-family-base);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text);
  word-break: break-word;
  word-wrap: break-word;
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main { display: block; padding-top: 140px; }
p { margin-bottom: 16px; }
ol, ul { list-style: none; }
img { max-width: 100%; vertical-align: bottom; border-style: none; }
a { text-decoration: none; color: inherit; background-color: transparent; }
a:hover { text-decoration: underline; }

/* ===== Utility Classes ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: var(--max-width-banner); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.layout-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  height: 128px;
}
.layout-header > .layout-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  height: 128px;
  padding: 0 20px;
}

/* ===== Left: LOGO ===== */
.layout-header-logo {
  flex: 0 0 auto;
  line-height: 0;
  margin-right: 40px;
}
.layout-header-logo a {
  display: block;
  padding: 0;
}
.layout-header-logo img {
  width: 240px;
  height: auto;
  display: block;
}
@media (max-width: 1280px) {
  .layout-header-logo img { width: 216px; }
}
@media (max-width: 969px) {
  .layout-header {
    height: 52px;
  }
  .layout-header-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
  .layout-header-logo img { width: 200px; height: auto; }
  .layout-header-searchBar { display: none; }
}

/* ===== Right side: stacked (utility top + nav bottom) ===== */
.layout-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

/* ========== Top Row: Utility Bar ========== */
.layout-header-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 40px;
}

/* Utility group: hamburger + logo + phone (mobile only) */
.layout-header-utilityGroup {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Hamburger button (mobile only) */
.layout-header-menuButton {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0 4px 0 -12px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.layout-header-menuButtonBody {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.layout-header-menuButtonIcon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.layout-header-menuButtonIcon span {
  display: block;
  width: 20px;
  height: 2px;
  background: #706d6f;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.layout-header-menuButtonText {
  font-size: 1rem;
  color: #706d6f;
  line-height: 1;
}

/* Phone button (mobile only) */
.layout-header-phoneButton {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  margin-left: auto;
  color: var(--color-secondary);
  text-decoration: none !important;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.layout-header-phoneButtonBody {
  display: flex;
  align-items: center;
  gap: 4px;
}
.layout-header-phoneButtonIcon {
  width: 16px;
  height: 16px;
  color: var(--color-secondary);
}

/* Desktop utility links */
.layout-header-utilityDesktop {
  display: flex;
  align-items: center;
}
.layout-header-utilityList {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.layout-header-utilityList > li {
  display: flex;
  align-items: center;
}
.layout-header-utilityList > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 1.2rem;
  color: #333;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color 0.2s ease;
  line-height: 1;
}
.layout-header-utilityList > li > a:hover { color: #C9A063; }
.layout-header-utilityList .Tel > a {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
}
.layout-header-utilityList .Tel > a:hover { color: #C9A063; }
.layout-header-careerIcon,
.layout-header-globalIcon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #666a6b;
}
.layout-header-regionGroup {
  display: flex;
  align-items: center;
  gap: 2px;
}
.layout-header-currentRegion {
  font-weight: 500;
  color: #333;
}
.js-langSelector {
  position: relative;
}
.of-regionSelector {
  position: relative;
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 120px;
  padding: 8px 0;
  margin-top: 4px;
}
.lang-dropdown.is-show {
  display: block;
}
.lang-dropdown a {
  display: block;
  padding: 8px 16px;
  color: #333 !important;
  font-size: 1.2rem;
  text-decoration: none !important;
  transition: background 0.2s;
}
.lang-dropdown a:hover {
  background: #f5f5f5;
  color: #C9A063 !important;
}
.layout-header-language {
  color: #969a9b;
  font-size: 1.1rem;
}

/* ========== Bottom Row: Main Navigation Bar ========== */
.layout-header-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 56px;
}
.layout-header-body {
  display: flex;
  align-items: center;
  height: 56px;
}

/* Menu container (nav + search) */
.layout-header-menu {
  display: flex;
  align-items: center;
}

/* ========== Main Navigation ========== */
.navigationGlobal-outer {
  display: flex;
  align-items: center;
}
.navigationGlobal {
  display: flex;
  align-items: center;
  list-style: none;
  height: 44px;
}
.navigationGlobal > li {
  position: relative;
  display: flex;
  align-items: center;
}
.navigationGlobal > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  height: 44px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #C9A063;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.navigationGlobal > li > a:hover,
.navigationGlobal > li.is-active > a {
  color: #C9A063;
}
.navigationGlobal-chevron {
  width: 10px;
  height: 6px;
  color: #C9A063;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.navigationGlobal > li:hover .navigationGlobal-chevron {
  transform: rotate(180deg);
}


/* ========== Search Bar Row (always visible, full width below LOGO+nav) ========== */
.layout-header-searchBar {
  flex: 0 0 100%;
  order: 10;
  background: #f5f5f5;
  border-top: 1px solid #e8e8e8;
  padding: 5px 0;
}
.layout-header-searchBarForm {
  display: flex;
  align-items: center;
  width: 100%;
}
.layout-header-searchBarInputWrap {
  display: flex;
  align-items: center;
  flex: 1;
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  padding: 0 14px;
  gap: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.layout-header-searchBarInputWrap:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(220, 0, 47, 0.12);
}
.layout-header-searchBarIcon {
  flex-shrink: 0;
  color: #aaa;
}
.layout-header-searchBarInput {
  flex: 1;
  padding: 6px 0;
  font-size: 1.4rem;
  border: none;
  outline: none;
  background: transparent;
  min-width: 0;
  color: #333;
  line-height: 1.4;
}
.layout-header-searchBarInput::placeholder {
  color: #bbb;
}

/* Mega menu container (holds all panels, positioned relative to header) */
.layout-header-megaMenus {
  position: absolute;
  left: 0;
  right: 0;
  top: 128px;
  z-index: 1001;
  pointer-events: auto;
}
/* Bridge area between nav bar and panel */
.layout-header-megaMenus::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  z-index: -1;
}

/* ========== Mega Menu Dropdown (Full-width panel) ========== */
.navigationMegaMenu {
  position: fixed;
  top: 128px;
  left: 0;
  width: 100%;
  background: #f7f7f7;
  box-shadow: 0 4px 8px rgba(0,0,0,.3);
  z-index: 1001;
  display: none;
  pointer-events: auto;
}
/* When visible */
.navigationMegaMenu.is-show {
  display: block;
}
/* Mega Menu Container */
.navigationGlobal > li.js-megaMenu {
  position: relative;
}
.navigationMegaMenu-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0;
}
.layout-megaMenuGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 32px;
}
@media (max-width: 1280px) {
  .layout-megaMenuGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 969px) {
  .layout-megaMenuGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* ===== Product Mega Menu: pure text, multi-column ===== */
.mm-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
  min-width: 100%;
  max-width: 1400px;
  width: 100%;
}
@media (max-width: 1280px) {
  .mm-products-grid { 
    grid-template-columns: repeat(3, 1fr); 
    min-width: 100%;
    gap: 30px 40px;
  }
}
@media (max-width: 900px) {
  .mm-products-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px 30px;
  }
}
.mm-products-col { }
.mm-products-catTitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1D6F16;
  padding: 4px 0;
  border-bottom: 2px solid #1D6F16;
  margin-bottom: 4px;
  text-decoration: none !important;
  transition: color 0.2s;
}
.mm-products-catTitle:hover { color: #1D6F16; }
.mm-products-subList { list-style: none; }
.mm-products-subList li {
  font-size: 1.1rem;
  color: #1D6F16;
  padding: 2px 0;
  line-height: 1.4;
}
.mm-products-subList a {
  display: block;
  font-size: 1.25rem;
  color: #1D6F16;
  padding: 2px 0;
  text-decoration: none !important;
  transition: color 0.2s;
}
.mm-products-subList a:hover { color: #1D6F16; }

/* ===== Image Grid (solutions / downloads / support / etc.) ===== */
.mm-sectionTitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: #999;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.mm-imgGrid {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}
.mm-imgGrid--3col { grid-template-columns: repeat(3, 200px); }
.mm-imgGrid--2col { grid-template-columns: repeat(2, 200px); }
.mm-imgGrid--5col { grid-template-columns: repeat(5, 200px); gap: 10px; }
.mm-imgItem {
  display: block;
  text-decoration: none !important;
  text-align: center;
  transition: opacity 0.2s;
}
.mm-imgItem:hover { opacity: 0.85; }
.mm-imgItem img {
  width: 200px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  background: #f5f5f5;
}
.mm-imgItem span {
  display: block;
  font-size: 1.2rem;
  color: #333;
  margin-top: 4px;
  font-weight: 500;
}

/* ===== Text Links Group ===== */
.mm-textLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}
.mm-textLinks a {
  display: block;
  padding: 8px 16px;
  font-size: 1.3rem;
  color: #1D6F16;
  text-decoration: none !important;
  white-space: nowrap;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.mm-textLinks a:hover {
  background: #f5f5f5;
  color: #1D6F16;
}

/* Simple mega menu (solutions, downloads, etc.) */
.navigationMegaMenu-simple {
  margin-bottom: 0;
  text-align: center;
}
.navigationMegaMenu-catTitle {
  display: block;
  padding: 8px 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1D6F16;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 8px;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.navigationMegaMenu-catTitle:hover { color: #1D6F16; }
.navigationMegaMenu-catImage {
  display: block;
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 8px;
  background: #f5f5f5;
}
.navigationMegaMenu-catTitle span {
  display: block;
  margin-top: 4px;
  font-size: 1.2rem;
}
.navigationMegaMenu-sub li {
  padding: 0;
}
.navigationMegaMenu-sub a {
  display: block;
  padding: 3px 0 3px 12px;
  font-size: 1.2rem;
  color: #1D6F16;
  text-decoration: none !important;
  transition: color 0.2s ease;
  position: relative;
}
.navigationMegaMenu-sub a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #1D6F16;
  border-radius: 50%;
}
.navigationMegaMenu-sub a:hover { color: #1D6F16; }

/* Simple mega menu (solutions, downloads, etc.) */
.navigationMegaMenu-simple {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 200px;
}
.navigationMegaMenu-simple a {
  display: block;
  padding: 8px 12px;
  font-size: 1.3rem;
  color: #333;
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.navigationMegaMenu-simple a:hover {
  background: #f5f5f5;
  color: var(--color-primary);
}

/* ========== Scroll hide (entire header: both rows) ========== */
.layout-header.is-hidden {
  transform: translateY(-100%);
}
.layout-header {
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

/* ===== Hero Carousel ===== */
.hero-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  background: #f5f5f5;
}
.hero-slides { position: relative; }
.hero-slide {
  display: none;
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 20px;
  min-height: 480px;
}
.hero-slide.is-active { display: flex; align-items: center; flex-direction: row; }
.hero-slide-content {
  flex: 0 0 45%;
  max-width: 500px;
  z-index: 2;
  order: 2;
  padding-left: 30px;
}
.hero-slide-content h2 {
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #333;
}
.hero-slide-subtitle {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 8px;
}
.hero-slide-badge {
  display: inline-block;
  background: #c41230;
  color: #fff;
  padding: 2px 12px;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.hero-slide-product {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}
.hero-slide-series {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 24px;
}
.hero-slide-content p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
}
.hero-slide-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
}
.hero-slide-img img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  display: block;
}

/* Thumbnail Navigation */
.hero-thumbnails {
  position: absolute;
  bottom: 0;
  right: max(20px, calc((100% - 1320px) / 2));
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  z-index: 5;
}
.hero-thumb-list {
  display: flex;
  gap: 8px;
}
.hero-thumb {
  width: 96px;
  height: 58px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  background: #f5f5f5;
  transition: border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.5;
}
.hero-thumb:hover { opacity: 0.85; }
.hero-thumb.is-active {
  border-color: var(--color-primary);
  opacity: 1;
}
.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-thumb-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  color: #bbb;
  cursor: pointer;
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.hero-thumb-arrow:hover { color: #666; }
.hero-thumb-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  color: #bbb;
  cursor: pointer;
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.hero-thumb-play:hover { color: #666; }

/* ===== Section Styles ===== */
.section { padding: 60px 0; }
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: left;
  color: var(--color-text);
  padding: 16px 0 0 0;
  position: relative;
}
.section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 4px;
  background: var(--color-primary);
}

/* ===== Product Grid ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 16px;
  margin-bottom: 16px;
}
.product-table td {
  padding: 24px 12px 19px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  text-align: center;
  vertical-align: top;
}
.product-table-2col {
  width: 100%;
  transform: translateX(-100px);
}
.product-table-2col td {
  width: 33.333%;
  margin: 0 auto;
}
.product-table a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 216px;
}
.product-table img {
  max-width: 100%;
  height: auto;
  margin-bottom: 12px;
}
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 12px 19px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 216px;
}
.product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transform: translateY(-2px);
  border-color: var(--color-primary);
}
.product-card-img {
  width: 168px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.product-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}
.product-card-desc {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
  text-align: left;
}
.product-card-desc p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 6px 0;
}
.product-card-desc p:last-child {
  margin-bottom: 0;
}

/* ===== Section Link ===== */
.section-link {
  display: inline-block;
  margin-top: 32px;
  padding: 10px 32px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #c41230;
  border: 2px solid #c41230;
  border-radius: 3px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  background: #fff;
}
.section-link:hover {
  background: #c41230;
  color: #fff;
}
.section-link-wrapper { 
  text-align: center; 
  margin-top: 32px; 
}

/* ===== New Products ===== */
.new-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.new-product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none !important;
  transition: all 0.3s ease;
}
.new-product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.new-product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.new-product-card-body {
  padding: 16px 20px;
}
.new-product-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}
.new-product-card-desc {
  font-size: 1.3rem;
  color: #666;
}

/* ===== News & Events ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.news-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 20px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transform: translateY(-2px);
  border-color: var(--color-primary);
}
.news-card-top {
  display: flex;
  gap: 12px;
  align-items: center;
}
.news-card-date {
  font-size: 1.3rem;
  color: var(--color-text-light);
}
.news-card-tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 2px;
}
.news-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

/* ===== Resource Grid ===== */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.resource-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.resource-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.resource-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.resource-card-body {
  padding: 16px 20px;
}
.resource-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}
.resource-card-desc {
  font-size: 1.3rem;
  color: #666;
}

/* ===== Resource Brands (2�?�? ===== */
.resource-brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.resource-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.resource-brand-item img {
  max-width: 100%;
  height: auto;
}

/* ===== Side Banners ===== */
.side-banners {
  background: var(--color-bg-light);
  padding: 140px 0;
}
.banner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.banner-item {
  flex: 0 0 auto;
  max-width: 408px;
}
.banner-item img {
  width: 100%;
  display: block;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}
.banner-item:hover img { opacity: 0.9; }

/* ===== Social Media ===== */
.social-section { background: #f5f5f5; padding: 140px 0; }
.social-grid {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 280px;
  padding: 0 30px;
  border-right: none;
}
.social-card:last-child { border-right: none; }
.social-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  flex-shrink: 0;
}
.social-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
  line-height: 1.4;
}
.social-card p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* ===== Service Support ===== */
.service-support {
  background: #f8f8f8;
  padding: 48px 0;
}
.service-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.service-support-item {
  padding: 20px;
}
.service-support-item h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}
.service-support-item p {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 0;
}
.service-support-item .btn-outline {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 24px;
  font-size: 1.4rem;
  color: var(--color-text);
  border: 1px solid var(--color-border-dark);
  border-radius: 4px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}
.service-support-item .btn-outline:hover {
  background: var(--color-text);
  color: #fff;
}
.service-phone {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
}
.service-phone small { font-size: 1.2rem; color: var(--color-text-light); display: block; margin-top: 4px; }

/* ===== Footer ===== */
.footer {
  background: #444444;
  color: #ccc;
  padding: 30px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
}
/* 左列 */
.footer-col-left {
  text-align: center;
}
.footer-beian {
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
}
.footer-copyright {
  font-size: 12px;
  color: #999;
  line-height: 1.5;
}
/* 右列：联系信息 + 二维码 */
.footer-col-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
.footer-contact-info {
  text-align: right;
}
.footer-contact-table {
  border-collapse: collapse;
}
.footer-contact-table td {
  padding: 4px 8px 4px 0;
  vertical-align: top;
}
.footer-label {
  font-size: 14px;
  color: #999;
  white-space: nowrap;
  text-align: right;
}
.footer-value {
  font-size: 14px;
  color: #ccc;
  white-space: nowrap;
  text-align: left;
}
.footer-qr {
  text-align: center;
}
.footer-qr-title {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}
.footer-qr-image img {
  width: 100px;
  height: 100px;
}

/* 响应式布局 */
@media (max-width: 900px) {
  .footer-col-right {
    gap: 20px;
  }
  .footer-label,
  .footer-value {
    font-size: 12px;
  }
  .footer-qr-image img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }
  .footer-qr {
    order: -1;
  }
  .footer-col-right {
    flex-direction: column;
    justify-content: center;
    gap: 15px;
  }
  .footer-contact-info {
    text-align: center;
  }
  .footer-factory,
  .footer-contact {
    justify-content: center;
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  background: var(--color-bg-footer-dark);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 900;
}
.back-to-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--color-primary); }

/* ===== Content Page Styles ===== */
.content-section {
  margin-bottom: 40px;
  margin-top: 100px;
}
.content-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 4px solid #C9A063;
}
.content-table {
  border: 1px solid transparent;
  border-collapse: collapse;
  width: 100%;
}
.content-row {
  display: flex;
}
.content-cell {
  border: 1px solid transparent;
  padding: 20px;
}
.content-image-cell {
  width: 30%;
  display: flex;
  flex-direction: row;
  gap: 15px;
  background: transparent;
}
.image-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  width: 50%;
}
.image-item {
  aspect-ratio: 2/1;
  overflow: hidden;
  border: 1px solid #ddd;
}
.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-single {
  width: 50%;
  aspect-ratio: 2/1;
  overflow: hidden;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
}
.image-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-image-placeholder {
  font-size: 1.6rem;
  color: #999;
  text-align: center;
  padding: 40px;
  border: 2px dashed #ccc;
}
.content-text-cell {
  width: 70%;
}
.content-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.content-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
}
.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
}

/* ===== Responsive ===== */
@media (max-width: 1280px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 969px) {
  /* === Mobile: hamburger + centered logo + phone === */
  .layout-header-inner {
    position: relative;
    height: 52px;
    padding: 0 16px;
    justify-content: center;
  }
  .layout-header-right { display: none; }
  .layout-header-menuButton { display: flex; }
  .layout-header-phoneButton { display: flex; }

  /* Hide desktop utility links on mobile */
  .layout-header-utilityDesktop { display: none; }

  /* === Mobile: menu slides in from right === */
  .layout-header-content { padding: 0 12px; }
  .layout-header-body { height: 0; display: none; padding-left: 0; }

  /* Hide mega menu container on mobile (panels move into mobile menu via JS) */
  .layout-header-megaMenus { position: static; pointer-events: auto; }

  .layout-header-menu {
    position: fixed;
    top: 52px;
    left: 0;
    width: 100%;
    height: calc(100vh - 52px);
    background: #fff;
    overflow-y: auto;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s ease;
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    padding: 0;
  }
  .layout-header-menu.is-show { visibility: visible; transform: translateX(0); }

  /* Navigation becomes vertical in mobile menu */
  .navigationGlobal-outer {
    flex-direction: column;
    align-items: stretch;
    order: 1;
  }
  .navigationGlobal {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }
  .navigationGlobal > li {
    height: auto;
    border-bottom: 1px solid #e5e5e5;
  }
  .navigationGlobal > li > a {
    height: auto;
    padding: 14px 24px;
    font-size: 1.5rem;
  }
  .navigationGlobal-chevron { display: none; }

  /* Mega menu becomes static in mobile (inside menu panel) */
  .navigationMegaMenu {
    position: static;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    display: none;
    background: #f8f8f8;
    border-radius: 0;
  }
  .navigationMegaMenu.is-show { display: block; }
  .navigationMegaMenu-body { padding: 12px 32px 16px; }
}

/* ===== Product Search Bar ===== */
.product-search-bar {
  background: #f8f8f8;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.product-search-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.product-search-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}
.product-search-form {
  display: flex;
  flex: 1;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  overflow: hidden;
}
.product-search-input {
  flex: 1;
  padding: 10px 16px;
  font-size: 1.4rem;
  border: none;
  outline: none;
  background: #fff;
}
.product-search-btn {
  padding: 10px 24px;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.product-search-btn:hover {
  background: var(--color-primary-hover);
}

/* ===== Social Card Enhancements ===== */
.social-card-info {
  text-align: left;
  flex: 1;
}
.social-card-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
  line-height: 1.4;
}
.social-card-info p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.5;
}
.social-more-link {
  display: inline-block;
  font-size: 1.3rem;
  color: var(--color-primary);
  text-decoration: none !important;
  font-weight: 500;
}
.social-more-link:hover {
  text-decoration: underline;
}

/* ===== Service Support Section (Homepage) ===== */
.service-support-section {
  background: #333;
  padding: 60px 0;
}
.service-support-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
.service-support-left {
  flex: 1;
  max-width: 500px;
}
.service-support-left h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.service-support-left p {
  font-size: 1.3rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
}
.service-support-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 260px;
}
.service-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-block-label {
  font-size: 1.2rem;
  color: rgba(255,255,255,.5);
}
.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 3px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none !important;
  transition: opacity 0.2s ease;
  min-width: 180px;
}
.service-btn:hover {
  opacity: 0.9;
}
.service-btn svg {
  flex-shrink: 0;
}
.service-btn-red {
  background: var(--color-primary);
}
.service-btn-teal {
  background: #13778f;
}
.service-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
}

/* ===== Responsive Updates ===== */
@media (max-width: 969px) {
  .product-search-inner {
    flex-direction: column;
    gap: 8px;
  }
  .product-search-form {
    width: 100%;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .new-products-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-grid {
    gap: 32px;
  }
  .service-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .hero-slide-content {
    left: 5%;
    right: 5%;
    max-width: none;
  }
  .hero-slide-content h2 {
    font-size: 2.4rem;
  }
  .hero-slide-content p {
    font-size: 1.4rem;
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-carousel {
    margin-top: 52px;
  }
  .hero-slide-content h2 {
    font-size: 1.8rem;
  }
}

/* ===== Product Section Styles ===== */
.product-section {
  margin-bottom: 20px;
}
.product-row {
  display: flex;
  border: 1px solid #ddd;
}
.product-image {
  width: 30%;
  border-right: 1px solid #ddd;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.product-content {
  width: 70%;
  padding: 20px;
}
.product-title {
  font-size: 24px;
  font-weight: bold;
  color: #C9A063;
  margin-bottom: 15px;
}
.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-list li {
  padding: 3px 0;
  border-bottom: none;
}
.list-icon {
  color: #C9A063;
  margin-right: 10px;
}
.section-divider {
  display: none;
}

/* ===== Service Section Styles ===== */
.service-section {
  margin-bottom: 30px;
}
.service-title {
  font-size: 20px;
  font-weight: bold;
  color: #C9A063;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #C9A063;
  display: inline-block;
}
.service-content {
  padding-top: 10px;
}
.service-content p {
  margin: 8px 0;
  line-height: 1.6;
  color: #333;
}
.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.list-icon {
  color: #C9A063;
  margin-right: 10px;
  font-size: 16px;
}
.section-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 30px 0;
}

/* ===== Agent Recruitment Styles ===== */
.agent-section {
  margin-bottom: 40px;
  padding: 20px;
  background: #fafafa;
  border-radius: 8px;
}
.agent-title {
  font-size: 22px;
  font-weight: bold;
  color: #C9A063;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #C9A063;
}
.agent-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.agent-list li {
  padding: 10px 0;
  line-height: 1.8;
  color: #333;
  border-bottom: 1px dashed #ddd;
}
.agent-list li:last-child {
  border-bottom: none;
}
.agent-desc {
  padding-left: 30px;
  color: #666;
}
.agent-desc.highlight {
  background: #fff3cd;
  padding: 10px 15px;
  margin: 5px 0;
  border-radius: 4px;
}
.agent-intro {
  margin-bottom: 15px;
  color: #666;
  line-height: 1.6;
}
.agent-process {
  padding-left: 20px;
}
.agent-process li {
  padding: 10px 0;
  line-height: 1.8;
  color: #333;
}
.contact-section {
  background: #fff;
  border: 1px solid #C9A063;
}
.contact-info {
  font-size: 16px;
  line-height: 2;
  color: #333;
}
.contact-note {
  margin-top: 15px;
  font-weight: bold;
  color: #C9A063;
}
/* ===== Agent Recruitment Styles ===== */
.agent-section {
  margin-bottom: 40px;
  padding: 20px;
  background: #fafafa;
  border-radius: 8px;
}
.agent-title {
  font-size: 22px;
  font-weight: bold;
  color: #C9A063;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #C9A063;
}
.agent-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.agent-list li {
  padding: 10px 0;
  line-height: 1.8;
  color: #333;
  border-bottom: 1px dashed #ddd;
}
.agent-list li:last-child {
  border-bottom: none;
}
.agent-desc {
  padding-left: 30px;
  color: #666;
}
.agent-desc.highlight {
  background: #fff3cd;
  padding: 10px 15px;
  margin: 5px 0;
  border-radius: 4px;
}
.agent-intro {
  margin-bottom: 15px;
  color: #666;
  line-height: 1.6;
}
.agent-process {
  padding-left: 20px;
}
.agent-process li {
  padding: 10px 0;
  line-height: 1.8;
  color: #333;
}
.contact-section {
  background: #fff;
  border: 1px solid #C9A063;
}
.contact-info {
  font-size: 16px;
  line-height: 2;
  color: #333;
}
.contact-note {
  margin-top: 15px;
  font-weight: bold;
  color: #C9A063;
}

/* ===== Agent Recruitment Styles ===== */
.agent-page-header {
  text-align: center;
  margin-bottom: 50px;
}
.agent-main-title {
  font-size: 36px;
  font-weight: bold;
  color: #1D6F16;
  margin-bottom: 10px;
}
.agent-subtitle {
  font-size: 18px;
  color: #666;
}

.agent-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.agent-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.agent-card-header {
  background: linear-gradient(135deg, #1D6F16 0%, #2E8B2E 100%);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.agent-icon-wrap {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agent-icon {
  font-size: 24px;
}
.agent-title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}
.agent-badge {
  background: #C9A063;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  margin-left: auto;
}

.agent-card-body {
  padding: 25px;
}

.agent-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.agent-list li {
  padding: 12px 0;
  line-height: 1.8;
  color: #333;
  border-bottom: 1px dashed #eee;
  position: relative;
  padding-left: 28px;
}
.agent-list li:last-child {
  border-bottom: none;
}
.list-icon {
  position: absolute;
  left: 0;
  color: #1D6F16;
  font-weight: bold;
}

.agent-intro {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

/* �������� */
.agent-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.benefit-item {
  background: #EDF9F7;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.benefit-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.benefit-title {
  font-size: 18px;
  font-weight: bold;
  color: #1D6F16;
  margin-bottom: 8px;
}
.benefit-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* �������� */
.support-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.support-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
}
.support-number {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #C9A063 0%, #D4AF37 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}
.support-content h4 {
  margin: 0 0 5px 0;
  color: #1D6F16;
}
.support-content p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* ����ʱ���� */
.process-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ddd;
}
.process-step {
  flex: 1;
  min-width: 120px;
  text-align: center;
  position: relative;
  padding-top: 60px;
}
.process-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #C9A063 0%, #D4AF37 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 4px 10px rgba(201,160,99,0.4);
}
.process-line {
  position: absolute;
  top: 25px;
  left: 50%;
  width: 50%;
  height: 2px;
  background: #C9A063;
  z-index: 0;
}
.process-step:last-child .process-line {
  display: none;
}
.process-step h4 {
  color: #1D6F16;
  margin: 10px 0 5px 0;
}
.process-step p {
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}

/* ���ÿ�Ƭ */
.quote-card {
  background: linear-gradient(135deg, #1D6F16 0%, #2E8B2E 100%);
  border-radius: 12px;
}
.quote-card .agent-card-body {
  padding: 40px;
  text-align: center;
}
.quote-icon {
  font-size: 60px;
  color: rgba(255,255,255,0.3);
  position: absolute;
  top: 20px;
  left: 20px;
}
.quote-text {
  color: #fff;
  line-height: 1.8;
  font-size: 16px;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}
.quote-author {
  color: rgba(255,255,255,0.8);
  font-style: italic;
  font-size: 14px;
}

/* ��ϵ��Ƭ */
.contact-card {
  border: 2px solid #C9A063;
}
.contact-info-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-icon {
  font-size: 32px;
}
.contact-content h4 {
  margin: 0 0 5px 0;
  color: #1D6F16;
}
.contact-content p {
  margin: 0;
  color: #333;
  font-size: 15px;
}
.contact-content strong {
  color: #C9A063;
}
.contact-note {
  margin-top: 20px;
  padding: 15px;
  background: #FFF9E6;
  border-radius: 8px;
  text-align: center;
  color: #C9A063;
  font-weight: bold;
  font-size: 15px;
}
.note-icon {
  margin-right: 8px;
}

/* ������Ƭ */
.highlight-card {
  border: 2px solid #C9A063;
}

@media (max-width: 768px) {
  .agent-main-title {
    font-size: 28px;
  }
  .agent-benefit-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline {
    flex-direction: column;
  }
  .process-timeline::before {
    display: none;
  }
  .process-step {
    padding-top: 0;
    padding-bottom: 25px;
    text-align: left;
  }
  .process-circle {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0;
    display: inline-flex;
    margin-right: 15px;
  }
  .process-line {
    display: none;
  }
  .contact-info-wrap {
    flex-direction: column;
  }
}

/* ===== About Us Styles ===== */
.about-page-header {
  text-align: center;
  margin-bottom: 40px;
}
.about-main-title {
  font-size: 32px;
  font-weight: bold;
  color: #1D6F16;
  margin: 0;
}

.about-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 25px 30px;
  margin-bottom: 25px;
}

.about-section-title {
  font-size: 20px;
  font-weight: bold;
  color: #C9A063;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #C9A063;
  display: inline-block;
}

.about-content {
  color: #333;
  line-height: 1.8;
  font-size: 15px;
}
.about-content p {
  margin: 0;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-list li {
  padding: 12px 0;
  line-height: 1.7;
  color: #333;
  border-bottom: 1px dashed #eee;
  position: relative;
  padding-left: 28px;
}
.about-list li:last-child {
  border-bottom: none;
}
.about-list .list-icon {
  position: absolute;
  left: 0;
  color: #1D6F16;
  font-weight: bold;
}

/* Ը����Ƭ */
.vision-card {
  background: linear-gradient(135deg, #1D6F16 0%, #2E8B2E 100%);
  color: #fff;
}
.vision-card .about-section-title {
  color: #C9A063;
  border-color: #C9A063;
}
.vision-content {
  padding: 20px 0;
}
.vision-content p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px 0;
}
.vision-content p:last-child {
  margin-bottom: 0;
}
.vision-divider {
  height: 2px;
  background: rgba(201,160,99,0.3);
  margin: 25px 0;
}

@media (max-width: 768px) {
  .about-card {
    padding: 20px;
  }
}
