.wrap {
  width: 14.4rem;
  margin: 0 auto;
}

/* ========== 公共：PC 顶栏 ========== */
.pc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.8rem;
  z-index: 9999;
  color: #fff;
  background: rgba(1, 1, 1, 0.2);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.pc-header.active {
  background: #fff;
  box-shadow: 0 0.01rem 0.06rem rgba(15, 23, 42, 0.08);
}

.pc-header .header-wrap {
  box-sizing: border-box;
  width: 14.4rem;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-header .logo {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  width: 2.14rem;
}

.pc-header .logo a {
  display: block;
  line-height: 0;
  position: relative;
}

.pc-header .logo img {
  display: block;
  width: 2.14rem;
  height: 0.6rem;
  object-fit: contain;
}

.pc-header .logo .logo-dark {
  display: none;
}

.pc-header.active .logo .logo-white {
  display: none;
}

.pc-header.active .logo .logo-dark {
  display: block;
}

.pc-header .header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  height: 100%;
  margin-left: auto;
}

.pc-header .header-nav {
  position: static;
  left: auto;
  transform: none;
  display: flex;
  align-items: stretch;
  height: 100%;
}

.pc-header .header-navs {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.6rem;
}

.pc-header .header-navs li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.pc-header .header-navs a {
  color: #fff;
  font-size: 0.16rem;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pc-header .header-navs > li > a:hover,
.pc-header .header-navs > li.nav-active > a {
  color: #fff;
  opacity: 0.9;
}

.pc-header .header-navs .has-sub .header-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 1.8rem;
  margin: 0;
  padding: 0.08rem 0;
  list-style: none;
  background: #fff;
  box-shadow: 0 0.08rem 0.24rem rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.pc-header .header-navs .has-sub:hover .header-sub,
.pc-header .header-navs .has-sub:focus-within .header-sub {
  display: block;
}

.pc-header .header-navs .header-sub li {
  display: block;
  height: auto;
}

.pc-header .header-navs .header-sub a,
.pc-header.active .header-navs .header-sub a,
.pc-header .header-navs li.nav-active .header-sub a {
  display: block;
  padding: 0.1rem 0.2rem;
  color: #333;
  font-size: 0.14rem;
  opacity: 1;
  white-space: nowrap;
}

.pc-header .header-navs .header-sub a:hover,
.pc-header.active .header-navs .header-sub a:hover,
.pc-header .header-navs .header-sub a.is-current,
.pc-header.active .header-navs .header-sub a.is-current {
  color: #033fd1;
}

.pc-header.active .header-navs a {
  color: #333;
}

.pc-header.active .header-navs > li > a:hover,
.pc-header.active .header-navs > li.nav-active > a {
  color: #033fd1;
}

.pc-header .header-search {
  box-sizing: border-box;
  width: 0.48rem;
  height: 0.48rem;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.pc-header .header-search img {
  width: 0.22rem;
  height: 0.22rem;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.pc-header.active .header-search {
  border-color: #333;
}

.pc-header.active .header-search img {
  filter: invert(1);
}

/* ========== 公共：了解更多按钮 ========== */
.index-more {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  text-decoration: none;
  color: #033fd1;
  font-size: 0.14rem;
  line-height: 0.42rem;
}

.index-more__btn {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #033fd1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.index-more__btn img {
  width: 0.17rem;
  height: 0.06rem;
  display: block;
}

/* ========== 首页 Banner ========== */
.index-banner {
  position: relative;
  width: 100%;
  height: 10.8rem;
  overflow: hidden;
  color: #fff;
}

.index-banner__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  pointer-events: none;
}

.index-banner__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
}

.index-banner__bg {
  position: absolute;
  inset: 0;
}

.index-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-banner__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.index-banner__molecule {
  position: absolute;
  left: 40.6%;
  top: 38.5%;
  width: 6.58rem;
  height: 4.72rem;
  pointer-events: none;
  opacity: 0.95;
}

.index-banner__content {
  position: relative;
  z-index: 2;
  padding-top: 3.51rem;
}

.index-banner__title {
  margin: 0;
  font-size: 0.56rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.index-banner__subtitle {
  margin: 0.1rem 0 0;
  font-size: 0.56rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.index-banner__pager {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 5.72rem;
  z-index: 4;
  pointer-events: none;
}

.index-banner__dots {
  display: flex;
  gap: 0.2rem;
  pointer-events: auto;
}

.index-banner__dots button,
.index-banner__dots span {
  display: block;
  width: 0.6rem;
  height: 0.04rem;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.index-banner__dots button.is-active,
.index-banner__dots span.is-active {
  background: #033fd1;
}

.index-banner__hint {
  position: absolute;
  left: 50%;
  bottom: 0.7rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08rem;
  font-size: 0.14rem;
  color: #fff;
}

.index-banner__hint img {
  width: 0.24rem;
  height: 0.24rem;
  display: block;
  animation: index-bounce 1.6s ease-in-out infinite;
}

@keyframes index-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.06rem);
  }
}

.index-banner__chat {
  position: absolute;
  right: 0.6rem;
  bottom: 0.63rem;
  z-index: 3;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #033fd1;
  box-shadow: 0 0.04rem 0.1rem rgba(3, 63, 209, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-banner__chat img {
  width: 0.24rem;
  height: 0.24rem;
  display: block;
}

/* ========== 首页 关于我们 ========== */
.index-about {
  position: relative;
  width: 100%;
  min-height: 10.8rem;
  overflow: hidden;
  background: #fff;
}

.index-about__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.index-about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-about__inner {
  position: relative;
  z-index: 1;
  padding-top: 1.7rem;
  text-align: center;
}

.index-about__name {
  margin: 0;
  font-size: 0.18rem;
  font-weight: 700;
  color: #262626;
  line-height: 1.5;
}

.index-about__desc {
  margin: 0.09rem auto 0;
  font-size: 0.18rem;
  color: #666;
  line-height: 0.3rem;
}

.index-about__title {
  margin: 0.18rem auto 0;
  font-size: 0.56rem;
  font-weight: 500;
  color: #033fd1;
  line-height: 1.2;
}

.index-about__text {
  margin: 0.2rem auto 0;
  max-width: 8.39rem;
  font-size: 0.16rem;
  color: #666;
  line-height: 0.3rem;
}

.index-about__more {
  margin: 0.5rem auto 0;
  justify-content: center;
}

/* ========== 首页 解决方案 ========== */
.index-solution {
  position: relative;
  width: 100%;
  height: 10.8rem;
  overflow: hidden;
  background: #dde7ed;
}

.index-solution__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
}

.index-solution__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.index-solution__bg.is-active {
  opacity: 1;
  z-index: 1;
}

.index-solution__shade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4.12rem;
  background: rgba(0, 0, 0, 0.45);
  filter: blur(0.8rem);
  pointer-events: none;
  z-index: 2;
}

.index-solution__gradient {
  position: absolute;
  left: 0;
  top: 0;
  width: 13rem;
  height: 100%;
  background: linear-gradient(92deg, #dde7ed 56%, rgba(221, 231, 237, 0) 97%);
  z-index: 1;
  pointer-events: none;
}

.index-solution__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 2.49rem;
  box-sizing: border-box;
}

.index-solution__label {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  color: #033fd1;
  font-size: 0.24rem;
  font-weight: 500;
}

.index-solution__label img {
  width: 0.36rem;
  height: 0.26rem;
  display: block;
}

.index-solution__title {
  margin: 0.98rem 0 0;
  font-size: 0.56rem;
  font-weight: 500;
  color: #333;
  line-height: 1.2;
}

.index-solution__desc {
  margin: 0.4rem 0 0;
  max-width: 4.32rem;
  font-size: 0.18rem;
  color: #333;
  line-height: 1.5;
}

.index-solution__more {
  margin-top: 0.54rem;
  color: #333;
  font-size: 0.16rem;
}

.index-solution__tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.05rem;
  display: flex;
  justify-content: space-between;
  gap: 0.16rem;
}

.index-solution__tab {
  flex: 1;
  height: 0.9rem;
  border: none;
  background: rgba(255, 255, 255, 0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  cursor: pointer;
  padding: 0 0.12rem;
  transition: background 0.25s ease;
}

.index-solution__tab i {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.index-solution__tab i img {
  width: 0.18rem;
  height: 0.18rem;
  display: block;
}

.index-solution__tab span {
  font-size: 0.18rem;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}

.index-solution__tab.is-active {
  background: #fff;
}

.index-solution__tab.is-active i {
  background: #033fd1;
}

.index-solution__tab.is-active i img {
  filter: brightness(0) invert(1);
}

.index-solution__tab:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* ========== 首页 新闻 ========== */
.index-news {
  position: relative;
  width: 100%;
  min-height: 10.8rem;
  overflow: hidden;
  background: #fff;
  padding: 1.49rem 0 1.4rem;
  box-sizing: border-box;
}

.index-news__bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}

.index-news__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-news__inner {
  position: relative;
  z-index: 1;
}

.index-news__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0.79rem;
}

.index-news__label {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  color: #033fd1;
  font-size: 0.24rem;
  font-weight: 500;
}

.index-news__label img {
  width: 0.36rem;
  height: 0.26rem;
}

.index-news__title {
  margin: 0.28rem 0 0;
  font-size: 0.56rem;
  font-weight: 500;
  color: #333;
  line-height: 1.2;
}

.index-news__more {
  color: #333;
  font-size: 0.16rem;
}

.index-news__body {
  display: flex;
  gap: 0.45rem;
  align-items: stretch;
}

.index-news__card {
  width: 4.5rem;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 0.08rem 0.24rem rgba(0, 0, 0, 0.04);
}

.index-news__pic {
  display: block;
  width: 4.5rem;
  height: 3rem;
  overflow: hidden;
}

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

.index-news__card:hover .index-news__pic img {
  transform: scale(1.04);
}

.index-news__card:hover .index-news__link img {
  transform: rotate(45deg);
}

.index-news__card-body {
  padding: 0.21rem 0.18rem 0.25rem;
  box-sizing: border-box;
  min-height: 2.4rem;
}

.index-news__date {
  display: flex;
  align-items: center;
  gap: 0.06rem;
  color: #999;
  font-size: 0.14rem;
}

.index-news__date img {
  width: 0.18rem;
  height: 0.18rem;
}

.index-news__card-title {
  margin: 0.29rem 0 0;
  font-size: 0.2rem;
  font-weight: 500;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.index-news__card-title a {
  color: #333;
}

.index-news__card-desc {
  margin: 0.22rem 0 0;
  font-size: 0.14rem;
  color: #999;
  height: 0.45rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.index-news__link {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  margin-top: 0.23rem;
  font-size: 0.12rem;
  color: #033fd1;
}

.index-news__link img {
  width: 0.12rem;
  height: 0.12rem;
  transition: transform 0.3s ease;
}

.index-news__list {
  flex: 1;
  min-width: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.02rem;
}

.index-news__item {
  display: block;
  padding: 0.21rem;
  box-sizing: border-box;
  min-height: 1.32rem;
  border-top: 1px solid #eee;
  transition: background 0.2s ease;
}

.index-news__item.is-active {
  border-top: 0.02rem solid #033fd1;
}

.index-news__item:hover {
  background: #f8fafc;
}

.index-news__item-date {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  color: #999;
  font-size: 0.14rem;
}

.index-news__item-date img {
  width: 0.17rem;
  height: 0.17rem;
}

.index-news__item h3 {
  margin: 0.09rem 0 0;
  font-size: 0.2rem;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

/* ========== 首页 核心价值 ========== */
.index-cta {
  position: relative;
  width: 100%;
  height: 5.2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.index-cta__bg {
  position: absolute;
  inset: 0;
}

.index-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-cta__content {
  position: relative;
  z-index: 1;
}

.index-cta__title {
  margin: 0;
  font-size: 0.46rem;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
}

.index-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.06rem;
  margin-top: 0.3rem;
  font-size: 0.24rem;
  font-weight: 500;
  color: #033fd1;
}

.index-cta__link img,
.product-banner__btn img,
.join-intro__btn img,
.solution-cta__link img {
  width: 0.24rem;
  height: 0.06rem;
}

/* ========== 公共：页脚 ========== */
.site-footer {
  position: relative;
  width: 100%;
  min-height: 4.2rem;
  overflow: hidden;
  background: #fff;
  color: #333;
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.site-footer__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer__wrap {
  position: relative;
  z-index: 1;
  padding-top: 0.73rem;
  box-sizing: border-box;
}

.site-footer__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
  padding-bottom: 0.7rem;
}

.site-footer__brand {
  width: 2.76rem;
  flex-shrink: 0;
}

.site-footer__logo {
  display: inline-block;
  line-height: 0;
}

.site-footer__logo img {
  width: 2.58rem;
  height: 0.72rem;
  object-fit: contain;
}

.site-footer__contact {
  margin: 0.43rem 0 0;
  padding: 0;
  list-style: none;
}

.site-footer__contact li {
  margin-bottom: 0.1rem;
  font-size: 0.14rem;
  color: #333;
  line-height: 1.5;
}

.site-footer__contact em {
  font-style: normal;
  color: #666;
}

.site-footer__cols {
  display: flex;
  gap: 0.6rem;
  flex: 1;
  justify-content: flex-end;
}

.site-footer__col {
  width: 1.8rem;
}

.site-footer__col h3 {
  margin: 0 0 0.2rem;
  font-size: 0.16rem;
  font-weight: 400;
  color: #333;
}

.site-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__col li {
  margin-bottom: 0.1rem;
}

.site-footer__col a {
  font-size: 0.12rem;
  color: #333;
  transition: color 0.2s ease;
}

.site-footer__col a:hover {
  color: #033fd1;
}

.site-footer__bottom {
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.22rem 0;
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.12rem;
  color: #999;
}

.site-footer__support {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}

.site-footer__support a {
  color: #999;
  transition: color 0.2s ease;
}

.site-footer__support a:hover {
  color: #033fd1;
}

/* ========== 解决方案页：通用标题 ========== */
.solution-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
}

.solution-section-title h2 {
  margin: 0;
  font-size: 0.36rem;
  font-weight: 500;
  color: #333;
  line-height: 0.3rem;
}

.solution-section-title img {
  width: 0.28rem;
  height: 0.2rem;
  display: block;
}

/* ========== 解决方案页 Banner ========== */
.solution-banner {
  position: relative;
  width: 100%;
  height: 10.24rem;
  overflow: hidden;
  color: #fff;
}

.solution-banner__bg {
  position: absolute;
  inset: 0;
}

.solution-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-banner__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.solution-banner__content {
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
}

.solution-banner__mark {
  display: block;
  width: 0.4rem;
  height: 0.29rem;
}

.solution-banner__title {
  margin: 0.74rem 0 0;
  font-size: 0.56rem;
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
}

.solution-banner__desc {
  margin: 0.63rem 0 0;
  max-width: 6.71rem;
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: rgba(255, 255, 255, 0.92);
}

.solution-banner__chat {
  position: absolute;
  right: 0.6rem;
  bottom: 0.07rem;
  z-index: 3;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #033fd1;
  box-shadow: 0 0.04rem 0.1rem rgba(3, 63, 209, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-banner__chat img {
  width: 0.24rem;
  height: 0.24rem;
  display: block;
}

/* ========== 解决方案页 技术优势 ========== */
.solution-tech {
  padding: 0.96rem 0 1.2rem;
  background: #fff;
}

.solution-tech__list {
  display: flex;
  gap: 0.24rem;
  margin-top: 0.91rem;
}

.solution-tech__card {
  position: relative;
  flex: 1;
  min-height: 4.4rem;
  padding: 0.31rem 0.25rem 0.3rem;
  box-sizing: border-box;
  background: #fafcff;
  border: 1px solid #eee;
  overflow: hidden;
}

.solution-tech__num {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 0.97rem;
  color: rgba(3, 63, 209, 0.08);
}

.solution-tech__card h3 {
  margin: -0.34rem 0 0;
  position: relative;
  z-index: 1;
  font-size: 0.2rem;
  font-weight: 500;
  color: #333;
  line-height: 0.3rem;
}

.solution-tech__card p {
  margin: 0.26rem 0 0;
  position: relative;
  z-index: 1;
  font-size: 0.14rem;
  color: #666;
  line-height: 0.21rem;
}

.solution-tech__icon {
  position: absolute;
  right: 0.19rem;
  bottom: 0.28rem;
  width: 0.98rem;
  height: 0.6rem;
  object-fit: contain;
}

/* ========== 服务支持页 / 新闻详情：浅色顶栏 ========== */
.page-service .pc-header,
.page-news-detail .pc-header {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0.01rem 0.06rem rgba(15, 23, 42, 0.06);
}

.page-service .pc-header .logo .logo-white,
.page-news-detail .pc-header .logo .logo-white {
  display: none;
}

.page-service .pc-header .logo .logo-dark,
.page-news-detail .pc-header .logo .logo-dark {
  display: block;
}

.page-service .pc-header .header-navs a,
.page-news-detail .pc-header .header-navs a {
  color: #333;
}

.page-service .pc-header .header-navs > li > a:hover,
.page-service .pc-header .header-navs > li.nav-active > a,
.page-news-detail .pc-header .header-navs > li > a:hover,
.page-news-detail .pc-header .header-navs > li.nav-active > a {
  color: #033fd1;
}

.page-service .pc-header .header-search,
.page-news-detail .pc-header .header-search {
  border-color: #333;
}

.page-service .pc-header .header-search img,
.page-news-detail .pc-header .header-search img {
  filter: invert(1);
}

.service-banner {
  position: relative;
  width: 100%;
  min-height: 10.24rem;
  overflow: hidden;
}

.service-banner__bg {
  position: absolute;
  inset: 0;
}

.service-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-banner__inner {
  position: relative;
  z-index: 1;
  padding: 2.32rem 0 1.2rem;
  box-sizing: border-box;
}

.service-banner__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
}

.service-banner__title h2 {
  margin: 0;
  font-size: 0.36rem;
  font-weight: 500;
  color: #333;
  line-height: 0.54rem;
}

.service-banner__title img {
  width: 0.28rem;
  height: 0.2rem;
  display: block;
}

.service-banner__cards {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.65rem;
}

.service-card {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 0.06rem;
  overflow: hidden;
  box-shadow: 0 0.08rem 0.24rem rgba(15, 23, 42, 0.06);
}

.service-card__pic {
  width: 100%;
  height: 2.8rem;
  overflow: hidden;
}

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

.service-card:hover .service-card__pic img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 0.3rem 0.3rem 0.36rem;
  box-sizing: border-box;
  min-height: 1.8rem;
}

.service-card__body h3 {
  margin: 0 0 0.12rem 0.08rem;
  font-size: 0.2rem;
  font-weight: 500;
  color: #333;
  line-height: 0.3rem;
}

.service-card__body ul {
  margin: 0;
  padding: 0 0 0 0.24rem;
  list-style: disc;
}

.service-card__body li {
  font-size: 0.16rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0;
  list-style:disc;
}

/* ========== 解决方案页 应用场景 ========== */
.solution-scene {
  padding: 0.96rem 0 1.1rem;
  background: #fff;
}

.solution-scene__intro {
  margin: 0.65rem auto 0;
  max-width: 6.8rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #333;
  text-align: center;
}

.solution-scene__list {
  display: flex;
  gap: 0.15rem;
  margin-top: 0.3rem;
  height: 5.8rem;
}

.solution-scene__item {
  position: relative;
  flex: 1.8;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-scene__item.is-active {
  flex: 6.59;
}

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

.solution-scene__item:hover img {
  transform: scale(1.04);
}

.solution-scene__mask {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.56rem;
  background: linear-gradient(
    180deg,
    rgba(3, 63, 209, 0) 0%,
    rgba(3, 63, 209, 0.85) 100%
  );
  pointer-events: none;
}



.solution-scene__text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0 0.2rem 0.44rem;
  box-sizing: border-box;
  color: #fff;
}

.solution-scene__text h3 {
  margin: 0;
  font-size: 0.2rem;
  font-weight: 500;
  line-height: 0.24rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.solution-scene__text p {
  margin: 0.16rem 0 0;
  font-size: 0.14rem;
  line-height: 0.24rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.solution-scene__item.is-active .solution-scene__text p {
  -webkit-line-clamp: 2;
  max-width: 4.66rem;
}

/* ========== 解决方案页 CTA ========== */
.solution-cta {
  position: relative;
  min-height: 4.8rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
}

.solution-cta__bg {
  position: absolute;
  inset: 0;
}

.solution-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-cta__inner {
  position: relative;
  z-index: 1;
  padding: 0.96rem 0 1rem;
}

.solution-cta__text {
  margin: 0.65rem auto 0;
  max-width: 6.8rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #333;
}

.solution-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.06rem;
  margin-top: 0.42rem;
  font-size: 0.24rem;
  font-weight: 500;
  color: #033fd1;
}

/* ========== 关于凝维页 ========== */
.about-banner {
  position: relative;
  width: 100%;
  height: 10.24rem;
  overflow: hidden;
  background: #a6c5e6;
}

.about-banner__bg {
  position: absolute;
  inset: 0;
}

.about-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-banner__building {
  position: absolute;
  left: 0.6rem;
  bottom: 0;
  z-index: 1;
  width: 9rem;
  height: 8.55rem;
  pointer-events: none;
}

.about-banner__building img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
}

.about-banner__content {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  padding: 3.72rem 0 0 7.17rem;
}

.about-banner__mark {
  display: block;
  width: 0.4rem;
  height: 0.29rem;
}

.about-banner__title {
  margin: 0.22rem 0 0;
  font-size: 0.24rem;
  font-weight: 500;
  line-height: 0.36rem;
  color: #333;
}

.about-banner__desc {
  margin-top: 0.32rem;
  max-width: 7.23rem;
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #333;
}

.about-banner__desc p {
  margin: 0 0 0.02rem;
}

.about-banner__chat {
  position: absolute;
  right: 0.6rem;
  bottom: 0.57rem;
  z-index: 3;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #033fd1;
  box-shadow: 0 0.04rem 0.1rem rgba(3, 63, 209, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner__chat img {
  width: 0.24rem;
  height: 0.24rem;
  display: block;
}

.about-position {
  padding: 0.8rem 0;
  background: #fff;
}

.about-position__panel {
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
  min-height: 3.6rem;
  padding: 1rem 0.4rem;
  background: #f8f8f8;
}

.about-position__item {
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.1rem 0.8rem 0;
  position: relative;
}

.about-position__item + .about-position__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.6rem;
  background: #e5e5e5;
}

.about-position__item h3 {
  margin: 0;
  font-size: 0.32rem;
  font-weight: 500;
  line-height: 0.3rem;
  color: #333;
}

.about-position__item p {
  margin: 0.5rem 0 0;
  max-width: 3.2rem;
  font-size: 0.18rem;
  line-height: 0.3rem;
  color: #033fd1;
}

/* ========== 加入凝维页 ========== */
.join-banner {
  position: relative;
  width: 100%;
  height: 7.3rem;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.join-banner__bg {
  position: absolute;
  inset: 0;
}

.join-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-banner__content {
  position: relative;
  z-index: 2;
  padding-top: 2.65rem;
}

.join-banner__mark {
  display: block;
  width: 0.4rem;
  height: 0.29rem;
}

.join-banner__title {
  margin: 0.26rem 0 0;
  font-size: 0.42rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.join-banner__desc {
  margin: 0.27rem 0 0;
  max-width: 6.71rem;
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #fff;
}

.join-intro {
  padding: 1.4rem 0 1.12rem;
  background: #fff;
  text-align: center;
}

.join-intro__text {
  margin: 0;
  font-size: 0.24rem;
  line-height: 0.36rem;
  color: #333;
}

.join-intro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  margin-top: 0.38rem;
  width: 1.58rem;
  height: 0.48rem;
  border-radius: 250px;
  background: #033fd1;
  color: #fff;
  font-size: 0.16rem;
  font-weight: 500;
  transition: opacity 0.25s ease;
}

.join-intro__btn:hover {
  opacity: 0.9;
}

.join-block {
  padding: 0 0 0.6rem;
  background: #fff;
}

.join-block--reverse {
  padding-bottom: 1.48rem;
}

.join-block__row {
  display: flex;
  align-items: flex-start;
  min-height: 4.8rem;
}

.join-block__text {
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
  height: 4.4rem;
  padding: 0.89rem 0.65rem 0.6rem;
  background: #f8f8f8;
}

.join-block__text h3 {
  margin: 0;
  font-size: 0.36rem;
  font-weight: 500;
  line-height: 0.3rem;
  color: #333;
}

.join-block__quote {
  margin: 0.46rem 0 0;
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 1.5;
  color: #033fd1;
}

.join-block__desc {
  margin-top: 0.26rem;
  font-size: 0.14rem;
  line-height: 1.7;
  color: #666;
}

.join-block__desc p {
  margin: 0 0 0.06rem;
}

.join-block__pic {
  flex: 1;
  min-width: 0;
  height: 4.8rem;
  overflow: hidden;
}

.join-block__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========== 招聘岗位页 ========== */
.jobs-section {
  padding: 0.84rem 0 1.2rem;
  background: #fff;
}

.jobs-section__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
}

.jobs-section__title h2 {
  margin: 0;
  font-size: 0.36rem;
  font-weight: 500;
  line-height: 0.3rem;
  color: #333;
}

.jobs-section__title img {
  width: 0.26rem;
  height: 0.19rem;
  display: block;
}

.jobs-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.78rem;
}

.jobs-toolbar__filters {
  display: flex;
  align-items: center;
  gap: 0.96rem;
}

.jobs-select {
  position: relative;
}

.jobs-select__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.18rem;
  line-height: 0.44rem;
  color: #333;
  cursor: pointer;
}

.jobs-select__btn img {
  width: 0.13rem;
  height: 0.13rem;
  display: block;
  transition: transform 0.2s ease;
}

.jobs-select.is-open .jobs-select__btn img {
  transform: rotate(180deg);
}

.jobs-select__menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 5;
  min-width: 1.2rem;
  margin: 0.04rem 0 0;
  padding: 0.08rem 0;
  list-style: none;
  background: #fff;
  box-shadow: 0 0.04rem 0.16rem rgba(15, 23, 42, 0.1);
}

.jobs-select.is-open .jobs-select__menu {
  display: block;
}

.jobs-select__menu li {
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  color: #333;
  cursor: pointer;
  white-space: nowrap;
}

.jobs-select__menu li:hover {
  background: #f5f7fb;
  color: #033fd1;
}

.jobs-search {
  position: relative;
  width: 4.6rem;
}

.jobs-search__input {
  box-sizing: border-box;
  width: 100%;
  height: 0.46rem;
  padding: 0 0.4rem 0 0.08rem;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
  background: transparent;
  font-size: 0.18rem;
  color: #333;
  outline: none;
}

.jobs-search__input::placeholder {
  color: #999;
}

.jobs-search__btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.28rem;
  height: 0.28rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.jobs-search__btn img {
  width: 0.22rem;
  height: 0.22rem;
  display: block;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.5rem;
}

.jobs-item {
  background: #f8f8f8;
}

.jobs-item__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.24rem;
  padding: 0.27rem 0.4rem 0.27rem 0.36rem;
  cursor: pointer;
}

.jobs-item__main {
  min-width: 0;
  flex: 1;
}

.jobs-item__main h3 {
  margin: 0;
  font-size: 0.24rem;
  font-weight: 500;
  line-height: 0.44rem;
  color: #333;
}

.jobs-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.24rem 0.86rem;
  margin: 0.1rem 0 0;
  padding: 0;
  list-style: none;
}

.jobs-item__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 0.16rem;
  color: #333;
  line-height: 0.24rem;
}

.jobs-item__meta img {
  width: 0.16rem;
  height: 0.16rem;
  display: block;
  flex-shrink: 0;
}

.jobs-item__arrow {
  flex-shrink: 0;
  width: 0.2rem;
  height: 0.12rem;
  margin-top: 0.16rem;
  background: url("../images/jobs-chevron.svg") center / contain no-repeat;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.jobs-item.is-open .jobs-item__arrow {
  transform: rotate(-90deg);
}

.jobs-item__body {
  display: none;
  padding: 0 0.4rem 0.36rem 0.4rem;
}

.jobs-item.is-open .jobs-item__body {
  display: block;
}

.jobs-item__desc {
  margin-top: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #666;
}

.jobs-item__desc:first-child {
  margin-top: 0;
}

.jobs-item__desc p {
  margin: 0 0 0.04rem;
}

.jobs-item__desc ol,
.jobs-item__desc ul {
  margin: 0;
  padding-left: 0.24rem;
}

.jobs-item__desc li {
  margin: 0;
}

.jobs-item__action {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.28rem;
}

.jobs-item__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.32rem;
  height: 0.52rem;
  border-radius: 250px;
  background: #033fd1;
  color: #fff;
  font-size: 0.16rem;
  font-weight: 500;
  transition: opacity 0.25s ease;
}

.jobs-item__btn:hover {
  opacity: 0.9;
}

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

.jobs-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.jobs-modal.is-open {
  display: block;
}

.jobs-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.jobs-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  width: 6.4rem;
  max-width: calc(100% - 0.64rem);
  padding: 0.72rem 0.64rem 0.64rem;
  border-radius: 0.16rem;
  background: #fff;
  box-shadow: 0 0.12rem 0.4rem rgba(15, 23, 42, 0.18);
}

.jobs-modal__close {
  position: absolute;
  right: 0.28rem;
  top: 0.28rem;
  width: 0.28rem;
  height: 0.28rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.jobs-modal__close::before,
.jobs-modal__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.2rem;
  height: 1px;
  background: #333;
}

.jobs-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.jobs-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.jobs-modal__dialog p {
  margin: 0;
  font-size: 0.18rem;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

/* ========== 联系我们页 ========== */
.contact-banner {
  position: relative;
  width: 100%;
  height: 10.24rem;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.contact-banner__bg {
  position: absolute;
  inset: 0;
}

.contact-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-banner__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.contact-banner__content {
  position: relative;
  z-index: 2;
  padding-top: 3.35rem;
  text-align: center;
}

.contact-banner__mark {
  display: block;
  width: 0.4rem;
  height: 0.29rem;
  margin: 0 auto;
}

.contact-banner__title {
  margin: 0.26rem 0 0;
  font-size: 0.42rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.contact-banner__desc {
  margin: 0.2rem 0 0;
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #fff;
}

.contact-cards {
  position: absolute;
  left: 50%;
  bottom: 2.41rem;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 0.3rem;
  width: 14.4rem;
}

.contact-card {
  flex: 1;
  box-sizing: border-box;
  min-height: 2.4rem;
  padding: 0.42rem 0.24rem 0.36rem;
  background: rgba(255, 255, 255, 0.2);
  text-align: center;
  backdrop-filter: blur(4px);
}

.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.55rem;
  height: 0.55rem;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
}

.contact-card__icon img {
  width: 0.22rem;
  height: 0.22rem;
  display: block;
}

.contact-card__label {
  margin: 0.39rem 0 0;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #fff;
}

.contact-card__value {
  margin: 0.15rem 0 0;
  font-size: 0.24rem;
  font-weight: 500;
  line-height: 0.24rem;
  color: #fff;
}

.contact-card:last-child .contact-card__value {
  font-size: 0.18rem;
  line-height: 0.24rem;
  max-width: 1.82rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-section {
  padding: 0.78rem 0 0.98rem;
  background: #f8f8f8;
}

.contact-panel {
  display: flex;
  min-height: 8rem;
  background: #fff;
  overflow: hidden;
}

.contact-panel__side {
  position: relative;
  box-sizing: border-box;
  width: 5.2rem;
  flex-shrink: 0;
  padding: 0.78rem 0.5rem 0.8rem;
  background: #033fd1;
  color: #fff;
  overflow: hidden;
}

.contact-panel__deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.contact-panel__side h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.36rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.contact-panel__phone {
  position: absolute;
  left: 0.5rem;
  bottom: 0.8rem;
  z-index: 1;
}

.contact-panel__num {
  margin: 0;
  font-size: 0.3rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.contact-panel__tip {
  margin: 0.12rem 0 0;
  font-size: 0.16rem;
  line-height: 1.5;
  color: #fff;
}

.contact-form {
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.76rem 0.65rem 0.7rem 0.65rem;
}

.contact-form__field {
  margin-bottom: 0.3rem;
}

.contact-form__field label {
  display: block;
  margin-bottom: 0.08rem;
  font-size: 0.18rem;
  line-height: 1.5;
  color: #333;
}

.contact-form__field label em {
  color: #f40002;
  font-style: normal;
}

.contact-form__field input,
.contact-form__field textarea,
.contact-form__select select {
  box-sizing: border-box;
  width: 100%;
  height: 0.52rem;
  padding: 0 0.2rem;
  border: 0;
  border-radius: 0.06rem;
  background: #fafafa;
  font-size: 0.16rem;
  color: #333;
  outline: none;
}

.contact-form__field textarea {
  height: 1.6rem;
  padding: 0.2rem;
  resize: none;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #999;
}

.contact-form__field input.is-invalid {
  border-color: #d94444;
}

.contact-form__error {
  margin: 0.08rem 0 0;
  font-size: 0.14rem;
  line-height: 1.4;
  color: #d94444;
}

.contact-form__select {
  position: relative;
}

.contact-form__select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 0.48rem;
  color: #333;
  cursor: pointer;
}

.contact-form__select select:invalid {
  color: #333;
}

.contact-form__select img {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  width: 0.24rem;
  height: 0.24rem;
  transform: translateY(-50%) rotate(90deg) scaleY(-1);
  pointer-events: none;
}

.contact-form__row {
  display: flex;
  gap: 0.18rem;
}

.contact-form__row .contact-form__field {
  flex: 1;
  min-width: 0;
}

.contact-form__action {
  display: flex;
  justify-content: center;
  margin-top: 0.28rem;
}

.contact-form__btn {
  width: 3.6rem;
  height: 0.56rem;
  border: 0;
  border-radius: 250px;
  background: #033fd1;
  color: #fff;
  font-size: 0.18rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.contact-form__btn:hover {
  opacity: 0.9;
}

/* ========== 产品页 ========== */
.product-banner {
  position: relative;
  width: 100%;
  height: 10.24rem;
  overflow: hidden;
  color: #fff;
  background: #0a1a4a;
}

.product-banner__bg {
  position: absolute;
  inset: 0;
}

.product-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-banner__bottle {
  position: absolute;
  object-fit: contain;
  display: block;
}

.product-banner__bottle--sm {
  left: 0;
  bottom: 0;
  width: 1.38rem;
  height: 4.51rem;
}

.product-banner__bottle--lg {
  right: 0;
  bottom: 0;
  width: 2.5rem;
  height: 5.56rem;
}

.product-banner__content {
  position: relative;
  z-index: 3;
  padding-top: 3.62rem;
}

.product-banner__mark {
  display: block;
  width: 0.4rem;
  height: 0.29rem;
}

.product-banner__title {
  margin: 0.42rem 0 0;
  font-size: 0.46rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.product-banner__desc {
  margin: 0.27rem 0 0;
  max-width: 6.71rem;
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #fff;
}

.product-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  margin-top: 0.43rem;
  width: 1.58rem;
  height: 0.48rem;
  border-radius: 250px;
  background: #fff;
  color: #033fd1;
  font-size: 0.16rem;
  font-weight: 500;
  transition: opacity 0.25s ease;
}

.product-banner__btn:hover {
  opacity: 0.9;
}

.product-banner__chat {
  position: absolute;
  right: 0.6rem;
  bottom: 0.27rem;
  z-index: 4;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #033fd1;
  box-shadow: 0 0.04rem 0.1rem rgba(3, 63, 209, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-banner__chat img {
  width: 0.24rem;
  height: 0.24rem;
  display: block;
}

.product-feat {
  padding: 0.96rem 0 1.2rem;
  background: #fff;
}

.product-feat__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
}

.product-feat__title h2 {
  margin: 0;
  font-size: 0.36rem;
  font-weight: 500;
  line-height: 0.3rem;
  color: #333;
}

.product-feat__title img {
  width: 0.28rem;
  height: 0.2rem;
  display: block;
}

.product-feat__body {
  display: flex;
  align-items: flex-start;
  gap: 0.46rem;
  margin-top: 0.91rem;
}

.product-feat__pic {
  box-sizing: border-box;
  width: 5.6rem;
  height: 4rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdfdfd;
}

.product-feat__pic img {
  width: 5.6rem;
  object-fit: contain;
  display: block;
}

.product-feat__list {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-feat__list li {
  box-sizing: border-box;
  min-height: 0.72rem;
  padding: 0 0 0.16rem 0.2rem;
  border-bottom: 1px dashed #eee;
  margin-bottom: 0.1rem;
}

.product-feat__list li:last-child {
  margin-bottom: 0;
}

.product-feat__list h3 {
  margin: 0;
  font-size: 0.18rem;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
}

.product-feat__list p {
  margin: 0.08rem 0 0;
  font-size: 0.14rem;
  line-height: 1.5;
  color: #666;
}

/* ========== 新闻列表页 ========== */
.news-banner {
  position: relative;
  width: 100%;
  height: 7.3rem;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.news-banner__bg {
  position: absolute;
  inset: 0;
}

.news-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-banner__content {
  position: relative;
  z-index: 2;
  padding-top: 2.65rem;
}

.news-banner__mark {
  display: block;
  width: 0.4rem;
  height: 0.29rem;
}

.news-banner__title {
  margin: 0.26rem 0 0;
  font-size: 0.42rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.news-banner__desc {
  margin: 0.27rem 0 0;
  max-width: 6.71rem;
  font-size: 0.16rem;
  line-height: 0.3rem;
  color: #fff;
}

.news-section {
  padding: 0.84rem 0 1.2rem;
  background: #fff;
}

.news-section__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
}

.news-section__title h2 {
  margin: 0;
  font-size: 0.36rem;
  font-weight: 500;
  line-height: 0.3rem;
  color: #333;
}

.news-section__title img {
  width: 0.26rem;
  height: 0.19rem;
  display: block;
}

.news-cards {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.76rem;
}

.news-card {
  flex: 1;
  min-width: 0;
  background: #fff;
  box-shadow: 0 0.08rem 0.24rem rgba(15, 23, 42, 0.06);
}

.news-card__pic {
  display: block;
  width: 100%;
  height: 3rem;
  overflow: hidden;
}

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

.news-card:hover .news-card__pic img {
  transform: scale(1.04);
}

.news-card:hover .news-card__more img {
  transform: rotate(45deg);
}

.news-card__body {
  box-sizing: border-box;
  padding: 0.21rem 0.18rem 0.25rem;
  min-height: 2.4rem;
}

.news-card__date {
  display: flex;
  align-items: center;
  gap: 0.06rem;
  font-size: 0.14rem;
  color: #666;
  line-height: 0.21rem;
}

.news-card__date img {
  width: 0.18rem;
  height: 0.18rem;
  display: block;
}

.news-card__title {
  margin: 0.29rem 0 0;
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 0.3rem;
  color: #333;
}

.news-card__title a {
  color: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__desc {
  margin: 0.22rem 0 0;
  font-size: 0.14rem;
  line-height: 0.255rem;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.06rem;
  margin-top: 0.23rem;
  font-size: 0.12rem;
  color: #033fd1;
}

.news-card__more img {
  width: 0.12rem;
  height: 0.12rem;
  display: block;
  transition: transform 0.3s ease;
}

.news-list {
  margin-top: 0.6rem;
}

.news-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  box-sizing: border-box;
  min-height: 1.32rem;
  padding: 0.36rem 0.21rem;
  border-bottom: 1px solid #eee;
  color: #333;
  transition: background 0.2s ease;
}

.news-list__item:first-child {
  border-top: 1px solid #eee;
}

.news-list__item:hover {
  background: #f8f8f8;
}

.news-list__item:hover .news-list__more img {
  transform: rotate(45deg);
}

.news-list__main {
  min-width: 0;
  flex: 1;
}

.news-list__date {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  font-size: 0.14rem;
  color: #666;
  line-height: 0.21rem;
}

.news-list__date img {
  width: 0.17rem;
  height: 0.17rem;
  display: block;
}

.news-list__item h3 {
  margin: 0.09rem 0 0;
  font-size: 0.18rem;
  font-weight: 500;
  line-height: 0.3rem;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list__more {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.06rem;
  font-size: 0.12rem;
  color: #033fd1;
}

.news-list__more img {
  width: 0.12rem;
  height: 0.12rem;
  display: block;
  transition: transform 0.3s ease;
}

.news-list__actions {
  display: flex;
  justify-content: center;
  margin-top: 0.48rem;
}

.news-list__load {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8rem;
  height: 0.48rem;
  padding: 0 0.42rem;
  border: 0;
  border-radius: 250px;
  background: linear-gradient(90deg, #3d7af5 0%, #033fd1 100%);
  color: #fff;
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.news-list__load:hover {
  opacity: 0.9;
}

.news-list__load:disabled {
  opacity: 0.6;
  cursor: default;
}

/* ========== 新闻详情 ========== */
.news-detail {
  box-sizing: border-box;
  min-height: calc(100vh - 4rem);
  padding: 1.2rem 0 1.2rem;
  background: #f5f5f5;
}

.news-detail__crumb {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  margin-bottom: 0.24rem;
  font-size: 0.14rem;
  line-height: 1.5;
  color: #999;
}

.news-detail__crumb a {
  color: #999;
  transition: color 0.2s ease;
}

.news-detail__crumb a:hover {
  color: #033fd1;
}

.news-detail__crumb-sep {
  color: #bbb;
}

.news-detail__card {
  box-sizing: border-box;
  padding: 0.64rem 0.8rem 0.56rem;
  background: #fff;
  border: 1px solid #eee;
}

.news-detail__head {
  text-align: center;
}

.news-detail__title {
  margin: 0;
  font-size: 0.32rem;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}

.news-detail__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.12rem;
  margin-top: 0.28rem;
  padding-bottom: 0.36rem;
  border-bottom: 1px solid #eee;
  font-size: 0.14rem;
  line-height: 1.5;
  color: #999;
}

.news-detail__meta-sep {
  font-style: normal;
  color: #ddd;
}

.news-detail__body {
  padding: 0.4rem 0 0.48rem;
  font-size: 0.16rem;
  line-height: 1.9;
  color: #333;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.news-detail__body p,
.news-detail__body ul,
.news-detail__body ol {
  margin: 0 0 0.28rem;
}

.news-detail__body h2,
.news-detail__body h3 {
  margin: 0.36rem 0 0.16rem;
  color: #111;
  font-weight: 600;
  line-height: 1.4;
}

.news-detail__body h2 {
  font-size: 0.22rem;
}

.news-detail__body h3 {
  font-size: 0.18rem;
}

.news-detail__body ul,
.news-detail__body ol {
  padding-left: 0.28rem;
}

.news-detail__body li {
  margin: 0 0 0.08rem;
}

.news-detail__body a {
  color: #033fd1;
}

.news-detail__body img,
.news-detail__pic {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0.16rem 0;
}

.news-detail__body video,
.news-detail__body iframe,
.news-detail__body table {
  max-width: 100%;
}

.news-detail__body p:last-child {
  margin-bottom: 0;
}

.news-detail__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.24rem;
  padding-top: 0.36rem;
  border-top: 1px solid #eee;
}

.news-detail__consult {
  font-size: 0.16rem;
  line-height: 1.5;
  color: #033fd1;
  transition: opacity 0.2s ease;
}

.news-detail__consult:hover {
  opacity: 0.85;
}

.news-detail__next {
  flex-shrink: 0;
  font-size: 0.14rem;
  line-height: 1.5;
  color: #999;
  transition: color 0.2s ease;
}

.news-detail__next:hover {
  color: #033fd1;
}
