/* =========================
   Root Variables
========================= */
:root{
  --bg:#ffffff;
  --ink:#0F172A;
  --muted:#5E6B84;
  --line:#E6EBF4;
  --soft:#F6F9FD;
  --brand:#1F6BFF;
  --brand-dark:#1554D1;
  --brand-deep:#0E3A8A;
  --accent:#53B3FF;
  --shadow:0 18px 50px -30px rgba(15,23,42,.30);
  --shadow-lg:0 30px 70px -34px rgba(15,23,42,.34);
}

/* =========================
   Base
========================= */
html,
body{
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  scroll-behavior:smooth;
}

body{
  overflow-x:hidden;
  overflow-y: scroll;
}




a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
}

.container{
  max-width:1280px;
}

.section{
  padding:40px 0;
}

/* =========================
   Common Typography
========================= */
.kicker{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-weight:600;
  color:var(--muted);
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.82rem;
}

.kicker:before{
  content:"";
  width:22px;
  height:2px;
  border-radius:2px;
  background:linear-gradient(90deg,var(--brand),var(--accent));
}

.h-title{
  font-size:2rem;
  letter-spacing:-.03em;
  font-weight:750;
  margin:.75rem 0 1rem;
}

.p-lead{
  color:var(--muted);
  font-size:1.15rem;
  line-height:1.75;
  max-width:92rem;
}

/* =========================
   Buttons
========================= */
.btn-brand{
  background:linear-gradient(135deg,var(--brand) 0%,var(--brand-deep) 100%);
  color:#fff;
  border:1px solid var(--brand);
  padding:.9rem 1.4rem;
  border-radius:999px;
  font-weight:650;
  transition:.18s ease;
  box-shadow:0 12px 26px -18px rgba(31,107,255,.65);
}

.btn-brand:hover{
  background:linear-gradient(135deg,var(--brand-dark) 0%,var(--brand-deep) 100%);
  border-color:var(--brand-dark);
  color:#fff;
  transform:translateY(-1px);
}

.btn-ghost{
  background:transparent;
  color:var(--ink);
  border:1px solid var(--line);
  padding:.9rem 1.4rem;
  border-radius:999px;
  font-weight:650;
  transition:.18s ease;
}

.btn-ghost:hover{
  border-color:rgba(15,23,42,.25);
  transform:translateY(-1px);
}

/* =========================
   Common Cards / Components
========================= */
.card-soft{
  border:1px solid rgba(230,235,244,.95);
  border-radius:26px;
  background:#fff;
  padding:28px;
  height:100%;
  transition:.18s ease;
  position:relative;
  overflow:hidden;
  box-shadow:0 18px 42px -34px rgba(15,23,42,.18);
}

.card-soft:hover{
  transform:translateY(-4px);
  border-color:rgba(31,107,255,.22);
  box-shadow:var(--shadow);
}

.iconDot{
  width:50px;
  height:50px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(31,107,255,.08);
  color:var(--brand);
  border:1px solid rgba(31,107,255,.10);
  font-size:1rem;
  margin-bottom:14px;
}

.mini{
  border:1px solid rgba(230,235,244,.95);
  border-radius:18px;
  background:rgba(248,251,255,.92);
  padding:18px 16px;
  height:100%;
}

.mini .n{
  font-weight:800;
  letter-spacing:-.02em;
}

.mini .t{
  color:var(--muted);
  line-height:1.7;
  margin-top:6px;
  font-size:.94rem;
}

.tag{
  display:inline-block;
  border:1px solid rgba(230,235,244,.95);
  background:#fff;
  color:rgba(15,23,42,.82);
  padding:.5rem .8rem;
  border-radius:999px;
  font-weight:650;
  font-size:.88rem;
  transition:.18s ease;
}

.tag:hover{
  border-color:rgba(31,107,255,.22);
  color:var(--brand);
}

/* =========================
   Footer
========================= */
footer{
  padding:48px 0 28px;
  background:#0F172A;
  color:rgba(255,255,255,.72);
}

footer h6{
  color:#fff;
  font-weight:750;
  margin-bottom:14px;
}

.f-link{
  display:block;
  padding:6px 0;
  color:rgba(255,255,255,.72);
  transition:.18s;
}

.f-link:hover{
  color:#fff;
  transform:translateX(2px);
}

.f-meta{
  border-top:1px solid rgba(255,255,255,.10);
  margin-top:26px;
  padding-top:18px;
  font-size:.92rem;
}

/* =========================
   Modal / Forms
========================= */

.consult-modal .modal-dialog {
    margin-top: 50px;
  margin-bottom: auto;
}


.consult-modal .modal-content{
  border:none;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 24px 60px -30px rgba(15,23,42,.4);
}

.consult-modal .modal-header{
  padding:22px 24px 18px;
  border-bottom:1px solid rgba(230,235,244,.9);
  background:linear-gradient(135deg, rgba(31,107,255,.08), rgba(83,179,255,.08));
}

.consult-modal .modal-title{
  font-weight:800;
  letter-spacing:-.02em;
}

.consult-modal .modal-body{
  padding:22px 24px 24px;
}

.form-label{
  font-weight:700;
  color:rgba(15,23,42,.88);
  margin-bottom:.45rem;
}

.form-control,
.form-select{
  border-radius:14px;
  border:1px solid #DCE3F0;
  padding:.8rem .95rem;
  box-shadow:none!important;
}

.form-control:focus,
.form-select:focus{
  border-color:rgba(31,107,255,.45);
  box-shadow:0 0 0 .2rem rgba(31,107,255,.08)!important;
}

.form-note{
  font-size:.92rem;
  color:var(--muted);
  line-height:1.7;
}

.required-star{
  color:var(--bs-form-invalid-color);
  margin-left:2px;
}

/* =========================
   Back To Top
========================= */
.back-to-top{
  position:fixed;
  right:24px;
  bottom:24px;
  width:52px;
  height:52px;
  border:none;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--brand),var(--brand-deep));
  color:#fff;
  box-shadow:0 18px 34px -18px rgba(31,107,255,.55);
  cursor:pointer;
  z-index:1200;
  opacity:0;
  visibility:hidden;
  transform:translateY(16px);
  transition:opacity .28s ease,transform .28s ease,visibility .28s ease,box-shadow .2s ease;
}

.back-to-top:hover{
  transform:translateY(0) scale(1.04);
  box-shadow:0 22px 40px -18px rgba(31,107,255,.62);
}

.back-to-top.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.back-to-top i{
  font-size:16px;
}

/* =========================
   Header / Desktop Nav
========================= */
.navglass{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1100;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(230,235,244,.95);
  transition:padding .24s ease,background .24s ease,box-shadow .24s ease;
}

.navbar{
  padding-top:.8rem;
  padding-bottom:.8rem;
  transition:padding .24s ease;
}



.navglass.nav-compact{
  background:rgba(255,255,255,.94);
  box-shadow:0 10px 30px -22px rgba(15,23,42,.18);
}

.navglass.nav-compact .navbar{
  padding-top:.55rem;
  padding-bottom:.55rem;
}

.navbar-brand img{
  display:block;
  transition:transform .24s ease,height .24s ease;
}

.navglass.nav-compact .navbar-brand img{
  transform:scale(.94);
}

/* 导航右对齐 - 添加到 common.css 末尾 */

  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;  /* 整体内容右对齐 */
  }
  
  /* 让 logo 保持在最左侧（不被右对齐影响） */
  .navbar-brand {
    margin-right: auto;
  }
  
  /* 导航菜单紧贴右侧 */
  .navbar-collapse {
    flex-grow: 0;
  }
  
  /* 语言按钮放在导航后面 */
  .navbar .d-xl-flex {
    margin-left: 1rem;
  }


.nav-item.dropdown{
  position:relative;
}

.nav-link{
  color:rgba(15,23,42,.88)!important;
  font-weight:650;
  letter-spacing:.2px;
  margin:0 1.08rem;
  padding:1rem 0!important;
  border-bottom:2px solid transparent;
  transition:.18s ease;
  font-size:1rem;
  display:flex;
  align-items:center;
  gap:.45rem;
  position:relative;
}

.nav-link:hover,
.nav-link.active{
  border-bottom-color:var(--brand);
  color:var(--ink)!important;
}

.dropdown-toggle::after{
  display:none!important;
}

.nav-arrow{
  font-size:12px;
  margin-left:2px;
  transition:transform .22s ease,color .22s ease;
  color:rgba(15,23,42,.45);
}

.dropdown:hover .nav-arrow,
.dropdown.show .nav-arrow{
  transform:rotate(180deg);
  color:var(--brand);
}

.dropdown-menu{
  border:none;
  border-radius:20px;
  padding:12px;
  box-shadow:0 24px 50px -26px rgba(15,23,42,.28);
  border:1px solid rgba(230,235,244,.95);
  min-width:260px;
  margin-top:0;
  top:calc(100% + 10px);
  background:rgba(255,255,255,.98);
  backdrop-filter:blur(10px);
  display:block;
  opacity:0;
  visibility:hidden;
  transform:translateY(14px) scale(.98);
  transform-origin:top center;
  pointer-events:none;
 
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;

}

.dropdown-menu.menu-wide{
  min-width:300px;
}

.dropdown-menu.menu-grid{
  min-width:360px;
  padding:14px;
}

.menu-title{
  font-size:.78rem;
  color:var(--muted);
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:4px 10px 8px;
}

.dropdown-item{
  border-radius:14px;
  padding:12px 12px;
  font-weight:600;
  color:rgba(15,23,42,.86);
  transition:.18s ease;
  display:flex;
  align-items:flex-start;
  gap:12px;
  white-space:normal;
}

.dropdown-item:hover{
  background:linear-gradient(135deg,rgba(31,107,255,.08),rgba(83,179,255,.06));
  color:var(--brand);
  transform:translateX(2px);
}

.menu-icon{
  width:34px;
  height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(31,107,255,.08);
  color:var(--brand);
  border:1px solid rgba(31,107,255,.10);
  flex:0 0 34px;
  font-size:.92rem;
  margin-top:1px;
}

.menu-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.menu-text strong{
  font-size:.95rem;
  line-height:1.35;
  font-weight:700;
}

.menu-text span{
  font-size:.83rem;
  line-height:1.5;
  color:var(--muted);
  font-weight:500;
}

.lang-pill{
  border:1px solid var(--line);
  padding:.5rem 1rem;
  border-radius:999px;
  color:var(--muted);
  font-weight:700;
  font-size:.92rem;
  background:rgba(255,255,255,.75);
  transition:.18s ease;
}

.lang-pill:hover{
  border-color:rgba(31,107,255,.25);
  color:var(--brand);
  transform:translateY(-1px);
}

/* =========================
   Mobile Toggle Button
========================= */
.mobile-nav-toggle{
  width:48px;
  height:48px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(31,107,255,.10), rgba(83,179,255,.10));
  border:1px solid rgba(31,107,255,.12);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:0;
  box-shadow:0 10px 24px -18px rgba(15,23,42,.28);
}

.mobile-nav-toggle span{
  width:18px;
  height:2px;
  border-radius:2px;
  background:var(--ink);
  display:block;
}

/* =========================
   Mobile Offcanvas Drawer
========================= */
.mobile-drawer{
  width:min(88vw,380px)!important;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(18px);
  border-left:1px solid rgba(230,235,244,.95);
  z-index:1400!important;
}

.offcanvas-backdrop.show{
  z-index:1390!important;
}

.mobile-drawer-head{
  padding:20px 20px 12px;
  border-bottom:1px solid rgba(230,235,244,.9);
}

.mobile-drawer-brand img{
  height:34px;
  width:auto;
  display:block;
}

.mobile-drawer-close{
  width:42px;
  height:42px;
  border:none;
  border-radius:12px;
  background:rgba(15,23,42,.06);
  color:var(--ink);
  display:flex;
  align-items:center;
  justify-content:center;
}

.mobile-drawer-body{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:18px 20px 24px;
  overflow-y:auto;
}

.mobile-nav-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-bottom:12px;
}

.mobile-nav-link{
  width:100%;
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  border-radius:16px;
  border:1px solid rgba(230,235,244,.95);
  background:rgba(255,255,255,.78);
  color:var(--ink);
  font-weight:700;
  font-size:1rem;
  transition:.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active{
  color:var(--brand);
  border-color:rgba(31,107,255,.18);
  background:linear-gradient(135deg, rgba(31,107,255,.06), rgba(83,179,255,.05));
}

.mobile-nav-group{
  border:1px solid rgba(230,235,244,.95);
  border-radius:18px;
  background:rgba(255,255,255,.84);
  overflow:clip;
  transform:translateZ(0);
  backface-visibility:hidden;
}

.mobile-nav-accordion{
  width:100%;
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  border:none;
  background:transparent;
  color:var(--ink);
  font-weight:700;
  font-size:1rem;
  cursor:pointer;
}

.mobile-nav-accordion i{
  font-size:.9rem;
  color:rgba(15,23,42,.55);
  transition:transform .28s ease,color .2s ease;
  transform-origin:center;
}

.mobile-nav-accordion[aria-expanded="true"] i{
  transform:rotate(45deg);
  color:var(--brand);
}

.mobile-submenu{
  padding:0 12px 12px;overflow:hidden;
}

.mobile-submenu a{
  display:block;
  padding:12px 14px;
  border-radius:12px;
  color:rgba(15,23,42,.82);
  font-weight:600;
  font-size:.95rem;
  transition:.18s ease;
}


.mobile-nav-accordion{
  position:relative;
  z-index:1;
}

.mobile-nav-group,
.mobile-nav-accordion,
.mobile-submenu{
  will-change:transform, height;
}

.mobile-submenu a:hover,
.mobile-submenu a:active{
  background:rgba(31,107,255,.06);
  color:var(--brand);
  transform:translateX(2px);
}

.mobile-drawer-cta{
  padding-top:18px;
  margin-top:20px;
  border-top:1px solid rgba(230,235,244,.9);
  position:sticky;
  bottom:0;
  background:rgba(255,255,255,.96);
}

/* =========================
   Common Responsive
========================= */
@media (min-width:1200px){
  .nav-item.dropdown::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:100%;
    height:18px;
  }

  .navbar .dropdown:hover .dropdown-menu,
  .navbar .dropdown .dropdown-menu.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
    pointer-events:auto;
  }

  .mobile-nav-toggle,
  .mobile-drawer{
    display:none!important;
  }
}

@media (max-width:1199.98px){
  .navbar-toggler{
    display:none!important;
  }

  .navbar{
    padding-top:.7rem;
    padding-bottom:.7rem;
  }

  .navglass .container{
    min-height:68px;
  }

  .navbar-brand img{
    height:34px!important;
  }

  .nav-link{
    margin:0;
    padding:.85rem 0!important;
  }

  .dropdown-menu,
  .dropdown-menu.menu-grid,
  .dropdown-menu.menu-wide{
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    pointer-events:auto;
    transition:none;
  }

  .dropdown-menu.show{
    display:block;
  }
}

@media (max-width:992px){
  .section{
    padding:64px 0;
  }
}

@media (max-width:768px){
  .h-title{
    font-size:2rem;
  }

  .back-to-top{
    right:16px;
    bottom:16px;
    width:46px;
    height:46px;
  }
}


/* =========================
   Page Hero - 统一品牌蓝色系
========================= */
.page-hero{
  position:relative;
  min-height:500px;
  padding-top:118px;
  overflow:hidden;
  background:#06101f;
  border-bottom:1px solid rgba(230,235,244,.95);
}

.page-hero-media{
    position:absolute;
    inset:0;
    z-index:0;
    overflow:hidden;
}


.page-hero-media img{
    height:100%;
    width:auto;

    position:absolute;
    right:0;
    top:50%;

    transform:translateY(-50%) scale(1.02);

    display:block;

    filter:
        saturate(1.02)
        contrast(1.04)
        brightness(.92);

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,.15) 18%,
        rgba(0,0,0,.45) 32%,
        rgba(0,0,0,.75) 46%,
        rgba(0,0,0,1) 60%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,.15) 18%,
        rgba(0,0,0,.45) 32%,
        rgba(0,0,0,.75) 46%,
        rgba(0,0,0,1) 60%
    );
}

.page-hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(
      90deg,
      rgba(6,16,31,.97) 0%,
      rgba(6,16,31,.94) 18%,
      rgba(6,16,31,.86) 34%,
      rgba(6,16,31,.62) 50%,
      rgba(6,16,31,.24) 70%,
      rgba(6,16,31,.04) 100%
    );
}

.page-hero-grid{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background-image:
    linear-gradient(to right, rgba(31,107,255,.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31,107,255,.12) 1px, transparent 1px);
  background-size:52px 52px;
  mask-image:linear-gradient(
    90deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.34) 46%,
    rgba(0,0,0,.08) 72%,
    transparent 100%
  );
}

.page-hero-grid::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(31,107,255,.12), transparent 35%),
    radial-gradient(circle at 18% 30%, rgba(31,107,255,.12), transparent 24%);
  opacity:.55;
}

.page-hero-glow{
  position:absolute;
  border-radius:50%;
  z-index:2;
  pointer-events:none;
  filter:blur(12px);
}

.page-hero-glow{
  right:12%;
  top:50%;
  width:420px;
  height:420px;
  transform:translateY(-50%);
  background:radial-gradient(circle, rgba(31,107,255,.28) 0%, rgba(31,107,255,.18) 34%, transparent 72%);
}

.page-hero::before{
  content:"";
  position:absolute;
  left:0;
  top:35%;
  width:20%;
  height:1px;
  z-index:2;
  background:linear-gradient(90deg, rgba(31,107,255,0), rgba(31,107,255,.55), rgba(31,107,255,0));
  box-shadow:0 0 16px rgba(31,107,255,.22);
  pointer-events:none;
}

.page-hero::after{
  content:"";
  position:absolute;
  left:0;
  top:63%;
  width:20%;
  height:1px;
  z-index:2;
  background:linear-gradient(90deg, rgba(31,107,255,0), rgba(31,107,255,.36), rgba(31,107,255,0));
  box-shadow:0 0 14px rgba(31,107,255,.18);
  pointer-events:none;
}

.page-hero-content{
  position:relative;
  z-index:3;
  min-height:360px;
  display:flex;
  align-items:center;
  padding:58px 0 56px;
}

.page-hero-copy{
  max-width:640px;
  color:#fff;
}

.page-hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-size:.82rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
  color:rgba(255,255,255,.72);
}

.page-hero-kicker::before{
  content:"";
  width:22px;
  height:2px;
  border-radius:2px;
  background:linear-gradient(90deg, var(--brand), var(--accent));
}

.page-hero-title{
  margin:16px 0 16px;
  font-size:3.1rem;
  line-height:1.08;
  letter-spacing:-.045em;
  font-weight:820;
  max-width:14em;
  background:linear-gradient(90deg, #ffffff 0%, #e3efff 42%, #7fcaff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 0 18px rgba(31,107,255,.12);
}

.page-hero-desc{
  margin:0;
  max-width:46rem;
  color:rgba(255,255,255,.84);
  font-size:1.06rem;
  line-height:1.86;
}

.page-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:26px;
}

.page-hero-actions .btn-brand{
  box-shadow:
    0 14px 28px -18px rgba(31,107,255,.62),
    0 0 0 1px rgba(255,255,255,.05) inset;
}

.page-hero-actions .btn-ghost{
  color:#fff;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(8px);
}

.page-hero-actions .btn-ghost:hover{
  border-color:rgba(255,255,255,.38);
  background:rgba(255,255,255,.10);
  color:#fff;
}

.page-hero-breadcrumb{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
  font-size:.94rem;
  color:rgba(255,255,255,.60);
}

.page-hero-breadcrumb a{
  color:rgba(255,255,255,.86);
  transition:.18s ease;
}

.page-hero-breadcrumb a:hover{
  color:#fff;
}

/* =========================
   Page Hero Responsive
========================= */
@media (max-width:992px){
  .page-hero{
    min-height:auto;
    padding-top:104px;
  }

  .page-hero-media img{
    filter:saturate(1.02) contrast(1.04) brightness(.88);
  }

  .page-hero-overlay{
    background:
      linear-gradient(
        180deg,
        rgba(6,16,31,.92) 0%,
        rgba(6,16,31,.84) 34%,
        rgba(6,16,31,.64) 68%,
        rgba(6,16,31,.42) 100%
      );
  }

  .page-hero-grid{
    mask-image:linear-gradient(
      180deg,
      rgba(0,0,0,.58) 0%,
      rgba(0,0,0,.22) 56%,
      transparent 100%
    );
  }

  .page-hero-glow{
    right:-50px;
    top:40%;
    width:300px;
    height:300px;
  }

  .page-hero::before,
  .page-hero::after{
    width:55%;
  }

  .page-hero-content{
    min-height:auto;
    padding:42px 0 44px;
  }

  .page-hero-title{
    font-size:2.35rem;
    line-height:1.12;
    max-width:none;
  }

  .page-hero-desc{
    font-size:1rem;
    line-height:1.8;
  }
}

@media (max-width:768px){
  .page-hero{
    padding-top:96px;
  }

  .page-hero-title{
    font-size:1.95rem;
    line-height:1.16;
  }

  .page-hero-desc{
    font-size:.95rem;
    line-height:1.75;
  }

  .page-hero-actions{
    gap:10px;
  }

  .page-hero-content{
    padding:34px 0 38px;
    min-height:auto;
  }

  .page-hero-glow{
    width:220px;
    height:220px;
    right:-70px;
  }

  .page-hero::before,
  .page-hero::after{
    display:none;
  }

  .page-hero-grid{
    background-size:40px 40px;
  }
}


/* =========================
   Home CTA
========================= */
.cta{
  background:var(--soft);
  border-top:1px solid rgba(230,235,244,.95);
  border-bottom:1px solid rgba(230,235,244,.95);
}

.ctafff{
  background:#fff;
  border-top:1px solid rgba(230,235,244,.95);
  border-bottom:1px solid rgba(230,235,244,.95);
}

.ctaBox{
  border:1px solid rgba(230,235,244,.95);
  border-radius:30px;
  padding:40px 34px;
  background:rgba(255,255,255,.84);
  box-shadow:var(--shadow);
}

.ctaBox h2{
  font-weight:900;
  letter-spacing:-.03em;
}

.ctaBox p{
  color:var(--muted);
  margin-top:.75rem;
  max-width:54rem;
}

.cta-feat{
  display:flex;
  flex-wrap:wrap;
  gap:1.1rem 1.5rem;
  margin-top:1.2rem;
  color:rgba(15,23,42,.76);
  font-weight:650;
}

.cta-feat i{
  color:var(--brand);
}







/* =========================
   Pagination - 统一所有按钮样式
========================= */

/* 容器样式 */
.news-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

/* 所有分页链接统一样式（上一页、页码、下一页） */
.news-pagination-wrap li a,
.news-page-prev,
.news-page-next,
.news-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 42px;
  height: 42px;
  padding: 0 18px;
  border-radius: 40px;
  border: 1px solid var(--line, #e6ebf4);
  background: #fff;
  color: var(--ink, #0f172a);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* 数字页码可以稍微窄一点 */
.news-page-num {
  min-width: 42px;
  padding: 0 6px;
}

/* 悬浮效果（所有按钮统一） */
.news-pagination-wrap li a:hover,
.news-page-prev:hover,
.news-page-next:hover,
.news-page-num:hover {
  border-color: var(--brand, #1f6bff);
  color: var(--brand, #1f6bff);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -12px rgba(31, 107, 255, 0.2);
}

/* 禁用状态（上一页/下一页不可用时） */
.news-page-prev.is-disabled,
.news-page-next.is-disabled,
.news-pagination-wrap li a.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  transform: none;
}

/* 当前激活页码 */
.news-page-num.is-active,
.news-pagination-wrap li.active a {
  background: linear-gradient(135deg, var(--brand, #1f6bff) 0%, var(--brand-dark, #1554d1) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px -12px rgba(31, 107, 255, 0.4);
  pointer-events: none;
}

/* 总数和页码指示器（特殊样式：不可点击，弱化背景） */
.news-page-total,
.news-page-indicator {
  background: #f8fafc !important;
  color: var(--muted, #64748b) !important;
  cursor: default !important;
  pointer-events: none !important;
  border-color: #e2edf2 !important;
  box-shadow: none !important;
}

.news-page-total:hover,
.news-page-indicator:hover {
  transform: none !important;
  border-color: #e2edf2 !important;
  color: var(--muted, #64748b) !important;
}

/* 省略号 */
.news-page-dots {
  color: var(--muted, #64748b);
  padding: 0 4px;
  font-size: 1rem;
}

/* 响应式 */
@media (max-width: 640px) {
  .news-pagination-wrap {
    gap: 8px;
  }
  
  .news-pagination-wrap li a,
  .news-page-prev,
  .news-page-next,
  .news-page-num {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    font-size: 0.85rem;
  }
  
  .news-page-num {
    min-width: 36px;
    padding: 0 4px;
  }
}





.solution-card-img {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.solution-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.solution-card-img:hover img {
  transform: scale(1.05);
}

.solution-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: white;
}

.solution-card-overlay h4 {
  color: white;
  margin-bottom: 6px;
}

.solution-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.solution-tags span {
  font-size: 11px;
  padding: 3px 10px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  color: white;
}

.solution-card-desc {
  padding: 20px 20px 24px;
  background: white;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.solution-card-desc p {
  color: var(--muted);
  font-size: 1.0rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.solution-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.solution-link:hover {
  gap: 10px;
  color: var(--brand-dark);
}

/* 卡片整体悬浮效果 */
.col-md-6.col-lg-4 {
  transition: transform 0.3s ease;
}

.col-md-6.col-lg-4:hover {
  transform: translateY(-4px);
}

.solution-card-img {
  border-radius: 20px 20px 0 0;
}



/* =========================
   提交成功模态框 - 精致版
========================= */
.success-modal .modal-content {
  border: none;
  border-radius: 32px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FBFF 100%);
  box-shadow: 0 40px 70px -30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: visible;
}

.success-modal .btn-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  background-image: none;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.success-modal .btn-close:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.success-modal .btn-close::after {
  content: "✕";
  font-size: 16px;
  color: #5E6B84;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.success-modal .modal-body {
  padding: 48px 40px 44px;
}

/* 动画对勾 */
.success-animation {
  margin-bottom: 24px;
}

.success-circle {
  width: 88px;
  height: 88px;
  margin: 0 auto;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px -12px rgba(16, 185, 129, 0.45);
  animation: successPop 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

.success-circle i {
  font-size: 44px;
  color: #fff;
  animation: checkScale 0.3s ease 0.2s both;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes checkScale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.success-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F172A;
  margin-bottom: 12px;
}

.success-desc {
  font-size: 16px;
  color: #5E6B84;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* 信息卡片 */
.success-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(31, 107, 255, 0.06), rgba(83, 179, 255, 0.04));
  border-radius: 60px;
  padding: 12px 24px;
  margin-bottom: 32px;
  border: 1px solid rgba(31, 107, 255, 0.1);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1F6BFF;
}

.info-item i {
  font-size: 16px;
}

.info-divider {
  width: 1px;
  height: 20px;
  background: rgba(31, 107, 255, 0.2);
}

/* 按钮区域 */
.success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.success-actions .btn-primary {
  background: linear-gradient(135deg, #1F6BFF 0%, #1554D1 100%);
  border: none;
  padding: 12px 28px;
  border-radius: 48px;
  font-weight: 600;
  color: #fff;
  transition: all 0.2s ease;
  box-shadow: 0 8px 20px -12px rgba(31, 107, 255, 0.5);
}

.success-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -12px rgba(31, 107, 255, 0.6);
}

.success-actions .btn-outline {
  background: transparent;
  border: 1px solid #E6EBF4;
  padding: 12px 28px;
  border-radius: 48px;
  font-weight: 600;
  color: #5E6B84;
  transition: all 0.2s ease;
}

.success-actions .btn-outline:hover {
  border-color: #1F6BFF;
  color: #1F6BFF;
  transform: translateY(-2px);
}

/* 响应式 */
@media (max-width: 576px) {
  .success-modal .modal-body {
    padding: 36px 24px 32px;
  }
  
  .success-circle {
    width: 70px;
    height: 70px;
  }
  
  .success-circle i {
    font-size: 34px;
  }
  
  .success-title {
    font-size: 24px;
  }
  
  .success-info {
    flex-direction: column;
    gap: 12px;
    border-radius: 24px;
    padding: 16px;
  }
  
  .info-divider {
    width: 40px;
    height: 1px;
  }
  
  .success-actions {
    flex-direction: column;
  }
  
  .success-actions .btn-primary,
  .success-actions .btn-outline {
    width: 100%;
  }
}



/* =========================
   提交成功模态框 - 含联系人
========================= */
.success-modal .modal-content {
  border: none;
  border-radius: 32px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FBFF 100%);
  box-shadow: 0 40px 70px -30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: visible;
}

.success-modal .btn-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  background-image: none;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.success-modal .btn-close:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.success-modal .btn-close::after {
  content: "✕";
  font-size: 16px;
  color: #5E6B84;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.success-modal .modal-body {
  padding: 48px 40px 44px;
}

/* 动画对勾 */
.success-animation {
  margin-bottom: 24px;
}

.success-circle {
  width: 88px;
  height: 88px;
  margin: 0 auto;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px -12px rgba(16, 185, 129, 0.45);
  animation: successPop 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

.success-circle i {
  font-size: 44px;
  color: #fff;
  animation: checkScale 0.3s ease 0.2s both;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes checkScale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

.success-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F172A;
  margin-bottom: 12px;
}

.success-desc {
  font-size: 16px;
  color: #5E6B84;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* 联系人区域 */
.success-contact {
  background: linear-gradient(135deg, rgba(31, 107, 255, 0.04), rgba(83, 179, 255, 0.02));
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(31, 107, 255, 0.08);
}

.contact-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1F6BFF;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(31, 107, 255, 0.15);
}

.contact-title i {
  font-size: 16px;
}

.contact-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 200px;
  background: #fff;
  border-radius: 20px;
  padding: 16px 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #E6EBF4;
  transition: all 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 107, 255, 0.08);
  border-color: rgba(31, 107, 255, 0.2);
}

.contact-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #E6EBF4;
}

.contact-name i {
  color: #1F6BFF;
  font-size: 14px;
}

.contact-email,
.contact-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 10px;
  word-break: break-all;
}

.contact-email i,
.contact-phone i {
  color: #1F6BFF;
  width: 16px;
  font-size: 13px;
}

.contact-email a,
.contact-phone a {
  color: #5E6B84;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-email a:hover,
.contact-phone a:hover {
  color: #1F6BFF;
}

/* 按钮区域 */
.success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.success-actions .btn-primary {
  background: linear-gradient(135deg, #1F6BFF 0%, #1554D1 100%);
  border: none;
  padding: 12px 28px;
  border-radius: 48px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 8px 20px -12px rgba(31, 107, 255, 0.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.success-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -12px rgba(31, 107, 255, 0.6);
}

.success-actions .btn-outline {
  background: transparent;
  border: 1px solid #E6EBF4;
  padding: 12px 28px;
  border-radius: 48px;
  font-weight: 600;
  color: #5E6B84;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.success-actions .btn-outline:hover {
  border-color: #1F6BFF;
  color: #1F6BFF;
  transform: translateY(-2px);
}

/* 响应式 */
@media (max-width: 768px) {
  .success-modal .modal-body {
    padding: 36px 24px 32px;
  }
  
  .success-circle {
    width: 70px;
    height: 70px;
  }
  
  .success-circle i {
    font-size: 34px;
  }
  
  .success-title {
    font-size: 24px;
  }
  
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-card {
    min-width: auto;
  }
  
  .success-actions {
    flex-direction: column;
  }
  
  .success-actions .btn-primary,
  .success-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
}


.hides{display:none}


.contact span{line-height:2.0}




/* =========================
   全局搜索框（POST 表单版）
========================= */
.header-search-form {
  display: inline-block;
}

.header-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line, #e6ebf4);
  border-radius: 48px;
  padding: 0.42rem 0.6rem 0.42rem 0.9rem;
  gap: 6px;
  transition: all 0.2s ease;
}

.header-search i {
  color: var(--muted, #5e6b84);
  font-size: 0.9rem;
}

.header-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.9rem;
  width: 160px;
  color: var(--ink, #0f172a);
  font-weight: 500;
  padding: 0;
}

.header-search input::placeholder {
  color: var(--muted, #5e6b84);
  font-weight: 400;
}

.search-submit {
  
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #fff;
}

.search-submit:hover {
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(31,107,255,0.3);
}

.header-search:hover,
.header-search:focus-within {
  border-color: var(--brand, #1f6bff);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31,107,255,0.08);
}

/* 移动端隐藏 */
@media (max-width: 1199.98px) {
  .header-search-form {
    display: none;
  }
}



.modal-open {
  overflow-y: scroll !important;
  padding-right: 0 !important;
}