/* 邢台银行网站样式 */


/* 主内容区域调整 */
.main-content {
  height: 100vh;
  overflow: hidden;
}

.swiper,
.swiper-container {
  height: 100%;
}

.swiper>.swiper-wrapper,
.swiper-container>.swiper-wrapper {
  height: 100%;
}

.swiper>.swiper-wrapper>.swiper-slide,
.swiper-container>.swiper-wrapper>.swiper-slide {
  height: 100%;
}

/* 左侧数字指示器 */
.section-indicator {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.indicator-item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-weight: bold;
  font-size: 18px !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-item.active {
  background: transparent;
  border: 2px solid #6bb25b;
  position: relative;
  transform: scale(1.2);
  color: #fff !important;
  font-weight: bold;
  overflow: visible;
}

.indicator-item.active::before {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: calc(50% + 3px);
  height: calc(50% + 3px);
  border: 3px solid #2c58ad;
  border-left: none;
  border-bottom: none;
  border-radius: 0 100% 0 0;
  background: transparent;
  z-index: 1;
}

/* 所有指示器的字体颜色统一为黑色 */
.indicator-item {
  color: #fff !important;
  font-weight: bold;
}

/* 当激活状态不是"01"时，所有指示器字体颜色设置为黑色 */
body.screen-1 .indicator-item,
body.screen-2 .indicator-item,
body.screen-3 .indicator-item,
body.screen-4 .indicator-item,
body.screen-5 .indicator-item {
  color: #000000 !important;
}

/* 全屏section样式 */
.fullscreen-section {
  height: calc(100vh - var(--header-height, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.section-banner.fullscreen-section {
  padding-top: 0;
  align-items: stretch;
}

/* 各个section的背景色 */
.section-banner {

  position: relative;
}

/* Banner轮播样式 */
.banner-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.banner-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* 移除透明 !important，改为黑色兜底，避免过渡期露底 */
  background: none;
  background-color: #000;
  width: 100%;
  height: 100%;
}

/* 各个banner背景 */
.banner-slide-num {
  /* 移除透明 !important，改为黑色兜底 */
  background: none;
  background-color: #000;
}

.section-banner,
.banner-swiper,
.banner-swiper .swiper-wrapper,
.banner-swiper .swiper-slide {
  background-color: #000;
}

/* 各个banner背景统一为黑色，避免透明导致白屏 */
.banner-slide-1,
.banner-slide-num,
.banner-slide-3,
.banner-slide-4 {
  background-color: #000;
}

.banner-swiper .swiper-slide {
  /* 避免过渡过程中露出底色 */
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: opacity, transform;
}

/* 视频改为绝对定位，确保全覆盖容器 */
.banner-video.hidden-until-ready {
  opacity: 0;
  /* 移除 visibility:hidden，避免合成层抖动 */
}

.banner-video {
  transition: opacity 200ms ease;
  background-color: #000;
  /* 视频未出画面或首帧前的兜底色 */
}

/* 确保图片也全覆盖并有黑底，防止图片未加载瞬间露底 */
.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #000;
  z-index: 0;
  will-change: transform;
  /* 性能优化 */
  transform: translateZ(0);
  /* 强制硬件加速 */
  backface-visibility: hidden;
  /* 隐藏背面，减少重绘 */
  perspective: 1000px;
  /* 启用3D渲染上下文 */
}

/* 确保活动的图片slide正确显示 */
.banner-swiper .swiper-slide-active .banner-image {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  height: 100% !important;
  width: 100% !important;
}

/* 确保非活动的slide被隐藏 */
.banner-swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0;
  z-index: 0;
}

/* 确保活动的slide显示 */
.banner-swiper .swiper-slide-active {
  opacity: 1 !important;
  z-index: 1 !important;
  visibility: visible !important;
  display: flex !important;
  height: 100% !important;
  width: 100% !important;
}

.banner-swiper .swiper-slide.active .banner-image {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: -webkit-transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: -moz-transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: -ms-transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* 从原本大小缓慢放大10%动画 */
  will-change: transform;
}

/* 确保非活动slide的图片保持原始大小 */
.banner-swiper .swiper-slide:not(.active) .banner-image {
  -webkit-transform: scale(1.0);
  -moz-transform: scale(1.0);
  -ms-transform: scale(1.0);
  transform: scale(1.0);
  -webkit-transition: -webkit-transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: -moz-transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: -ms-transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Banner视频样式 - 保持原始大小，不进行缩放 */
.banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.0) translateZ(0);
  /* 保持原始大小，不进行缩放动画 */
  will-change: auto;
  /* 移除transform优化，因为不再需要缩放动画 */
  backface-visibility: hidden;
  perspective: 1000px;
}

/* 移除视频的缩放动画，始终保持原始大小 */
.swiper-slide-active .banner-video,
.swiper-slide:not(.swiper-slide-active) .banner-video {
  transform: scale(1.0) translateZ(0);
  /* 始终保持原始大小 */
}
/* Banner内容样式 */
.banner-content {
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  position: relative;
}

.banner-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.banner-content .btn-primary {
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  padding: 15px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.banner-content .btn-primary:hover {
  background-color: white;
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Swiper控制器样式 */
.banner-swiper .swiper-pagination {
  bottom: 30px;
}

.banner-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 8px;
}

.banner-swiper .swiper-pagination-bullet-active {
  background-color: white;
  transform: scale(1.2);
}

.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
  color: white;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.banner-swiper .swiper-button-next:hover,
.banner-swiper .swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.banner-swiper .swiper-button-next::after,
.banner-swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.section-hot {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.section-welcome {
  background-image: url('/eportal/uiFramework/commonResource/image/2025093008394493733.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.section-columns {
  background: linear-gradient(135deg, #fff, #f8f9fa);
}

.section-news {
  background-image: url('/eportal/uiFramework/commonResource/image/2025093008404369695.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* 新闻动态区域样式 */
.section-content-news {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.news-content-title {
  width: 150px;
  margin-top: -20px;
}

.news-content-title img {
  width: 90px;
  height:5px;
}

.news-content-title-text {
  font-size: 35px;
  font-weight: bold;
  text-align: left;
}

.news-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-nav-item {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  padding: 4px 2px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.news-nav-item:hover,
.news-nav-item.active {
  color: #14439a;
}

.news-nav-item.active {
  font-weight: bold;
  font-size: 20px;
}

.news-nav-item:hover::after,
.news-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background-color: #f7ae00;
  border-radius: 1px;
}

.nav-separator {
  color: #000;
  font-size: 1.1rem;
  font-weight: 300;
}

/* 新闻内容区域样式 */
/* 新闻内容区域样式 */
.news-content-con {
  display: flex;
  gap: 0px;
  margin-top: 40px;
  align-items: flex-start;
}

/* 新闻内容区域布局 */
.news-content-section {
  flex: 1;
  width: 55%;
  display: none; /* 默认隐藏 */
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.news-content-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* 左侧图片区域 */
.news-featured {
  flex: 1;
  max-width: 45%;
  position: relative;
}

/* 新闻轮播容器 */
.news-swiper {
  width: 100%;
  height: 450px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.news-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.news-image-container {
  position: relative;
  border-top-left-radius:4px;
  border-bottom-left-radius:4px;
  border-top-right-radius:6px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-main-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* 日期标签 */
.news-date-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #f7ae00;
  color: white;
  padding: 15px 20px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.date-year {
  font-size: 1.3rem;
  line-height: 1;
  font-weight: bold;
}

.date-month-day {
  font-size: 0.9rem;
  line-height: 1;
  margin-top: 10px;
}


/* 新闻链接样式 */
.news-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.news-link:hover {
  transform: scale(1.02);
}

.news-link:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}
/* 图片底部叠加层 */
.news-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px 0 30px 10px;
  text-align: left;
}

.news-overlay-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.3;
  color: #fff;
}

.news-overlay-summary {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}



/* 右侧内容区域容器 */
.news-right-content {
  flex: 1;
  width: 55%;
  height: 450px;
  position: relative;
}

/* 右侧文章列表 */
.news-list-container {
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-left: none;
}

.news-list {
  width: calc(100% - 50px);
  margin-left: 50px;
  height: 100%;
  overflow-y: hidden;
  text-align: left;
}

 .news-item-link .news-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  position: relative;
}

.news-item-link .news-item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #f7ae00;
  z-index: 1;
}

.news-item-link:last-child .news-item {
  border-bottom: none;
}

.news-item-link:last-child .news-item::after{
  display: none;
}

.news-item-date {
  font-size: 1rem;
  color: #999;
  margin-bottom: 5px;
  font-weight:700;
}

.news-item-title {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
  margin: 0;
  font-weight: normal;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: color 0.3s ease;
  font-weight:700;
}

.news-item:hover .news-item-date {
  color: #14439a !important
}

.news-item:hover .news-item-title {
  color: #14439a !important;
}

.news-item-title::before {
  content: '';
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 5ch;
  /* 3个字符的宽度 */
  height: 2px;
  background-color: #f7ae00;
  z-index: 1;
}

/* 新闻项目链接样式 */
.news-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.news-item-link:hover {
  text-decoration: none;
  color: inherit;
}

.news-item-link:visited {
  color: inherit;
}

.news-item-link:focus {
  outline: 2px solid #14439a;
  outline-offset: 2px;
}

/* 确保链接内的新闻项目保持原有样式 */
.news-item-link .news-item {
  padding: 18.5px 0;
  border-bottom: 2px solid #fff;
  cursor: pointer;
}

.news-item-link:hover .news-item-date {
  color: #14439a !important;
}

.news-item-link:hover .news-item-title {
  color: #14439a !important;
}

/*关于我们*/
.section-about {
  background-image: url('/eportal/uiFramework/commonResource/image/2025093008411368004.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.section-content-about {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 25vh;
  flex: 1;
}

.about-content-title {
  width: 1200px;
  text-align: left;
  margin:0 auto;
}

.about-content-title img {
  width: 90px;
  height:5px;
}

.about-content-title-text {
  font-size: 35px;
  font-weight: bold;
}


/* Section通用样式 */
.section-content {
  max-width: 80%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--primary-blue);
}

.section-welcome .section-content {
  position: relative;
  z-index: 2;
}

.welcome-features {
  /* Flexbox fallback for browsers that don't support grid */
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 60px -20px 0;
  /* Grid layout for modern browsers */
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.feature-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.feature-item p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .welcome-features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .feature-item {
    padding: 30px 20px;
  }

  .feature-item h3 {
    font-size: 1.3rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }
}

.section-welcome .section-title,
.section-about .section-title {
  color: white;
}

/*四个模块*/
.four-module {
  width: 90%;
  height: 110px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 999;
  padding: 0;
  margin: 0;
}

.four-module .beijing {
  width: 100%;
  height: 100%;
  position: relative;
}
/* 默认隐藏移动端专用图标与文本（在 mobile.css 中的媒体查询下再显示） */
.four-module .module-link-mobile{
  display: none;
}

/* 模块容器样式 */
.module-box {
  position: absolute;
  top: 0;
  left: calc((100% - 1200px)/2);
  width: 1200px;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
}

/* 单个模块项样式 */
.module-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  max-width: 200px;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: transparent;
  height: 100%;
}

.module-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 图标样式 */
.module-item .icon {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.module-item:hover .icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* 文字样式 */
.module-item p {
  color: #fff;
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

/* 第二屏热点推荐区域背景样式 */
.section-hotspot {
  background-image: url('/eportal/uiFramework/commonResource/image/2025101816552257369.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.module-list {
  width: 100%;
  margin: 0 auto;
}

/* 标题图片和文字样式 */
.module-list-title img {
  width: 60%;
  margin-right: 40%;
}

.module-list-title-text {
  font-size: 35px;
  color: #333;
  font-weight: bold;
  text-align: left;
}

.savings-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}





/* 卡片图片区域 */
.savings-card-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.savings-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.savings-card:hover .savings-card-image {
  opacity: 1;
}

.savings-card:hover .savings-card-image img {
  transform: scale(1.02);
}

/* 卡片内容区域 */
.savings-card-content {
  padding: 32px 28px 28px;
  background: rgba(255, 255, 255, 0.85);
  height: calc(100% - 280px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  color: #000;
  backdrop-filter: blur(3px);
}

.savings-card:hover .savings-card-content {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: none;
}

/* 卡片标题 */
.savings-card-header {
  margin-bottom: 16px;
  text-align: left;
}

.savings-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.savings-card:hover .savings-card-title {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

/* 卡片描述 */
.savings-card-body {
  margin-bottom: 24px;
  text-align: left;
}

.savings-card-description {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.savings-card:hover .savings-card-description {
  background: linear-gradient(45deg, #feca57, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 2.5s ease-in-out infinite;
}

/* 卡片底部链接 */
.savings-card-footer {
  margin: 0;
  text-align: left;
}

.savings-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
  padding: 8px 0;
}

.savings-card-link:hover {
  color: #1d4ed8;
  gap: 12px;
}

.savings-card:hover .savings-card-link {
  color: #ffffff;
}

.savings-card:hover .savings-card-link:hover {
  color: #e0e0e0;
}

.link-text {
  transition: transform 0.2s ease;
}

.link-arrow {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.savings-card-link:hover .link-arrow {
  transform: translateX(4px);
}


/*第三屏样式*/
.section-content-welcome {
  width: 1200px;
  margin: 0 auto;
  position: absolute;
  top: 25%;
}

.welcome-content-title-text {
  font-size: 35px;
  font-weight: bold;
  color: #333;
  text-align: left;
}

.welcome-content-title-img {
  width: 90px;
  height: auto;
}

.welcome-content-body {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 400px;
}

.welcome-content-item {
  width: 18%;
  height: 400px;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.welcome-content-item-1 {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.welcome-content-item-4 {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.welcome-content-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.9) contrast(1.1);
}

.welcome-content-item-zk .welcome-content-image {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.2);
}

.welcome-content-item-suo .welcome-content-image {
  transform: scale(1);
  filter: brightness(0.8) contrast(1.1);
}

.welcome-content-item-suo:hover .welcome-content-image {
  transform: scale(1.02);
  filter: brightness(0.85) contrast(1.15);
}

.welcome-content-item-text {
  position: absolute;
  top: -60%;
  left: 0;
  width: 100%;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}

.welcome-content-item-suo {
  position: relative;
  overflow: hidden;
}

.welcome-content-item-zk {
  width: 45%;
  height: 400px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
  z-index: 10;
}

.welcome-content-item-zk.welcome-content-item-1 {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.welcome-content-item-zk.welcome-content-item-4 {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.welcome-content-item-zk:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: scale(1.03) translateY(-3px);
}


.welcome-content-item-suo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  opacity: 1;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.welcome-content-item-suo:hover::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  opacity: 0.8;
}

.welcome-content-item-suo .welcome-content-item-text {
  position: relative;
  z-index: 10;
}

.welcome-content-item-suo .welcome-content-item-text img {
  position: relative;
  z-index: 10;
}

.welcome-content-item-suo .welcome-content-item-text-title {
  position: relative;
  z-index: 10;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: bold;
}

.welcome-content-item-image {
  width: 40px;
}

.welcome-content-zk-text {
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 60px;
  line-height: 60px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  backdrop-filter: blur(5px);
  font-size: 14px;
  padding: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}

.welcome-content-zk-text-title {
  margin-left: 20px;
  font-size: 18px;
}

.welcome-content-zk-text-view {
  margin-right: 10px;
}

.welcome-content-zk-text-view img {
  width: 20px;
}

/* 平滑的显示/隐藏动画 */
.welcome-content-item .welcome-content-image.hidden {
  opacity: 0;
  transform: scale(0.95);
}

.welcome-content-item .welcome-content-image:not(.hidden) {
  opacity: 1;
  transform: scale(1);
}

.welcome-content-item .welcome-content-item-text.hidden {
  opacity: 0;
  transform: translateY(-10px);
}

.welcome-content-item .welcome-content-item-text:not(.hidden) {
  opacity: 1;
  transform: translateY(0);
}

.welcome-content-item .welcome-content-zk-text.hidden {
  opacity: 0;
  transform: translateY(10px);
}

.welcome-content-item .welcome-content-zk-text:not(.hidden) {
  opacity: 1;
  transform: translateY(0);
}

/*专题专栏*/
.section-content-topics {
  width: 1200px;
  margin: 0 auto;
  position: absolute;
  top: 25%;
  left: calc((100% - 1200px)/2);
}

.topics-content-title {
  width: 150px;
  transform: translateX(-100px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.topics-content-title img {
  width: 60%;
  margin-right: 40%;
}

.topics-content-title-text {
  font-size: 35px;
  text-align: left;
  font-weight: bold;
}

/* 第四屏标题滑入动画 */
.topics-content-title.slide-in {
  transform: translateX(0);
  opacity: 1;
}

.topics-content-title.slide-out {
  transform: translateX(-100px);
  opacity: 0;
}

.topics-content {
  margin-top: 40px;
  width: 50%;
  opacity: 0;
  transform: scale(0.7) translateY(30px);
  transition: all 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.topics-content-item {
  display: flex;
  margin-bottom: 10px;
  width: 100%;
  justify-content: space-between;
}

.topics-content-image {
  width: 49%;
  height: auto;
  display: block;
  opacity: 0;
  transform: scale(0.8) rotateY(15deg);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* 第四屏内容醒目动画效果 */
.topics-content.fade-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.topics-content.fade-out {
  opacity: 0;
  transform: scale(0.7) translateY(30px);
}

/* 图片个别动画效果 */
.topics-content.fade-in .topics-content-image {
  opacity: 1;
  transform: scale(1) rotateY(0deg);
}

.topics-content.fade-out .topics-content-image {
  opacity: 0;
  transform: scale(0.8) rotateY(15deg);
}

/* 图片依次出现的延迟效果 */
.topics-content.fade-in .topics-content-item:nth-child(1) .topics-content-image:nth-child(1) {
  transition-delay: 0.2s;
}

.topics-content.fade-in .topics-content-item:nth-child(1) .topics-content-image:nth-child(2) {
  transition-delay: 0.4s;
}

.topics-content.fade-in .topics-content-item:nth-child(2) .topics-content-image:nth-child(1) {
  transition-delay: 0.6s;
}

.topics-content.fade-in .topics-content-item:nth-child(2) .topics-content-image:nth-child(2) {
  transition-delay: 0.8s;
}

/*第五屏样式*/
.section-content-news {
  position: absolute;
  width: 1200px;
  top: 25%;
  left: calc((100% - 1200px)/2);
  margin: 0 auto;
}


/* 欢迎访问样式 */
.welcome-content {
  text-align: left;
  color: white;
  /* 初始状态：隐藏在屏幕外 */
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 滑入动画状态 */
.welcome-content.slide-in {
  transform: translateX(0);
  opacity: 1;
}

/* 滑出动画状态 */
.welcome-content.slide-out {
  transform: translateX(-100%);
  opacity: 0;
}

/* 子元素动画效果 */
.welcome-content-title {
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

.welcome-content-body {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease-in-out 0.3s;
}

/* 滑入时子元素动画 */
.welcome-content.slide-in .welcome-content-title {
  transform: translateX(0);
  opacity: 1;
}

.welcome-content.slide-in .welcome-content-body {
  opacity: 1;
  transform: scale(1);
}

/* 滑出时子元素动画 */
.welcome-content.slide-out .welcome-content-title {
  transform: translateX(-50px);
  opacity: 0;
  transition-delay: 0s;
}

.welcome-content.slide-out .welcome-content-body {
  opacity: 0;
  transform: scale(0.8);
  transition-delay: 0s;
}

.welcome-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 50px;
  opacity: 0.9;
}

.welcome-features {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  background: rgba(52, 152, 219, 0.1);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-item p {
  opacity: 0.8;
  line-height: 1.5;
}

/* 第四屏背景样式 */
.section-topics {
  background-image: url('/eportal/uiFramework/commonResource/image/2025093008401870972.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* 专题专栏样式 */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.topic-item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.topic-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
}

.topic-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.topic-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.topic-item p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.topic-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.topic-link:hover {
  color: var(--accent-blue);
}


/* 贷款产品网格布局 */
.loan-product-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.loan-product-item {
  flex: 1;
  max-width: 350px;
  display: flex;
  justify-content: center;
}

/* 新闻动态样式 */

.news-item {
  border-bottom: 1px solid #fff;

}


.news-date {
  color: var(--primary-blue);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.news-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-summary {
  color: var(--text-gray);
  line-height: 1.6;
}

/* 关于我们样式 */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
  color: white;
}

.about-info h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 30px;
}

.contact-info {
  space-y: 10px;
}


.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.stat-item {
  text-align: center;
  background: rgba(52, 152, 219, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* 主要内容区域 */
.main-content {
  padding: 0;
  background-color: var(--light-gray);
}

/*通知公告*/
.tongzhi {
  width: 1200px;
  max-width:1200px;
  height: 40px;
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.tongzhi:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
  transform: translateX(-50%) translateY(-2px);
}

.tongzhi-icon {
  width: 20px;
  height: 20px;
  margin: 0 17px 0 17px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  flex-shrink: 0;
}

.tongzhi-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  line-height: 40px;
  margin: 0 20px 0 0;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  opacity: 1;
}

.tongzhi-title::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
}

.tongzhi-content {
  flex: 1;
  height: 40px;
  overflow: hidden;
  position: relative;
  margin-right: 24px;
}

/* 传送带式通知公告轮播样式 */
.notice-carousel {
  width: 100%;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  align-items: center;
  height: 100%;
  animation: conveyor-belt 20s linear infinite;
  width: max-content;
}

.notice-item {
  height: 40px;
  display: block;
  flex-shrink: 0;
  margin-right: 60px;
  min-width: fit-content;
}

.notice-item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  text-decoration: none;
  color: #34495e;
  transition: all 0.3s ease;
  padding: 0 12px;
  border-radius: 6px;
  height: 100%;
  opacity: 1;
  white-space: nowrap;
}

.notice-item a:hover {
  background-color: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

.notice-item .notice-text {
  display: block;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  margin-right: 20px;
  line-height: 1.4;
}

.notice-item .notice-date {
  display: block;
  font-size: 14px;
  color: #333;
  font-weight: 400;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 1;
}

.notice-item a:hover .notice-date {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

/* 传送带动画 */
@keyframes conveyor-belt {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 暂停动画当鼠标悬停在容器上 */
.notice-carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* 通知公告导航按钮样式 */
.notice-button-next,
.notice-button-prev {
  width: 24px;
  height: 24px;
  margin-top: -12px;
  color: #3498db;
  font-size: 12px;
  font-weight: bold;
}

.notice-button-next {
  right: 8px;
}

.notice-button-prev {
  left: 8px;
}

.notice-button-next:after,
.notice-button-prev:after {
  font-size: 12px;
  font-weight: bold;
}

.notice-button-next:hover,
.notice-button-prev:hover {
  color: #2980b9;
}

/* 通知公告分页指示器样式 */
.notice-pagination {
  bottom: -8px;
  text-align: center;
}

.notice-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(52, 152, 219, 0.3);
  opacity: 1;
  margin: 0 3px;
}

.notice-pagination .swiper-pagination-bullet-active {
  background: #3498db;
  transform: scale(1.2);
}


/* 查看更多按钮专业银行风格样式 */
.view-more {
  width: 100px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-right: 10px;
  color: #333333;
  font-weight: 600;
}


.view-more-btn .arrow {
  font-size: 16px;
  font-weight: bold;
  transition: transform 0.3s ease;
  opacity: 1;
}


.content-placeholder {
  padding: var(--spacing-2xl);
  text-align: center;
  background-color: var(--gray-100);
}

.content-placeholder h1 {
  color: var(--primary-blue);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
}

.content-placeholder p {
  color: var(--gray-600);
  font-size: var(--font-size-lg);
}


/* 动画效果 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn var(--transition-slow) ease-out;
}

/* 打印样式 */
@media print {

  .top-bar,
  .search-btn,
  .mobile-menu-btn {
    display: none;
  }

  .main-nav {
    box-shadow: none;
    border-bottom: 1px solid var(--gray-300);
  }

  .nav-menu {
    gap: var(--spacing-md);
  }

  .nav-link {
    color: var(--gray-900) !important;
    background-color: transparent !important;
  }
}

/* 视频淡出过渡，避免视频结束切换时的闪现 */
.banner-video {
  opacity: 1;
  transition: opacity 200ms ease-in;
}

.banner-video.fade-out {
  opacity: 0;
}

/* 通知公告模态框样式 */
.notice-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.notice-modal.show {
  opacity: 1;
  visibility: visible;
}

.notice-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.notice-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.notice-modal-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.notice-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  flex: 1;
  margin-right: 16px;
}

.notice-modal-close {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #666;
  border-radius: 4px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.notice-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.notice-modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.notice-meta {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.notice-date {
  color: #333;
  font-size: 14px;
}

.notice-summary {
  margin-bottom: 16px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 4px solid var(--primary-blue);
}

.notice-summary p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.notice-content {
  color: #333;
  line-height: 1.6;
  font-size: 15px;
}

.notice-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary-blue);
  color: white;
}

.btn-primary:hover {
  background: var(--secondary-blue);
}

.btn-secondary {
  background: #f5f5f5;
  color: #666;
}

.btn-secondary:hover {
  background: #e9e9e9;
  color: #333;
}

/* 提示框样式 */
/* .notice-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

.notice-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-content {
  background: white;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #f39c12;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
}

.toast-content svg {
  flex-shrink: 0;
}

.toast-content span {
  color: #333;
  font-size: 14px;
  line-height: 1.4;
} */

/* 防止页面滚动 */
body.modal-open {
  overflow: hidden;
}

/* ========================================
   推荐内容滑入动画样式
   ======================================== */

/* 推荐内容区域初始状态 */
.section-content-tuijian {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: absolute;
  left: calc((100% - 1200px)/2);
  top: 25%;
  width:1200px;
  max-width:1200px;
}

/* 推荐内容区域激活状态 */
.section-content-tuijian.slide-in-active {
  opacity: 1;
  transform: translateX(0);
}

/* 标题初始状态 */
.module-list-title {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 150px;
}

/* 标题激活状态 */
.module-list-title.slide-in-title {
  opacity: 1;
  transform: translateX(0);
}

/* 标题图标初始状态和动画 */
.module-list-title img {
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 标题图标激活状态 */
.module-list-title img.slide-in-title-img {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* 标题文字初始状态和动画 */
.module-list-title-text {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 标题文字激活状态 */
.module-list-title-text.slide-in-title-text {
  opacity: 1;
  transform: translateX(0);
}

/* ========== 滑出动画样式 ========== */

/* 推荐内容区域滑出状态 */
.section-content-tuijian.slide-out-active {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

/* 标题滑出状态 */
.module-list-title.slide-out-title {
  opacity: 0;
  transform: translateX(-120px);
  transition: all 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

/* 标题图标滑出状态 */
.module-list-title img.slide-out-title-img {
  opacity: 0;
  transform: scale(0.6) translateY(-15px);
  transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

/* 标题文字滑出状态 */
.module-list-title-text.slide-out-title-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

/* 内容区域初始状态 */
.module-list-content {
  opacity: 0;
  transform: translateX(-120px) translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 40px;
  display: flex;
}

/* 内容区域激活状态 */
.module-list-content.slide-in-content {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* 储蓄卡片初始状态 */
.savings-card {
  opacity: 0;
  transform: translateX(-180px) translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 300px;
  height: 500px;
  margin-right: 20px;
  position: relative;
}

.module-list-title-image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* 悬停时显示module-list-title-image */
.savings-card:hover .module-list-title-image {
  opacity: 1;
}

/* 储蓄卡片激活状态 */
.savings-card.slide-in-card {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/* 储蓄卡片悬停效果 */
.savings-card.slide-in-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 内容区域滑出状态 */
.module-list-content.slide-out-content {
  opacity: 0;
  transform: translateX(-150px) translateY(50px);
  transition: all 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

/* 储蓄卡片滑出状态 */
.savings-card.slide-out-card {
  opacity: 0;
  transform: translateX(-200px) translateY(60px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

/* 增强动画效果的辅助样式 */
.section-content-tuijian,
.module-list-title,
.module-list-title img,
.module-list-title-text,
.module-list-content,
.savings-card {
  will-change: transform, opacity;
}

/* 动画完成后移除will-change以优化性能 */
.section-content-tuijian.slide-in-active,
.module-list-title.slide-in-title,
.module-list-title img.slide-in-title-img,
.module-list-title-text.slide-in-title-text,
.module-list-content.slide-in-content,
.savings-card.slide-in-card,
.section-content-tuijian.slide-out-active,
.module-list-title.slide-out-title,
.module-list-title img.slide-out-title-img,
.module-list-title-text.slide-out-title-text,
.module-list-content.slide-out-content,
.savings-card.slide-out-card {
  will-change: auto;
}



/* 用户偏好：减少动画 */
@media (prefers-reduced-motion: reduce) {

  .section-content-tuijian,
  .module-list-title,
  .module-list-title img,
  .module-list-title-text,
  .module-list-content,
  .savings-card {
    transition-duration: 0.2s;
    transform: none !important;
  }

  .section-content-tuijian.slide-in-active,
  .module-list-title.slide-in-title,
  .module-list-title img.slide-in-title-img,
  .module-list-title-text.slide-in-title-text,
  .module-list-content.slide-in-content,
  .savings-card.slide-in-card {
    opacity: 1;
    transform: none !important;
  }

  .section-content-tuijian.slide-out-active,
  .module-list-title.slide-out-title,
  .module-list-title img.slide-out-title-img,
  .module-list-title-text.slide-out-title-text,
  .module-list-content.slide-out-content,
  .savings-card.slide-out-card {
    opacity: 0;
    transform: none !important;
  }
}

.module-list-title {
  transform: translateX(-40px);
}

.module-list-content {
  transform: translateX(-60px);
}

.savings-card {
  transform: translateX(-80px) translateY(10px);
}
}

/* 减少动画效果（用户偏好设置） */
@media (prefers-reduced-motion: reduce) {

  .section-content-tuijian,
  .module-list-title,
  .module-list-content,
  .savings-card {
    transition: opacity 0.3s ease;
    transform: none;
  }

  .section-content-tuijian.slide-in-active,
  .module-list-title.slide-in-title,
  .module-list-content.slide-in-content,
  .savings-card.slide-in-card {
    opacity: 1;
  }
}

/* 动态变色效果关键帧 */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* 新闻内容模块切换样式 */
.news-content:not(.active) {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  margin: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease-in-out;
  pointer-events: none;
}

.news-content.active {
  opacity: 1;
  visibility: visible;
  height: auto;
  margin-top: 40px;
  transform: translateY(0);
  transition: all 0.4s ease-in-out;
  pointer-events: auto;
}

/* 导航项活跃状态样式 */
.nav-item {
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-item.active {
  color: #14439a !important;
  font-weight: bold;
}


/* 新闻模块滑入动画样式 */
.section-news .news-content-title,
.section-news .news-featured {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  text-align:left;
}

.section-news .news-nav,
.section-news .news-list-container {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

/* 动画激活状态 */
.section-news .news-content-title.animate-in,
.section-news .news-featured.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.section-news .news-nav.animate-in,
.section-news .news-list-container.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* 为不同元素添加延迟，创造层次感 */
.section-news .news-content-title.animate-in {
  transition-delay: 0.1s;
}

.section-news .news-featured.animate-in {
  transition-delay: 0.2s;
}

.section-news .news-nav.animate-in {
  transition-delay: 0.3s;
}

.section-news .news-list-container.animate-in {
  transition-delay: 0.4s;
}

/* 新闻模块滑出动画样式 */
.section-news .news-content-title.animate-out,
.section-news .news-featured.animate-out {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-news .news-nav.animate-out,
.section-news .news-list-container.animate-out {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 时间轴轮播样式 */
.timeline-swiper-container {
  position: relative;
  width: 100%;
  height: 500px;
  padding: 60px 0;
}

/* 自定义导航按钮 */
.timeline-nav-prev,
.timeline-nav-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-nav-prev {
  left: calc((100% - 1200px)/2);
}

.timeline-nav-next {
  right: calc((100% - 1200px)/2);
}

.timeline-nav-prev img,
.timeline-nav-next img {
  width: 26px;
  height: 46px;
  transition: all 0.3s ease;
}

.timeline-nav-prev:hover img,
.timeline-nav-next:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Swiper容器 */
.timeline-swiper {
  width: 1200px;
  height: 450px;
  padding: 0;
  margin: 0 auto;
  overflow: hidden; /* 确保内容可见 */
}

.timeline-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  flex-shrink: 0; /* 防止幻灯片收缩 */
  width: auto; /* 自动宽度 */
  flex-direction: column;
}

/* 时间轴卡片 */
.timeline-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  transform: scale(1);
  opacity: 0.7;
  width: 280px;
  min-width: 280px; /* 确保最小宽度 */
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box; /* 包含边框和内边距 */
}

/* 中间高亮效果 */
.timeline-slide.swiper-slide-active .timeline-card {
  opacity: 1;
  width: 320px;
  height: 320px;
}

.timeline-slide.swiper-slide-prev .timeline-card,
.timeline-slide.swiper-slide-next .timeline-card {
  transform: scale(0.9);
  opacity: 0.8;
}

/* 时间轴图片 */
.timeline-image {
  width: 100%;
  height: 150px;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  margin-bottom: 20px;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.timeline-slide.swiper-slide-active .timeline-image {
  height: 165px;
}


/* 时间轴内容 */
.timeline-content {
  flex: 1;
  text-align: left;
}

.timeline-content img {
  width: 30px;
  height: auto;
  margin-left: 20px;
}

.timeline-date {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  text-align: center;
  padding: 8px 16px;
  width: 280px;
  box-sizing: border-box;
}

.timeline-slide.swiper-slide-active .timeline-date {
  color: #14439a;
  font-size: 2rem;
  width: 280px;
  margin-top: 40px;
}





@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}



.timeline-title {
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
  transition: all 0.3s ease;
  text-align: left;
  padding: 0 20px;
}

.timeline-slide.swiper-slide-active .timeline-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #14439a;
}

/* 圆弧线和分页器容器 */
.timeline-arc-container {
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
}

/* 圆弧线图片 */
.timeline-arc {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 120px;
  background-image: url('/eportal/uiFramework/commonResource/image/2025093009543241526.png');
  /* background-size: contain; */
  background-position: center bottom;
  background-repeat: no-repeat;
}

.timeline-arc::before {
  display: none;
}



@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* 固定的3个点样式 */
.timeline-fixed-points {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}

.fixed-point {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 第一个点特殊样式：向下向左平移，增加宽度，颜色为f7ae00 */
.fixed-point:first-child {
  transform: translateY(64px) translateX(180px);
}

.fixed-point:first-child .point-dot {
  width: 18px;
  height: 18px;
  background: #f7ae00;
  border: none;
  box-shadow: 0 2px 4px rgba(247, 174, 0, 0.3);
}

/* 中间点位置调整 */
.fixed-point.active {
  transform: translateY(95px);
}

/* 最后一个点位置调整：向下向右平移 */
.fixed-point:last-child {
  transform: translateY(64px) translateX(-180px);
}

.fixed-point:last-child .point-dot {
  width: 18px;
  height: 18px;
  background: #f7ae00;
  border: none;
  box-shadow: 0 2px 4px rgba(247, 174, 0, 0.3);
}

.fixed-point .point-dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* 中间点高亮状态 */
.fixed-point.active .point-dot {
  width: 30px;
  height: 30px;
  background: #14439a;
  border: none;
  box-shadow: 0 4px 8px rgba(20, 67, 154, 0.3);
  animation: pulse 2s infinite;
  position: relative;
}

/* 中间点内部的金黄色小圆 */
.fixed-point.active .point-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #f7ae00;
  border-radius: 50%;
}

/* 脉冲动画 */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 67, 154, 0.7), 0 4px 8px rgba(20, 67, 154, 0.3);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(20, 67, 154, 0.3), 0 4px 8px rgba(20, 67, 154, 0.3);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(20, 67, 154, 0.7), 0 4px 8px rgba(20, 67, 154, 0.3);
  }
}


/* 关于我们部分标题块滑入动画 */
.section-about .about-content-title {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease;
}

.section-about.animate-in .about-content-title {
  opacity: 1;
  transform: translateX(0);
}

/* 标题块滑出动画 */
.section-about.animate-out .about-content-title {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.6s ease;
}

/* 时间轴轮播容器从上方滑入动画 */
.section-about .timeline-swiper {
  opacity: 0;
  transform: translateY(-80px);
  transition: all 1s ease 0.3s;
  /* 延迟0.3秒，在标题动画后执行 */
}

.section-about.animate-in .timeline-swiper {
  opacity: 1;
  transform: translateY(0);
}

/* 时间轴轮播容器滑出动画 */
.section-about.animate-out .timeline-swiper {
  opacity: 0;
  transform: translateY(-80px);
  transition: all 0.6s ease;
}

/* 时间轴圆弧容器从下方滑入动画 */
.section-about .timeline-arc-container {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s ease 0.6s;
  /* 延迟0.6秒，在轮播容器动画后执行 */
}

.section-about.animate-in .timeline-arc-container {
  opacity: 1;
  transform: translateY(0);
}

/* 时间轴圆弧容器滑出动画 */
.section-about.animate-out .timeline-arc-container {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.6s ease 0.2s;
  /* 延迟0.2秒，形成滑出层次 */
}











/* ==================== 第六屏特殊样式 - 支持内容溢出 ==================== */
.swiper-container .swiper-wrapper .section-about.swiper-slide,
.swiper .swiper-wrapper .section-about.swiper-slide {
  height: auto !important;
  min-height: 100vh !important;
  max-height: none !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

/* 强制覆盖Swiper的默认高度设置 */
.swiper-slide.section-about {
  height: auto !important;
  min-height: 100vh !important;
}

/* 优化第六屏的滚动体验 */
.section-about.swiper-slide::-webkit-scrollbar {
  width: 8px;
}

.section-about.swiper-slide::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.section-about.swiper-slide::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.section-about.swiper-slide::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}





/* 贷款产品轮播容器 */
.loan-product-list {
  position: relative;
  width: 50%;
  overflow: hidden;
  opacity: 0;
  transform: scale(1) translateY(30px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 轮播图淡入动画 */
.loan-product-list.fade-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.loan-product-list.fade-out {
  opacity: 0;
  transform: scale(0.9) translateY(30px);
}

/* 贷款产品轮播容器 - 中间高亮布局 */
.loan-product-swiper {
  position: relative;
  width: 100%;
  max-width: 900px; /* 限制最大宽度，确保严格控制显示区域 */
  margin: 0 auto; /* 居中显示 */
  height: 400px; /* 适当高度容纳高亮效果 */
  overflow: hidden; /* 隐藏超出的元素，确保只显示3个 */
  transform: translateZ(0);
  will-change: transform;
  /* 确保拖动功能正常 */
  touch-action: pan-y;
  user-select: none;
  perspective: 1200px; /* 3D透视效果 */
  padding: 20px 0; /* 上下留白确保阴影显示完整 */
}

/* Swiper滑块 - 多个产品显示，单个切换 */
.loan-product-swiper .swiper-slide {
  display: flex;
  align-items: center;
  width: 100%;
}

/* 贷款产品卡片样式 - 堆叠布局 */
.loan-product-card {
  margin: 0;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  /* 性能优化 */
  will-change: transform, opacity, z-index;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  /* 确保不阻止拖动 */
  pointer-events: auto;
  user-select: none;
  
  /* 默认样式 - 非活动状态 */
  opacity: 1; /* 改为1，让所有图片都明亮显示 */
  z-index: 1;
  /* 添加底部阴影以凸显3D效果 */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

/* 活动状态的贷款产品卡片 - 简化版本，只保留缩放 */
.loan-product-card.active {
  transform: scale(1.15) translateY(-8px);
  opacity: 1;
  z-index: 10;
  position: relative;
  transition: all 0.15s ease;
  /* 增强活动状态的阴影效果 */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 10px 20px rgba(0, 0, 0, 0.15), 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* 贷款产品图片 */
.loan-product-image {
  width: 100%;
  height: auto; /* 再次增加高度到360px */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius:4px;
}

.loan-product-image img {
  width: 100%; /* 进一步增加图片宽度占比 */
  height: 100%;
  max-width: 95%;
  max-height: 100%;
  object-fit: contain; /* 保持图片比例，完整显示 */
  object-position: center;
  transition: all 0.3s ease;
}

.loan-product-card.active .loan-product-image img {
  transform: scale(1.1); /* 简单的图片放大效果 */
  transition: all 0.3s ease;
}
/* 分页器样式 */
.loan-product-swiper .swiper-pagination {
  margin-top: 150px !important;
  text-align: center !important;
  justify-content: center;
}

.loan-product-swiper .swiper-pagination-bullet {
  width: 30px !important;
  height: 3px !important;
  background: #0d4197 !important;
  border: none !important;
  border-radius: 3px !important;
  opacity: 1 !important;
  margin: 0 4px !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

.loan-product-swiper .swiper-pagination-bullet-active {
  background: #fbbf24 !important;
  width: 40px !important;
  height: 3px !important;
  border-radius: 3px !important;
}