/* ═══════════════════════════════════════════════════════════
   盛路通信 · 首页重设计 · SIGNAL CLARITY
   Design: Bright Precision · Light Theme
   Concept: Clean signal, clear communication
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  /* Background */
  --bg-page: #F3F5F9;
  --bg-white: #FFFFFF;
  --bg-warm: #FAFBFC;
  --bg-hover: #F0F3F7;

  /* Brand */
  --brand-deep: #0B3D5C;
  --brand: #0C5C8A;
  --brand-bright: #0E7CBE;
  --accent: #0EA5E9;
  --accent-light: #E0F2FE;
  --accent-glow: rgba(14, 165, 233, 0.18);

  /* Warm */
  --cta: #F97316;
  --cta-hover: #EA580C;
  --cta-light: #FFF7ED;
  --cta-glow: rgba(249, 115, 22, 0.20);

  /* Text */
  --text-primary: #1E293B;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --text-placeholder: #CBD5E1;

  /* Borders & Shadows */
  --border-light: #E8ECF1;
  --border: #DDE2E8;
  --border-focus: #0EA5E9;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.10);

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Transitions */
  --ease-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-smooth: 0.30s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: 0.35s cubic-bezier(0, 0, 0.2, 1);
}

/* ── Global Reset & Base ── */
body {
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--text-primary); text-decoration: none; transition: color var(--ease-fast); }
a:hover { color: var(--brand-bright); }
img { max-width: 100%; height: auto; display: block; }

::selection {
  background: rgba(14, 165, 233, 0.18);
  color: var(--brand-deep);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-page); }
::-webkit-scrollbar-thumb { background: var(--text-placeholder); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ── Utility ── */
.wp { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.h50 { height: 28px; }
.h60 { height: 44px; }
.c { clear: both; }

/* ═══════════════════════════════════════════
   HEADER · Clean Glass
   ═══════════════════════════════════════════ */
#hd {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all var(--ease-smooth);
}

#hd .wp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

#hd .col-l {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

#hd .logo img {
  height: 40px;
  width: auto;
  transition: opacity var(--ease-fast);
}

#hd .logo:hover img { opacity: 0.82; }

#hd .hd-red {
  display: inline-block;
  padding-left: 30px;
  background: url(../images/top-4.png) no-repeat 0 center;
  margin-left: 15px;
  color: #e6272d;
  font-size: 14px;
  white-space: nowrap;
}

#hd .col-r { display: flex; align-items: center; gap: 6px; }

/* ── Override old lib.css nav/layout defaults ── */
body { padding-top: 0 !important; }
#hd { position: sticky; top: 0; }

#hd .wp { height: 66px; }

/* Kill old 70px header sizing */
#hd .col-l,
#hd .col-r { float: none; }

#nav li .items {
  line-height: 1.4;
  height: auto;
}

#nav li.on .items,
#nav li.bg.on .items,
#nav li.bg.ok .items,
#nav li.bg .items:hover,
#nav li .items:hover {
  background-image: none;
  background-color: var(--accent-light);
  color: var(--brand);
}

/* Fix nav dropdown — old CSS uses position:fixed full-width bar */
.nav-second2 {
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  width: auto !important;
  min-width: 150px;
  height: auto !important;
  line-height: 1.5 !important;
  text-align: left !important;
  transform: translateX(-50%) translateY(0);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
}

.nav-second2 dl { display: block; }
.nav-second2 dl dd { float: none; display: block; }
.nav-second2 dl dd a { margin: 0; }

/* Fix header icon buttons — old CSS has 70px sizing */
.hd-list { border-right: none !important; }

.hd-list .a1,
.hd-list .a2 {
  width: 38px !important;
  height: 38px !important;
  line-height: 38px !important;
}

.hd-list .btn em {
  width: 38px !important;
  height: 38px !important;
  border-left: none !important;
}

.hd-list .btn-1 em::after,
.hd-list .btn-2 em::after {
  margin-left: -9px;
  margin-top: -9px;
}

/* Fix search box positioning */
.search-box {
  top: 100% !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: 260px !important;
  height: auto !important;
  padding: 14px !important;
}

/* Fix language dropdown */
.hd-ul2 {
  top: 100% !important;
  width: auto !important;
  min-width: 84px;
  height: auto !important;
  line-height: 1.5 !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}

/* Hide old nav-second bar */
.nav-second { display: none !important; }

/* ── Navigation ── */
#nav { display: flex; align-items: center; gap: 0; list-style: none; }
#nav li { position: relative; }

#nav li .items {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  position: relative;
  transition: all var(--ease-fast);
}

#nav li .items::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 18px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transition: transform var(--ease-spring);
}

#nav li .items:hover,
#nav li.current .items {
  color: var(--brand);
  background: var(--accent-light);
}

#nav li .items:hover::after,
#nav li.current .items::after {
  transform: translateX(-50%) scaleX(1);
}

/* Dropdown — JS (lib.js) handles show/hide via fadeToggle, keep CSS clean */
#nav .nav-second2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  min-width: 150px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 8px 0;
  box-shadow: var(--shadow-lg);
}

/* Fix dd — hide pipe separators from HTML template */
#nav .nav-second2 .hd-ul1 dd {
  display: block;
  float: none;
  font-size: 0;   /* hide "|" text nodes */
}

#nav .nav-second2 .hd-ul1 dd a {
  display: block;
  padding: 9px 22px;
  font-size: 13px;  /* restore font-size for visible text */
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all var(--ease-fast);
}

#nav .nav-second2 .hd-ul1 dd a:hover {
  color: var(--brand-bright);
  background: var(--accent-light);
}

/* Header action buttons */
.hd-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid var(--border-light);
}

.hd-list .btn { position: relative; }

.hd-list .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: transparent;
  border: 1px solid transparent;
  transition: all var(--ease-fast);
  color: var(--text-muted);
  font-size: 13px;
}

.hd-list .btn a:hover {
  background-color: var(--bg-hover);
  border-color: var(--border-light);
  color: var(--text-primary);
}

/* Language dropdown — JS handles show/hide */
.hd-list .hd-ul2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 84px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 6px 0;
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.hd-list .hd-ul2 dd {
  display: block;
}

.hd-list .hd-ul2 dd a {
  display: block;
  padding: 7px 18px;
  font-size: 13px;
  color: var(--text-secondary);
  border: none;
  width: auto;
  height: auto;
  background: none;
}

.hd-list .hd-ul2 dd a:hover {
  color: var(--brand-bright);
  background: var(--accent-light);
}

/* Search box — JS handles show/hide */
.search-box {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-lg);
}

.search-box form { display: flex; flex-direction: column; gap: 10px; }

.search-box .input-text {
  height: 34px;
  padding: 0 12px;
  font-size: 13px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  outline: none;
  width: 100%;
  transition: all var(--ease-fast);
}

.search-box .input-text:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.search-box select.input-text { flex-shrink: 0; }
.search-box input[type="text"].input-text { flex-shrink: 0; }

.search-box button {
  height: 34px;
  padding: 0 14px;
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--brand);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  transition: all var(--ease-fast);
}

.search-box button:hover { background: var(--brand-bright); }

/* ═══════════════════════════════════════════
   BANNER · Full-Bleed Hero
   ═══════════════════════════════════════════ */
#ban {
  position: relative;
  overflow: hidden;
  background: var(--bg-page);
}

#ban .items a {
  position: relative;
  display: block;
  height: 560px;
  background-size: 100% 100% !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Gradient overlay */
#ban .items a::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 50%, rgba(11, 61, 92, 0.08) 82%, rgba(11, 61, 92, 0.35) 100%),
    linear-gradient(90deg, rgba(11, 61, 92, 0.18) 0%, transparent 48%, rgba(11, 61, 92, 0.18) 100%);
}

/* Bottom accent line */
#ban::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, var(--accent), var(--brand), var(--accent), transparent);
  opacity: 0.7;
}

#ban .txt {
  position: absolute;
  left: 10%;
  bottom: 24%;
  z-index: 2;
  /* Reset old centering */
  top: auto;
  right: auto;
  margin: 0;
  width: auto;
  max-width: 520px;
  transform: none;
  font-size: inherit;
  color: inherit;
}

#ban .txt img {
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

/* Dots */
#ban .slick-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex !important;
  gap: 10px;
}

#ban .slick-dots li { list-style: none; }

#ban .slick-dots li a,
#ban .slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  font-size: 0;
  transition: all var(--ease-smooth);
}

#ban .slick-dots li.slick-active a,
#ban .slick-dots li.slick-active button {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transform: scale(1.4);
}

/* Arrows */
#ban .slick-prev,
#ban .slick-next {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 0;
  transform: translateY(-50%);
  transition: all var(--ease-smooth);
}

#ban .slick-prev { left: 28px; }
#ban .slick-next { right: 28px; }

#ban .slick-prev::before,
#ban .slick-next::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
}

#ban .slick-prev::before { transform: translate(-30%, -50%) rotate(-135deg); }
#ban .slick-next::before { transform: translate(-70%, -50%) rotate(45deg); }

#ban .slick-prev:hover,
#ban .slick-next:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════ */
#bd { background: transparent; }

/* ── Section Title ── */
.lm-tit1 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  padding: 54px 0 8px;
  letter-spacing: 0.05em;
  line-height: 1.35;
  position: relative;
}

.lm-tit1::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  margin: 18px auto 0;
  border-radius: 2px;
}

/* ── Latest News · Clean Card ── */
.m-row1 {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  margin-top: 26px;
  position: relative;
  transition: all var(--ease-smooth);
  box-shadow: var(--shadow-xs);
}

.m-row1:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}

.m-row1 .tit {
  font-size: 20px;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  letter-spacing: 0.03em;
}

.m-row1 .a-btn {
  display: none;
}

/* News list items */
.m-row1 .a-txt {
  display: block;
  padding: 15px 16px 15px 0;
  border-bottom: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: all var(--ease-smooth);
  position: relative;
}

.m-row1 .a-txt::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: var(--accent);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: height var(--ease-smooth);
}

.m-row1 .a-txt:hover {
  padding-left: 20px;
  background: var(--accent-light);
}

.m-row1 .a-txt:hover::before { height: 55%; }

.m-row1 .a-txt:last-child { border-bottom: none; }

.m-row1 .a-txt h4 {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}

.m-row1 .a-txt:hover h4 { color: var(--brand-bright); }

.m-row1 .a-txt p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Button */
.m-row1 .btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding: 11px 30px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ease-smooth);
  line-height: 1.4;
  height: auto;
  width: auto;
}

.m-row1 .btn-more:hover {
  background: var(--brand-bright);
  box-shadow: 0 6px 20px rgba(12, 92, 138, 0.25);
  transform: translateY(-1px);
}

.m-row1 .btn-more span { color: inherit; }

/* ── Product Center · Elevated Cards ── */
.lm-list1 {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 22px 0 0;
}

.lm-list1 > li {
  float: none;
  width: 340px;
  flex: 0 0 auto;
  transition: transform var(--ease-spring);
}

.lm-list1 > li:hover { transform: translateY(-10px); }

.lm-list1 .inner {
  margin-left: 0;
  display: block;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--ease-smooth);
  box-shadow: var(--shadow-xs);
}

.lm-list1 > li:hover .inner {
  border-color: rgba(14, 165, 233, 0.25);
  box-shadow: var(--shadow-lg);
}

.lm-list1 .m-img {
  overflow: hidden;
  position: relative;
  padding-top: 80%;
}

.lm-list1 .m-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 61, 92, 0.35) 100%);
  opacity: 0;
  transition: opacity var(--ease-smooth);
  pointer-events: none;
  z-index: 1;
}

.lm-list1 > li:hover .m-img::after { opacity: 1; }

.lm-list1 .m-img img {
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lm-list1 > li:hover .m-img img {
  transform: scale(1.08);
}

.lm-list1 .txt {
  padding: 22px 22px 26px;
  position: relative;
}

.lm-list1 .txt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--ease-spring);
}

.lm-list1 > li:hover .txt::before { transform: scaleX(1); }

.lm-list1 .tit {
  display: inline-block;
  line-height: 25px;
  height: 25px;
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  background: var(--brand);
  padding: 0 10px;
  border-radius: 3px;
  margin-bottom: 17px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.lm-list1 > li:hover .tit { background: var(--brand-bright); }

.lm-list1 .txt p {
  font-size: 14px;
  line-height: 20px;
  height: 60px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* ── Technical Advantages · Alternating Grid ── */
.bg-w {
  background: #fff;
  padding: 1px 0;
  position: relative;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.lm-list2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: visible;
  margin: 6px 0 0;
}

.lm-list2 > li { float: none; width: auto; }

.lm-list2 > li > a {
  display: flex;
  align-items: stretch;
  background: #fff;
  overflow: hidden;
  min-height: 320px;
  position: relative;
  transition: all var(--ease-smooth);
}

.lm-list2 > li > a:hover { z-index: 2; }

.lm-list2 .li-1 a,
.lm-list2 .li-2 a { flex-direction: row; }

.lm-list2 .li-3 a,
.lm-list2 .li-4 a { flex-direction: row-reverse; }

.lm-list2 .img-box {
  width: 50%;
  flex-shrink: 0;
  float: none;
  overflow: hidden;
  position: relative;
}

.lm-list2 .img-box .pic { height: 100%; }
.lm-list2 .img-box .m-img {
  height: 100%;
  padding-top: 0;
  position: relative;
}

.lm-list2 .img-box .m-img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lm-list2 > li > a:hover .m-img img {
  transform: scale(1.05);
}

.lm-list2 .img-box .m-img em {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(11, 61, 92, 0.08);
  opacity: 0;
  transition: opacity var(--ease-smooth);
}

.lm-list2 > li > a:hover .m-img em { opacity: 1; }

.lm-list2 .txt-box {
  width: 50%;
  flex-shrink: 0;
  float: none;
  display: flex;
  align-items: center;
}

.lm-list2 .content-box { height: 100%; width: 100%; }
.lm-list2 .txt { padding-top: 0; height: 100%; }

.lm-list2 .txt-inner {
  background: var(--brand);
  height: 100%;
  transition: background var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative circles */
.lm-list2 .txt-inner::before {
  content: '';
  position: absolute;
  top: 24px;
  right: 24px;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.lm-list2 .txt-inner::after {
  content: '';
  position: absolute;
  bottom: -36px;
  left: -36px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.lm-list2 > li > a:hover .txt-inner {
  background: var(--brand-deep);
}

.lm-list2 .inner {
  padding: 46px 40px;
  position: relative;
  z-index: 1;
}

.lm-list2 .txt h5 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.lm-list2 .txt p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  height: auto;
}

.lm-list2 .txt .more {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  padding: 8px 0;
  font-weight: 600;
  letter-spacing: 0.03em;
  float: none;
  line-height: 1.4;
  transition: all var(--ease-fast);
  background: none;
}

.lm-list2 .txt .more::after {
  content: ' →';
  margin-left: 6px;
  transition: transform var(--ease-fast);
}

.lm-list2 > li > a:hover .txt .more { color: #fff; }

.lm-list2 > li > a:hover .txt .more::after {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   FOOTER · Clean Professional
   ═══════════════════════════════════════════ */
#fd {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  position: relative;
}

#fd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 10%, var(--accent) 50%, transparent 90%);
  opacity: 0.8;
}

#fd .fd-top { background: transparent; padding: 54px 0 38px; }

#fd .fd-top .wp {
  display: flex;
  justify-content: space-between;
  gap: 36px;
}

#fd .fd-top .col-l { flex: 1; }
#fd .fd-ul { overflow: hidden; display: flex; gap: 0; }

#fd .fd-ul > li { float: left; width: auto; flex: 1; }

#fd .fd-ul li h3 a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: opacity var(--ease-fast);
}

#fd .fd-ul li h3 a:hover { opacity: 0.8; }

#fd .fd-dl { margin-top: 14px; }

#fd .fd-dl dd a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 2.4;
  transition: all var(--ease-fast);
}

#fd .fd-dl dd a:hover {
  color: #fff;
  padding-left: 4px;
}

#fd .fd-top .col-r { flex-shrink: 0; }

#fd .fd-info {
  display: flex;
  gap: 10px;
  list-style: none;
}

#fd .fd-info li a {
  opacity: 0.55;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--ease-fast);
}

#fd .fd-info li a:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.4);
}

#fd .fd-bot,
#fd .fd-bot2 {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  text-align: center;
}

#fd .fd-bot p,
#fd .fd-bot2 p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  line-height: 2;
}

#fd .fd-bot p a,
#fd .fd-bot2 p a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--ease-fast);
}

#fd .fd-bot p a:hover,
#fd .fd-bot2 p a:hover { color: rgba(255, 255, 255, 0.7); }

#fd .fd-bot .blue,
#fd .fd-bot2 .blue { color: rgba(255, 255, 255, 0.55); }

#fd .fd-bot2 .bor-b {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

#fd .fd-bot2 .bor-b a.s1,
#fd .fd-bot2 .bor-b a.s2,
#fd .fd-bot2 .bor-b a.s3 {
  opacity: 0.5;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: all var(--ease-fast);
}

#fd .fd-bot2 .bor-b a.s1:hover,
#fd .fd-bot2 .bor-b a.s2:hover,
#fd .fd-bot2 .bor-b a.s3:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════
   SIDEBAR · Floating Actions
   ═══════════════════════════════════════════ */
.siderBar {
  position: fixed;
  right: 14px;
  bottom: 64px;
  z-index: 999;
  width: 46px;
}

.siderBar li { margin-bottom: 6px; list-style: none; }

.siderBar li a {
  display: block;
  width: 46px;
  height: 46px;
  background-color: var(--brand);
  border: 1px solid var(--brand);
  border-radius: var(--radius-sm);
  transition: all var(--ease-smooth);
  box-shadow: var(--shadow-xs);
  opacity: 0.88;
}

.siderBar li a:hover {
  background-color: var(--brand-bright);
  border-color: var(--brand-bright);
  opacity: 1;
  transform: translateX(-2px);
  box-shadow: var(--shadow-md);
}

.toTop {
  display: none !important;
}

/* ═══════════════════════════════════════════
   POPUPS & MODALS
   ═══════════════════════════════════════════ */
.black_overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 20, 30, 0.55);
  z-index: 1001;
  backdrop-filter: blur(3px);
}

.white_content {
  display: none;
  position: fixed;
  width: 520px;
  height: auto !important;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  z-index: 1002;
  overflow: visible;
  box-shadow: var(--shadow-xl);
}

.white_content a[onclick] {
  background-size: 24px !important;
  background-position: center !important;
}

/* WeChat / Website popups */
#f-weixin,
#f-website {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  z-index: 1002;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

#f-weixin p,
#f-website p {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

#f-weixin .p2,
#f-website .p2 {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 16px;
}

#f-weixin img,
#f-website img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #fff;
  transition: all var(--ease-fast);
}

.close-btn:hover {
  border-color: var(--cta);
  background: var(--cta-light);
}

/* Tel popup */
.tel_tanchu {
  padding: 18px 22px;
  width: 286px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  right: 5%;
  bottom: 10%;
  position: fixed;
  z-index: 99999;
}

.tel_tanchu .tel_line {
  color: var(--text-secondary);
  font-size: 13px;
  height: 34px;
  line-height: 34px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.tel_tanchu .tel_line a {
  color: var(--brand-bright);
  font-size: 13px;
  font-weight: 500;
}

.tel_tanchu .tel_line a:hover { color: var(--brand); }

/* Feedback form in modal */
#light .wp { width: 500px; margin: 0 auto; }

#light .tit {
  padding-top: 54px;
  padding-left: 32px;
}

#light .tit h2 {
  font-size: 22px;
  color: var(--text-primary);
  font-weight: 700;
}

#light .tit p {
  color: var(--text-secondary);
  margin-bottom: 18px;
}

#light #vform { padding-left: 30px; }

#light #rad {
  overflow: hidden;
  width: 406px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

#light #rad div {
  float: left;
  margin-bottom: 14px;
  margin-right: 50px;
}

#light #rad input {
  margin-right: 10px;
  accent-color: var(--brand);
}

#light #vform .li01 { overflow: hidden; margin-bottom: 16px; }
#light #vform .li01 .d1 { float: left; margin-right: 24px; }

#light #vform .li01 .d1 .lbltit,
#light #vform .li02 .lbltit,
#light #vform .li03 .lbltit {
  display: inline-block;
  padding-bottom: 8px;
  padding-left: 2px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}

#light #vform .li02 { margin-bottom: 14px; }

#light #vform .d1 input,
#light #vform .li02 input {
  padding-left: 12px;
  border: 1px solid var(--border);
  background: var(--bg-warm);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  font-size: 13px;
  height: 34px;
  transition: all var(--ease-fast);
}

#light #vform .d1 input { width: 192px; }
#light #vform .li02 input { width: 410px; }

#light #vform .d1 input:focus,
#light #vform .li02 input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  outline: none;
  background: #fff;
}

#light #vform .li03 .desc {
  width: 410px;
  min-height: 110px;
  border: 1px solid var(--border);
  background: var(--bg-warm);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  resize: none;
  transition: all var(--ease-fast);
}

#light #vform .li03 .desc:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  outline: none;
  background: #fff;
}

#light #subbtn {
  width: 124px;
  height: 40px;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  margin-top: 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 34px;
  background: var(--brand);
  letter-spacing: 0.04em;
  transition: all var(--ease-smooth);
}

#light #subbtn:hover {
  background: var(--brand-bright);
  box-shadow: 0 4px 16px rgba(12, 92, 138, 0.3);
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */

/* Page load sequence */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

#ban        { animation: fadeUp 0.7s ease-out; }
.m-row1     { animation: fadeUp 0.7s 0.12s ease-out both; }
.lm-list1 { animation: fadeUp 0.7s 0.24s ease-out both; }
.lm-list2 { animation: fadeUp 0.7s 0.36s ease-out both; }

/* Section title accent pulse */
@keyframes accentPulse {
  0%, 100% { opacity: 0.65; }
  50%      { opacity: 1; }
}

.lm-tit1::after { animation: accentPulse 3.5s ease-in-out infinite; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1200px) {
  .lm-list1 { gap: 20px; }
  .lm-list1 > li { width: 300px; }
  .lm-list2 .inner { padding: 36px 28px; }
}

@media (max-width: 1024px) {
  .wp { padding: 0 20px; }
  #hd .wp { height: 58px; }
  #hd .logo img { height: 34px; }
  #hd .hd-red { display: none; }

  #ban .items a { height: 400px; }
  #ban .txt { left: 6%; bottom: 20%; }
  #ban .txt img { max-width: 360px; }

  .lm-tit1 { font-size: 24px; padding-top: 40px; }

  .m-row1 { padding: 30px 26px; }
  .m-row1 .a-btn { position: static; display: inline-block; margin-bottom: 14px; }

  .lm-list1 { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .lm-list1 > li { width: calc(50% - 8px); max-width: 340px; }

  .lm-list2 { grid-template-columns: 1fr; }
  .lm-list2 > li > a { flex-direction: column !important; min-height: auto; }
  .lm-list2 .img-box,
  .lm-list2 .txt-box { width: 100%; }
  .lm-list2 .img-box { height: 210px; }
  .lm-list2 .inner { padding: 28px 24px; }

  #fd .fd-top .wp { flex-direction: column; gap: 22px; }
  #fd .fd-ul { flex-wrap: wrap; gap: 18px; }
  #fd .fd-ul > li { flex: 0 0 calc(33.33% - 12px); }
}

@media (max-width: 767px) {
  .wp { padding: 0 16px; }
  #hd .wp { height: 54px; }
  #hd .logo img { height: 30px; }

  #nav { display: none; }
  .hd-list { margin-left: auto; border-left: none; padding-left: 0; }

  #ban .items a { height: 260px; }
  #ban .txt { left: 5%; bottom: 16%; }
  #ban .txt img { max-width: 240px; }
  #ban .slick-prev,
  #ban .slick-next { width: 38px; height: 38px; }
  #ban .slick-prev { left: 10px; }
  #ban .slick-next { right: 10px; }

  .lm-tit1 { font-size: 20px; padding-top: 32px; letter-spacing: 0.03em; }
  .lm-tit1::after { width: 30px; height: 2.5px; margin-top: 12px; }

  .m-row1 { padding: 22px 18px; border-radius: var(--radius-md); margin-top: 16px; }
  .m-row1 .tit { font-size: 17px; }

  .lm-list1 { flex-direction: column; align-items: center; gap: 14px; }
  .lm-list1 > li { width: 100%; max-width: 420px; }

  .lm-list2 .img-box { height: 180px; }
  .lm-list2 .inner { padding: 22px 18px; }
  .lm-list2 .txt h5 { font-size: 17px; }

  #fd .fd-top { padding: 36px 0 24px; }
  #fd .fd-ul > li { flex: 0 0 calc(50% - 9px); }
}

@media (max-width: 480px) {
  #ban .items a { height: 200px; }
  #ban .txt img { max-width: 180px; }

  .lm-list2 .img-box { height: 150px; }
  .lm-list2 .txt h5 { font-size: 16px; }
  .lm-list2 .txt p { font-size: 13px; }
}

/* Print */
@media print {
  body { background: #fff; color: #000; }
  #hd, #fd, .siderBar, .toTop { display: none; }
}
