.navgationDiv{display:none;}
.banner{
  width: 100%;
}
.banner img{
  width: 100%;
  height: auto;
}
.dingwei{
  width: 100%;
  padding: 15px 0;
}

.container {
  width: 80%;
  margin: 0 auto;
  max-width: 1200px;
  text-align: right;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  color: #666;
}

.home-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.breadcrumb-text {
  color: #0066cc;
  margin-right: 5px;
}

.breadcrumb-link {
  color: #666;
  text-decoration: none;
  margin-right: 5px;
}

.breadcrumb-link:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #999;
  margin: 0 5px;
}

.breadcrumb-current {
  color: #333;
  font-weight: normal;
}

/* 推荐产品模块样式 */
.recommended-products {
  padding: 60px 0;
  background-color: #fff;
}

.section-header {
  display: flex;
  align-items: baseline;
  margin-bottom: 40px;
  gap: 12px;
  position: relative;
}

.section-icon {
  width: 40px;
  height: 10px;
  margin-left: 10px;
  /* 使用相对定位微调图片位置 */
  position: relative;
  top: -2px;
  flex-shrink: 0;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.2;
  flex-shrink: 0;
}

.section-subtitle {
  font-size: 14px;
  color: #999;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  /* 使用相对定位微调英文副标题位置 */
  position: relative;
  top: -2px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.product-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 30px 20px;
  min-height: 280px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  cursor: pointer;
}

.product-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
  line-height: 1.4;
  text-align: center;
  flex-shrink: 0;
}

.product-rate {
  margin-bottom: 20px;
  text-align: center;
  flex-shrink: 0;
}

.rate-value {
  font-size: 40px;
  font-weight: 600;
  color: #ff8c00;
  line-height: 1;
}

.product-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 15px;
  flex-shrink: 0;
  text-align: center;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 20px;
}

.info-icon {
  width: 16px;
  height: 16px;
}

.info-text {
  font-size: 12px;
  color: #999;
}

.product-details {
  margin-bottom: auto;
  flex-grow: 1;
  text-align: center;
}

.detail-item {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  margin-bottom: 12px;
}

.detail-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  padding-right: 4px;
}

.detail-unit {
  font-size: 12px;
  color: #666;
  padding-right: 12px;
  position: relative;
}



.detail-value {
  font-size: 14px;
  color: #666;
  padding: 0 12px;
  position: relative;
}

.detail-value::before {
  content: '|';
  position: absolute;
  left: 0;
  color: #ddd;
  font-weight: normal;
}

.product-action {
  text-align: center;
  margin-top: auto;
  padding-top: 30px;
  flex-shrink: 0;
}

.btn-more {
  background: none;
  color: #666666;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: none;
  width: auto;
  justify-content: center;
}

.btn-more:hover {
  color: #333333;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-more:hover .arrow-icon {
  transform: translateX(2px);
}

/* 储蓄存款模块样式 */
.savings-section {
  padding: 80px 0;
  background: #ffffff;
}

/* .savings-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
} */

/* 标题样式 */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  color: #333;
}

.title-text {
  color: #333;
}

.title-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #f39c12, #e67e22);
  border-radius: 2px;
}

.title-english {
  font-size: 14px;
  color: #999;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* 储蓄卡片网格 */
.savings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
}

/* 储蓄卡片样式 */
.savings-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.savings-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* 储蓄卡片图片区域 */
.savings-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

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

/* 储蓄卡片叠加层 */
.savings-card-overlay {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  background: none;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: auto;
  max-width: 200px;
}

.savings-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
  line-height: 1.4;
  text-shadow: none;
}

/* 储蓄按钮样式 */
.savings-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(243, 156, 18, 0.3);
}

.savings-btn:hover {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.savings-btn .btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.savings-btn:hover .btn-arrow {
  transform: translateX(3px);
}



/* 个人消费贷款模块样式 */
.loan-section {
  background-image: url('/uiFramework/commonResource/image/2025101816365411138.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  padding: 80px 0;
  position: relative;
}

.loan-cards-container {
  display: flex;
  gap: 0;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.loan-card {
  position: relative;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 默认状态：所有卡片缩略 */
.loan-card {
  flex: 1.25;
}
/* 使用普通<img>作为卡片背景时的容器与图片样式 */
.loan-card .card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* 置于遮罩与内容之下 */
}

.loan-card .card-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* active状态：展开效果 */
.loan-card.active {
  flex: 2.5 !important;
}

/* 卡片遮罩层 */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.6s ease;
  z-index: 1;
}

/* 展开状态的遮罩层 - 从#2147a2到白色的渐变 */
.loan-card.active .card-overlay {
  background: linear-gradient(to right, 
    rgba(33, 71, 162, 1) 0%, 
    rgba(33, 71, 162, 0.5) 50%, 
    rgba(33, 71, 162, 0) 100%);
  height: 100%;
  width: 50%;
}

/* 未展开状态的遮罩层 - 白色渐变遮罩 */
.loan-card:not(.active) .card-overlay {
  background: linear-gradient(to right, 
    rgba(255, 255, 255, 1) 0%, 
    rgba(255, 255, 255, 0.8) 30%, 
    rgba(255, 255, 255, 0) 100%);
  height: 100%;
  width: 100%;
}

/* 展开状态的卡片内容 */
.card-content {
  color: white;
  transform: translateY(0);
  transition: all 0.6s ease;
  opacity: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.loan-card-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 18px 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color:#fff;
}

.loan-card-description {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 28px 0;
  opacity: 0.95;
  font-weight: 400;
  text-align: left;
}

/* 查看详情按钮 */
.loan-btn {
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
  border: none;
  color: white;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.loan-btn:hover {
  
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.loan-btn .arrow-icon {
  width: 18px;
  height: 12px;
  transition: transform 0.3s ease;
}

.loan-btn:hover .arrow-icon {
  transform: translateX(5px);
}

/* 缩略状态下隐藏详细内容 */
.loan-card:not(.active) .card-content {
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
}

/* 缩略状态的图标和标题 */
.card-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  color: #333;
  z-index: 2;
}

.loan-card:not(.active) .card-thumbnail {
  opacity: 1;
  transform: translateY(0);
}

.loan-card.active .card-thumbnail {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.thumbnail-icon {
  width: 48px;
  height: 48px;
  margin: 0 0 16px 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  display: block;
}

.thumbnail-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  color: #2d3748;
  max-width: 120px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  text-align: left;
  display: block;
}

/* .loan-section .container {
  max-width: 1200px;
  margin: 0 auto;
} */

/* 分期产品展示区域样式 */
.installment-products {
  padding: 60px 0;
}

.installment-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.installment-cards {
  width:100%;
  margin: 0 auto;
}

.installment-card {
  flex: 1;
  max-width: 1200px;
  height: 280px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 40px;
}

.installment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.card-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 40px;
  background: none;
}

.card-text-content {
  max-width: 550px;
}

/* 右侧文本布局的卡片 */
.card-right-text .card-content-wrapper {
  justify-content: flex-end;
}

.card-right-text .card-text-content {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-right-text .installment-card-title {
  text-align: left;
  align-self: flex-start;
}

.card-right-text .installment-card-description {
  text-align: right;
  align-self: flex-end;
}

.card-right-text .installment-card-btn {
  align-self: flex-start;
}

.installment-card-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.installment-card-description {
  font-size: 16px;
  color: #999999;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.installment-card-btn {
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(237, 137, 54, 0.3);
  text-decoration: none;
}

.installment-card-btn:hover {
  background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(237, 137, 54, 0.4);
}

.btn-arrow {
  width: 18px;
  height: 12px;
  transition: transform 0.3s ease;
}

.installment-card-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* 银行卡模块样式 */
.bank-cards-section {
  padding: 20px 0;
}


/* 服务网格布局 */
.services-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

/* 服务卡片 */
.service-card {
  flex: 1;
  max-width: 32%;
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  /* 添加底部阴影 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  cursor: pointer;
  /* 悬停时增强阴影效果 */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-title-bar {
  background: #f7ae00 !important;
  transition: background-color 0.3s ease;
}

.service-card:hover .service-card-title {
  color: white;
  transition: color 0.3s ease;
}

/* 链接状态样式 */
.service-card:link,
.service-card:visited,
.service-card:active {
  text-decoration: none;
  color: inherit;
}

.service-card:focus {
  outline: 2px solid #f7ae00;
  outline-offset: 2px;
}

/* 服务图片容器 */
.service-image-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 标题栏 */
.service-title-bar {
  width: 100%;
  background: white;
  padding: 30px 20px;
  text-align: center;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.service-title-bar.yellow-bg {
  background: #f7ae00;
}

.service-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  font-family: "Microsoft YaHei", sans-serif;
  transition: color 0.3s ease;
}

.service-title-bar.yellow-bg .service-card-title {
  color: white;
}


/*移动端样式适配*/


/* ========================================
   个人业务页面移动端样式
   Mobile Styles for Personal Banking Page
======================================== */

/* 基础移动端样式 - 适用于所有移动设备 */
@media screen and (max-width: 768px) {
   
}

/* ========================================
   超小屏幕设备 (小于 480px)
   Extra Small Devices (phones, less than 480px)
======================================== */
@media screen and (max-width: 479px) {
    
}

/* ========================================
   小屏幕设备 (480px - 767px)
   Small Devices (landscape phones, 480px and up)
======================================== */
@media screen and (min-width: 480px) and (max-width: 767px) {
    
}

/* ========================================
   中等屏幕设备 (768px - 991px)
   Medium Devices (tablets, 768px and up)
======================================== */
@media screen and (min-width: 768px) and (max-width: 991px) {
   
}

/* ========================================
   横屏手机专用样式
   Landscape Phone Specific Styles
======================================== */
@media screen and (max-height: 480px) and (orientation: landscape) {
   
}

/* ========================================
   高分辨率设备适配
   High Resolution Devices (Retina)
======================================== */
@media screen and (-webkit-min-device-pixel-ratio: 2),
       screen and (min-resolution: 192dpi) {
   
}

/* ========================================
   iPhone 专用样式
   iPhone Specific Styles
======================================== */

/* iPhone SE, 5s, 5c, 5 (320px) */
@media screen and (max-width: 320px) {
    
}

/* iPhone 12 mini, 13 mini (375px) */
@media screen and (min-width: 321px) and (max-width: 375px) {
    
}

/* iPhone 12, 12 Pro, 13, 13 Pro (390px) */
@media screen and (min-width: 376px) and (max-width: 390px) {
    
}

/* iPhone 12 Pro Max, 13 Pro Max (428px) */
@media screen and (min-width: 391px) and (max-width: 428px) {
   
}

/* ========================================
   Android 设备专用样式
   Android Specific Styles
======================================== */

/* 小屏 Android 设备 */
@media screen and (min-width: 360px) and (max-width: 414px) {
    /* Android 设备常见尺寸适配 */
    .android-specific {
        /* Android 特定样式 */
    }
}

/* ========================================
   触摸设备优化
   Touch Device Optimizations
======================================== */
@media (hover: none) and (pointer: coarse) {
    /* 触摸设备专用样式 */
    .btn:hover {
        /* 移除hover效果，使用active代替 */
        background-color: initial;
    }
    
    .btn:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }
    
  
}

/* ========================================
   减少动画偏好支持
   Reduced Motion Support
======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ========================================
   推荐产品模块移动端样式
   Recommended Products Mobile Styles
======================================== */

/* 基础移动端样式 - 推荐产品 */
@media screen and (max-width: 768px) {
    .container{width:90% !important;}
    .recommended-products {
        padding: 30px 0;
    }
    
    /* 标题部分优化 - 保持PC端布局但调整字体大小 */
    .section-header {
        display: flex;
        align-items: baseline;
        margin-bottom: 30px;
        gap: 8px;
        position: relative;
        justify-content: flex-start;
    }
    
    .section-title {
        font-size: 20px;
        font-weight: 600;
        color: #333;
        margin: 0;
        line-height: 1.2;
        flex-shrink: 0;
    }
    
    .section-icon {
        width: 25px;
        height: 6px;
        margin-left: 8px;
        position: relative;
        top: -2px;
        flex-shrink: 0;
    }
    
    .section-subtitle {
        font-size: 10px;
        color: #999;
        font-weight: normal;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 1.2;
        position: relative;
        top: -2px;
    }
    
    /* 产品网格 - 改为竖向排列 */
    .products-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        grid-template-columns: none;
    }
    
    /* 产品卡片移动端优化 */
    .product-card {
        padding: 20px 15px;
        min-height: auto;
        margin-bottom: 0;
    }
    
    .product-title {
        font-size: 18px;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .product-rate {
        margin-bottom: 15px;
    }
    
    .rate-value {
        font-size: 28px;
    }
    
    .product-info {
        margin-bottom: 12px;
        padding-bottom: 15px;
    }
    
    .info-text {
        font-size: 11px;
    }
    
    .info-icon {
        width: 14px;
        height: 14px;
    }
    
    .product-details {
        margin-bottom: 15px;
    }
    
    .detail-item {
        margin-bottom: 8px;
    }
    
    .detail-label {
        font-size: 14px;
    }
    
    .detail-unit {
        font-size: 11px;
    }
    
    .detail-value {
        font-size: 12px;
    }
    
    .product-action {
        padding-top: 20px;
    }
    
    .btn-more {
        font-size: 14px;
    }
    
    .arrow-icon {
        width: 14px;
        height: 14px;
    }
}

/* 超小屏幕设备优化 */
@media screen and (max-width: 479px) {
    .recommended-products {
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .section-icon {
        width: 20px;
        height: 5px;
        margin-left: 6px;
    }
    
    .section-subtitle {
        font-size: 9px;
    }
    
    .products-grid {
        gap: 15px;
    }
    
    .product-card {
        padding: 15px 12px;
    }
    
    .product-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .rate-value {
        font-size: 24px;
    }
    
    .product-info {
        margin-bottom: 10px;
        padding-bottom: 12px;
    }
    
    .info-text {
        font-size: 10px;
    }
    
    .info-icon {
        width: 12px;
        height: 12px;
    }
    
    .detail-label {
        font-size: 13px;
    }
    
    .detail-unit {
        font-size: 10px;
    }
    
    .detail-value {
        font-size: 11px;
    }
    
    .btn-more {
        font-size: 13px;
    }
    
    .arrow-icon {
        width: 12px;
        height: 12px;
    }
}

/* 小屏幕设备 (480px - 767px) */
@media screen and (min-width: 480px) and (max-width: 767px) {
    .recommended-products {
        padding: 35px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-icon {
        width: 28px;
        height: 7px;
        margin-left: 10px;
    }
    
    .section-subtitle {
        font-size: 11px;
    }
    
    .products-grid {
        gap: 25px;
    }
    
    .product-card {
        padding: 25px 18px;
    }
    
    .product-title {
        font-size: 19px;
        margin-bottom: 18px;
    }
    
    .rate-value {
        font-size: 32px;
    }
}


/* ========================================
   储蓄存款模块移动端样式
   Savings Section Mobile Styles
======================================== */

/* 基础移动端样式 - 储蓄存款 */
@media screen and (max-width: 768px) {
    .savings-section {
        padding: 40px 0;
    }
    
    /* 储蓄存款网格 - 改为竖向排列 */
    .savings-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
        grid-template-columns: none;
    }
    
    /* 储蓄卡片移动端优化 */
    .savings-card {
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        margin-bottom: 0;
    }
    
    .savings-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    }
    
    /* 储蓄卡片图片区域移动端适配 */
    .savings-card-image {
        height: 200px;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }
    
    .savings-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        padding: 0;
        margin: 0;
    }
    
    /* 储蓄卡片叠加层移动端优化 */
    .savings-card-overlay {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        max-width: calc(100% - 40px);
    }
    
    .savings-card-title {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin: 0 0 12px 0;
        line-height: 1.3;
    }
    
    /* 储蓄按钮移动端优化 */
    .savings-btn {
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 20px;
        gap: 6px;
        box-shadow: 0 2px 8px rgba(243, 156, 18, 0.25);
        min-height: 44px; /* 触摸友好的最小高度 */
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .savings-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 3px 12px rgba(243, 156, 18, 0.35);
    }
    
    .savings-btn .btn-arrow {
        width: 16px;
        height: 16px;
    }
    
    .savings-btn:hover .btn-arrow {
        transform: translateX(2px);
    }
}

/* 超小屏幕设备优化 - 储蓄存款 */
@media screen and (max-width: 479px) {
    .savings-section {
        padding: 30px 0;
    }
    
    .savings-grid {
        gap: 20px;
    }
    
    .savings-card {
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }
    
    .savings-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .savings-card-image {
        height: 180px;
    }
    
    .savings-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        padding: 0;
        margin: 0;
    }
    
    .savings-card-overlay {
        left: 15px;
        max-width: calc(100% - 30px);
    }
    
    .savings-card-title {
        font-size: 16px;
        margin: 0 0 10px 0;
    }
    
    .savings-btn {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 18px;
        gap: 5px;
        min-height: 40px;
    }
    
    .savings-btn .btn-arrow {
        width: 14px;
        height: 14px;
    }
}

/* 小屏幕设备 (480px - 767px) - 储蓄存款 */
@media screen and (min-width: 480px) and (max-width: 767px) {
    .savings-section {
        padding: 45px 0;
    }
    
    .savings-grid {
        gap: 30px;
    }
    
    .savings-card-image {
        height: 220px;
    }
    
    .savings-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        padding: 0;
        margin: 0;
    }
    
    .savings-card-overlay {
        left: 25px;
        max-width: calc(100% - 50px);
    }
    
    .savings-card-title {
        font-size: 19px;
        margin: 0 0 15px 0;
    }
    
    .savings-btn {
        padding: 12px 22px;
        font-size: 14px;
        border-radius: 22px;
        gap: 7px;
        min-height: 46px;
    }
    
    .savings-btn .btn-arrow {
        width: 18px;
        height: 18px;
    }
}

/* 平板设备横屏优化 - 储蓄存款 */
@media screen and (min-width: 768px) and (max-width: 991px) and (orientation: landscape) {
    .savings-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .savings-card-image {
        height: 240px;
    }
}

/* 触摸设备优化 - 储蓄存款 */
@media (hover: none) and (pointer: coarse) {
    .savings-card:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .savings-btn:hover {
        transform: none;
        background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
        box-shadow: 0 2px 10px rgba(243, 156, 18, 0.3);
    }
    
    .savings-btn:active {
        transform: scale(0.98);
        background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    }
    
    .savings-btn:hover .btn-arrow {
        transform: none;
    }
}


/* ========================================
   个人消费贷款模块移动端样式
   Loan Section Mobile Styles
======================================== */

/* 基础移动端样式 - 个人消费贷款 */
@media screen and (max-width: 768px) {
    .loan-section {
        padding: 40px 0;
        min-height: auto;
        background-image: none;
        background: #f8f9fa;
    }
    
    /* 贷款卡片容器 - 改为竖向排列 */
    .loan-cards-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        height: auto;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
    }
    
    /* 贷款卡片移动端优化 - 所有卡片都为展开状态 */
    .loan-card {
        position: relative;
        height: auto;
        min-height: 300px;
        flex: none;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        cursor: default;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .loan-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    }
    
    /* 移动端所有卡片都显示为展开状态 */
    .loan-card,
    .loan-card.active,
    .loan-card:not(.active) {
        flex: none;
    }
    
    /* 卡片遮罩层移动端优化 */
    .card-overlay {
        background: linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.3) 0%, 
            rgba(0, 0, 0, 0.6) 100%);
        height: 100%;
        width: 100%;
        z-index: 1;
    }
    
    .loan-card.active .card-overlay,
    .loan-card:not(.active) .card-overlay {
        background: linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.3) 0%, 
            rgba(0, 0, 0, 0.6) 100%);
        height: 100%;
        width: 100%;
    }
    
    /* 卡片内容移动端优化 - 始终显示 */
    .card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 25px 20px;
        z-index: 2;
        color: white;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .loan-card:not(.active) .card-content {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .loan-card-title {
        font-size: 20px;
        font-weight: 600;
        margin: 0 0 12px 0;
        line-height: 1.3;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .loan-card-description {
        font-size: 14px;
        line-height: 1.5;
        margin: 0 0 20px 0;
        opacity: 0.95;
        color: white;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* 贷款按钮移动端优化 */
    .loan-btn {
        background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
        padding: 12px 24px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        color: white;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 3px 12px rgba(247, 174, 0, 0.3);
        min-height: 44px;
        justify-content: center;
    }
    
    .loan-btn:hover {
        background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(247, 174, 0, 0.4);
    }
    
    .loan-btn .arrow-icon {
        width: 16px;
        height: 12px;
        filter: brightness(0) invert(1);
    }
    
    .loan-btn:hover .arrow-icon {
        transform: translateX(3px);
    }
    
    /* 缩略状态图标和标题在移动端隐藏 */
    .card-thumbnail {
        opacity: 0;
        pointer-events: none;
        display: none;
    }
    
    .loan-card:not(.active) .card-thumbnail {
        opacity: 0;
        pointer-events: none;
        display: none;
    }
}

/* 超小屏幕设备优化 - 个人消费贷款 */
@media screen and (max-width: 479px) {
    .loan-section {
        padding: 30px 0;
    }
    
    .loan-cards-container {
        gap: 20px;
    }
    
    .loan-card {
        min-height: 280px;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    }
    
    .loan-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    }
    
    .card-content {
        padding: 20px 15px;
    }
    
    .loan-card-title {
        font-size: 18px;
        margin: 0 0 10px 0;
    }
    
    .loan-card-description {
        font-size: 13px;
        margin: 0 0 15px 0;
        -webkit-line-clamp: 2;
    }
    
    .loan-btn {
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 20px;
        gap: 6px;
        min-height: 40px;
    }
    
    .loan-btn .arrow-icon {
        width: 14px;
        height: 10px;
    }
}

/* 小屏幕设备 (480px - 767px) - 个人消费贷款 */
@media screen and (min-width: 480px) and (max-width: 767px) {
    .loan-section {
        padding: 45px 0;
    }
    
    .loan-cards-container {
        gap: 30px;
    }
    
    .loan-card {
        min-height: 320px;
    }
    
    .card-content {
        padding: 30px 25px;
    }
    
    .loan-card-title {
        font-size: 22px;
        margin: 0 0 15px 0;
    }
    
    .loan-card-description {
        font-size: 15px;
        margin: 0 0 25px 0;
        -webkit-line-clamp: 3;
    }
    
    .loan-btn {
        padding: 14px 28px;
        font-size: 15px;
        border-radius: 28px;
        gap: 10px;
        min-height: 48px;
    }
    
    .loan-btn .arrow-icon {
        width: 18px;
        height: 12px;
    }
}

/* 平板设备横屏优化 - 个人消费贷款 */
@media screen and (min-width: 768px) and (max-width: 991px) and (orientation: landscape) {
    .loan-cards-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        height: auto;
    }
    
    .loan-card {
        min-height: 280px;
    }
}

/* 触摸设备优化 - 个人消费贷款 */
@media (hover: none) and (pointer: coarse) {
    .loan-card:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .loan-btn:hover {
        transform: none;
        background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
        box-shadow: 0 3px 12px rgba(247, 174, 0, 0.3);
    }
    
    .loan-btn:active {
        transform: scale(0.98);
        background:linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
    }
    
    .loan-btn:hover .arrow-icon {
        transform: none;
    }
}


/* ========================================
   分期付款产品模块移动端样式
   Installment Products Mobile Styles
======================================== */

/* 基础移动端样式 - 分期付款产品 */
@media screen and (max-width: 768px) {
    .installment-products {
        padding: 40px 0;
    }
    
    .installment-container {
        width: 90%;
        padding: 0 20px;
    }
    
    /* 分期付款卡片容器 - 改为竖向排列 */
    .installment-cards {
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 100%;
        margin: 0;
    }
    
    /* 分期付款卡片移动端优化 */
    .installment-card {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 300px;
        margin-bottom: 0;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .installment-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    }
    
    /* 卡片背景图片移动端优化 */
    .card-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    .card-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        padding: 0;
        margin: 0;
    }
    
    /* 卡片内容包装器移动端优化 */
    .card-content-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 25px 20px;
        background: linear-gradient(to top, 
            rgba(0, 0, 0, 0.7) 0%, 
            rgba(0, 0, 0, 0.3) 50%, 
            rgba(0, 0, 0, 0.1) 100%);
    }
    
    /* 右侧文本布局在移动端统一为左对齐 */
    .card-right-text .card-content-wrapper {
        justify-content: flex-start;
        align-items: flex-end;
    }
    
    /* 卡片文本内容移动端优化 */
    .card-text-content {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .card-right-text .card-text-content {
        max-width: 100%;
        align-items: flex-start;
    }
    
    /* 分期付款卡片标题移动端优化 */
    .installment-card-title {
        font-size: 20px;
        font-weight: 600;
        color: white;
        margin: 0 0 12px 0;
        line-height: 1.3;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        text-align: left;
    }
    
    .card-right-text .installment-card-title {
        text-align: left;
        align-self: flex-start;
    }
    
    /* 分期付款卡片描述移动端优化 */
    .installment-card-description {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.5;
        margin: 0 0 20px 0;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: left;
    }
    
    .card-right-text .installment-card-description {
        text-align: left;
        align-self: flex-start;
    }
    
    /* 分期付款按钮移动端优化 */
    .installment-card-btn {
        background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
        color: white;
        padding: 12px 24px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 3px 12px rgba(237, 137, 54, 0.3);
        min-height: 44px;
        justify-content: center;
        align-self: flex-start;
    }
    
    .installment-card-btn:hover {
        background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(237, 137, 54, 0.4);
    }
    
    .card-right-text .installment-card-btn {
        align-self: flex-start;
    }
    
    .btn-arrow {
        width: 16px;
        height: 12px;
        filter: brightness(0) invert(1);
        transition: transform 0.3s ease;
    }
    
    .installment-card-btn:hover .btn-arrow {
        transform: translateX(3px);
    }
}

/* 超小屏幕设备优化 - 分期付款产品 */
@media screen and (max-width: 479px) {
    .installment-products {
        padding: 30px 0;
    }
    
    .installment-container {
        width: 95%;
        padding: 0 15px;
    }
    
    .installment-cards {
        gap: 20px;
    }
    
    .installment-card {
        min-height: 280px;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    }
    
    .installment-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    }
    
    /* 超小屏幕图片占满父级宽度 */
    .card-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        padding: 0;
        margin: 0;
    }
    
    .card-content-wrapper {
        padding: 20px 15px;
    }
    
    .installment-card-title {
        font-size: 18px;
        margin: 0 0 10px 0;
    }
    
    .installment-card-description {
        font-size: 13px;
        margin: 0 0 15px 0;
        -webkit-line-clamp: 2;
    }
    
    .installment-card-btn {
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 20px;
        gap: 6px;
        min-height: 40px;
    }
    
    .btn-arrow {
        width: 14px;
        height: 10px;
    }
}

/* 小屏幕设备 (480px - 767px) - 分期付款产品 */
@media screen and (min-width: 480px) and (max-width: 767px) {
    .installment-products {
        padding: 45px 0;
    }
    
    .installment-container {
        width: 92%;
        padding: 0 18px;
    }
    
    .installment-cards {
        gap: 30px;
    }
    
    .installment-card {
        min-height: 320px;
    }
    
    /* 小屏幕图片占满父级宽度 */
    .card-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        padding: 0;
        margin: 0;
    }
    
    .card-content-wrapper {
        padding: 30px 25px;
    }
    
    .installment-card-title {
        font-size: 22px;
        margin: 0 0 15px 0;
    }
    
    .installment-card-description {
        font-size: 15px;
        margin: 0 0 25px 0;
        -webkit-line-clamp: 3;
    }
    
    .installment-card-btn {
        padding: 14px 28px;
        font-size: 15px;
        border-radius: 28px;
        gap: 10px;
        min-height: 48px;
    }
    
    .btn-arrow {
        width: 18px;
        height: 18px;
    }
}

/* 平板设备横屏优化 - 分期付款产品 */
@media screen and (min-width: 768px) and (max-width: 991px) and (orientation: landscape) {
    .installment-cards {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .installment-card {
        min-height: 250px;
    }
    
    /* 平板横屏图片占满父级宽度 */
    .card-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        padding: 0;
        margin: 0;
    }
    
    .card-content-wrapper {
        padding: 25px 30px;
    }
}

/* 触摸设备优化 - 分期付款产品 */
@media (hover: none) and (pointer: coarse) {
    .installment-card:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .installment-card-btn:hover {
        transform: none;
        background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
        box-shadow: 0 3px 12px rgba(237, 137, 54, 0.3);
    }
    
    .installment-card-btn:active {
        transform: scale(0.98);
        background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    }
    
    .installment-card-btn:hover .btn-arrow {
        transform: none;
    }
}


/* 服务网格模块移动端适配 */
@media screen and (max-width: 768px) {
    /* 银行卡模块 */
    .bank-cards-section {
        padding: 40px 0;
    }
    
    /* 服务网格 - 改为竖向排列 */
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 100%;
        margin: 0;
        padding: 0 20px;
    }
    
    /* 服务卡片移动端优化 */
    .service-card {
        width: 100%;
        max-width: none;
        flex: none;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        margin-bottom: 0;
    }
    
    .service-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    }
    
    /* 服务图片容器移动端优化 */
    .service-image-container {
        height: 180px;
        border-radius: 12px 12px 0 0;
    }
    
    .service-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    /* 服务标题栏移动端优化 */
    .service-title-bar {
        padding: 25px 20px;
        border-radius: 0 0 12px 12px;
        background: white;
        transition: background-color 0.3s ease;
    }
    
    .service-card:hover .service-title-bar {
        background: #f7ae00 !important;
    }
    
    /* 服务标题移动端优化 */
    .service-card-title {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin: 0;
        transition: color 0.3s ease;
    }
    
    .service-card:hover .service-card-title {
        color: white;
    }
    
    /* 移动端触摸优化 */
    .service-card:active {
        transform: scale(0.98);
    }
}

/* 超小屏幕设备 (< 479px) - 服务网格 */
@media screen and (max-width: 479px) {
    .bank-cards-section {
        padding: 30px 0;
    }
    
    .services-grid {
        gap: 20px;
        padding: 0 15px;
    }
    
    .service-card {
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    }
    
    .service-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    }
    
    .service-image-container {
        height: 160px;
        border-radius: 10px 10px 0 0;
    }
    
    .service-title-bar {
        padding: 20px 15px;
        border-radius: 0 0 10px 10px;
    }
    
    .service-card-title {
        font-size: 16px;
    }
}

/* 小屏幕设备 (480px - 767px) - 服务网格 */
@media screen and (min-width: 480px) and (max-width: 767px) {
    .bank-cards-section {
        padding: 45px 0;
    }
    
    .services-grid {
        gap: 30px;
        padding: 0 18px;
    }
    
    .service-image-container {
        height: 200px;
    }
    
    .service-title-bar {
        padding: 28px 22px;
    }
    
    .service-card-title {
        font-size: 19px;
    }
}

/* 平板设备横屏优化 - 服务网格 */
@media screen and (min-width: 768px) and (max-width: 991px) and (orientation: landscape) {
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 0 30px;
    }
    
    .service-card {
        width: 100%;
        max-width: none;
        flex: none;
    }
    
    .service-image-container {
        height: 160px;
    }
    
    .service-title-bar {
        padding: 25px 30px;
    }
}

/* 触摸设备优化 - 服务网格 */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .service-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .service-card:hover .service-title-bar {
        background: white;
    }
    
    .service-card:hover .service-card-title {
        color: #333;
    }
    
    /* 触摸时的反馈效果 */
    .service-card:active .service-title-bar {
        background: #f7ae00 !important;
    }
    
    .service-card:active .service-card-title {
        color: white;
    }
}




.footer-integrated {
  background-color: #14439a;
  color: white;
  padding: 15px 0 10px;
  margin-top: 0px;
  width: 100%;
  flex-shrink: 0;
}

.footer-integrated .footer-container {
  width: 80%;
  margin: 0 auto;
  padding: 0 0;
}

.footer-integrated .footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width:1200px;
  margin: 0 auto;
}

/* 左侧银行信息 */
.footer-integrated .footer-left {
  width: 33%;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-integrated .footer-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}

.footer-integrated .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.footer-integrated .contact-icon {
  width: 10px;
  height: 15px;
}

.footer-integrated .contact-icon-phone {
  width: 12px;
  height: 10px;
}

.footer-integrated .contact-text {
  font-size: 14px;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

.footer-integrated .contact-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* 中间导航链接 */
.footer-integrated .footer-center {
  display: flex;
  flex-wrap: wrap;
  width: 47%;
  justify-content: flex-start;
  gap: 24px; /* 新内容：两列之间增加间距 */
  align-items: flex-start;
}


/* 根据当前内容密度进行细化：第一列（关于邢银）更窄，第二列（投诉与建议+友情链接）更宽，让中间区域更紧凑 */
.footer-integrated .footer-center .footer-nav-section:first-child {
  flex: 1 1 calc(24% - 40px); /* 24% 基础宽度减去左边距16px和列间距24px，避免因总宽度增加导致换行 */
  min-width: 140px;
  margin-left: 20px; /* 增加左边距，仅作用于“关于邢银”列 */
}

.footer-integrated .footer-center .footer-nav-section:last-child {
  flex: 1 1 60%;
  min-width: 300px;
}

.footer-integrated .footer-nav-section h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-integrated .footer-nav-section .footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;

}

.footer-integrated .footer-nav-section .footer-nav-list li {
  margin-bottom: 8px;
  width: 50%;
  display: flex;
  align-items: center;
}

.footer-integrated .nav-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 6px;
}

.footer-integrated .footer-nav-section a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-integrated .footer-nav-section a:hover {
  opacity: 0.8;
}

.footer-integrated .friend-links-dropdown {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  width: 100%;
  max-width: 200px;
  font-size: 14px;
}

/* 右侧存款保险和二维码 */
.footer-integrated .footer-right {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-integrated .footer-right-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}

.footer-integrated .deposit-img {
  width: 180px;
  height: 80px;
  object-fit: contain;
}

.footer-integrated .footer-qrcode {
  text-align: center;
  margin-top:25px;
  margin-left:10px;
}
.footer-integrated .footer-qrcode:first-child{
  margin-left:0px;

}

.footer-integrated .qrcode-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background-color: white;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.footer-integrated .qrcode-text {
  font-size: 12px;
  color: #ffffff;
  margin: 0;
}

/* 版权信息 */
.footer-integrated .footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding:10px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-integrated .footer-copyright span {
  font-size: 12px;
  color: #ffffff;
  line-height: 1.5;
}
.footbg{
  width:100%;
  height:auto;
}
.footbg img{
  width:100%;
}

.friend-links-container{
  /* 新内容：与当前两列布局保持统一的垂直间距 */
  margin-top:12px;
}
.footer-integrated .friend-links-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-integrated .friend-links-container h4 {
  margin-bottom: 0;
  white-space: nowrap;
}

/* 友情链接样式 */
.footer-friend-link {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-friend-link label {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}

.friend-links-dropdown {
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 14px;
  color: #fff;
  min-width: 150px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  height: 32px;
  /* 自定义下拉箭头 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  padding-right: 32px;
}

.friend-links-dropdown:hover {
  border-color: #007bff;
}

.friend-links-dropdown:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.friend-links-dropdown option {
  padding: 6px;
  background-color: #fff;
  color: #333;
}
.deposit-insurance{
 margin-left:20px;
}
.azewm{
  margin-left:10px;
}
.pgewm{
  margin-left:10px;
}