
body {
  margin: 0;
}


#globalHeader[data-v-04d6b4b6] {
  display: flex;
  justify-content: center;
  flex-direction: row;
  border-bottom: 1px solid #dcdfe6;
  padding: 0 20px;
}
.header-row[data-v-04d6b4b6] {
  width: 1450px;
  height: 80px;
}
.title-bar[data-v-04d6b4b6] {
  display: flex;
  align-items: center;
  cursor: pointer;
  min-width: 180px;
}
.logo[data-v-04d6b4b6] {
  width: auto;
  height: 80px;
}
.title[data-v-04d6b4b6] {
  margin-left: 12px;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  /* 可以根据喜好调整颜色 */
  white-space: nowrap;
}
.title-col[data-v-04d6b4b6] {
  display: flex;
  align-items: center;
}
.user-col[data-v-04d6b4b6] {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.user-status[data-v-04d6b4b6] {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

/* 移除 Element Plus 菜单底边框 */
[data-v-04d6b4b6] .el-menu {
  border-bottom: none !important;
  width: 100%;
}
@media screen and (max-width: 768px) {
#globalHeader[data-v-04d6b4b6] {
    padding: 0 6px;
}
.header-row[data-v-04d6b4b6] {
    width: 100%;
    height: 80px;
    padding: 0;
    margin: 0;
}
.logo[data-v-04d6b4b6] {
    width: auto;
    height: 60px;
}
[data-v-04d6b4b6] .el-menu li {
    padding: 0 6px;
}
}


/* #basic-layout .footer 表示只选择 id 为 basic-layout 的元素下，类名为 footer 的元素。 */
#basic-layout .footer[data-v-74d82019] {
  min-width: 1200px;
  height: 60px;
  background-color: #28282a;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 60px;
  flex-direction: column;
  gap: 6px;
}
#basic-layout .content[data-v-74d82019] {
  margin: 0;
  padding-bottom: 60px;
  padding: 0;
}
#basic-layout .header[data-v-74d82019] {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  height: 80px;
  color: unset;
}
@media screen and (max-width: 768px) {
#basic-layout .footer[data-v-74d82019] {
    width: 100%;
    min-width: 100%;
    height: 120px;
    background-color: #28282a;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 0;
}
}

/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}


.base-swiper[data-v-51f52326] {
  width: 100%;
  overflow: hidden;
}
.custom-swiper[data-v-51f52326] {
  width: 100%;
  height: 100%;
}
.swiper-img[data-v-51f52326] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/* 样式穿透修改分页器颜色 */
[data-v-51f52326] .swiper-pagination-bullet-active {
  background: var(--el-color-primary, #409eff);
}
/* 覆盖右箭头颜色 */
[data-v-51f52326] .swiper-button-next,[data-v-51f52326] .swiper-button-prev {
  color: #ffffff !important; /* 你需要的颜色 */
}

/* 如果你还想修改悬停时的效果 */
[data-v-51f52326] .swiper-button-next:hover,[data-v-51f52326] .swiper-button-prev:hover {
  color: #409eff !important;
  opacity: 0.8;
}
@media (max-width: 768px) {
.base-swiper[data-v-51f52326] {
    width: 100%;
    height: 240px !important;
    overflow: hidden;
}
.swiper-img[data-v-51f52326] {
    width: 100%;
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
}
}


.info-section[data-v-389565bc] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.reverse[data-v-389565bc] {
  flex-direction: row-reverse;
}
.text-content[data-v-389565bc] {
  flex: 1;
  max-width: 400px;
  text-align: left;
}
.title[data-v-389565bc] {
  font-size: 28px;
  color: #333;
  font-weight: bold;
  margin-bottom: 15px;
}
.underline[data-v-389565bc] {
  width: 60px;
  height: 4px;
  margin-bottom: 30px;
}
.description[data-v-389565bc] {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  white-space: pre-line; /* 支持换行符 */
}
.image-container[data-v-389565bc] {
  flex: 1.2;
  position: relative;
  display: flex;
  justify-content: center;
}
.main-image[data-v-389565bc] {
  max-width: 100%;
  height: auto;
  z-index: 1;
}

/* 这里的渐变用于模拟图中那种图片边缘消失的效果 */
.gradient-mask[data-v-389565bc] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, transparent 40%, #ffffff 100%);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 768px) {
.info-section[data-v-389565bc] {
    flex-direction: column !important;
    padding: 20px;
}
.text-content[data-v-389565bc] {
    max-width: 100%;
}
}

.service-container[data-v-d182410a]{max-width:1200px;margin:0 auto;padding:40px 20px;font-family:"Helvetica Neue",Helvetica,Arial,"Microsoft Yahei",sans-serif}.service-container .header-section[data-v-d182410a]{text-align:center;margin-bottom:40px}.service-container .header-section .main-title[data-v-d182410a]{font-size:28px;color:#333;margin-bottom:15px;font-weight:500}.service-container .header-section .sub-title[data-v-d182410a]{font-size:14px;color:#666;line-height:1.6;max-width:800px;margin:0 auto}.service-container .service-grid[data-v-d182410a]{display:flex;flex-wrap:wrap;gap:20px;justify-content:center}.service-container .service-card[data-v-d182410a]{flex:1;min-width:300px;background:#f9f9f9;transition:transform .3s ease;border:1px solid #eee}.service-container .service-card[data-v-d182410a]:hover{transform:translateY(-5px);box-shadow:0 10px 20px rgba(0,0,0,.05)}.service-container .service-card .image-wrapper[data-v-d182410a]{width:100%;height:200px;overflow:hidden}.service-container .service-card .image-wrapper img[data-v-d182410a]{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;cursor:pointer}.service-container .service-card .content-wrapper[data-v-d182410a]{padding:30px 20px;text-align:center}.service-container .service-card .content-wrapper .card-title[data-v-d182410a]{font-size:18px;color:#333;margin-bottom:15px}.service-container .service-card .content-wrapper .card-desc[data-v-d182410a]{font-size:14px;color:#888;line-height:1.8;white-space:pre-line;text-align:left}@media(max-width: 768px){.service-container[data-v-d182410a]{padding:20px 15px}.service-container .header-section .main-title[data-v-d182410a]{font-size:22px}.service-container .header-section .sub-title[data-v-d182410a]{font-size:13px}.service-container .service-grid[data-v-d182410a]{flex-direction:column}.service-container .service-card[data-v-d182410a]{min-width:100%;margin-bottom:10px}.service-container .service-card .image-wrapper[data-v-d182410a]{height:180px}.service-container .service-card .content-wrapper[data-v-d182410a]{padding:20px 15px}}
.advantage-container[data-v-cad07240]{padding:60px 20px;max-width:1200px;margin:0 auto;background-color:#fff}.advantage-container .main-title[data-v-cad07240]{text-align:center;font-size:32px;color:#2c3e50;margin-bottom:60px;font-weight:bold}.advantage-container .grid-layout[data-v-cad07240]{display:grid;grid-template-columns:repeat(3, 1fr);-moz-column-gap:40px;column-gap:40px;row-gap:60px}.advantage-container .advantage-item[data-v-cad07240]{display:flex;flex-direction:column;align-items:center}.advantage-container .advantage-item .icon-box[data-v-cad07240]{position:relative;margin-bottom:20px}.advantage-container .advantage-item .icon-box img[data-v-cad07240]{width:48px;height:48px;position:relative;z-index:2}.advantage-container .advantage-item .icon-box .icon-bg-dot[data-v-cad07240]{position:absolute;right:-10px;top:-5px;width:30px;height:30px;background:linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);border-radius:50%;opacity:.4;filter:blur(8px);z-index:1}.advantage-container .advantage-item .item-title[data-v-cad07240]{font-size:20px;color:#333;margin-bottom:12px;font-weight:600}.advantage-container .advantage-item .item-desc[data-v-cad07240]{font-size:14px;color:#666;line-height:1.8;margin:0}@media(max-width: 768px){.advantage-container[data-v-cad07240]{padding:40px 15px}.advantage-container .main-title[data-v-cad07240]{font-size:24px;margin-bottom:40px}.advantage-container .grid-layout[data-v-cad07240]{grid-template-columns:1fr 1fr;row-gap:35px}.advantage-container .advantage-item[data-v-cad07240]{align-items:center;text-align:center}.advantage-container .advantage-item .item-desc[data-v-cad07240]{text-align:center}}

.page-header[data-v-05c618af] {
  text-align: center;
  font-size: 36px;
  color: #2c3e50;
  margin-top: 50px;
  margin-bottom: 20px;
}

.login-container[data-v-fdcefc26]{width:100%;height:100vh;background:url(/img/login_bg.be16eede.jpg) no-repeat center center;background-size:cover}.login-container .background-overlay[data-v-fdcefc26]{width:100%;height:100%;background:rgba(0,0,0,.4);display:flex;align-items:center;justify-content:center}.login-container .content-wrapper[data-v-fdcefc26]{display:flex;width:1200px;max-width:90%;justify-content:space-between;align-items:center}.login-container .text-section[data-v-fdcefc26]{color:#fff}.login-container .text-section .main-title[data-v-fdcefc26]{font-size:56px;margin-bottom:8px;font-weight:bold}.login-container .text-section .sub-headline[data-v-fdcefc26]{font-size:36px;margin-bottom:16px}.login-container .text-section .feature-tag[data-v-fdcefc26]{font-size:20px;opacity:.8}.login-container .login-card[data-v-fdcefc26]{width:400px;background:#fff;padding:40px;border-radius:12px;box-shadow:0 10px 25px rgba(0,0,0,.2)}.login-container .login-card .card-title[data-v-fdcefc26]{text-align:center;margin-bottom:30px;font-size:26px;color:#333;font-weight:600}.login-container .login-card[data-v-fdcefc26] .el-input .el-input__wrapper{background-color:#f5f7fa;box-shadow:none;padding:8px 12px}.login-container .login-card[data-v-fdcefc26] .el-input .el-input__wrapper.is-focus{box-shadow:0 0 0 1px #e65100 inset}.login-container .login-card[data-v-fdcefc26] .el-input .input-icon{font-size:18px;color:#666;margin-right:4px}.login-container .login-card[data-v-fdcefc26] .el-input .password-eye{cursor:pointer;color:#999}.login-container .login-card[data-v-fdcefc26] .el-input .password-eye:hover{color:#e65100}.login-container .login-card[data-v-fdcefc26] .el-form-item__error{padding-top:4px}.login-container .options[data-v-fdcefc26]{display:flex;justify-content:space-between;align-items:center;margin:20px 0}.login-container .options .register-link[data-v-fdcefc26]{color:#409eff;text-decoration:none;font-size:14px}.login-container .options .register-link[data-v-fdcefc26]:hover{text-decoration:underline}.login-container .login-btn[data-v-fdcefc26]{width:100%;height:50px;font-size:18px;background-color:#e65100;border-color:#e65100;font-weight:bold}.login-container .login-btn[data-v-fdcefc26]:hover{background-color:#bf4500;border-color:#bf4500}@media screen and (max-width: 992px){.text-section[data-v-fdcefc26]{display:none}.content-wrapper[data-v-fdcefc26]{justify-content:center}}
.register-wrapper[data-v-2450930d]{min-height:100vh;display:flex;justify-content:center;align-items:center;background:url(/img/register_bg.26eeacba.jpg) no-repeat top center;background-size:cover}.register-wrapper .register-card[data-v-2450930d]{width:480px;background:#fff;border-radius:8px;box-shadow:0 4px 20px rgba(0,0,0,.08);padding:40px}.register-wrapper .title[data-v-2450930d]{font-size:24px;color:#333;text-align:center;margin-bottom:30px;font-weight:bold}.register-wrapper .verify-row[data-v-2450930d]{display:flex;align-items:center;gap:10px;margin-bottom:18px}.register-wrapper .code-btn[data-v-2450930d]{height:40px;background-color:#409eff;border-radius:4px}.register-wrapper .submit-btn[data-v-2450930d]{width:100%;height:50px;background-color:#e25408;border-color:#e25408;font-size:16px;font-weight:bold;margin-top:10px}.register-wrapper .submit-btn[data-v-2450930d]:hover{background-color:#f3651a;border-color:#f3651a}.register-wrapper .footer-links[data-v-2450930d]{text-align:center;margin-top:20px}.register-wrapper .footer-links .back-home[data-v-2450930d]{color:#666;font-size:14px;text-decoration:underline}[data-v-2450930d] .el-input__inner{height:40px}
.product-container[data-v-23783eb8]{max-width:1200px;margin:0 auto;padding:20px;background-color:#f8f9fb}.product-card[data-v-23783eb8]{display:flex;background-color:#fff;border-radius:4px;margin-bottom:20px;position:relative;box-shadow:0 2px 12px 0 rgba(0,0,0,.05);transition:transform .3s;overflow:hidden}.product-card[data-v-23783eb8]:hover{transform:translateY(-2px);box-shadow:0 4px 16px 0 rgba(0,0,0,.1)}.top-badge[data-v-23783eb8]{position:absolute;top:0;right:0;background-color:#948cb3;color:#fff;font-size:12px;padding:2px 8px;z-index:10;display:flex;align-items:center;border-bottom-left-radius:8px}.product-banner[data-v-23783eb8]{width:320px;height:180px;position:relative;flex-shrink:0}.product-banner .banner-img[data-v-23783eb8]{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.product-banner .banner-tag[data-v-23783eb8]{position:absolute;bottom:0;width:100%;background-color:rgba(64,158,255,.85);color:#fff;text-align:center;font-size:14px;padding:6px 0}.product-content[data-v-23783eb8]{flex:1;padding:20px 30px;display:flex;flex-direction:column}.product-content .header-row[data-v-23783eb8]{display:flex;align-items:center;gap:15px;margin-bottom:12px}.product-content .header-row .product-title[data-v-23783eb8]{font-size:20px;color:#333;margin:0;font-weight:600}.product-content .header-row .outline-tag[data-v-23783eb8]{border:1px solid #409eff;color:#409eff;font-size:12px;padding:1px 6px;border-radius:2px}.product-content .guarantee-row[data-v-23783eb8]{display:flex;gap:15px;margin-bottom:15px}.product-content .guarantee-row .guarantee-item[data-v-23783eb8]{color:#e25408;font-size:13px;display:flex;align-items:center;gap:4px}.product-content .benefit-list[data-v-23783eb8]{list-style:none;padding:0;margin:0}.product-content .benefit-list li[data-v-23783eb8]{color:#666;font-size:14px;margin-bottom:8px;display:flex;align-items:center}.product-content .benefit-list li .thumb-icon[data-v-23783eb8]{color:#e25408;margin-right:10px;font-size:16px}.product-action[data-v-23783eb8]{width:220px;display:flex;flex-direction:column;justify-content:center;align-items:center;border-left:1px dashed #ebeef5}.product-action .price-box[data-v-23783eb8]{color:#e25408;margin-bottom:20px}.product-action .price-box .currency[data-v-23783eb8]{font-size:18px;font-weight:bold}.product-action .price-box .amount[data-v-23783eb8]{font-size:36px;font-weight:bold;margin:0 4px}.product-action .price-box .unit[data-v-23783eb8]{font-size:14px;color:#999}.product-action .detail-btn[data-v-23783eb8]{width:120px;height:40px;background-color:#409eff;border-color:#409eff;font-size:15px}.product-action .detail-btn[data-v-23783eb8]:hover{background-color:#66b1ff}

.app-container[data-v-436692a2] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-container .page-width[data-v-436692a2] {
  max-width: 1450px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.app-container[data-v-436692a2] .el-row {
  width: 100%;
}
.content[data-v-436692a2] img {
  width: 100% !important;
  height: auto !important;
}
.agreement_dialog[data-v-436692a2] {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.agreement_dialog[data-v-436692a2] .el-dialog {
  margin: 0 auto !important;
  height: 90%;
  overflow: hidden;
}
.agreement_dialog[data-v-436692a2] .el-dialog__body {
  position: absolute;
  left: 0;
  top: 54px;
  bottom: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  overflow-y: auto;
}
.policyholder p[data-v-436692a2] {
  color: #3cc474;
  font-size: 12px;
  padding-left: 12em;
}
.insured p[data-v-436692a2] {
  color: #3cc474;
  font-size: 12px;
  padding-left: 12em;
}
.car p[data-v-436692a2] {
  color: #3cc474;
  font-size: 12px;
  padding-left: 12em;
}
.cargo p[data-v-436692a2] {
  color: #3cc474;
  font-size: 12px;
  padding-left: 12em;
}


.msgStyle {
  background-color: #fdf6ec;
}
.content {
  padding: 0px 16px;
}
.el-radio-group {
  line-height: 30px;
}
.demo-dialog .el-dialog__body {
  height: 600px;
  overflow-y: auto;
}
.tpc .el-time-spinner__wrapper {
  width: 100% !important;
}
.tpc .el-scrollbar:nth-of-type(2) {
  display: none !important;
}


.news-page[data-v-3285435e] {
  background-color: #fcfcfc;
  padding: 40px 0;
  min-height: 600px;
}
.news-container[data-v-3285435e] {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 列表项卡片 */
.news-card[data-v-3285435e] {
  display: flex;
  background: #fff;
  border: 1px solid #f0f0f0;
  margin-bottom: 24px;
  height: 180px;
  transition: all 0.3s ease;
}
.news-card[data-v-3285435e]:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

/* 左侧日期 */
.date-section[data-v-3285435e] {
  width: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #f5f5f5;
  background: #fafafa;
}
.day[data-v-3285435e] {
  font-size: 36px;
  font-weight: bold;
  color: #409eff;
}
.year-month[data-v-3285435e] {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}

/* 图片区域 */
.image-section[data-v-3285435e] {
  width: 280px;
  overflow: hidden;
}
.image-section img[data-v-3285435e] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .image-section img[data-v-3285435e] {
  transform: scale(1.08);
}

/* 内容区域 */
.content-section[data-v-3285435e] {
  flex: 1;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.title[data-v-3285435e] {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
  /* 标题单行省略 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.summary[data-v-3285435e] {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin-top: 10px;
  /* 摘要多行省略 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.view-meta[data-v-3285435e] {
  font-size: 12px;
  color: #bbb;
  margin-left: 15px;
}
.detail-btn[data-v-3285435e] {
  display: inline-block;
  padding: 4px 18px;
  border: 1px solid #409eff;
  color: #409eff;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
}
.detail-btn[data-v-3285435e]:hover {
  background: #409eff;
  color: #fff;
}

/* 分页器样式 */
.pagination[data-v-3285435e] {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.page-num[data-v-3285435e],
.page-arrow[data-v-3285435e] {
  padding: 8px 16px;
  border: 1px solid #e8e8e8;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  transition: 0.2s;
}
.page-num.active[data-v-3285435e] {
  background: #409eff;
  color: #fff;
  border-color: #409eff;
}
.page-num[data-v-3285435e]:hover:not(.active) {
  border-color: #409eff;
  color: #409eff;
}
.page-arrow[data-v-3285435e]:disabled {
  background: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
}
.loading-state[data-v-3285435e],
.empty-state[data-v-3285435e] {
  text-align: center;
  padding: 100px 0;
  color: #999;
}


.news-detail-page[data-v-27b0c60a] {
  background-color: #fff;
  min-height: 80vh;
  padding: 40px 0;
}
.detail-container[data-v-27b0c60a] {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 面包屑 */
.breadcrumb[data-v-27b0c60a] {
  margin-bottom: 30px;
  font-size: 14px;
  color: #999;
}
.back-link[data-v-27b0c60a] {
  cursor: pointer;
  transition: color 0.3s;
}
.back-link[data-v-27b0c60a]:hover {
  color: #409eff;
}
.separator[data-v-27b0c60a] {
  margin: 0 10px;
}

/* 文章头部 */
.article-header[data-v-27b0c60a] {
  text-align: center;
  margin-bottom: 30px;
}
.article-title[data-v-27b0c60a] {
  font-size: 28px;
  color: #333;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 600;
}
.article-meta[data-v-27b0c60a] {
  font-size: 14px;
  color: #999;
  display: flex;
  justify-content: center;
  gap: 25px;
}
.divider[data-v-27b0c60a] {
  border: none;
  border-top: 1px solid #eee;
  margin: 30px 0;
}

/* 富文本内容展示 */
.article-content[data-v-27b0c60a] {
  line-height: 1.8;
  color: #444;
  font-size: 16px;
  word-break: break-all;
}

/* 确保富文本内的图片自适应 */
.article-content[data-v-27b0c60a] img {
  max-width: 100%;
  height: auto !important;
  display: block;
  margin: 20px auto;
  border-radius: 4px;
}
.article-content[data-v-27b0c60a] p {
  margin-bottom: 1.2em;
}

/* 底部操作 */
.article-footer[data-v-27b0c60a] {
  margin-top: 60px;
  text-align: center;
  padding-bottom: 40px;
}
.back-btn[data-v-27b0c60a] {
  padding: 10px 30px;
  background: #fff;
  border: 1px solid #dcdfe6;
  color: #606266;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}
.back-btn[data-v-27b0c60a]:hover {
  border-color: #409eff;
  color: #409eff;
  background-color: #ecf5ff;
}
.loading-state[data-v-27b0c60a],
.error-state[data-v-27b0c60a] {
  text-align: center;
  padding: 100px 0;
  color: #999;
}

/* 简单的加载动画 */
.spinner[data-v-27b0c60a] {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #409eff;
  border-radius: 50%;
  animation: spin-27b0c60a 1s linear infinite;
}
@keyframes spin-27b0c60a {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}


/* Banner 样式 */
.banner-section[data-v-03d402ab] {
  position: relative;
  min-height: 600px;
  background-color: #0066cc;
  display: flex;
  justify-content: center;
  padding-top: 80px;
}
.main-title[data-v-03d402ab] {
  color: white;
  font-size: 3.5rem;
  letter-spacing: 10px;
  font-weight: bold;
}
.sub-title[data-v-03d402ab] {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  margin-top: 10px;
}

/* 简介卡片叠层 */
.intro-card[data-v-03d402ab] {
  position: absolute;
  bottom: -100px;
  width: 1000px;
  border: none;
  border-radius: 4px;
}
.card-body[data-v-03d402ab] {
  display: flex;
  padding: 20px;
}
.quote-mark[data-v-03d402ab] {
  font-size: 60px;
  color: #409eff;
  font-family: serif;
  margin-right: 20px;
  line-height: 1;
}
.text-content[data-v-03d402ab] {
  font-size: 14px;
  line-height: 1.8;
  color: #606266;
}

/* 内容区域样式 */
.main-content[data-v-03d402ab] {
  padding-top: 160px;
  max-width: 1140px;
  margin: 0 auto 80px;
}

/* 自定义 Tabs 样式还原图片 */
[data-v-03d402ab] .el-tabs__nav-scroll {
  display: flex;
  justify-content: center;
}
[data-v-03d402ab] .el-tabs__item {
  font-size: 18px;
  padding: 0 40px;
  height: 60px;
}

/* 大事记样式 */
.timeline-container[data-v-03d402ab] {
  max-width: 800px;
  margin: 40px auto 60px;
}
.timeline-item[data-v-03d402ab] {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.year-label[data-v-03d402ab] {
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  color: #303133;
  width: 120px;
}
.content-box[data-v-03d402ab] {
  flex: 1;
  padding-left: 30px;
  border-left: 2px solid #ebeef5;
  font-size: 18px;
  color: #606266;
}

/* 图片网格样式 */
.grid-img[data-v-03d402ab] {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
.mt-5[data-v-03d402ab] {
  margin-top: 20px;
}
.contact-info img[data-v-03d402ab] {
  width: 100%;
  height: auto;
}

/* 页脚样式 */
.site-footer[data-v-03d402ab] {
  background-color: #2b2b2b;
  color: #909399;
  padding: 60px 0 20px;
}
.footer-title[data-v-03d402ab] {
  color: white;
  margin-bottom: 25px;
}
.footer-links[data-v-03d402ab] {
  list-style: none;
  padding: 0;
  font-size: 13px;
}
.footer-links li[data-v-03d402ab] {
  margin-bottom: 10px;
}


.svg-icon[data-v-57baac3e] {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;
  transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;
  animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


