@charset "UTF-8";
/* 全局隐藏滚动条 - 始终隐藏，但保持滚动功能 */
html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body.yunce-fullpage-active {
  overflow: auto !important;
}

.yunce-fullpage-nav-item {
  padding: 0 !important;
  border-radius: 50% !important;
  border: 1px solid #355598 !important;
  width: 40px;
  height: 38px;
}
.yunce-fullpage-nav-item svg,
.yunce-fullpage-nav-item path {
  fill: #355598;
}

.yunce-fullpage-nav-item.active {
  border-width: 0px !important;
  background: -webkit-gradient(linear, left top, right top, from(#ff6c1b), to(#6e33ff)) !important;
  background: linear-gradient(90deg, #ff6c1b 0%, #6e33ff 100%) !important;
}
.yunce-fullpage-nav-item.active svg,
.yunce-fullpage-nav-item.active path {
  fill: #fff;
}

.yunce-fullpage-module {
  position: relative;
  width: 100%;
}
@media (min-width: 1025px) {
  .yunce-fullpage-module {
    height: 100vh;
    overflow: hidden;
  }
  .yunce-fullpage-module > .yunce-fullpage-container.swiper {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .yunce-fullpage-module > .yunce-fullpage-container.swiper > .swiper-wrapper {
    height: 100%;
  }
  .yunce-fullpage-module > .yunce-fullpage-container.swiper > .swiper-wrapper > .yunce-fullpage-section.swiper-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 100vh;
  }
  .yunce-fullpage-module > .yunce-fullpage-container.swiper > .swiper-wrapper > .yunce-fullpage-section.swiper-slide > .yunce-fullpage-content {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .yunce-fullpage-module .yunce-fullpage-navigation {
    position: fixed;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .yunce-fullpage-module .yunce-fullpage-navigation .yunce-fullpage-nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .yunce-fullpage-module .yunce-fullpage-navigation .yunce-fullpage-nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .yunce-fullpage-module .yunce-fullpage-navigation .yunce-fullpage-nav-item.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
  }
  .yunce-fullpage-module .yunce-fullpage-navigation .yunce-fullpage-nav-item.active .yunce-fullpage-nav-icon {
    color: #007cba;
  }
  .yunce-fullpage-module .yunce-fullpage-navigation .yunce-fullpage-nav-item.active .yunce-fullpage-nav-title {
    color: #007cba;
  }
  .yunce-fullpage-module .yunce-fullpage-navigation .yunce-fullpage-nav-item .yunce-fullpage-nav-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 24px;
    color: #666;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .yunce-fullpage-module .yunce-fullpage-navigation .yunce-fullpage-nav-item .yunce-fullpage-nav-icon i,
  .yunce-fullpage-module .yunce-fullpage-navigation .yunce-fullpage-nav-item .yunce-fullpage-nav-icon svg {
    width: 24px;
    height: 24px;
  }
  .yunce-fullpage-module .yunce-fullpage-navigation .yunce-fullpage-nav-item .yunce-fullpage-nav-title {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-align: center;
    line-height: 1.2;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
    white-space: nowrap;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 1620px) {
  .yunce-fullpage-module .yunce-fullpage-navigation {
    right: 10px;
  }
}
@media (max-width: 1024px) {
  .yunce-fullpage-module {
    height: auto;
    overflow: visible;
  }
  .yunce-fullpage-module > .yunce-fullpage-container.swiper {
    position: relative;
    width: 100%;
    height: auto;
  }
  .yunce-fullpage-module > .yunce-fullpage-container.swiper.swiper {
    height: auto;
  }
  .yunce-fullpage-module > .yunce-fullpage-container.swiper > .swiper-wrapper {
    height: auto;
    display: block;
  }
  .yunce-fullpage-module > .yunce-fullpage-container.swiper > .swiper-wrapper > .yunce-fullpage-section.swiper-slide {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
  }
  .yunce-fullpage-module > .yunce-fullpage-container.swiper > .swiper-wrapper > .yunce-fullpage-section.swiper-slide > .yunce-fullpage-content {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
  }
}
.yunce-fullpage-module .yunce-fullpage-default-content {
  text-align: center;
  color: #333;
}
.yunce-fullpage-module .yunce-fullpage-default-content .yunce-fullpage-default-icon {
  margin-bottom: 20px;
  font-size: 48px;
}
.yunce-fullpage-module .yunce-fullpage-default-content .yunce-fullpage-default-icon i,
.yunce-fullpage-module .yunce-fullpage-default-content .yunce-fullpage-default-icon svg {
  width: 48px;
  height: 48px;
}
.yunce-fullpage-module .yunce-fullpage-default-content .yunce-fullpage-default-title {
  font-size: 36px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .yunce-fullpage-module .yunce-fullpage-default-content .yunce-fullpage-default-icon {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .yunce-fullpage-module .yunce-fullpage-default-content .yunce-fullpage-default-icon i,
  .yunce-fullpage-module .yunce-fullpage-default-content .yunce-fullpage-default-icon svg {
    width: 36px;
    height: 36px;
  }
  .yunce-fullpage-module .yunce-fullpage-default-content .yunce-fullpage-default-title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .yunce-fullpage-module .yunce-fullpage-default-content .yunce-fullpage-default-icon {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .yunce-fullpage-module .yunce-fullpage-default-content .yunce-fullpage-default-icon i,
  .yunce-fullpage-module .yunce-fullpage-default-content .yunce-fullpage-default-icon svg {
    width: 32px;
    height: 32px;
  }
  .yunce-fullpage-module .yunce-fullpage-default-content .yunce-fullpage-default-title {
    font-size: 24px;
  }
}
.yunce-fullpage-module .yunce-fullpage-nav-icon {
  height: 38px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.yunce-fullpage-module .yunce-fullpage-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 1024px) {
  .yunce-fullpage-module .yunce-fullpage-navigation {
    top: 150px;
    left: 0;
    z-index: 100;
    position: fixed;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.el-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.yunce-fullpage-nav-title {
  font-size: 12px !important;
  margin-top: 5px !important;
}

@media (max-width: 1024px) {
  .yunce-fullpage-navigation {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */