/* 企宣宝 PC 站 - 关于我们（MasterGo 1.关于我们 1920×1226） */
@import url('../vendor/swiper/swiper-bundle.min.css');

:root {
  --color-primary: #0D6DFE;
  --color-text: #333333;
  --color-text-secondary: #666666;
  --color-border: #EEEEEE;
  --color-bg: #FFFFFF;
  --color-tag-bg: #F5F8FF;
  --sidebar-width: 348px;
  --page-gutter: 44px;
  --main-sidebar-gap: 44px;
  --main-offset: calc(var(--page-gutter) + var(--sidebar-width) + var(--main-sidebar-gap));
  --card-width: 250px;
  --card-height: 354px;
  --page-max: 1920px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.26, 0.64, 1);
  --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 4px 20px rgba(13, 109, 254, 0.08);
  --shadow-card-hover: 0 16px 40px rgba(13, 109, 254, 0.16);
  --duration-fast: 0.22s;
  --duration-normal: 0.32s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  min-width: 1200px;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

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

.web-sidebar,
.web-cards,
.web-product-grid,
.web-case-grid,
.web-trend-feed,
.web-trend-news,
.web-search-page,
.web-page--contact .web-main,
.web-page--recruit .web-recruit-list__body,
.web-page--recruit .web-recruit-detail,
.web-page--rich .web-main,
.web-page--home .web-main,
.web-home {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.web-sidebar::-webkit-scrollbar,
.web-cards::-webkit-scrollbar,
.web-product-grid::-webkit-scrollbar,
.web-case-grid::-webkit-scrollbar,
.web-trend-feed::-webkit-scrollbar,
.web-trend-news::-webkit-scrollbar,
.web-search-page::-webkit-scrollbar,
.web-page--contact .web-main::-webkit-scrollbar,
.web-page--recruit .web-recruit-list__body::-webkit-scrollbar,
.web-page--recruit .web-recruit-detail::-webkit-scrollbar,
.web-page--rich .web-main::-webkit-scrollbar,
.web-page--home .web-main::-webkit-scrollbar,
.web-home::-webkit-scrollbar {
  display: none;
}

.web-page {
  position: relative;
  display: grid;
  grid-template-columns: var(--main-offset) minmax(0, 1fr);
  max-width: var(--page-max);
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.web-page__bg-left {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--main-offset);
  height: 100vh;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.web-sidebar {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: var(--sidebar-width);
  height: 100vh;
  margin-left: var(--page-gutter);
  padding: 40px 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 2;
  animation: web-fade-up 0.55s var(--ease-out) both;
}

.web-sidebar__head {
  text-align: center;
}

.web-sidebar__logo {
  width: 128px;
  height: 128px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FFF;
  box-shadow: none;
}

.web-sidebar__logo img,
.web-sidebar__logo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.web-sidebar__logo-placeholder {
  background: linear-gradient(135deg, #DFEBFF, #0D6DFE);
}

.web-sidebar__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.web-sidebar__name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #121212;
}

.web-sidebar__badge {
  display: inline-flex;
  align-items: center;
  height: 21px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(137deg, #97AFFF 14%, #0D6DFE 84%);
  border-radius: 4px;
  flex-shrink: 0;
}

.web-sidebar__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: var(--sidebar-width);
  max-width: 100%;
  margin-top: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.04);
}

.web-sidebar__stat-value {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-align: center;
  line-height: 1.3;
}

.web-sidebar__stat-label {
  margin-top: 6px;
  font-size: 12px;
  color: #666;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.web-sidebar__block {
  width: var(--sidebar-width);
  max-width: 100%;
  margin-top: 15px;
  padding: 15px;
  background: #fff;
  border: none;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--duration-fast) var(--ease-out);
}

.web-sidebar__block-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.web-sidebar__title-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.web-sidebar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.web-sidebar__tag {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 7px;
  background: #FFF8F3;
  color: #E28336;
}

.web-sidebar__tag-star {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.web-sidebar__remarks {
  margin: 0;
  padding: 0;
  list-style: none;
}

.web-sidebar__remarks li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #333;
}

.web-sidebar__remarks li:last-child {
  margin-bottom: 0;
}

.web-sidebar__remark-icon {
  width: 15px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  object-fit: contain;
}

.web-sidebar__contact p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
}

.web-sidebar__contact p:last-child {
  margin-bottom: 0;
}

.web-sidebar__contact span {
  color: #333;
  font-weight: 500;
}

.web-sidebar__manager {
  position: relative;
  margin-top: 15px;
  padding-top: 22px;
}

.web-sidebar__manager-ribbon {
  position: absolute;
  top: 16px;
  left: 53px;
  transform: translateX(-50%);
  height: 40px;
  width: auto;
  display: block;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(118, 137, 190, 0.35));
}

.web-sidebar__manager-card {
  position: relative;
  width: var(--sidebar-width);
  max-width: 100%;
  padding: 28px 22px 18px;
  border: 1px solid transparent;
  border-radius: 20px;
  background:
    linear-gradient(0deg, #ECF3FF, #ECF3FF) padding-box,
    linear-gradient(#FFFFFF, #FFFFFF) padding-box,
    linear-gradient(180deg, #74abff 0%, #71a9ff24 100%) border-box;
  box-shadow: 0 4px 10px rgba(118, 137, 190, 0.15);
  overflow: visible;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-spring), box-shadow var(--duration-fast);
}

.web-sidebar__manager-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(118, 137, 190, 0.22);
}

.web-sidebar__manager-body {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.web-sidebar__manager-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.web-sidebar__manager-divider {
  width: 1px;
  height: 80px;
  margin: 0;
  background: #D4E5FF;
  flex-shrink: 0;
  align-self: center;
}

.web-sidebar__manager-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  text-align: center;
}

.web-sidebar__manager-profile {
  position: relative;
  width: 62px;
  padding-bottom: 8px;
}

.web-sidebar__manager-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  background: #EFF3FF;
  display: block;
  box-shadow: 0 0 0 4px #EFF3FF, 0 6px 16px rgba(13, 109, 254, 0.12);
}

.web-sidebar__manager-name {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  background: #356FE1;
  border: 2px solid #83BEFF;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(118, 137, 190, 0.28);
}

.web-sidebar__manager-actions {
  display: flex;
  margin-top: 10px;
  justify-content: center;
}

.web-sidebar__manager-phone {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #2F63DA;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

.web-sidebar__manager-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FFFFFF;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 4px 10px 0px rgba(118, 137, 190, 0.48);
  transition: transform var(--duration-fast) var(--ease-spring);
}

.web-sidebar__manager-btn:hover {
  transform: scale(1.08);
}

.web-sidebar__manager-btn-icon {
  width: 14px;
  height: 14px;
  display: block;
  object-fit: contain;
}

.web-sidebar__manager-company {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 8px;
}

.web-sidebar__manager-consult {
  font-size: 14px;
  font-weight: 700;
  color: #121212;
  line-height: 1.4;
}

.web-sidebar__manager-company-logo {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.web-sidebar__manager-company-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.web-sidebar__manager-qr {
  width: 87px;
  height: 87px;
  object-fit: contain;
  border-radius: 0;
  background: #fff;
  display: block;
}

/* 专属管家弹框 */
.web-manager-pop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
}

.web-manager-pop.is-visible {
  pointer-events: auto;
}

.web-manager-pop__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.web-manager-pop.is-visible .web-manager-pop__mask {
  opacity: 1;
}

.web-manager-pop__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 408px;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 48px);
  padding: 30px 24px 42px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  box-sizing: border-box;
  overflow: auto;
  opacity: 0;
  transform: translate(-50%, -46%) scale(0.96);
  transition: transform var(--duration-normal) var(--ease-spring), opacity var(--duration-normal) var(--ease-out);
}

.web-manager-pop.is-visible .web-manager-pop__panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.web-manager-pop__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #121212;
  text-align: center;
}

.web-manager-pop__qr {
  display: block;
  width: 202px;
  height: 202px;
  margin: 20px auto 0;
  border-radius: 20px;
  object-fit: cover;
  background: #f4f4f4;
  cursor: zoom-in;
}

.web-manager-pop__qr-tip {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #666666;
  text-align: center;
}

.web-manager-pop__copy-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.web-manager-pop__copy-row--phone {
  margin-top: 10px;
}

.web-manager-pop__copy-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #666666;
}

.web-manager-pop__copy-value {
  font-size: 14px;
  font-weight: 700;
  color: #0d6dfe;
}

.web-manager-pop__copy-btn {
  flex-shrink: 0;
  width: fit-content;
  height: 22px;
  padding: 4px 6px;
  border: none;
  border-radius: 33px;
  box-sizing: border-box;
  background: #0d6dfe;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.web-manager-pop__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin: 20px 0 0;
}

.web-manager-pop__divider-line {
  width: 153px;
  max-width: 34%;
  height: 1px;
  background: #f0f0f0;
}

.web-manager-pop__divider-text {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: #999999;
}

.web-manager-pop__phone-label {
  margin: 20px 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: #999999;
  text-align: center;
}

.web-manager-pop__phone-num {
  margin: 0;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
  color: #0d6dfe;
}

.web-manager-pop__foot {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: #999999;
  text-align: center;
}

body.web-manager-pop-open {
  overflow: hidden;
}

.web-sidebar__footer {
  margin-top: 15px;
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.web-sidebar__social {
  display: flex;
  gap: 18px;
  margin-bottom: 12px;
}

.web-sidebar__social-icon {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.web-sidebar__links {
  margin: 0;
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

.web-sidebar__links-label {
  color: #666;
}

.web-sidebar__links a {
  margin-right: 12px;
  color: #666;
}

.web-sidebar__address {
  margin: 8px 0 0;
}

.web-sidebar__address a {
  color: inherit;
  text-decoration: none;
}

.web-sidebar__address a:hover {
  text-decoration: underline;
}

.web-main {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 0;
  margin-left: 0;
  padding: 40px var(--page-gutter) 10px 0;
  overflow: hidden;
  z-index: 1;
  animation: web-fade-up 0.6s var(--ease-out) 0.08s both;
}

.web-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-shrink: 0;
  overflow: visible;
  padding-bottom: 8px;
  animation: web-fade-up 0.55s var(--ease-out) 0.1s both;
}

.web-subnav,
.web-toolbar,
.web-tab-pills {
  flex-shrink: 0;
  overflow: visible;
}

.web-topnav-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.web-topnav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  padding: 4px 0;
  overflow: hidden;
}

.web-topnav-more {
  position: relative;
  flex-shrink: 0;
}

.web-topnav-more::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
  z-index: 29;
}

.web-topnav-more.is-hidden {
  display: none;
}

.web-topnav-more__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: #FFFFFF;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-spring);
}

.web-topnav-more__btn img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.web-topnav-more.is-open .web-topnav-more__btn,
.web-topnav-more:focus-within .web-topnav-more__btn {
  background: #f0f6ff;
}

.web-topnav-more.is-active.is-open .web-topnav-more__btn,
.web-topnav-more.is-active:focus-within .web-topnav-more__btn {
  background: #0D6DFE;
}

.web-topnav-more.is-active .web-topnav-more__btn {
  background: #0D6DFE;
}

.web-topnav-more.is-active .web-topnav-more__btn img {
  filter: brightness(0) invert(1);
}

.web-topnav-more__drop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 168px;
  max-height: 320px;
  padding: 8px;
  background: #FFFFFF;
  border: 1px solid #ECEFF3;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.2s var(--ease-out),
    visibility 0.2s var(--ease-out),
    transform 0.2s var(--ease-out);
}

.web-topnav-more__drop::before {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  top: -16px;
  height: 16px;
}

.web-topnav-more.is-open .web-topnav-more__drop,
.web-topnav-more:focus-within .web-topnav-more__drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.web-topnav-more__drop .web-topnav__item {
  width: 100%;
  justify-content: flex-start;
}

.web-topnav-more__drop .web-topnav__item.is-active {
  color: #FFFFFF;
  background: #0D6DFE;
}

.web-topnav-more__drop .web-topnav__item.is-active .web-topnav__icon img {
  filter: brightness(0) invert(1);
}

.web-topnav-more__drop .web-topnav__item:not(.is-active):hover {
  transform: none;
}

.web-cards,
.web-product-grid,
.web-case-grid,
.web-trend-feed,
.web-trend-news,
.web-search-page {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 12px 0 48px 12px;
}

.web-search-page {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.web-search-page:has(> .web-empty) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.web-search-section__title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  color: #121212;
}

.web-search-section__grid {
  flex: none;
  min-height: 0;
  overflow: visible;
  padding: 0;
  margin-top: 0;
}

.web-page--contact .web-main,
.web-page--recruit .web-main {
  overflow-y: auto;
  overscroll-behavior: contain;
}

.web-page--rich .web-main {
  overflow-y: auto;
  padding-bottom: 10px;
  overscroll-behavior: contain;
}

.web-page--contact .web-main {
  padding-bottom: 10px;
  padding-right: var(--page-gutter);
  overflow-y: auto;
  overflow-x: visible;
}

.web-page--contact .web-header {
  background: #fff;
  padding-bottom: 12px;
}

.web-page--contact .web-header,
.web-page--recruit .web-header,
.web-page--rich .web-header {
  position: sticky;
  top: 0;
  z-index: 5;
}

.web-page--recruit .web-header {
  background: #fff;
  padding-bottom: 12px;
}

.web-page--recruit .web-main {
  overflow: hidden;
}

.web-page--recruit .web-recruit-layout {
  flex: 1;
  min-height: 0;
  margin-top: 20px;
}

.web-page--recruit .web-recruit-list {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: visible;
}

.web-page--recruit .web-recruit-search {
  flex-shrink: 0;
}

.web-page--recruit .web-recruit-list__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 12px 16px 32px 16px;
}

.web-page--recruit .web-recruit-detail {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 30px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(133deg, #f3f8ff 2%, #ffffff 26%);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.06);
}

.web-topnav__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  height: 40px;
  padding: 0 12px;
  font-size: 18px;
  line-height: 1;
  color: #666666;
  background: #FFFFFF;
  border-radius: 12px;
  white-space: nowrap;
  transition: color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out);
}

.web-topnav__item:not(.is-active):hover {
  color: var(--color-primary);
  background: #f0f6ff;
}

.web-topnav__item.is-active {
  color: #FFFFFF;
  background: #0D6DFE;
}

.web-topnav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.web-topnav__icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: filter var(--duration-fast) var(--ease-out);
}

.web-topnav__item:not(.is-active):hover .web-topnav__icon img {
  /* #0D6DFE */
  filter: brightness(0) saturate(100%) invert(36%) sepia(93%) saturate(2800%) hue-rotate(203deg) brightness(99%) contrast(101%);
}

.web-topnav__item.is-active .web-topnav__icon img {
  filter: brightness(0) invert(1);
}

.web-topnav__label {
  font-weight: 400;
}

.web-header__actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  max-width: 40%;
}

.web-header__actions::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
  z-index: 29;
  pointer-events: none;
}

.web-city-site {
  position: relative;
  flex-shrink: 0;
}

.web-city-site__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  background: #0D6DFE;
  border: none;
  border-radius: 33px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-spring);
}

.web-city-site__btn:hover {
  background: #0b5fe0;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(13, 109, 254, 0.28);
}

.web-city-site__pin,
.web-city-site__arrow {
  display: block;
  flex-shrink: 0;
}

.web-city-site__arrow {
  transition: transform var(--duration-fast) var(--ease-out);
}

.web-city-site.is-open .web-city-site__arrow {
  transform: rotate(180deg);
}

.web-city-site__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid #ECEFF3;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.2s var(--ease-out),
    visibility 0.2s var(--ease-out),
    transform 0.2s var(--ease-out);
}

.web-city-site__panel::before {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  top: -16px;
  height: 16px;
}

.web-header__actions.is-city-open .web-city-site__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.web-city-site__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 16px;
  font-size: 14px;
  color: #666666;
  background: #F5F7FA;
  border-radius: 27px;
  white-space: nowrap;
  transition: color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-spring),
    box-shadow var(--duration-fast);
}

.web-city-site__chip:hover {
  color: #FFFFFF;
  background: #0D6DFE;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(13, 109, 254, 0.28);
}

.web-search-field {
  position: relative;
  flex: 1 1 400px;
  min-width: 180px;
  width: 400px;
  max-width: 100%;
  margin: 4px 0;
}

.web-search {
  display: flex;
  align-items: center;
  width: 100%;
  height: 42px;
  padding: 0 12px 0 16px;
  background: #F5F7FA;
  border-radius: 21px;
  border: 1px solid #ECEFF3;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast), background var(--duration-fast);
}

.web-search:focus-within {
  background: #fff;
  border-color: #b3d4ff;
  box-shadow: 0 0 0 3px rgba(13, 109, 254, 0.12);
}

.web-search-field.is-error .web-search {
  border-color: #F56C6C;
  box-shadow: 0 0 0 3px rgba(245, 108, 108, 0.12);
}

.web-search-field.is-error .web-search:focus-within {
  border-color: #F56C6C;
  box-shadow: 0 0 0 3px rgba(245, 108, 108, 0.16);
}

.web-search__error {
  position: absolute;
  left: 16px;
  top: calc(100% + 4px);
  margin: 0;
  font-size: 12px;
  line-height: 1;
  color: #F56C6C;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-2px);
  transition: opacity var(--duration-fast) var(--ease-out), visibility var(--duration-fast), transform var(--duration-fast) var(--ease-out);
  pointer-events: none;
  white-space: nowrap;
}

.web-search-field.is-error .web-search__error {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.web-search__input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
}

.web-search__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.web-search__btn img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.web-search__btn:hover {
  opacity: 0.72;
}

.web-subnav {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 0;
  padding: 6px 8px 12px 0;
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  scrollbar-width: none;
  animation: web-fade-up 0.5s var(--ease-out) 0.12s both;
}

.web-subnav::-webkit-scrollbar {
  display: none;
}

.web-subnav__item {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding-bottom: 8px;
  transition: color var(--duration-fast) var(--ease-out);
}

.web-subnav__item:hover {
  color: var(--color-text);
}

.web-subnav__item.is-active {
  color: var(--color-text);
}

.web-subnav__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 28px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center center;
  transition: transform var(--duration-normal) var(--ease-spring);
}

.web-subnav__item.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.web-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 4px 8px 4px 0;
  animation: web-fade-up 0.5s var(--ease-out) 0.15s both;
}

.web-toolbar__filters-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.web-toolbar__filters-wrap.is-collapsible {
  padding-right: 76px;
}

.web-toolbar__filters-wrap.is-collapsible .web-chip-expand {
  position: absolute;
  right: 0;
  top: 4px;
  z-index: 1;
}

.web-toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 4px 0;
}

.web-chip {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  font-size: 14px;
  color: var(--color-text-secondary);
  background: #F5F7FA;
  border-radius: 27px;
  transition: color var(--duration-fast), background var(--duration-fast), transform var(--duration-fast) var(--ease-spring), box-shadow var(--duration-fast);
}

.web-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(13, 109, 254, 0.1);
}

.web-chip.is-active {
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 4px 14px rgba(13, 109, 254, 0.28);
}

.web-chip-expand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  height: 34px;
  padding: 0 12px;
  font-size: 14px;
  font-family: inherit;
  line-height: 1;
  color: #1d79f2;
  background: rgba(29, 121, 242, 0.08);
  border: 1px solid rgba(29, 121, 242, 0.35);
  border-radius: 27px;
  cursor: pointer;
  transition: background var(--duration-fast), border-color var(--duration-fast), color var(--duration-fast), transform var(--duration-fast) var(--ease-spring), opacity var(--duration-normal) var(--ease-out);
}

.web-chip-expand:hover {
  background: rgba(29, 121, 242, 0.14);
  border-color: rgba(29, 121, 242, 0.5);
  transform: translateY(-1px);
}

.web-chip-expand.is-hidden {
  display: none;
}

.web-chip-expand__text {
  transition: opacity var(--duration-normal) var(--ease-out);
}

.web-chip-expand__icon {
  display: block;
  flex-shrink: 0;
  transition: transform 0.42s var(--ease-out);
}

.web-chip-expand.is-expanded .web-chip-expand__icon {
  transform: rotate(180deg);
}

.web-toolbar__badge {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--color-primary);
  border-radius: 27px;
}

.web-cards {
  display: grid;
  grid-template-columns: repeat(5, var(--card-width));
  gap: 32px;
  margin-top: 8px;
}

.web-card {
  width: var(--card-width);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.web-card:hover {
  transform: translateY(-6px);
}

.web-card__link {
  display: block;
}

.web-card__cover {
  position: relative;
  width: 250px;
  height: 354px;
  border-radius: 20px;
  overflow: hidden;
  background: #F0F3F8;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--duration-normal) var(--ease-out);
}

.web-card:hover .web-card__cover {
  box-shadow: var(--shadow-card-hover);
}

.web-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out);
}

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

.web-card__play {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
}

.web-card__play::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
}

.web-card__title {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.web-sidebar__approve {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--color-text-secondary);
}

.web-card__play.is-hidden {
  display: none;
}

.web-card__top,
.web-product-card__top,
.web-case-card__top,
.web-trend-news__top,
.web-trend-feed__top {
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 2;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: bold;
  color: #FFFFFF;
  background: #EF722F;
  border-radius: 8px;
  line-height: 1;
  box-sizing: border-box;
}

.web-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 100%;
  padding: 48px 16px;
  text-align: center;
}

.web-empty__img {
  display: block;
  width: 180px;
  height: auto;
}

.web-empty__text {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.web-cards:has(> .web-empty),
.web-product-grid:has(> .web-empty),
.web-case-grid:has(> .web-empty),
.web-trend-feed:has(> .web-empty),
.web-trend-news:has(> .web-empty),
.web-home-cases__grid:has(> .web-empty),
.web-recruit-list__body:has(> .web-empty),
.web-recruit-detail:has(> .web-empty) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.is-hidden {
  display: none !important;
}

body.web-modal-open {
  overflow: hidden;
}

body.web-image-preview-open {
  overflow: hidden;
}

/* 通用图片预览 — 对齐 el-image viewer */
.web-image-preview {
  position: fixed;
  inset: 0;
  z-index: 1300;
  pointer-events: none;
}

.web-image-preview.is-visible {
  pointer-events: auto;
}

.web-image-preview__mask {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  cursor: zoom-out;
}

.web-image-preview.is-visible .web-image-preview__mask {
  opacity: 1;
}

.web-image-preview__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.web-image-preview__close,
.web-image-preview__arrow,
.web-image-preview__actions,
.web-image-preview__img {
  pointer-events: auto;
}

.web-image-preview__wrapper {
  pointer-events: none;
}

.web-image-preview__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px 80px 88px;
  box-sizing: border-box;
}

.web-image-preview__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.96) rotate(0deg);
  transition: opacity var(--duration-normal) var(--ease-out);
  user-select: none;
  cursor: grab;
  will-change: transform;
}

.web-image-preview.is-visible .web-image-preview__img {
  opacity: 1;
}

.web-image-preview__img.is-transition {
  transition: opacity var(--duration-normal) var(--ease-out), transform 0.3s var(--ease-out);
}

.web-image-preview__img.is-switching {
  opacity: 0;
}

.web-image-preview__img.is-dragging {
  cursor: grabbing;
  transition: none;
}

.web-image-preview__img.is-original {
  max-width: none;
  max-height: none;
}

.web-image-preview__close {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: #606266 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M18.3 5.71a1 1 0 0 0-1.41 0L12 10.59 7.11 5.7A1 1 0 0 0 5.7 7.11L10.59 12l-4.9 4.89a1 1 0 1 0 1.41 1.42L12 13.41l4.89 4.9a1 1 0 0 0 1.42-1.41L13.41 12l4.9-4.89a1 1 0 0 0-.01-1.4z'/%3E%3C/svg%3E") center/22px no-repeat;
  opacity: 0.8;
  transition: opacity var(--duration-fast);
}

.web-image-preview__close:hover {
  opacity: 1;
}

.web-image-preview__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: #606266 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z'/%3E%3C/svg%3E") center/22px no-repeat;
  opacity: 0.8;
  transition: opacity var(--duration-fast), transform var(--duration-fast) var(--ease-out);
}

.web-image-preview__arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.04);
}

.web-image-preview__arrow--prev {
  left: 40px;
  transform: translateY(-50%) rotate(180deg);
}

.web-image-preview__arrow--prev:hover {
  transform: translateY(-50%) rotate(180deg) scale(1.04);
}

.web-image-preview__arrow--next {
  right: 40px;
  transform: translateY(-50%);
}

.web-image-preview__actions {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  width: 282px;
  height: 44px;
  padding: 0 12px;
  border-radius: 22px;
  background: #606266;
  opacity: 0.8;
  transform: translateX(-50%);
  transition: opacity var(--duration-fast);
}

.web-image-preview__actions:hover {
  opacity: 1;
}

.web-image-preview__action {
  flex: 1;
  height: 100%;
  border: none;
  cursor: pointer;
  background: transparent center/22px no-repeat;
  opacity: 0.95;
  filter: brightness(0) invert(1);
  transition: opacity var(--duration-fast);
}

.web-image-preview__action:hover {
  opacity: 1;
}

.web-image-preview__action--zoom-out {
  background-image: url("../image/svg/suoxiao.svg");
}

.web-image-preview__action--zoom-in {
  background-image: url("../image/svg/fangda.svg");
}

.web-image-preview__action--fit {
  background-image: url("../image/svg/shiyingpingmu.svg");
}

.web-image-preview__action--original {
  background-image: url("../image/svg/yaunshichicun.svg");
}

.web-image-preview__action--rotate-left {
  background-image: url("../image/svg/zuoxuanzhuang.svg");
}

.web-image-preview__action--rotate-right {
  background-image: url("../image/svg/youxuanzhuang.svg");
}

.web-image-preview__divider {
  width: 1px;
  height: 22px;
  margin: 0 6px;
  background: rgba(255, 255, 255, 0.35);
}

.js-image-preview img,
img.js-image-preview-item,
img[data-image-preview],
.web-modal__slide-img {
  cursor: zoom-in;
}

/* 详情弹框：仅媒体 606×857 / 分栏 1046×857 / 仅富文本 638×857 */
.web-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.web-modal.is-visible {
  pointer-events: auto;
}

.web-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  transition: opacity 0.36s var(--ease-out);
}

.web-modal.is-visible .web-modal__mask {
  opacity: 1;
}

.web-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 12px));
  width: 1046px;
  height: 857px;
  max-width: calc(100vw - 80px);
  max-height: calc(100vh - 80px);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: transform 0.36s var(--ease-out), opacity 0.36s var(--ease-out);
}

.web-modal.is-visible .web-modal__panel {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.web-modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.06) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M18.3 5.71a1 1 0 0 0-1.41 0L12 10.59 7.11 5.7A1 1 0 0 0 5.7 7.11L10.59 12l-4.89 4.89a1 1 0 1 0 1.41 1.42L12 13.41l4.89 4.89a1 1 0 0 0 1.41-1.41L13.41 12l4.89-4.89a1 1 0 0 0 0-1.4z'/%3E%3C/svg%3E") center/18px no-repeat;
  transition: transform var(--duration-fast) var(--ease-spring), background var(--duration-fast);
}

.web-modal__close:hover {
  transform: rotate(90deg) scale(1.05);
  background-color: rgba(0, 0, 0, 0.1);
}

.web-modal__inner {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.web-modal__media {
  position: relative;
  flex: 0 0 606px;
  width: 606px;
  height: 857px;
  overflow: hidden;
  background: #FFFFFF;
}

.web-modal__swiper.swiper {
  width: 606px;
  height: 857px;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.web-modal__swiper .swiper-wrapper,
.web-modal__swiper .swiper-slide {
  height: 100%;
}

.web-modal__swiper,
.web-modal__video-wrap {
  position: relative;
  width: 606px;
  height: 857px;
  box-sizing: border-box;
  background: #FFFFFF;
}

.web-modal__media-stage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.web-modal__slide-img,
.web-modal__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.web-modal__slide-img {
  pointer-events: auto;
}

.web-modal__video {
  pointer-events: auto;
}

.web-modal__swiper .swiper-button-prev,
.web-modal__swiper .swiper-button-next {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.web-modal__counter {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  padding: 2px 9px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.44);
  border-radius: 27px;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.web-modal__swiper .swiper-button-prev,
.web-modal__swiper .swiper-button-next {
  top: 50%;
  z-index: 4;
  width: 38px;
  height: 38px;
  margin-top: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  transition: transform var(--duration-fast) var(--ease-out), background var(--duration-fast);
}

.web-modal__swiper .swiper-button-prev {
  left: 20px;
}

.web-modal__swiper .swiper-button-next {
  right: 20px;
}

.web-modal__swiper .swiper-button-prev::after,
.web-modal__swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.web-modal__swiper .swiper-button-prev:hover,
.web-modal__swiper .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.55);
}

.web-modal__swiper .swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.web-modal__content {
  flex: 1;
  min-width: 0;
  min-height: 0;
  padding: 72px 26px 30px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.web-modal__content::-webkit-scrollbar {
  display: none;
}

.web-modal__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.web-modal__head-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.web-modal__head-name {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

.web-modal__title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #121212;
}

.web-modal__rich {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  color: #121212;
  word-break: break-word;
}

.web-modal__rich img {
  max-width: 100%;
  height: auto;
}

.web-modal__time {
  margin: 24px 0 0;
  font-size: 12px;
  color: #999;
}

/* 仅图片/视频：606×857 */
.web-modal__panel--media {
  width: 606px;
}

.web-modal__panel--media .web-modal__inner {
  justify-content: center;
}

.web-modal__panel--media .web-modal__media {
  flex: 1 1 auto;
  width: 100%;
}

.web-modal__panel--media .web-modal__content {
  display: none;
}

/* 仅富文本：638×857 */
.web-modal__panel--text {
  width: 638px;
}

.web-modal__panel--text .web-modal__inner {
  display: block;
}

.web-modal__panel--text .web-modal__media {
  display: none;
}

.web-modal__panel--text .web-modal__content {
  width: 100%;
  height: 100%;
  padding-top: 56px;
}

/* 图片/视频 + 富文本：1046×857，媒体区仍 606×857 */
.web-modal__panel--split {
  width: 1046px;
}

.web-modal__panel--split .web-modal__media {
  flex: 0 0 606px;
  width: 606px;
}

.web-modal__panel--split .web-modal__content {
  flex: 0 0 440px;
  width: 440px;
  height: 100%;
  border-left: 1px solid #f0f0f0;
}

@media (max-width: 1600px) {
  .web-cards,
  .web-product-grid,
  .web-case-grid {
    grid-template-columns: repeat(4, var(--card-width));
  }
}

@media (max-width: 1360px) {
  .web-cards,
  .web-product-grid,
  .web-case-grid {
    grid-template-columns: repeat(3, var(--card-width));
  }

  .web-search-field {
    width: 280px;
  }
}

/* 产品库 / 案例库卡片 250×168 */
.web-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 250px);
  gap: 32px;
  margin-top: 8px;
}

.web-product-card {
  position: relative;
  width: 250px;
  transition: transform var(--duration-normal) var(--ease-out);
}

.web-product-card > a {
  display: block;
}

.web-product-card:hover {
  transform: translateY(-4px);
}

.web-product-card__cover {
  position: relative;
  width: 250px;
  height: auto;
  aspect-ratio: 210 / 131;
  border-radius: 20px;
  overflow: hidden;
  background: #f0f3f8;
}

.web-product-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out);
}

.web-product-card:hover .web-product-card__cover img {
  transform: scale(1.06);
}

.web-product-card__body {
  padding: 10px 0 0;
}

.web-product-card__title-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.web-product-card__label {
  flex-shrink: 0;
  padding: 2px 6px;
  font-size: 12px;
  color: #e28336;
  background: #fff8f3;
  border-radius: 4px;
}

.web-product-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.web-product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  min-height: 19px;
}

.web-product-card__tag {
  padding: 2px 8px;
  font-size: 12px;
  color: var(--color-primary);
  background: #f0f6ff;
  border-radius: 4px;
}

.web-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.web-product-card__price {
  font-size: 18px;
  font-weight: 700;
  color: #ff4d4f;
}

.web-product-card__price span,
.web-product-card__price em {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.web-product-card__sales {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.web-case-grid {
  display: grid;
  grid-template-columns: repeat(5, 250px);
  gap: 32px;
  margin-top: 8px;
}

.web-case-card {
  position: relative;
  width: 250px;
  transition: transform var(--duration-normal) var(--ease-out);
}

.web-case-card > a {
  display: block;
}

.web-case-card:hover {
  transform: translateY(-4px);
}

.web-case-card__cover {
  position: relative;
  width: 250px;
  height: auto;
  aspect-ratio: 203 / 114;
  border-radius: 20px;
  overflow: hidden;
  background: #f0f3f8;
}

.web-case-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out);
}

.web-case-card:hover .web-case-card__cover img {
  transform: scale(1.05);
}

.web-case-card__title {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.web-tab-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  padding: 4px 8px 4px 0;
  animation: web-fade-up 0.5s var(--ease-out) 0.14s both;
}

.web-tab-pills__item {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  font-size: 14px;
  color: var(--color-text-secondary);
  background: #F5F7FA;
  border-radius: 27px;
  transition: color var(--duration-fast), background var(--duration-fast), box-shadow var(--duration-fast), transform var(--duration-fast);
}

.web-tab-pills__item:hover {
  transform: translateY(-1px);
}

.web-tab-pills__item.is-active {
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 4px 14px rgba(13, 109, 254, 0.28);
}

/* 动态资讯 */
.web-trend-news {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 8px;
  align-items: start;
}

.web-trend-news__item {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.web-trend-news__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(13, 109, 254, 0.12);
}

.web-trend-news__link {
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding: 16px;
}

.web-trend-news__cover {
  position: relative;
  width: 316px;
  aspect-ratio: 69 / 34;
  flex-shrink: 0;
  border-radius: 15px;
  overflow: hidden;
  background: #f0f3f8;
}

.web-trend-news__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out);
}

.web-trend-news__item:hover .web-trend-news__cover img {
  transform: scale(1.04);
}

.web-trend-news__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.web-trend-news__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.web-trend-news__desc {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.web-trend-news__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.web-trend-news__time {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
}

.web-trend-news__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: transform var(--duration-fast) var(--ease-out);
}

.web-trend-news__more-icon {
  display: block;
  width: 11px;
  height: 11px;
}

.web-trend-news__item:hover .web-trend-news__more {
  transform: translateX(3px);
}

/* 动态朋友圈 */
.web-trend-feed {
  margin-top: 20px;
}

.web-trend-feed__item {
  position: relative;
  padding: 24px 28px;
  margin-bottom: 20px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(108deg, #f1f7ff 1%, #ffffff 27%), #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.web-trend-feed__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.08);
}

.web-trend-feed__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.web-trend-feed__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.web-trend-feed__head h3 {
  margin: 0;
  font-size: 16px;
}

.web-trend-feed__head p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--color-text-secondary);
}

.web-trend-feed__text {
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
}

.web-trend-feed__video {
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
}

.web-trend-feed__imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.web-trend-feed__imgs img {
  width: 124px;
  height: 124px;
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform var(--duration-fast) var(--ease-out);
}

.web-trend-feed__imgs img:hover {
  transform: scale(1.04);
  z-index: 1;
}

/* 导航单页面（富文本） */
.web-rich-page {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  margin: 0 0 24px 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: visible;
}

.web-rich-page__head {
  flex-shrink: 0;
  padding: 22px 32px;
  border-bottom: 1px solid #f0f0f0;
}

.web-rich-page__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #121212;
}

.web-rich-page__body {
  flex: none;
  padding: 28px 32px 40px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  word-break: break-word;
  overflow: visible;
}

.web-rich-page__body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 12px 0;
}

.web-rich-page__body p {
  margin: 0 0 12px;
}

.web-rich-page:has(> .web-empty) {
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

/* 内容详情内页 */
.web-content-detail {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: visible;
}

.web-content-detail:has(> .web-empty) {
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.web-content-detail__crumb {
  flex-shrink: 0;
  display: block;
  width: 100%;
  margin: 20px 0;
  font-size: 12px;
  line-height: 1.6;
  color: #9e9e9e;
}

.web-content-detail__crumb-label,
.web-content-detail__crumb a {
  color: #9e9e9e;
  text-decoration: none;
}

.web-content-detail__crumb a:hover {
  color: #0d6dfe;
}

.web-content-detail__crumb-sep {
  margin: 0 8px;
  color: #9e9e9e;
}

.web-content-detail__crumb-current {
  color: #0d6dfe;
}

.web-content-detail__head {
  margin-bottom: 0;
}

.web-content-detail__content {
  min-width: 0;
  overflow: visible;
}

.web-content-detail--text .web-content-detail__text-layout {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  gap: 30px;
  overflow: visible;
}

.web-content-detail__main-card {
  flex: 1;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
  padding: 20px 20px 0;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.web-content-detail--text .web-content-detail__main-card {
  flex: 1;
  min-height: auto;
  overflow: visible;
}

.web-content-detail--text .web-content-detail__head {
  flex-shrink: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.web-content-detail--text .web-content-detail__title {
  margin-bottom: 12px;
  font-size: 18px;
}

.web-content-detail--text .web-content-detail__meta {
  margin-bottom: 0;
}

.web-content-detail--text .web-content-detail__body {
  flex: none;
  min-height: auto;
  padding-top: 20px;
  overflow: visible;
}

.web-content-detail--text .web-content-detail__adjacent {
  flex-shrink: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 4px 32px;
  border-top: 1px solid #f0f0f0;
  background: #fff;
}

.web-content-detail.web-content-detail--trend {
  flex: 0 0 auto;
  min-height: 0;
  overflow: visible;
  --web-trend-detail-view-offset: 210px;
}

.web-content-detail--trend {
  display: flex;
  flex-direction: column;
}

.web-content-detail--trend .web-content-detail__crumb {
  flex-shrink: 0;
}

.web-content-detail--trend .web-content-detail__trend-layout {
  flex: 0 0 auto;
  height: auto;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  overflow: visible;
}

.web-content-detail--trend .web-content-detail__main-card {
  flex: 1;
  min-width: 0;
  min-height: auto;
  overflow: visible;
}

.web-content-detail--trend .web-content-detail__head {
  flex-shrink: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.web-content-detail--trend .web-content-detail__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.web-content-detail--trend .web-content-detail__title-row .web-content-detail__title {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
}

.web-trend-detail__contact-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 40px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  line-height: 1;
  color: #fff;
  border-radius: 40px;
  background: linear-gradient(180deg, #398de4 0%, #346ce0 53%, #3887e3 100%);
  box-shadow: inset 0 0 2px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid #7bbaff;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-spring), box-shadow var(--duration-fast);
}

.web-trend-detail__contact-btn:hover {
  transform: translateY(-2px);
}

.web-content-detail--trend .web-content-detail__title {
  margin-bottom: 12px;
  font-size: 18px;
}

.web-content-detail--trend .web-content-detail__meta {
  margin-bottom: 0;
}

.web-content-detail--trend .web-content-detail__body {
  flex: none;
  min-height: auto;
  padding-top: 20px;
  overflow: visible;
}

.web-content-detail--trend .web-content-detail__adjacent {
  flex-shrink: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 4px 32px;
  border-top: 1px solid #f0f0f0;
  background: #fff;
}

.web-trend-detail__aside {
  flex: 0 0 498px;
  width: 498px;
  max-width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.web-trend-detail__search {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
}

.web-trend-detail__search-field {
  position: relative;
  flex: 1;
  min-width: 0;
}

.web-trend-detail__search-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 52px;
  padding: 0 16px;
  font-size: 14px;
  font-family: inherit;
  color: #121212;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.web-trend-detail__search-input:focus {
  outline: none;
  border-color: #b3d4ff;
  box-shadow: 0 0 0 3px rgba(13, 109, 254, 0.12);
}

.web-trend-detail__search-field.is-error .web-trend-detail__search-input {
  border-color: #f56c6c;
  box-shadow: 0 0 0 3px rgba(245, 108, 108, 0.12);
}

.web-trend-detail__search-field.is-error .web-trend-detail__search-input:focus {
  border-color: #f56c6c;
  box-shadow: 0 0 0 3px rgba(245, 108, 108, 0.16);
}

.web-trend-detail__search-error {
  position: absolute;
  left: 16px;
  top: calc(100% + 4px);
  margin: 0;
  font-size: 12px;
  line-height: 1;
  color: #f56c6c;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-2px);
  transition: opacity var(--duration-fast) var(--ease-out), visibility var(--duration-fast), transform var(--duration-fast) var(--ease-out);
  pointer-events: none;
  white-space: nowrap;
}

.web-trend-detail__search-field.is-error .web-trend-detail__search-error {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.web-trend-detail__search-input::placeholder {
  color: #999;
}

.web-trend-detail__search-btn {
  flex-shrink: 0;
  width: 90px;
  height: 52px;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  font-family: inherit;
  color: #fff;
  background: #0d6dfe;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  cursor: pointer;
}

.web-trend-detail__hot {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 20px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
}

.web-trend-detail__hot-head {
  flex-shrink: 0;
  position: relative;
  padding: 20px 20px 20px 31px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #121212;
  border-bottom: 1px solid #f1f1f1;
}

.web-trend-detail__hot-head::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  width: 3px;
  height: 12px;
  margin-top: -6px;
  background: #1d79f2;
  border-radius: 2px;
}

.web-trend-detail__hot-body {
  flex: none;
  overflow: visible;
  padding: 0 20px 20px;
}

.web-trend-detail__hot-item {
  border-bottom: 1px solid #f1f1f1;
}

.web-trend-detail__hot-item:last-child {
  border-bottom: none;
}

.web-trend-detail__hot-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 -12px;
  padding: 16px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), background-color var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}

.web-trend-detail__hot-link:hover {
  transform: translateY(-3px);
  background: #f5f9ff;
  border-color: #e3efff;
  box-shadow: 0 8px 24px 0 rgba(13, 109, 254, 0.12);
}

.web-trend-detail__hot-link:hover .web-trend-detail__hot-title {
  color: #0d6dfe;
}

.web-trend-detail__hot-link:hover .web-trend-detail__hot-meta {
  color: #6b8fc7;
}

.web-trend-detail__hot-rank {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  background: #b8b8b8;
  border-radius: 7px;
}

.web-trend-detail__hot-item:nth-child(1) .web-trend-detail__hot-rank {
  background: #eb3d3d;
}

.web-trend-detail__hot-item:nth-child(2) .web-trend-detail__hot-rank {
  background: #ff804e;
}

.web-trend-detail__hot-item:nth-child(3) .web-trend-detail__hot-rank {
  background: #ffbd23;
}

.web-trend-detail__hot-main {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.web-trend-detail__hot-title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  color: #121212;
  word-break: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  transition: color var(--duration-fast) var(--ease-out);
}

.web-trend-detail__hot-meta {
  display: block;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #999;
}

.web-trend-detail__related {
  flex-shrink: 0;
  margin-top: 28px;
  padding-bottom: 10px;
}

.web-main > .web-home-lead-footer {
  flex-shrink: 0;
}

.web-trend-detail__related-head {
  position: relative;
  margin-bottom: 20px;
  padding-left: 11px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #121212;
}

.web-trend-detail__related-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 12px;
  margin-top: -6px;
  background: #0d6dfe;
  border-radius: 2px;
}

.web-trend-detail__related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.web-trend-detail__related-item {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.web-trend-detail__related-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px 0 rgba(13, 109, 254, 0.12);
}

.web-trend-detail__related-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.web-trend-detail__related-cover {
  aspect-ratio: 329 / 163;
  overflow: hidden;
  background: #f7f8fa;
}

.web-trend-detail__related-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-fast) var(--ease-out);
}

.web-trend-detail__related-item:hover .web-trend-detail__related-cover img {
  transform: scale(1.03);
}

.web-trend-detail__related-body {
  padding: 16px;
}

.web-trend-detail__related-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #121212;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.web-trend-detail__related-item:hover .web-trend-detail__related-title {
  color: #0d6dfe;
}

.web-trend-detail__related-meta {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #999;
}

.web-content-detail__aside {
  flex: 0 0 498px;
  width: 498px;
  max-width: 100%;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.web-content-detail__aside::-webkit-scrollbar {
  display: none;
}

.web-content-detail__aside-brand {
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 20px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
}

.web-content-detail__aside-brand .web-content-detail__brand {
  margin-bottom: 0;
}

.web-content-detail__aside-cta {
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 24px 20px 20px;
  text-align: center;
  background: #2f63da;
  border: 1px solid #f1f1f1;
  border-radius: 20px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
}

.web-content-detail__aside-cta-head {
  margin-bottom: 12px;
}

.web-content-detail__aside-cta-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.web-content-detail__aside-cta-title--strong {
  margin-top: 4px;
}

.web-content-detail__aside-cta-desc {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.web-content-detail__aside-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-size: 18px;
  font-weight: 700;
  font-family: inherit;
  color: #2f63da;
  background: #fff;
  border: 1px solid #7bbaff;
  border-radius: 54px;
  box-shadow: inset 0 0 2px 0 rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.web-content-detail__aside-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 2px 0 rgba(255, 255, 255, 0.3), 0 8px 20px rgba(0, 0, 0, 0.12);
}

.web-content-detail__aside-cta-phone {
  margin: 16px 0 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.web-content-detail__aside-more {
  margin-top: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 20px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
}

.web-content-detail__aside-more-head {
  padding: 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #666;
  background: #f6f6f6;
  border-radius: 20px 20px 0 0;
}

.web-content-detail__aside-more-body {
  padding: 0 20px;
}

.web-content-detail__aside-more-item {
  padding: 12px 0;
}

.web-content-detail__aside-more-link,
.web-content-detail__aside-more-empty {
  display: block;
  color: inherit;
  text-decoration: none;
}

.web-content-detail__aside-more-link {
  padding: 12px 16px;
  margin: 0 -4px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), background-color var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}

.web-content-detail__aside-more-link:hover {
  transform: translateY(-3px);
  background: #f5f9ff;
  border-color: #e3efff;
  box-shadow: 0 8px 24px 0 rgba(13, 109, 254, 0.12);
}

.web-content-detail__aside-more-link:hover .web-content-detail__aside-more-title,
.web-content-detail__aside-more-link:hover .web-content-detail__aside-more-label {
  color: #0d6dfe;
}

.web-content-detail__aside-more-empty {
  padding: 12px 16px;
  margin: 0 -4px;
  cursor: default;
}

.web-content-detail__aside-more-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: #999;
  transition: color var(--duration-fast) var(--ease-out);
}

.web-content-detail__aside-more-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  object-fit: contain;
}

.web-content-detail__aside-more-title {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #121212;
  transition: color var(--duration-fast) var(--ease-out);
}

.web-content-detail__aside-more-empty .web-content-detail__aside-more-title {
  color: #c9cdd4;
}

.web-content-detail__aside-more-divider {
  display: block;
  height: 1px;
  background: #f1f1f1;
}

.web-dock {
  position: fixed;
  right: 0;
  bottom: 50px;
  z-index: 6;
  overflow: visible;
}

.web-dock__bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  padding: 18px 0;
  background: #fff;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06);
}

.web-dock__item-wrap {
  position: relative;
  width: 100%;
}

.web-dock__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
  padding: 0;
  font-family: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
}

.web-dock__item:hover .web-dock__icon {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 109, 254, 0.28);
}

.web-dock__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: #0d6dfe;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.web-dock__icon img {
  width: 21px;
  height: 21px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.web-dock__label {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: #121212;
}

.web-dock__divider {
  width: 54px;
  height: 1px;
  margin: 16px 0;
  background: #f1f1f1;
}

.web-dock__popover {
  box-sizing: border-box;
  padding: 16px;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 12px;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration-fast) var(--ease-out), visibility var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.web-dock__popover--left {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  z-index: 2;
  min-width: 160px;
  transform: translateY(-50%) translateX(8px);
}

.web-dock__popover--qr {
  min-width: 140px;
  text-align: center;
}

.web-dock__item-wrap:hover .web-dock__popover--left,
.web-dock__item-wrap:focus-within .web-dock__popover--left {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.web-dock__popover-label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: #999;
}

.web-dock__popover-value {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #121212;
  white-space: nowrap;
}

.web-dock__popover-qr {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 8px;
}

.web-dock__popover-tip {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #666;
}

.web-content-detail__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #121212;
}

.web-content-detail__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 30px;
}

.web-content-detail__brand-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}

.web-content-detail__brand-logo {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.web-content-detail__brand-logo img,
.web-content-detail__brand-logo-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.web-content-detail__brand-logo-placeholder {
  background: linear-gradient(135deg, #DFEBFF, #0D6DFE);
}

.web-content-detail__brand-name {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
}

.web-content-detail__brand-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 134px;
  height: 48px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  border-radius: 54px;
  background: linear-gradient(180deg, #398de4 0%, #346ce0 53%, #3887e3 100%);
  box-shadow: inset 0 0 2px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid #7bbaff;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-spring), box-shadow var(--duration-fast);
}

.web-content-detail__brand-btn:hover {
  transform: translateY(-2px);
}

.web-content-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  margin-bottom: 20px;
  padding: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #8a96a8;
}

.web-content-detail__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.web-content-detail__meta-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  object-fit: contain;
}

.web-content-detail:has(> .web-content-detail__split) {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.web-content-detail__split {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 490px minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.web-content-detail__split .web-content-detail__side {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.web-content-detail__split .web-content-detail__content {
  flex: 1;
  min-height: 0;
  height: auto;
  max-height: none;
  box-sizing: border-box;
  padding: 0 16px 32px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.web-content-detail__split .web-content-detail__content::-webkit-scrollbar {
  display: none;
}

.web-content-detail__split .web-content-detail__adjacent {
  flex-shrink: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.web-content-detail__media {
  width: 490px;
  height: 692px;
  flex-shrink: 0;
  align-self: start;
  background: #f7f8fa;
  border-radius: 20px;
  overflow: hidden;
}

.web-content-detail__swiper.swiper,
.web-content-detail__video-wrap {
  width: 490px;
  height: 692px;
}

.web-content-detail__swiper.swiper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #f7f8fa;
}

.web-content-detail__swiper .swiper-wrapper,
.web-content-detail__swiper .swiper-slide {
  height: 100%;
}

.web-content-detail__media-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f7f8fa;
}

.web-content-detail__media-stage img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.web-content-detail__video-wrap,
.web-content-detail__video {
  display: block;
  border-radius: 20px;
  background: #f7f8fa;
}

.web-content-detail__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.web-content-detail__body {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  word-break: break-word;
}

.web-content-detail__body img {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 !important;
}

.web-content-detail__body p {
  margin: 0 0 12px;
}

.web-content-detail__body p:has(> img) {
  margin: 0;
  line-height: 0;
}

.web-content-detail__swiper .swiper-button-prev,
.web-content-detail__swiper .swiper-button-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
}

.web-content-detail__swiper .swiper-button-prev::after,
.web-content-detail__swiper .swiper-button-next::after {
  font-size: 14px;
}

.web-content-detail__swiper.swiper-horizontal > .swiper-pagination-bullets,
.web-content-detail__swiper .swiper-pagination.swiper-pagination-bullets,
.web-content-detail__swiper .swiper-pagination {
  left: 0;
  right: 0;
  bottom: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: none;
}

.web-content-detail__swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background: #d9d9d9;
  opacity: 1;
}

.web-content-detail__swiper .swiper-pagination-bullet-active {
  background: #0d6dfe;
}

.web-content-detail__adjacent {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 32px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.web-content-detail__adjacent-item--next {
  text-align: right;
}

.web-content-detail__adjacent-item--next a,
.web-content-detail__adjacent-item--next .web-content-detail__adjacent-empty {
  text-align: right;
}

.web-content-detail__adjacent-item a,
.web-content-detail__adjacent-empty {
  display: block;
  padding: 14px 16px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid #f1f1f1;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  text-decoration: none;
}

.web-content-detail__adjacent-item a {
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out);
}

.web-content-detail__adjacent-item a:hover {
  transform: translateY(-3px);
  border-color: #e3efff;
  box-shadow: 0 8px 24px 0 rgba(13, 109, 254, 0.12);
}

.web-content-detail__adjacent-empty {
  cursor: default;
}

.web-content-detail__adjacent-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 12px;
  color: #86909c;
}

.web-content-detail__adjacent-item--next .web-content-detail__adjacent-label {
  justify-content: flex-end;
  width: 100%;
}

.web-content-detail__adjacent-label-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  object-fit: contain;
}

.web-content-detail__adjacent-title {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #121212;
}

.web-content-detail__adjacent-empty .web-content-detail__adjacent-title {
  color: #c9cdd4;
}

.web-trend-feed__item--link {
  display: block;
  color: inherit;
  text-decoration: none;
}

@media (max-width: 960px) {
  .web-content-detail__text-layout,
  .web-content-detail--trend .web-content-detail__trend-layout {
    flex-direction: column;
  }

  .web-content-detail__aside,
  .web-trend-detail__aside {
    flex: none;
    width: 100%;
  }

  .web-trend-detail__related-grid {
    grid-template-columns: 1fr;
  }

  .web-content-detail--trend .web-content-detail__trend-layout {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .web-content-detail--trend .web-content-detail__main-card {
    max-height: none;
  }

  .web-content-detail--trend .web-content-detail__body {
    overflow-y: visible;
  }

  .web-trend-detail__hot {
    overflow: visible;
  }

  .web-trend-detail__hot-body {
    overflow-y: visible;
  }

  .web-dock {
    display: none;
  }

  .web-content-detail__split {
    grid-template-columns: 1fr;
  }

  .web-content-detail__media,
  .web-content-detail__swiper.swiper,
  .web-content-detail__video-wrap {
    width: 100%;
    height: auto;
    max-width: 490px;
  }

  .web-content-detail__media-stage {
    aspect-ratio: 490 / 692;
    height: auto;
  }

  .web-content-detail__split .web-content-detail__side {
    height: auto;
  }

  .web-content-detail__split .web-content-detail__content {
    height: auto;
    max-height: none;
    padding: 0;
    overflow-y: visible;
  }

  .web-content-detail__adjacent {
    grid-template-columns: 1fr;
  }
}

/* 联系我们 */
.web-contact-card {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
  background: transparent;
  overflow: visible;
}

.web-contact-card__head {
  flex-shrink: 0;
  width: 100%;
  padding: 18px 0;
  text-align: center;
  background: #f6faff;
}

.web-contact-card__title {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.4;
  color: #9cacc2;
}

.web-contact-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  padding: 32px 40px 36px;
  align-items: stretch;
}

.web-contact__map {
  position: relative;
  min-height: 412px;
  border-radius: 12px;
  overflow: hidden;
  background: #eef4ff;
}

.web-contact__map-canvas {
  width: 100%;
  height: 412px;
}

.web-contact__map-frame {
  display: block;
  width: 100%;
  height: 412px;
  border: 0;
}

.web-map-callout {
  display: inline-block;
  max-width: 320px;
  text-align: center;
}

.web-map-callout__text {
  display: inline-block;
  box-sizing: border-box;
  max-width: 320px;
  padding: 6px 18px;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  background: #fff;
  border: none;
  border-radius: 9999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  word-break: break-all;
  text-align: center;
  vertical-align: top;
}

.web-contact__map-canvas [class*="info"],
.web-recruit-detail__map-canvas [class*="info"] {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.web-contact__map-canvas [class*="close"],
.web-recruit-detail__map-canvas [class*="close"] {
  display: none !important;
}

.web-contact-map-info {
  display: inline-block;
  box-sizing: border-box;
  max-width: 320px;
  padding: 6px 18px;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  background: #fff;
  border: none;
  border-radius: 9999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  word-break: break-all;
  text-align: center;
}

.web-contact__map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 412px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.web-contact__map-fallback a {
  margin-left: 4px;
  color: var(--color-primary);
}

.web-contact__map-link,
.web-recruit-detail__map-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-primary);
}

.web-contact__map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 412px;
  padding: 24px;
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.web-contact__map-placeholder-name {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

.web-contact__map-pin {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  background: #ff4d4f;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.web-contact__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0 8px 8px;
}

.web-contact__company {
  margin: 0 0 12px;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.4;
  color: #121212;
}

.web-contact__intro {
  margin: 0 0 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: #999999;
}

.web-contact__rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.web-contact__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.web-contact__row-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  object-fit: contain;
}

.web-contact__row-text {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #43556f;
}

.web-contact__row-label {
  color: inherit;
}

.web-contact__addr-name {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #43556f;
}

.web-contact__addr-detail {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: #43556f;
}

.web-contact-card__footer {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 36px 48px 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.web-contact-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.web-contact-cta__text {
  width: 100%;
}

.web-contact-cta__text h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
  color: #121212;
}

.web-contact-cta__text p {
  margin: 0 auto;
  max-width: 720px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  color: #999999;
}

.web-contact-cta__actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 22px;
  padding-right: 12px;
  padding-bottom: 10px;
}

.web-contact-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 220px;
  height: 50px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--duration-fast) var(--ease-spring), box-shadow var(--duration-fast);
}

.web-contact-cta__btn--outline {
  color: #0d6dfe;
  background: #ebf3ff;
  border: 1px solid #0d6dfe;
  box-shadow: none;
}

.web-contact-cta__btn--primary {
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #398de4 0%, #346ce0 53%, #3887e3 100%);
  border: 1px solid #7bbaff;
  box-shadow: inset 0 0 2px 0 rgba(255, 255, 255, 0.3);
}

.web-contact-cta__btn-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.web-contact-cta__pointer {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M5.5 3.21l11.9 8.27a1 1 0 0 1-.05 1.72l-4.46 2.3 2.3 4.46a1 1 0 0 1-1.72.05L5.5 3.21z'/%3E%3C/svg%3E") center/contain no-repeat;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.web-contact-cta__btn:hover {
  transform: translateY(-2px);
}

/* 企业招聘 */
.web-recruit-layout {
  display: grid;
  grid-template-columns: 412px 1fr;
  gap: 30px;
}

.web-recruit-search {
  display: flex;
  align-items: center;
  height: 42px;
  margin-bottom: 16px;
  padding: 0 12px;
  background: #f5f7fa;
  border-radius: 21px;
  border: 1px solid #eceff3;
  flex-shrink: 0;
}

.web-recruit-search__input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
}

.web-recruit-card {
  display: block;
  padding: 20px;
  margin-bottom: 15px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(116deg, #f1f7ff 1%, #ffffff 28%);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition:
    transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out),
    background var(--duration-normal) var(--ease-out);
}

.web-recruit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px 0 rgba(13, 109, 254, 0.14);
  background: linear-gradient(116deg, #eaf3ff 1%, #ffffff 32%);
}

.web-recruit-card.is-active {
  box-shadow:
    0 4px 20px 0 rgba(0, 0, 0, 0.06),
    0 0 0 2px #7aadff;
}

.web-recruit-card.is-active:hover {
  box-shadow:
    0 10px 28px 0 rgba(13, 109, 254, 0.14),
    0 0 0 2px #7aadff;
}

.web-recruit-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.web-recruit-card__head h3 {
  margin: 0;
  font-size: 18px;
  transition: color var(--duration-fast) var(--ease-out);
}

.web-recruit-card:hover .web-recruit-card__head h3 {
  color: var(--color-primary);
}

.web-recruit-card__head span {
  color: #ff4d4f;
  font-weight: 600;
}

.web-recruit-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0 30px;
}

.web-recruit-card__tags span {
  padding: 3px 8px;
  font-size: 12px;
  line-height: 1.4;
  color: #5e5e5e;
  background: #f5f5f5;
  border-radius: 4px;
}

.web-recruit-card__company {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 0;
}

.web-recruit-card__company-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.web-recruit-card__company-logo {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-fast) var(--ease-spring);
}

.web-recruit-card:hover .web-recruit-card__company-logo {
  transform: scale(1.08);
}

.web-recruit-card__company-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.web-recruit-card__company-logo span {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
}

.web-recruit-card__company-name {
  font-size: 13px;
  color: #121212;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.web-recruit-card__area {
  flex-shrink: 0;
  font-size: 12px;
  color: #666;
}

.web-recruit-detail {
  min-height: 0;
}

.web-recruit-detail__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.web-recruit-detail__title-wrap {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 100px;
  flex: 1;
  min-width: 0;
}

.web-recruit-detail__name {
  margin: 0;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
  color: #121212;
}

.web-recruit-detail__salary {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
  color: #ff4000;
  white-space: nowrap;
}

.web-recruit-detail__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  font-size: 18px;
  font-weight: bold;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(180deg, #398de4 0%, #346ce0 53%, #3887e3 100%);
  border: 1px solid #7bbaff;
  border-radius: 22px;
  text-decoration: none;
  box-shadow: inset 0 0 2px 0 rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-spring);
}

.web-recruit-detail__cta:hover {
  transform: translateY(-2px);
}

.web-recruit-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin: 20px 0 30px;
  font-size: 13px;
  color: #666;
}

.web-recruit-detail__section-title {
  margin: 24px 0 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #121212;
}

.web-recruit-detail__meta + .web-recruit-detail__section-title {
  margin-top: 0;
}

.web-recruit-detail__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.5;
}

.web-recruit-detail__meta-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.web-recruit-company {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 30px 0;
  border-top: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
  background: transparent;
}

.web-recruit-company__logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: #f6f6f6;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.web-recruit-company__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.web-recruit-company__logo span {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
}

.web-recruit-company__info {
  min-width: 0;
  height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.web-recruit-company__info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #121212;
}

.web-recruit-company__info p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #999;
}

.web-recruit-company + .web-recruit-detail__section-title {
  margin: 30px 0 20px;
}

.web-recruit-detail__address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #666666;
}

.web-recruit-detail__address-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  object-fit: contain;
}

.web-recruit-detail__map {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: #e5e7eb;
}

.web-recruit-detail__map-canvas {
  width: 100%;
  height: 240px;
}

.web-recruit-detail__map iframe {
  height: 240px;
}

.web-recruit-detail__map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.web-recruit-detail__map-fallback a {
  color: var(--color-primary);
}

.web-recruit-detail__rich {
  font-size: 14px;
  line-height: 1.65;
  color: #666;
  word-break: break-word;
}

.web-recruit-detail__rich img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 8px 0;
  border-radius: 8px;
}

.web-recruit-detail__rich p {
  margin: 0 0 8px;
}

.web-recruit-detail__welfare {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 0;
  border-bottom: none;
}

.web-recruit-detail__welfare span {
  min-width: 64px;
  padding: 6px 14px;
  font-size: 13px;
  color: #5e5e5e;
  background: #f5f5f5;
  border-radius: 6px;
  text-align: center;
}

.web-modal__loading {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  font-size: 14px;
  color: var(--color-text-secondary);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease-out), visibility 0.28s;
}

.web-modal.is-loading .web-modal__loading {
  opacity: 1;
  visibility: visible;
}

.web-modal.is-loading .web-modal__inner {
  opacity: 0;
}

.web-modal__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e8f0ff;
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: web-spin 0.8s linear infinite;
}

@keyframes web-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========== 动效与入场 ========== */
@keyframes web-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes web-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 全站页面加载入场（首页模块动效由 web-home-fx 单独处理） */
.web-page:not(.web-page--home) .web-search-page,
.web-page:not(.web-page--home) .web-content-detail:not(.web-content-detail--enter),
.web-page:not(.web-page--home) .web-contact-card,
.web-page:not(.web-page--home) .web-recruit-layout,
.web-page:not(.web-page--home) .web-rich-page,
.web-page:not(.web-page--home) .web-empty,
.web-page:not(.web-page--home) .web-home-lead-footer,
.web-page:not(.web-page--home) .web-cards:empty,
.web-page:not(.web-page--home) .web-case-grid:empty,
.web-page:not(.web-page--home) .web-product-grid:empty,
.web-page:not(.web-page--home) .web-trend-feed:empty,
.web-page:not(.web-page--home) .web-trend-news:empty {
  animation: web-fade-up 0.62s var(--ease-out) 0.2s both;
}

.web-content-detail__crumb,
.web-content-detail__main-card,
.web-content-detail__media,
.web-content-detail__side,
.web-content-detail__aside,
.web-content-detail__adjacent,
.web-trend-detail__aside,
.web-trend-detail__related,
.web-recruit-detail,
.web-search-section,
.web-contact-card__head,
.web-contact-card__body,
.web-contact-card__footer,
.web-rich-page__head,
.web-rich-page__body {
  animation: web-fade-up 0.58s var(--ease-out) both;
  animation-delay: var(--load-delay, 0.18s);
}

.web-content-detail--enter .web-content-detail__crumb,
.web-content-detail--enter .web-content-detail__main-card,
.web-content-detail--enter .web-content-detail__media,
.web-content-detail--enter .web-content-detail__side,
.web-content-detail--enter .web-content-detail__aside,
.web-content-detail--enter .web-content-detail__adjacent,
.web-content-detail--enter .web-trend-detail__aside,
.web-content-detail--enter .web-trend-detail__related,
.web-content-detail--enter .web-trend-detail__related-item,
.web-content-detail--enter .web-trend-detail__hot-item,
.web-content-detail--enter.web-content-detail,
.web-content-detail--enter ~ .web-home-lead-footer {
  animation: none !important;
}

.web-page-load-item {
  animation: web-fade-up 0.52s var(--ease-out) both;
  animation-delay: var(--load-delay, 0ms);
}

.web-page.is-page-ready .web-dock {
  animation: web-fade-in 0.45s var(--ease-out) 0.32s both;
}

@keyframes web-bg-float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(24px, 18px);
  }
}

.web-reveal {
  opacity: 0;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.web-reveal--up {
  transform: translateY(24px);
}

.web-reveal--down {
  transform: translateY(-24px);
}

.web-reveal--left {
  transform: translateX(24px);
}

.web-reveal--right {
  transform: translateX(-24px);
}

.web-reveal--scale {
  transform: scale(0.88);
}

.web-reveal.is-inview {
  opacity: 1;
  transform: none;
}

/* ========== 首页模块独立动效 ========== */
.web-home-fx {
  opacity: 0;
  transition: opacity 0.75s var(--ease-reveal), transform 0.75s var(--ease-reveal);
  transition-delay: var(--fx-delay, 0ms);
}

.web-home-fx--up {
  transform: translateY(28px);
}

.web-home-fx--down {
  transform: translateY(-24px);
}

.web-home-fx--left {
  transform: translateX(-40px);
}

.web-home-fx--right {
  transform: translateX(40px);
}

.web-home-fx--zoom {
  transform: scale(0.94);
}

.web-home-fx--fade {
  transform: none;
}

.web-home-fx.is-inview {
  opacity: 1;
  transform: none;
}

.web-home-hero .web-home-fx--zoom {
  transition-duration: 0.85s;
}

.web-home-solution .web-home-fx--left {
  transition-timing-function: var(--ease-spring);
}

.web-home-cases .web-home-fx--zoom {
  transition-duration: 0.68s;
}

.web-home-timeline .web-home-fx--right {
  transition-duration: 0.82s;
}

.web-home-compare .web-home-fx--fade {
  transition-duration: 0.95s;
}

.web-home-lead .web-home-fx--left,
.web-home-lead .web-home-fx--right {
  transition-duration: 0.8s;
}

.web-content-detail--enter .web-home-fx--left,
.web-content-detail--enter .web-home-fx--right {
  transition-duration: 0.78s;
}

.web-content-detail--enter .web-content-detail__media.web-home-fx--left {
  transition-duration: 0.85s;
}

.web-content-detail--enter .web-trend-detail__related-item.web-home-fx--zoom,
.web-content-detail--enter .web-content-detail__main-card.web-home-fx--left {
  transition-duration: 0.72s;
}

.web-home-fx--hero-text {
  opacity: 1;
  transform: none;
  transition: none;
}

.web-home-fx--hero-text.is-inview > .web-home-hero__desc,
.web-home-fx--hero-text.is-inview > .web-home-hero__title,
.web-home-fx--hero-text.is-inview > .web-home-hero__tags,
.web-home-fx--hero-text.is-inview > .web-home-hero__subtitle,
.web-home-fx--hero-text.is-inview > .web-home-hero__cta {
  animation: web-fade-up 0.72s var(--ease-reveal) both;
}

.web-home-fx--hero-text.is-inview > .web-home-hero__desc {
  animation-delay: 0.1s;
}

.web-home-fx--hero-text.is-inview > .web-home-hero__title {
  animation-delay: 0.2s;
}

.web-home-fx--hero-text.is-inview > .web-home-hero__tags {
  animation-delay: 0.3s;
}

.web-home-fx--hero-text.is-inview > .web-home-hero__subtitle {
  animation-delay: 0.4s;
}

.web-home-fx--hero-text.is-inview > .web-home-hero__cta {
  animation-delay: 0.5s;
}

.web-home-fx--hero-text:not(.is-inview) > .web-home-hero__desc,
.web-home-fx--hero-text:not(.is-inview) > .web-home-hero__title,
.web-home-fx--hero-text:not(.is-inview) > .web-home-hero__tags,
.web-home-fx--hero-text:not(.is-inview) > .web-home-hero__subtitle,
.web-home-fx--hero-text:not(.is-inview) > .web-home-hero__cta {
  opacity: 0;
  transform: translateY(20px);
}

.web-modal__slide-img {
  transition: opacity 0.25s var(--ease-out);
}

.web-modal__slide-img.is-fading {
  opacity: 0.4;
}

.js-detail-open {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .web-bg--blue,
  .web-bg--light,
  .web-sidebar,
  .web-main,
  .web-header,
  .web-subnav,
  .web-toolbar,
  .web-tab-pills,
  .web-page:not(.web-page--home) .web-search-page,
  .web-page:not(.web-page--home) .web-content-detail,
  .web-page:not(.web-page--home) .web-contact-card,
  .web-page:not(.web-page--home) .web-recruit-layout,
  .web-page:not(.web-page--home) .web-rich-page,
  .web-page:not(.web-page--home) .web-empty,
  .web-page:not(.web-page--home) .web-home-lead-footer,
  .web-content-detail__crumb,
  .web-content-detail__main-card,
  .web-content-detail__media,
  .web-content-detail__side,
  .web-content-detail__aside,
  .web-content-detail__adjacent,
  .web-trend-detail__aside,
  .web-trend-detail__related,
  .web-recruit-detail,
  .web-search-section,
  .web-contact-card__head,
  .web-contact-card__body,
  .web-contact-card__footer,
  .web-rich-page__head,
  .web-rich-page__body,
  .web-page-load-item,
  .web-page.is-page-ready .web-dock {
    animation: none !important;
  }

  .web-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .web-home-fx {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .web-home-fx--hero-text:not(.is-inview) > .web-home-hero__desc,
  .web-home-fx--hero-text:not(.is-inview) > .web-home-hero__title,
  .web-home-fx--hero-text:not(.is-inview) > .web-home-hero__tags,
  .web-home-fx--hero-text:not(.is-inview) > .web-home-hero__subtitle,
  .web-home-fx--hero-text:not(.is-inview) > .web-home-hero__cta {
    opacity: 1;
    transform: none;
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* 企宣宝 PC 站 - 营销首页（MasterGo 首页 1920×6696，假数据占位） */
.web-page--home .web-main {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-top: 0;
  padding-bottom: 10px;
}

.web-page--home .web-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #fff;
  padding-top: 40px;
  padding-bottom: 12px;
}

/* 列表/详情：顶栏间距对齐首页 banner，一级分类紧贴导航下方 */
.web-page--product .web-main,
.web-page--case .web-main,
.web-page--trend .web-main,
.web-page--about .web-main,
.web-page--search .web-main {
  padding-top: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 10px;
}

.web-page--product .web-main:has(> .web-content-detail),
.web-page--case .web-main:has(> .web-content-detail),
.web-page--about .web-main:has(> .web-content-detail) {
  overflow-y: auto;
}

.web-page--product .web-main:has(> .web-content-detail > .web-content-detail__split),
.web-page--case .web-main:has(> .web-content-detail > .web-content-detail__split),
.web-page--about .web-main:has(> .web-content-detail > .web-content-detail__split) {
  overflow: hidden;
}

/* 动态详情：主区+侧栏占满一屏，相关文章在下方，整页滚动 */
.web-page--trend .web-main:has(> .web-content-detail--trend) {
  overflow-y: auto;
}

.web-page--product .web-header,
.web-page--case .web-header,
.web-page--trend .web-header,
.web-page--about .web-header,
.web-page--search .web-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #fff;
  padding-top: 40px;
  padding-bottom: 12px;
}

.web-page--home .web-home {
  flex: 1;
  min-height: 0;
}

.web-home-section {
  margin-top: 48px;
}

.web-home-section__head {
  margin-bottom: 24px;
}

.web-home-section__head--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.web-home-section__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #121212;
  line-height: 1.3;
}

.web-home-section__sub {
  margin: 8px 0 0;
  font-size: 14px;
  color: #666;
}

.web-home-section__more {
  font-size: 14px;
  color: var(--color-primary);
  white-space: nowrap;
}

.web-home-hero {
  margin-bottom: 8px;
}

.web-home-hero__inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.web-home-hero__banner {
  flex: 0 0 800px;
  width: 800px;
  max-width: 100%;
}

.web-home-hero__swiper.swiper {
  width: 800px;
  max-width: 100%;
  height: 346px;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
}

.web-home-hero__swiper .swiper-slide {
  height: 346px;
}

.web-home-hero__slide {
  position: relative;
  width: 100%;
  height: 346px;
  overflow: hidden;
  border-radius: 10px;
}

.web-home-hero__slide-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.web-home-hero__slide-bg--placeholder {
  background: linear-gradient(135deg, #eef4ff 0%, #d6e8ff 45%, #f5f8ff 100%);
}

.web-home-hero__slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 32px;
  pointer-events: none;
}

.web-home-hero__slide-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  pointer-events: auto;
  touch-action: auto;
  user-select: text;
  -webkit-user-select: text;
}

.web-home-hero__slide-copy .web-home-hero__cta {
  user-select: none;
  -webkit-user-select: none;
}

.web-home-hero__swiper.swiper-horizontal > .swiper-pagination-bullets,
.web-home-hero__swiper .swiper-pagination.swiper-pagination-bullets,
.web-home-hero__swiper .swiper-pagination {
  left: 32px;
  right: auto;
  bottom: 20px;
  width: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: none;
}

.web-home-hero__swiper .swiper-pagination-bullet {
  width: 40px;
  height: 2px;
  margin: 0;
  border-radius: 1px;
  background: #fff;
  opacity: 1;
}

.web-home-hero__swiper .swiper-pagination-bullet-active {
  width: 40px;
  height: 2px;
  border-radius: 1px;
  background: #0d6dfe;
}

.web-home-hero__desc {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 40px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: #666666;
}

.web-home-hero__desc::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  opacity: 1;
  background: #00ad28;
  border: 1px solid rgba(0, 173, 40, 0.33);
  border-radius: 50%;
  box-sizing: border-box;
}

.web-home-hero__title {
  margin: 15px 0 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  color: #121212;
}

.web-home-hero__tags {
  margin: 30px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #2659ad;
}

.web-home-hero__subtitle {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: #666666;
}

.web-home-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 40px;
  height: 36px;
  padding: 8px 14px;
  border-radius: 33px;
  background: #0d6dfe;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-sizing: border-box;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), background-color var(--duration-fast) var(--ease-out);
}

.web-home-hero__cta:hover {
  transform: translateY(-2px);
  background: #0b5fd4;
  box-shadow: 0 8px 20px rgba(13, 109, 254, 0.35);
}

.web-home-hero__cta:active {
  transform: translateY(0);
  background: #0a56c4;
  box-shadow: 0 4px 12px rgba(13, 109, 254, 0.25);
}

.web-home-hero__cards {
  flex: 1;
  min-width: 0;
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 12px;
  height: 346px;
}

.web-home-service-card {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: none;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(13, 109, 254, 0.08);
}

.web-home-service-card--link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.web-home-service-card--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(13, 109, 254, 0.18);
}

.web-home-service-card--image.web-home-service-card--link:hover {
  box-shadow: none;
}

.web-home-service-card--link:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(13, 109, 254, 0.12);
}

.web-home-service-card--image.web-home-service-card--link:active {
  box-shadow: none;
}

.web-home-service-card--image {
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: none;
}

.web-home-service-card__icon,
.web-home-service-card__head,
.web-home-service-card__desc,
.web-home-service-card__body {
  position: relative;
  z-index: 1;
}

.web-home-service-card__body {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 0 18px;
}

.web-home-service-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.web-home-service-card__icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.web-home-service-card__icon img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.web-home-service-card__title {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 20px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.web-home-service-card__desc {
  margin: 15px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #888;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.web-home-solution {
  margin-top: 50px;
}

.web-home-solution__head {
  margin-bottom: 24px;
}

.web-home-solution__head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.web-home-solution__head-main {
  flex: 1;
  min-width: 0;
}

.web-home-solution .web-home-section__title {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  color: #121212;
}

.web-home-solution .web-home-section__sub,
.web-home-cases .web-home-section__sub {
  margin: 15px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: #526072;
}

.web-home-solution__deco,
.web-home-cases .web-home-solution__deco {
  width: 120px;
  height: 3px;
  margin-top: 15px;
  border-radius: 0;
  background: linear-gradient(to right, #0d6dfe 0, #0d6dfe 50%, #ff7f00 50%, #ff7f00 100%);
}

.web-home-solution__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px 18px;
  border: 1px solid #0d6dfe;
  border-radius: 10px;
  background: #f5f8ff;
  color: #0d6dfe;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.web-home-solution__more:hover {
  background: #0d6dfe;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13, 109, 254, 0.22);
}

.web-home-solution__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  row-gap: 15px;
  column-gap: 20px;
}

.web-home-solution__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 12px;
  border: 1px solid #ECF2FF;
  border-radius: 10px;
  background: #F5F8FF;
  color: #121212;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
  box-sizing: border-box;
}

.web-home-solution__item--link {
  text-decoration: none;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), background-color var(--duration-fast) var(--ease-out);
}

.web-home-solution__item--link:hover {
  transform: translateY(-2px);
  background: #ECF2FF;
  box-shadow: 0 8px 20px rgba(13, 109, 254, 0.12);
}

.web-home-cases {
  margin-top: 50px;
  padding: 40px 0;
  background: linear-gradient(90deg, #ffffff 0%, #eaf4ff8c 5%, #eaf4ff 50%, #eaf4ff8c 95%, #ffffff 100%);
}

.web-home-cases .web-home-solution__head {
  margin-bottom: 24px;
}

.web-home-cases .web-home-section__title {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  color: #121212;
}

.web-home-cases__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.web-home-cases__tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 96px;
  padding: 14px 16px;
  border: 1px solid #ecf2ff;
  border-radius: 10px;
  background: #fff;
  color: #121212;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.web-home-cases__tab:not(.is-active):hover {
  background: #f5f8ff;
  border-color: #0d6dfe;
  color: #0d6dfe;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 109, 254, 0.1);
}

.web-home-cases__tab.is-active:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13, 109, 254, 0.28);
}

.web-home-cases__tab-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: filter var(--duration-fast) var(--ease-out);
}

.web-home-cases__tab:not(.is-active):hover .web-home-cases__tab-icon {
  /* #0D6DFE，与文字同色 */
  filter: brightness(0) saturate(100%) invert(36%) sepia(93%) saturate(2800%) hue-rotate(203deg) brightness(99%) contrast(101%);
}

.web-home-cases__tab.is-active {
  background: #0d6dfe;
  border-color: #0d6dfe;
  color: #fff;
}

.web-home-cases__tab.is-active .web-home-cases__tab-icon {
  filter: brightness(0) invert(1);
}

.web-home-cases__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 20px;
  column-gap: 20px;
}

.web-home-cases.is-loading .web-home-cases__grid {
  opacity: 0.6;
  pointer-events: none;
}

.web-home-case-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.web-home-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(13, 109, 254, 0.12);
}

.web-home-case-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.web-home-case-card__cover {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #eef4ff;
  overflow: hidden;
}

.web-home-case-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.web-home-case-card:hover .web-home-case-card__cover img {
  transform: scale(1.05);
}

.web-home-case-card__title {
  margin: 0;
  padding: 14px 16px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #121212;
  transition: color var(--duration-fast) var(--ease-out);
}

.web-home-case-card:hover .web-home-case-card__title {
  color: #0d6dfe;
}

.web-home-timeline {
  margin-top: 50px;
  padding: 48px 40px 40px;
  background-color: #1a2340;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  overflow: visible;
}

.web-home-timeline__head {
  text-align: center;
  margin-bottom: 36px;
}

.web-home-timeline__title {
  margin: 0;
  font-size: 38px;
  font-weight: bold;
  line-height: 1.3;
  color: #ffffff;
}

.web-home-timeline__sub {
  margin: 15px auto 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.web-home-timeline__deco {
  width: 120px;
  height: 3px;
  margin: 15px auto 0;
  border-radius: 0;
  background: linear-gradient(to right, #0d6dfe 0, #0d6dfe 50%, #ff7f00 50%, #ff7f00 100%);
}

.web-home-timeline__track {
  position: relative;
  padding: 8px 22px 0;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-sizing: border-box;
}

.web-home-timeline__track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.web-home-timeline__track-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 16px;
  min-width: 100%;
  width: max-content;
  box-sizing: border-box;
}

.web-home-timeline__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  height: 2px;
  background: #5b71cb;
  pointer-events: none;
  z-index: 0;
}

.web-home-timeline__item {
  position: relative;
  z-index: 1;
  flex: 0 0 var(--timeline-item-width, 160px);
  width: var(--timeline-item-width, 160px);
  min-width: 0;
  text-align: left;
}

.web-home-timeline__axis {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0;
}

.web-home-timeline__dot {
  display: block;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  border: 2px solid #bad6ff;
  border-radius: 50%;
  background: #0d6dfe;
  box-shadow: 0 0 10px 0 #3888ff;
}

.web-home-timeline__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 11px;
  padding: 1px 6px;
  border: 0.5px solid #0d6dfe;
  border-radius: 5px;
  background: rgba(13, 109, 254, 0.27);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

.web-home-timeline__item-title {
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  text-align: left;
}

.web-home-timeline__desc {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.web-home-about {
  padding-bottom: 8px;
}

.web-home-about .web-home-solution__head {
  margin-bottom: 32px;
}

.web-home-about .web-home-section__title {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

.web-home-about .web-home-section__sub {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.web-home-about .web-home-solution__deco {
  width: 120px;
  height: 3px;
  margin-top: 15px;
  border-radius: 0;
  background: linear-gradient(to right, #0d6dfe 0, #0d6dfe 50%, #ff7f00 50%, #ff7f00 100%);
}

.web-home-about__main {
  display: flex;
  flex-direction: column;
  padding: 40px 0 40px 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  overflow: visible;
}

.web-home-about__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.web-home-about__cover {
  width: 591px;
  height: 498px;
  flex-shrink: 0;
  margin-top: -88px;
  overflow: hidden;
  background: #eef4ff;
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.web-home-about__cover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px 0 rgba(13, 109, 254, 0.18);
}

.web-home-about__cover img {
  width: 591px;
  height: 498px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.45s var(--ease-out);
}

.web-home-about__cover:hover img {
  transform: scale(1.05);
}

.web-home-about__content {
  width: 698px;
  flex-shrink: 0;
  min-width: 0;
}

.web-home-about__content .web-sidebar__name {
  text-align: left;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #121212;
}

.web-home-about__text {
  margin: 40px 0 0;
  font-size: 14px;
  line-height: 35px;
  color: #121212;
  white-space: pre-line;
}

.web-home-about__quote {
  margin: 20px 0 0;
  padding: 0;
  border: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: #2659AD;
}

.web-home-about__stats-wrap {
  width: 100%;
  margin-top: -68px;
  padding-right: 40px;
  box-sizing: border-box;
}

.web-home-about__stats-head {
  margin-top: 0;
}

.web-home-about__stats-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #121212;
}

.web-home-about__stats-sub {
  margin: 20px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #2659AD;
}

.web-home-about__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 30px;
}

.web-home-about__stat {
  display: flex;
  align-items: stretch;
  gap: 12px;
  box-sizing: border-box;
  min-width: 0;
  padding: 12px;
  border: 1px solid #ECF2FF;
  border-radius: 10px;
  background: #FFFFFF;
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.web-home-about__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px 0 rgba(13, 109, 254, 0.18);
}

.web-home-about__stat-value {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 86px;
  height: 86px;
  padding: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #0D6DFE;
  background: #EEF6FF;
  border: 1px solid #ECF2FF;
  border-radius: 10px;
  box-sizing: border-box;
}

.web-home-about__stat-body {
  flex: 1;
  min-width: 0;
  align-self: center;
  height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.web-home-about__stat-label {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
}

.web-home-about__stat-sub {
  margin-top: 0;
  font-size: 11px;
  line-height: 1.4;
  color: #999;
}

.web-home-compare {
  padding-bottom: 8px;
}

.web-home-compare .web-home-solution__head {
  margin-bottom: 32px;
}

.web-home-compare .web-home-section__title {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

.web-home-compare .web-home-section__sub {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.web-home-compare .web-home-solution__deco {
  width: 120px;
  height: 3px;
  margin-top: 15px;
  border-radius: 0;
  background: linear-gradient(to right, #0d6dfe 0, #0d6dfe 50%, #ff7f00 50%, #ff7f00 100%);
}

.web-home-compare__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  position: relative;
  padding: 40px;
  overflow: visible;
  background: linear-gradient(90deg, #eaf4ff00 0%, #eaf4ff8c 5%, #eaf4ff 100%);
}

.web-home-compare__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  overflow: visible;
}

.web-home-compare__col--ours {
  align-items: flex-end;
}

.web-home-compare__col--others {
  align-items: flex-start;
}

/* 外圆 517px、内圆 409px；圆心距侧列内缘 178px，首尾贴外圆，中间两张再退 38px */
.web-home-compare__col--ours .web-home-compare__card:nth-child(1),
.web-home-compare__col--ours .web-home-compare__card:nth-child(4) {
  margin-right: 55px;
}

.web-home-compare__col--ours .web-home-compare__card:nth-child(2),
.web-home-compare__col--ours .web-home-compare__card:nth-child(3) {
  margin-right: 113px;
}

.web-home-compare__col--others .web-home-compare__card:nth-child(1),
.web-home-compare__col--others .web-home-compare__card:nth-child(4) {
  margin-left: 55px;
}

.web-home-compare__col--others .web-home-compare__card:nth-child(2),
.web-home-compare__col--others .web-home-compare__card:nth-child(3) {
  margin-left: 113px;
}

.web-home-compare__card {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 352px;
  height: 98px;
  padding: 16px 20px;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 4px 10px 0 #DBE9FF;
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.web-home-compare__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px 0 rgba(13, 109, 254, 0.18);
}

.web-home-compare__col--ours .web-home-compare__card-title,
.web-home-compare__col--ours .web-home-compare__card-desc {
  text-align: right;
}

.web-home-compare__col--others .web-home-compare__card-title,
.web-home-compare__col--others .web-home-compare__card-desc {
  text-align: left;
}

.web-home-compare__card-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #121212;
}

.web-home-compare__card-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #999999;
}

.web-home-compare__center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 517px;
}

.web-home-compare__orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.web-home-compare__orbit::before,
.web-home-compare__orbit::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(13, 109, 254, 0.18);
  border-radius: 50%;
}

.web-home-compare__orbit::before {
  width: 409px;
  height: 409px;
}

.web-home-compare__orbit::after {
  width: 517px;
  height: 517px;
}

.web-home-compare__hub {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.web-home-compare__brand {
  flex-shrink: 0;
  width: 184px;
}

.web-home-compare__brand-panel {
  box-sizing: border-box;
  width: 184px;
  height: 184px;
  padding: 9px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.web-home-compare__brand-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(13, 109, 254, 0.16);
}

.web-home-compare__brand-body {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(222deg, #f4f7ff 17%, #f0f5ff 80%);
  transition: background var(--duration-normal) var(--ease-out);
}

.web-home-compare__brand-panel:hover .web-home-compare__brand-body {
  background: linear-gradient(222deg, #eef3ff 17%, #e8efff 80%);
}

.web-home-compare__brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  overflow: hidden;
}

.web-home-compare__brand-logo img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform var(--duration-normal) var(--ease-out);
}

.web-home-compare__brand-panel:hover .web-home-compare__brand-logo img {
  transform: scale(1.06);
}

.web-home-compare__brand-logo .web-sidebar__logo-placeholder {
  width: 70px;
  height: 70px;
}

.web-home-compare__brand-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #FFB347 0, #FFB347 28%, transparent 29%),
    radial-gradient(circle at 70% 30%, #FF6B6B 0, #FF6B6B 28%, transparent 29%),
    radial-gradient(circle at 30% 70%, #0D6DFE 0, #0D6DFE 28%, transparent 29%),
    radial-gradient(circle at 70% 70%, #7B61FF 0, #7B61FF 28%, transparent 29%);
}

.web-home-compare__brand-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #121212;
  text-align: center;
}

.web-home-compare__vs {
  flex-shrink: 0;
  line-height: 0;
}

.web-home-compare__vs img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.web-home-team .web-home-solution__head {
  margin-bottom: 32px;
}

.web-home-team .web-home-section__title {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

.web-home-team .web-home-section__sub {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.web-home-team .web-home-solution__deco {
  width: 120px;
  height: 3px;
  margin-top: 15px;
  border-radius: 0;
  background: linear-gradient(to right, #0d6dfe 0, #0d6dfe 50%, #ff7f00 50%, #ff7f00 100%);
}

.web-home-team__gallery {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.web-home-team__main,
.web-home-team__thumb {
  border-radius: 16px;
  overflow: hidden;
  background: #eef4ff;
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.web-home-team__main:hover,
.web-home-team__thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px 0 rgba(13, 109, 254, 0.18);
}

.web-home-team__main {
  flex-shrink: 0;
  width: 684px;
  height: 411px;
}

.web-home-team__main img,
.web-home-team__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.web-home-team__main:hover img,
.web-home-team__thumb:hover img {
  transform: scale(1.05);
}

.web-home-team__thumbs {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.web-home-team__thumb {
  width: 100%;
  min-width: 0;
  height: 127px;
}

.web-home-team__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.web-home-team__stat {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  height: 118px;
  padding: 16px 20px;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(137deg, #97afff 14%, #0d6dfe 84%) center/cover no-repeat;
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.web-home-team__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px 0 rgba(13, 109, 254, 0.18);
}

/* 画廊/统计卡为精排布局，不参与首页入场 transform */
.web-home-team .web-home-team__main.web-home-fx,
.web-home-team .web-home-team__thumb.web-home-fx,
.web-home-team .web-home-team__stat.web-home-fx {
  opacity: 1;
  transform: none;
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.web-home-team__stat-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.web-home-team__stat-value {
  font-size: 22px;
  font-weight: 700;
}

.web-home-team__stat-label {
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.92;
}

.web-home-news {
  margin-top: 50px;
  padding: 40px 0;
  background: linear-gradient(90deg, #ffffff 0%, #eaf4ff8c 5%, #eaf4ff 50%, #eaf4ff8c 95%, #ffffff 100%);
}

.web-home-news .web-home-solution__head {
  margin-bottom: 32px;
}

.web-home-news .web-home-section__title {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  color: #121212;
}

.web-home-news .web-home-section__sub {
  margin: 15px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: #526072;
}

.web-home-news .web-home-solution__deco {
  width: 120px;
  height: 3px;
  margin-top: 15px;
  border-radius: 0;
  background: linear-gradient(to right, #0d6dfe 0, #0d6dfe 50%, #ff7f00 50%, #ff7f00 100%);
}

.web-home-news__head-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
}

.web-home-news__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.web-home-news__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 40px;
  padding: 0 20px;
  border: 1px solid #ecf2ff;
  border-radius: 10px;
  background: #fff;
  color: #121212;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.web-home-news__tab.is-active {
  background: #0d6dfe;
  border-color: #0d6dfe;
  color: #fff;
  box-shadow: 0 4px 14px rgba(13, 109, 254, 0.24);
}

.web-home-news.is-loading .web-home-news__layout {
  opacity: 0.6;
  pointer-events: none;
}

.web-home-news__layout {
  display: grid;
  grid-template-columns: 727px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.web-home-news__layout.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.web-home-news__layout.is-empty .web-empty {
  min-height: auto;
}

.web-home-news__featured {
  width: 727px;
  height: auto;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.web-home-news__list-panel {
  height: auto;
  align-self: start;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  padding: 20px;
  box-sizing: border-box;
}

.web-home-news__featured-link,
.web-home-news__item-link {
  color: inherit;
  text-decoration: none;
}

.web-home-news__featured-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  min-height: 100%;
}

.web-home-news__featured-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
}

.web-home-news__featured-cover {
  width: 727px;
  height: 438px;
  overflow: hidden;
  background: #eef4ff;
}

.web-home-news__featured-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out);
}

.web-home-news__featured-link:hover .web-home-news__featured-cover img {
  transform: scale(1.03);
}

.web-home-news__featured-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
  box-sizing: border-box;
}

.web-home-news__featured-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  margin-bottom: 20px;
  padding: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #8a96a8;
}

.web-home-news__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.web-home-news__meta-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  object-fit: contain;
}

.web-home-news__featured-title {
  margin: 12px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #121212;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.web-home-news__featured-body > .web-home-news__featured-meta:first-child + .web-home-news__featured-title,
.web-home-news__featured-body > .web-home-news__featured-title:first-child {
  margin-top: 0;
}

.web-home-news__featured-summary {
  flex: 1;
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.web-home-news__list-title {
  position: relative;
  margin: 0 0 16px;
  padding-left: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #121212;
}

.web-home-news__list-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 16px;
  margin-top: -8px;
  border-radius: 2px;
  background: #0d6dfe;
}

.web-home-news__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #eef2f8;
}

.web-home-news__item {
  flex: none;
  display: block;
  border-bottom: 1px solid #eef2f8;
}

.web-home-news__item:has(.web-home-news__item-link:hover) {
  border-bottom-color: transparent;
}

.web-home-news__item:has(+ .web-home-news__item .web-home-news__item-link:hover) {
  border-bottom-color: transparent;
}

.web-home-news__item:last-child {
  border-bottom: 0;
}

.web-home-news__item-link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 4px -10px;
  padding: 12px 10px;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}

.web-home-news__item-link:hover {
  background: #fff;
  box-shadow: 0 8px 28px rgba(13, 109, 254, 0.16);
  transform: translateY(-3px);
}

.web-home-news__item-cover {
  width: 204px;
  height: 101px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #eef4ff;
}

.web-home-news__item-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out);
}

.web-home-news__item-link:hover .web-home-news__item-cover img {
  transform: scale(1.06);
}

.web-home-news__item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.web-home-news__item-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #121212;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--duration-fast) var(--ease-out);
}

.web-home-news__item-link:hover .web-home-news__item-title {
  color: #0d6dfe;
}

.web-home-news__item-summary {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: #8a96a8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.web-home-news__item-date {
  margin-top: auto;
  padding-top: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: #a0a8b5;
}

.web-home-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 648px;
  gap: 48px;
  align-items: stretch;
  box-sizing: border-box;
  height: 491px;
  padding: 50px 50px 0 50px;
  border-radius: 0;
  background-color: #1E2337;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.web-home-lead__info {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.web-home-lead__title {
  margin: 0;
  font-size: 38px;
  font-weight: bold;
  line-height: 1.45;
  color: #FFFFFF;
}

.web-home-lead__desc {
  width: 514px;
  max-width: 100%;
  margin: 40px 0 0;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
}

.web-home-lead__hotline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 100px;
}

.web-home-lead__hotline-icon {
  flex-shrink: 0;
  line-height: 0;
}

.web-home-lead__hotline-icon img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.web-home-lead__hotline-text {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  color: #FFFFFF;
}

.web-home-lead__form {
  box-sizing: border-box;
  width: 648px;
  height: 399px;
  padding: 28px 24px 24px;
  border-radius: 15px;
  background: #FFFFFF;
  color: #333;
}

.web-home-lead__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.web-home-lead__row .web-home-lead__field {
  margin-bottom: 0;
}

.web-home-lead__field-wrap {
  position: relative;
  padding-bottom: 16px;
}

.web-home-lead__row:first-child {
  margin-bottom: 8px;
}

.web-home-lead__row:first-child .web-home-lead__field-wrap .web-home-lead__field span {
  margin-bottom: 8px;
}

.web-home-lead__row:nth-child(2) {
  margin-bottom: 12px;
}

.web-home-lead__row:nth-child(2) .web-home-lead__field span {
  margin-bottom: 12px;
}

.web-home-lead__field {
  display: block;
  margin-bottom: 12px;
}

.web-home-lead__field span {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #121212;
}

.web-home-lead__field input {
  box-sizing: border-box;
  width: 283px;
  max-width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #E7E7E7;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.web-home-lead__field-wrap .web-home-lead__field input {
  width: 100%;
}

.web-home-lead__field-wrap.is-error .web-home-lead__field input {
  border-color: #F56C6C;
  box-shadow: 0 0 0 3px rgba(245, 108, 108, 0.12);
}

.web-home-lead__field-wrap.is-error .web-home-lead__field input:focus {
  border-color: #F56C6C;
  box-shadow: 0 0 0 3px rgba(245, 108, 108, 0.16);
}

.web-home-lead__error {
  position: absolute;
  left: 0;
  top: calc(100% - 12px);
  margin: 0;
  font-size: 12px;
  line-height: 1;
  color: #F56C6C;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-2px);
  transition: opacity var(--duration-fast) var(--ease-out), visibility var(--duration-fast), transform var(--duration-fast) var(--ease-out);
  pointer-events: none;
  white-space: nowrap;
}

.web-home-lead__field-wrap.is-error .web-home-lead__error {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.web-home-lead__field input::placeholder {
  color: #999999;
}

.web-home-lead__field input:focus {
  outline: none;
  border-color: #0D6DFE;
}

.web-home-lead__field input::selection {
  background: rgba(13, 109, 254, 0.2);
  color: #121212;
}

.web-home-lead__field textarea {
  box-sizing: border-box;
  width: 100%;
  height: 90px;
  padding: 10px 12px;
  border: 1px solid #E7E7E7;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  resize: none;
}

.web-home-lead__field textarea::placeholder {
  color: #999999;
}

.web-home-lead__field textarea:focus {
  outline: none;
  border-color: #0D6DFE;
}

.web-home-lead__field textarea::selection {
  background: rgba(13, 109, 254, 0.2);
  color: #121212;
}

.web-home-lead__submit {
  width: 100%;
  height: 44px;
  margin-top: 4px;
  border: 0;
  border-radius: 8px;
  background: #0D6DFE;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.web-home-lead__submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.web-message-root {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 10060;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  pointer-events: none;
}

.web-message {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-width: 380px;
  max-width: calc(100vw - 32px);
  padding: 15px 15px 15px 20px;
  border: 1px solid #EBEEF5;
  border-radius: 4px;
  background: #EDF2FC;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.web-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.web-message.is-leaving {
  opacity: 0;
  transform: translateY(-20px);
}

.web-message--success {
  background-color: #F0F9EB;
  border-color: #E1F3D8;
}

.web-message--error {
  background-color: #FEF0F0;
  border-color: #FDE2E2;
}

.web-message__icon {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border-radius: 50%;
}

.web-message--success .web-message__icon {
  background: #67C23A;
}

.web-message--success .web-message__icon::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.web-message--error .web-message__icon {
  background: #F56C6C;
}

.web-message--error .web-message__icon::before,
.web-message--error .web-message__icon::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 3px;
  width: 2px;
  height: 10px;
  border-radius: 1px;
  background: #fff;
}

.web-message--error .web-message__icon::before {
  transform: rotate(45deg);
}

.web-message--error .web-message__icon::after {
  transform: rotate(-45deg);
}

.web-message__content {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #606266;
}

.web-home-footer {
  margin-top: 48px;
  padding: 36px 40px 28px;
  border-top: 0;
  border-radius: 0;
  background: #F5F7FA;
}

.web-home-footer__main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.web-home-footer__bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #E4E7ED;
  font-size: 12px;
  line-height: 1.8;
  color: #999999;
}

.web-home-footer__friend-links {
  margin: 0 0 6px;
  text-align: center;
  color: #666666;
}

.web-home-footer__friend-links-label {
  color: #666666;
}

.web-home-footer__friend-links a {
  margin-right: 16px;
  color: #666666;
  transition: color var(--duration-fast);
}

.web-home-footer__friend-links a:hover {
  color: #0D6DFE;
}

.web-home-footer__copyright {
  margin: 0;
  text-align: center;
  color: #999999;
}

.web-home-footer__copyright a {
  color: inherit;
  text-decoration: none;
}

.web-home-footer__copyright a:hover {
  text-decoration: underline;
}

.web-home-footer__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: #121212;
  line-height: 1.4;
}

.web-home-footer__title a {
  color: inherit;
  transition: color var(--duration-fast);
}

.web-home-footer__title a:hover {
  color: var(--color-primary, #0063BA);
}

.web-home-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.web-home-footer__links li + li {
  margin-top: 10px;
}

.web-home-footer__links a {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  transition: color var(--duration-fast);
}

.web-home-footer__links a:hover {
  color: #0D6DFE;
}

.web-home-footer__contact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
}

.web-home-footer__contact p + p {
  margin-top: 4px;
}
