/* ==================== 导航开关 ==================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
}
.text-blue {
  color: #000000;
}

/* ==================== 移动端导航 ==================== */
.topbar-right .close {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translateX(-50%);
  display: none;
}
@media (max-width: 767px) {
  .thesaas-sections-split .section,
  .thesaas-sections-split .main-content .site-footer {
    margin: 30px 0 100px;
    box-shadow: none;
  }
  .topbar-right {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100% - 90px);
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
    display: none;
  }
  .topbar-right .right-btn {
    color: #000000 !important;
    border-bottom: 1px solid var(--border-color);
    display: block;
    justify-content: center;
    width: 100% !important;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .topbar-right .right-btn {
    margin-right: 0;
  }
  .body-scrolled .topbar-right {
    top: 60px;
    height: calc(100% - 60px);
  }
  .topbar-right .close {
    display: block;
  }
}
@media (min-width: 768px) {
  #ctrl-nav { display: none !important; }
  .topbar-right { display: block; }
}

#ctrl-nav { width: 26px; height: 26px; }
#ctrl-nav img { width: 100%; height: 100%; }
.body-scrolled #ctrl-nav img,
#ctrl-nav img.active { display: none; }
.body-scrolled #ctrl-nav img.active { display: block; }

/* ==================== Banner 标签 ==================== */
.mylabel {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.mylabel .item {
  margin: 10px;
  display: inline-block;
  line-height: 39px;
  height: 39px;
  padding: 0 25px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: #000000;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

/* ==================== Section 公共标题 ==================== */
.section-header h2 { font-size: 36px; }
.section-header h2.has-decor::before,
.section-header h2.has-decor::after {
  width: 40px; height: 3px;
  display: inline-block; content: '';
  vertical-align: middle; border-radius: 2px;
}
.section-header h2.has-decor::before {
  margin-right: 25px;
  background: #000000;
}
.section-header h2.has-decor::after {
  margin-left: 25px;
  background: #000000;
}
.lead { color: var(--text-secondary); }

/* ==================== 产品特性卡片 ==================== */
.pro-content {
  flex-wrap: wrap; display: flex;
  justify-content: space-around; gap: var(--sp-24);
  margin-bottom: var(--sp-48);
}
.pro-content .item {
  transition: all 0.15s; text-align: center;
  width: 20%; cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: var(--sp-32) var(--sp-16) var(--sp-24);
  box-shadow: none;
}
.pro-content .item:hover {
  border-color: #000000;
  box-shadow: none;
  transform: none;
}
.pro-content .item .title {
  font-weight: 500; font-size: 18px;
  text-align: center; color: #000000;
  line-height: 1.8em; margin-top: var(--sp-16);
}
.pro-content .item:hover .title { color: #000000; }
.pro-content .item img,
.pro-content .item svg.pro-icon {
  transition: none;
}
.pro-content .item:hover img,
.pro-content .item:hover svg.pro-icon {
  transform: none;
  filter: none;
}
.pro-content .item svg.pro-icon {
  background: var(--bg-secondary);
  padding: var(--sp-16);
}

/* ==================== 联系我们 CTA ==================== */
.section-contact {
  color: #fff;
  padding: var(--sp-48) 0;
  box-sizing: border-box;
}
.section-contact .title { font-size: 33px; line-height: 1.5em; }
.section-contact .button {
  cursor: pointer; background: #fff;
  color: #000000; padding: 0 24px;
  height: 44px; border-radius: var(--radius-sm);
  text-align: center; line-height: 44px;
  display: inline-block; margin-top: var(--sp-24);
  font-weight: 600; box-shadow: none;
  transition: all 0.15s ease;
}
.section-contact .button:hover {
  background: #F0F0F0;
  color: #000000;
  box-shadow: none;
  transform: none;
}

/* ==================== Footer ==================== */
.footer {
  padding: var(--sp-64) 0 var(--sp-48);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer .container { display: flex; justify-content: space-between; }
.footer-logo .icon { max-width: 78px; display: block; margin-left: 0; margin-bottom: var(--sp-32); }
.footer-logo .logo { max-width: 200px; display: block; }
.copyright { margin-top: var(--sp-48); }
.copyright, .copyright a {
  color: var(--text-white-3);
  font-weight: 400; font-size: 12px;
}
.consult .label { font-weight: 500; font-size: 20px; }
.consult .mobile .value { font-weight: 700; font-size: 33px; font-family: "DIN Alternate Bold"; }
.consult .email { margin-top: var(--sp-16); }
.consult .email .value {
  font-weight: 400; font-size: 16px;
  color: var(--text-white-2);
}
.f-nav .nav-btn {
  display: block; font-weight: 400; font-size: 14px;
  color: var(--text-white-2); line-height: 2.8em;
  text-decoration: none;
}
.f-nav .nav-btn:hover { color: #fff; text-decoration: none; }
.f-nav .active, .f-nav2 .active {
  font-weight: 500; font-size: 18px;
  color: var(--text-white-1);
}
.f-nav2 { max-width: 340px; }
.f-nav2 .nav-btn {
  display: block; font-weight: 400; font-size: 14px;
  color: var(--text-white-2); line-height: 1.5em; margin: 10px 0;
  text-decoration: none;
}
.wechat { line-height: 2.5em; }

/* ==================== 优势 Section ==================== */
.section-superiority {
  background: url(/skin/lingmao2025/img/superiority-bg.png) no-repeat center center;
  background-size: cover; height: 774px;
  background-color: #000000;
}
.superiority .icon { width: 48px; height: 48px; }
.superiority-center { display: block; width: 849px; margin: 0 auto; }
.superiority .title { font-size: 20px; color: #fff; font-weight: 500; }
.superiority .desc { font-size: 14px; color: var(--text-white-2); }
.superiority .item { position: absolute; display: flex; align-items: center; }
.superiority .left .content { flex: 1; margin-left: var(--sp-16); }
.superiority .right .content { flex: 1; margin-right: var(--sp-16); text-align: right; }
.superiority .item-1 { left: 0; top: 190px; }
.superiority .item-2 { left: 30px; top: 380px; }
.superiority .item-3 { left: 0; top: 570px; }
.superiority .item-4 { right: 0; top: 190px; }
.superiority .item-5 { right: 30px; top: 380px; }
.superiority .item-6 { right: 0; top: 570px; }

/* ==================== 团队 Section ==================== */
.section-team .row { display: flex; justify-content: space-around; align-items: center; }
.team .cover { width: 474px; }
.team .title {
  font-weight: 700; font-size: 26px; text-align: left;
  color: #000000; margin: 0 0 30px 0;
}
.team .title .icon { height: 28px; }
.team .desc {
  font-weight: 400; font-size: 14px; text-align: left;
  color: var(--text-secondary); position: relative; text-align: justify;
}
.team .desc::before {
  position: absolute; top: 15px; left: -35px;
  content: ''; display: inline-block;
  width: 5px; height: 5px; border-radius: 5px; margin-right: 25px;
  background: #000000;
}
.section-team .row { display: flex; justify-content: space-between; }
.section-team .team { width: 474px; }

/* ==================== 数字指标 ==================== */
.score { display: flex; justify-content: space-around; }
.score .label { font-weight: 400; font-size: 14pt; text-align: center; color: var(--text-secondary); }
.score .value {
  font-family: "DIN Alternate Bold"; font-weight: 700;
  font-size: 28pt; text-align: center; color: #000000;
}

/* ==================== 流程 ==================== */
.process-title {
  display: flex; align-items: center;
  font-weight: 700; font-size: 26px; text-align: left;
  color: #000000; margin: 50px 0;
}
.process-title a,
.process-title a:link,
.process-title a:visited,
.process-title a:hover,
.process-title a:focus,
.process-title a:active {
  display: inline-block; padding: 0 16px; margin-left: 16px;
  height: 32px; line-height: 32px; text-align: center;
  border-radius: var(--radius-sm); font-size: 13px;
  color: #fff !important; font-weight: 400;
  background: #000000;
  text-decoration: none !important;
}
.process-row { display: flex; justify-content: space-around; }
.process-warp { flex: 1; }
.process {
  display: inline-flex; justify-content: space-around;
  flex-wrap: wrap; align-items: baseline;
}
.process .item { width: 30%; text-align: center; padding-bottom: var(--sp-16); cursor: pointer; }
.process .cover { width: 549px; }
.process .title {
  font-weight: 700; font-size: 18px; text-align: center;
  color: #000000; line-height: 2.5em;
}
.process-title .more::after {
  content: ''; display: inline-block; width: 0; height: 0;
  margin-left: 8px;
  border-left: 5px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.process .desc {
  font-weight: 400; font-size: 14px; text-align: justify;
  color: var(--text-secondary); line-height: 1.8em;
}

/* ==================== 合作伙伴 ==================== */
.section-partner .container {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; position: relative; gap: var(--sp-16);
}
.section-partner .item {
  display: block; cursor: pointer;
  width: calc(50% - 8px); position: relative;
  background-repeat: no-repeat; background-size: cover; background-position: center;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.section-partner .content {
  transition: 0.15s; padding: 15px;
  display: inline-flex; align-items: center;
  position: absolute; bottom: 0; left: 0; right: 0;
  background-color: rgba(0,0,0,0.77);
}
.section-partner .logo { width: 66px; margin-right: 15px; }
.section-partner .name { font-weight: 700; font-size: 22px; text-align: left; color: #fff; }
.section-partner .text-wrap { flex: 1; overflow: hidden; }
.section-partner .desc {
  font-weight: 400; font-size: 14px; text-align: left;
  color: var(--text-white-2); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.section-partner .item:hover .content {
  padding: 24px; display: block; top: 0; bottom: 0;
  background-color: rgba(0,0,0,0.85); height: 100%; overflow-y: auto;
}
.section-partner .item:hover .cover { filter: blur(5px); }
.section-partner .item:hover .name { color: #fff; }
.section-partner .item:hover .name::after {
  content: ''; display: block; width: 48px;
  margin: 8px 0; height: 0;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
.section-partner .item:hover .desc {
  color: var(--text-white-2); text-overflow: unset; white-space: break-spaces;
}
.section-partner .more { display: none; }
.section-partner .item:hover .more {
  border: 1px solid #fff; font-size: 14px;
  display: block; position: absolute; right: 24px; bottom: 24px;
  color: #fff; padding: 4px 20px;
  border-radius: var(--radius-sm);
}
.section-partner .item .name { display: block; }
.section-partner .item:hover .logo { margin-bottom: 16px; }

/* ==================== 工具类 ==================== */
.blue-bg { background: var(--bg-section-alt); }
.h60 { height: 60px; }
.header-inverse { height: 100vh; }
.consult-wrap { flex: 1; display: inline-flex; justify-content: space-around; }
.backtop { position: fixed; bottom: 80px; right: 48px; }

/* ==================== 响应式 ==================== */
@media (max-width: 767px) {
  .header-inverse { height: 68vh; }
  .thesaas-sections-split .section,
  .thesaas-sections-split .main-content .site-footer {
    margin: 30px 0 100px; box-shadow: none;
  }
  .f-nav2 .nav-btn { font-size: 12px; }
  .h60 { height: 30px; }
  .mylabel { justify-content: center; flex-wrap: wrap; }
  .mylabel .item { font-size: 12px; margin: 10px; padding: 0 15px; }
  .section-header h2 { font-size: 24px; }
  .section-header h2::before, .section-header h2::after { width: 24px; }
  .pro-content .item { width: 48%; padding: var(--sp-16) var(--sp-8) var(--sp-16); box-sizing: border-box; }
  .pro-content .item svg.pro-icon { width: 40px; height: 40px; padding: 10px; }
  .pro-content .item .title { font-size: 14px; margin-top: var(--sp-8); }
  .footer .container { flex-wrap: wrap; display: block; }
  .footer-sm-logo .logo { width: 180px; margin: 0 auto; display: block; }
  .copyright, .copyright a { font-size: 10px; }
  .pro-content .item .title { font-size: 12px; line-height: 2.8em; }
  .superiority-sm { display: flex; flex-wrap: wrap; justify-content: space-between; }
  .superiority-sm .item {
    margin-bottom: 14px; width: 48%; padding: 12px;
    background: var(--bg-primary); box-shadow: none;
  }
  .superiority-sm .title { font-weight: 500; font-size: 14px; text-align: left; color: #000000; margin-bottom: 8px; }
  .superiority-sm .icon { width: 32px; }
  .section-superiority { height: auto; }
  .section-team .team { margin: 12px 12px 0; width: 100%; }
  .team .title { font-size: 20px; }
  .team .title .icon { height: 28px; }
  .team .desc { padding-left: 16px; font-size: 14px; }
  .team .desc::before { left: 0; }
  .score .value { font-size: 24px; }
  .score .label { font-size: 12px; }
  .process-title { padding: 0 16px; }
  .process .item { width: 42%; }
  .section-partner .container { display: flex; }
  .section-partner .item { width: 100%; padding: 8px 0; }
  .section-partner .logo { width: 48px; }
  .section-partner .name { font-size: 16px; }
  .section-partner .content { padding: 16px; }
  .section-partner .desc { font-size: 11px; }
  .consult .label { font-size: 16px; }
  .consult .mobile .value { font-size: 20px; }
  .consult .email .value { font-size: 12px; }
  .f-nav .nav-btn { font-size: 12px; }
  .f-nav .active { font-size: 14px; }
  .wechat { text-align: center; }
  .wechat .fs-14 { margin: 12px 0; }
  .consult-wrap { width: 100%; padding: 48px 32px; justify-content: space-between; }
  .btn { font-size: 12px; padding: 6px 24px; }
  .section { padding-top: 10vw; padding-bottom: 10vw; }
  .header-inverse { height: 560px; }
  .section-partner .item:hover .more { font-size: 12px; }
  .backtop { position: fixed; bottom: 56px; right: 24px; width: 24px; }
  .process-title { justify-content: space-between; }
  #ctrl-nav { width: 22px; height: 22px; }
  .section-partner .item:hover .logo { display: inline-block; vertical-align: middle; }
  .section-partner .item:hover .name { display: none; }
  .section-partner .item .logo-text { display: none; }
  .section-partner .item:hover .logo-text { display: inline-block; vertical-align: middle; position: relative; top: -8px; color: #fff; }
}
