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

.container {
  width: 1200px;
  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;
}
.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;
}

/* 推荐产品模块样式 */
.recommended-products {
  padding: 60px 0;
  background-color: #fff;
}
/* 产品卡片网格布局 */
.products-grid {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: stretch;
}

/* 产品卡片基础样式 */
.product-card {
  flex: 0 1 calc((100% - 60px) / 3);
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  text-align: center;
}

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

/* 主卡片（白色） */
.primary-card {
  background: #ffffff;
  color: #333;
  border: 1px solid #e8e9ea;
  transition: all 0.3s ease;
}

.primary-card:hover {
  background-image: url('/uiFramework/commonResource/image/2025101913255592119.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

/* 副卡片（白色） */
.secondary-card {
  background: white;
  color: #333;
  border: 1px solid #e8e9ea;
}

/* 卡片头部 */
.card-header {
  margin-bottom: 20px;
}

.product-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.primary-card .product-title {
  color: #333;
  transition: color 0.3s ease;
}

.primary-card:hover .product-title {
  color: white;
}

.secondary-card .product-title {
  color: #333;
}

/* 利率显示 */
.interest-rate {
  margin-bottom: 25px;
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  border-bottom: 2px dashed #f6b300;
  padding-bottom: 30px;
}

.rate-number {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.primary-card:hover .rate-number {
  color: white;
}

.rate-number {
  color: #ff8c00;
}

.rate-label {
  font-size: 12px;
  opacity: 0.8;
  margin-left: 2px;
}

/* 产品详情 */
.product-details {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  justify-content: center;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 70px;
  flex: 1;
}

.detail-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.detail-number {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.detail-unit {
  font-size: 12px;
  font-weight: 500;
}

.detail-label {
  font-size: 12px;
  opacity: 0.8;
  white-space: nowrap;
  margin-top: 3px;
}

.primary-card .detail-number {
  color: #0f4aa3;
  transition: color 0.3s ease;
}

.primary-card .detail-unit {
  color: #333;
  transition: color 0.3s ease;
}

.primary-card:hover .detail-number,
.primary-card:hover .detail-unit {
  color: white;
}

.primary-card:hover .detail-label,
.primary-card:hover .rate-label {
  color: white;
}

.primary-card:hover .view-more-btn {
  color: white;
}

.secondary-card .detail-number,
.secondary-card .detail-unit {
  color: #333;
}

/* 产品特性 */
.product-features {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.feature-text {
  font-size: 11px;
  opacity: 0.8;
  white-space: nowrap;
}

/* 卡片底部 */
.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

/* 查看更多链接 */
.view-more-link {
  text-decoration: none;
  display: inline-block;
}

/* 查看更多按钮 */
.view-more-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  color: #fff;
  transform: translateX(2px);
}

.btn-icon {
  width: 24px;
  height: 24px;
  background-image: url('/uiFramework/commonResource/image/2025101815235476580.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  transition: transform 0.3s ease;
}

.view-more-btn:hover .btn-icon {
  transform: translateX(2px);
}
/*信贷中心*/
.xindaizhongxin{
  width: 100%;
  padding: 80px 0;
}

.xindaizhongxin .container {
  text-align: left;
}

/* 左图右文布局 */
.content-layout {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  height: auto;
}

.image-section {
  flex: 0 0 45%;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.text-section {
  flex: 1;
  padding-left: 0;
  display: flex;
  align-items: stretch;
}

.text-content {
  width: 100%;
  background: #ffffff;
  padding: 40px;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-content:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.description {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 30px 0;
  text-align: justify;
}

.action-button {
  margin-top: 30px;
}

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

.consult-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 174, 0, 0.4);
  background: linear-gradient(135deg, #ff8c00 0%, #f7ae00 100%);
}

.arrow-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

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

/* 冀南微贷产品模块背景 */
.jinnanweida {
  background-image: url('/uiFramework/commonResource/image/2025101914360082244.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

/* 冀南微贷模块内容样式优化 */
.jinnanweida .container {
  position: relative;
  z-index: 2;
}

/* 贷款产品轮播容器 */
.loan-product-list {
  margin-top: 60px;
  position: relative;
}

/* 贷款产品轮播容器 */
.loan-product-swiper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
}

/* Swiper包装器 */
/* .loan-product-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
} */

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

/* 贷款产品卡片样式 */
.loan-product-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 0px;
  margin: 0; /* 移除外边距，让宽度与父级一致 */
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.85);
  opacity: 0.7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  width: 100%; /* 宽度设置为100%，与父级swiper-slide元素宽度一致 */
  height: 340px;
  /* 性能优化 */
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* 活动状态的贷款产品卡片 */
.loan-product-card.active {
  transform: scale(1);
  opacity: 1;
  background: url('/uiFramework/commonResource/image/2025101914342488926.png') no-repeat center center;
  background-size: cover;
}

.loan-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loan-product-card.active::before {
  opacity: 1;
}

/* 贷款产品图片 */
.loan-product-image {
  margin-bottom: 40px;
  width: 100%;
  height: auto;
}

.loan-product-image img {
  width: 100%;
  height: auto;
}

.loan-product-card.active .loan-product-image img {
  transform: scale(1.05);
}

/* 贷款产品标题 */
.loan-product-title {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.loan-product-card.active .loan-product-title {
  color: #ffffff;
}


/* 分页器样式 */
.swiper-pagination {
  
  text-align: center;
}

.swiper-pagination-bullet {
  width: 30px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 3px;
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #fbbf24 !important;
  width: 40px !important;
  height: 6px !important;
  border-radius: 3px !important;
}
/* 导航按钮样式 */
.swiper-button-prev,
.swiper-button-next {
  width: 80px !important;
  height: 80px !important;
  transition: all 0.3s ease !important;
  top: 60% !important;
  margin-top: -25px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 100 !important;
}

.swiper-button-prev {
  left: -60px !important;
}

.swiper-button-next {
  right: -60px !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.1) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
}

.swiper-button-prev img,
.swiper-button-next img {
  width: 40px !important;
  height: 40px !important;
  object-fit: contain !important;
}
/*业务流程办理*/
.electronic-banking-section {
  width: 100%;
  padding: 80px 0;
}
.electronic-banking-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* 网上银行内容样式 */
.yewubanlilc , .shouliwdfb{
  width: 48%;
}

.electronic-banking-container{
  width: 100%%;
}

.electronic-banking-content {
  width: 100%;
  margin-top: 20px;
  padding: 0;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.electronic-banking-content:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.service-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.service-icon {
  width: 100%;
  height: auto;
  display: block;
}

.service-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.service-text {
  padding: 20px;
}

.service-description {
  text-align: left;
  padding: 0px;
  max-width: 50%;
 
}

.service-description p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.view-details-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.view-details-btn:hover {
 background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
  color: #ffffff;
  text-decoration: none;
}



/* ========================================
   企业业务页面移动端样式
   Mobile Styles for Corporate Banking Page
======================================== */

/* 基础移动端样式 - 适用于所有移动设备 */
@media screen and (max-width: 768px) {
    .container{width:90% !important;}
    .yewubanlilc, .shouliwdfb{width:100%;}
    /* 推荐产品模块 */
    .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;
        padding: 0;
    }
    
    /* 产品卡片移动端优化 - 保持PC端视觉一致性 */
    .product-card {
        width: 100%;
        max-width: none;
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        background: #ffffff;
        border: 1px solid #e8e9ea;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        min-height: 280px;
        text-align: center;
        position: relative;
    }
    
    .product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }
    
    /* 主要卡片样式 - 保持PC端白色背景和hover效果 */
    .primary-card {
        background: #ffffff;
        color: #333;
        border: 1px solid #e8e9ea;
        transition: all 0.3s ease;
    }
    
    .primary-card:hover {
        background-image: url('/uiFramework/commonResource/image/2025101913255592119.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: white;
    }
    
    .primary-card .product-title {
        color: #333;
        transition: color 0.3s ease;
    }
    
    .primary-card:hover .product-title {
        color: white;
    }
    
    .primary-card .rate-number {
        color: #ff8c00;
        transition: color 0.3s ease;
    }
    
    .primary-card:hover .rate-number {
        color: white;
    }
    
    .primary-card .rate-label {
        color: #333;
        opacity: 0.8;
        transition: color 0.3s ease;
    }
    
    .primary-card:hover .rate-label {
        color: white;
    }
    
    .primary-card .detail-number {
        color: #0f4aa3;
        transition: color 0.3s ease;
    }
    
    .primary-card:hover .detail-number {
        color: white;
    }
    
    .primary-card .detail-unit {
        color: #333;
        transition: color 0.3s ease;
    }
    
    .primary-card:hover .detail-unit {
        color: white;
    }
    
    .primary-card .detail-label {
        color: #333;
        opacity: 0.8;
        transition: color 0.3s ease;
    }
    
    .primary-card:hover .detail-label {
        color: white;
    }
    
    /* 卡片头部 */
    .card-header {
        margin-bottom: 20px;
    }
    
    .product-title {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
        line-height: 1.3;
    }
    
    /* 卡片主体 */
    .card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    /* 利率显示 - 保持PC端样式 */
    .interest-rate {
        margin-bottom: 25px;
        text-align: center;
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 8px;
        border-bottom: 2px dashed #f6b300;
        padding-bottom: 20px;
    }
    
    .rate-number {
        font-size: 26px;
        font-weight: 600;
        line-height: 1.2;
    }
    
    .rate-label {
        font-size: 12px;
        opacity: 0.8;
        margin-left: 2px;
    }
    
    /* 产品详情 - 保持PC端横向布局 */
    .product-details {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .detail-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        min-width: 60px;
        flex: 1;
    }
    
    .detail-value {
        display: flex;
        align-items: baseline;
        gap: 2px;
    }
    
    .detail-number {
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
    }
    
    .detail-unit {
        font-size: 11px;
        font-weight: 500;
    }
    
    .detail-label {
        font-size: 11px;
        opacity: 0.8;
        white-space: nowrap;
        margin-top: 3px;
        text-align: center;
    }
    
    /* 卡片底部 */
    .card-footer {
        margin-top: auto;
        display: flex;
        justify-content: center;
        padding: 20px 0;
    }
    
    .view-more-link {
        text-decoration: none;
        display: inline-block;
    }
    
    .view-more-btn {
        background: none;
        border: none;
        padding: 0;
        font-size: 14px;
        font-weight: 500;
        color: #333;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s ease;
    }
    
    .view-more-btn:hover {
        color: #fff;
        transform: translateX(2px);
    }
    
    .primary-card:hover .view-more-btn {
        color: white;
    }
    
    .btn-icon {
        width: 20px;
        height: 20px;
        background-image: url('/uiFramework/commonResource/image/2025101815235476580.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: inline-block;
        transition: transform 0.3s ease;
    }
    
    .view-more-btn:hover .btn-icon {
        transform: translateX(2px);
    }

    .service-description p {
        font-size: 13px !important;
        color: #ffffff !important;
        line-height: 1.5 !important;
        margin: 0 0 12px 0 !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    }
    
    /* 查看详情按钮 */
    .view-details-btn {
        display: inline-block !important;
        background: linear-gradient(135deg, #f7ae00 0%, #ff8c00 100%) !important;
        color: #ffffff !important;
        padding: 6px 16px !important;
        border-radius: 16px !important;
        text-decoration: none !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        transition: all 0.3s ease !important;
        border: none !important;
        cursor: pointer !important;
        box-shadow: 0 2px 8px rgba(255, 149, 0, 0.3) !important;
    }
    
    .view-details-btn:hover {
        background: linear-gradient(135deg, #f7ae00 0%, #ff8c00 100%) !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 3px 12px rgba(255, 149, 0, 0.4) !important;
        color: #ffffff !important;
        text-decoration: none !important;
    }
}

/* 超小屏幕设备优化 (max-width: 479px) */
@media screen and (max-width: 479px) {
    /* 推荐产品模块 */
    .recommended-products {
        padding: 20px 0;
    }
    
    /* 标题部分 */
    .section-title {
        font-size: 18px;
    }
    
    .section-icon {
        width: 22px;
        height: 5px;
        margin-left: 6px;
    }
    
    .section-subtitle {
        font-size: 9px;
    }
    
    /* 产品网格 - 超小屏幕优化 */
    .products-grid {
        gap: 15px;
    }
    
    /* 产品卡片 - 超小屏幕优化 */
    .product-card {
        padding: 20px 15px;
        border-radius: 10px;
        min-height: 260px;
    }
    
    .product-title {
        font-size: 16px;
    }
    
    .interest-rate {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .rate-number {
        font-size: 22px;
    }
    
    .rate-label {
        font-size: 11px;
    }
    
    .product-details {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .detail-item {
        min-width: 50px;
    }
    
    .detail-number {
        font-size: 14px;
    }
    
    .detail-unit {
        font-size: 10px;
    }
    
    .detail-label {
        font-size: 10px;
    }
    
    .card-footer {
        padding: 15px 0;
    }
    
    .view-more-btn {
        font-size: 13px;
    }
    
    .btn-icon {
        width: 18px;
        height: 18px;
    }

     /* ========================================
       业务办理流程和受理网点分布移动端样式
       Business Process and Service Points Mobile Styles
    ======================================== */
    
    /* 业务办理流程区域 */
    .electronic-banking-section {
        width: 100% !important;
        padding: 40px 0 !important;
    }
    
    .electronic-banking-section .container {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        justify-content: center !important;
        align-items: stretch !important;
    }
    
    /* 业务办理流程容器 */
    .electronic-banking-container {
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* 业务办理流程内容 */
    .electronic-banking-content {
        width: 100% !important;
        margin-top: 15px !important;
        padding: 0 !important;
        background: #ffffff !important;
        border-radius: 8px !important;
        border: 1px solid #e0e0e0 !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
        transition: box-shadow 0.3s ease, transform 0.3s ease !important;
        overflow: hidden !important;
    }
    
    .electronic-banking-content:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
        transform: translateY(-2px) !important;
    }
    
    /* 服务图片容器 */
    .service-image {
        width: 100% !important;
        position: relative !important;
        overflow: hidden !important;
        height: 200px !important;
    }
    
    .service-icon {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
    
    /* 文字覆盖层 */
    .service-text-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        padding: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        background: rgba(0, 0, 0, 0.3) !important;
    }
    
    /* 服务描述 */
    .service-description {
        text-align: left !important;
        padding: 0 !important;
        max-width: 100% !important;
    }
}

/* 小屏幕设备优化 (480px - 767px) */
@media screen and (min-width: 480px) and (max-width: 767px) {
    /* 推荐产品模块 */
    .recommended-products {
        padding: 25px 0;
    }
    
    /* 标题部分 */
    .section-title {
        font-size: 19px;
    }
    
    .section-icon {
        width: 24px;
        height: 5px;
        margin-left: 7px;
    }
    
    .section-subtitle {
        font-size: 9px;
    }
    
    /* 产品网格 - 小屏幕优化 */
    .products-grid {
        gap: 18px;
    }
    
    /* 产品卡片 - 小屏幕优化 */
    .product-card {
        padding: 22px 18px;
        border-radius: 11px;
        min-height: 270px;
    }
    
    .product-title {
        font-size: 17px;
    }
    
    .interest-rate {
        margin-bottom: 22px;
        padding-bottom: 18px;
    }
    
    .rate-number {
        font-size: 24px;
    }
    
    .rate-label {
        font-size: 11px;
    }
    
    .product-details {
        gap: 18px;
        margin-bottom: 18px;
    }
    
    .detail-item {
        min-width: 55px;
    }
    
    .detail-number {
        font-size: 15px;
    }
    
    .detail-unit {
        font-size: 10px;
    }
    
    .detail-label {
        font-size: 10px;
    }
    
    .card-footer {
        padding: 18px 0;
    }
    
    .view-more-btn {
        font-size: 13px;
    }
    
    .btn-icon {
        width: 19px;
        height: 19px;
    }
}

/* ========================================
   信贷中心移动端样式
   Credit Center Mobile Styles
======================================== */
@media screen and (max-width: 768px) {
    .xindaizhongxin {
        padding: 40px 0;
    }
    
    .xindaizhongxin .container {
        padding: 0 20px;
    }
    
    /* 移动端改为上图下文布局 */
    .content-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        height: auto;
    }
    
    .image-section {
        flex: none;
        width: 100%;
        order: 1;
    }
    
    .main-image {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
    
    .text-section {
        flex: none;
        width: 100%;
        padding-left: 0;
        order: 2;
        display: block;
    }
    
    .text-content {
        width: 100%;
        background: #ffffff;
        padding: 30px 20px;
        border-radius: 12px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .text-content:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }
    
    .description {
        font-size: 15px;
        line-height: 1.7;
        color: #333;
        margin: 0 0 25px 0;
        text-align: left;
    }
    
    .action-button {
        margin-top: 20px;
        text-align: center;
    }
    
    .consult-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(135deg, #f7ae00 0%, #ff8c00 100%);
        color: white;
        padding: 14px 28px;
        border-radius: 25px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(247, 174, 0, 0.3);
        min-width: 140px;
    }
    
    .consult-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(247, 174, 0, 0.4);
        background: linear-gradient(135deg, #ff8c00 0%, #f7ae00 100%);
    }
    
    .arrow-icon {
        font-size: 14px;
        transition: transform 0.3s ease;
    }
    
    .consult-btn:hover .arrow-icon {
        transform: translateX(2px);
    }
}

/* 小屏幕设备优化 */
@media screen and (max-width: 479px) {
    .xindaizhongxin {
        padding: 30px 0;
    }
    
    .xindaizhongxin .container {
        padding: 0 15px;
    }
    
    .content-layout {
        gap: 15px;
    }
    
    .text-content {
        padding: 25px 18px;
    }
    
    .description {
        font-size: 14px;
        line-height: 1.6;
        margin: 0 0 20px 0;
    }
    
    .consult-btn {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 120px;
    }
}

/* ========================================
   冀南微贷轮播移动端样式
   Jinnan Weida Carousel Mobile Styles
======================================== */
@media screen and (max-width: 768px) {
    .jinnanweida {
        padding: 40px 0;
        background-size: cover;
        background-position: center;
    }
    
    .jinnanweida .container {
        padding: 0 20px;
    }
    
    /* 贷款产品轮播容器 */
    .loan-product-list {
        margin-top: 30px;
        position: relative;
    }
    
    /* 贷款产品轮播容器 */
    .loan-product-swiper {
        position: relative;
        width: 100%;
        height: 280px;
        overflow: hidden;
        transform: translateZ(0);
        will-change: transform;
    }
    
    /* Swiper滑块 */
    .loan-product-swiper .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 10px;
    }
    
    /* 贷款产品卡片样式 */
    .loan-product-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 4px;
        padding: 0;
        margin: 0;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: scale(0.9);
        opacity: 0.8;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
        width: 90%;
        max-width: 280px;
        height: 260px;
        will-change: transform, opacity;
        backface-visibility: hidden;
        transform-style: preserve-3d;
    }
    
    /* 活动状态的贷款产品卡片 */
    .loan-product-card.active {
        transform: scale(1);
        opacity: 1;
        background: url('/uiFramework/commonResource/image/2025101914342488926.png') no-repeat center center;
        background-size: cover;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        width: 100%;
        max-width: 300px;
    }
    
    .loan-product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .loan-product-card.active::before {
        opacity: 1;
    }
    
    /* 贷款产品图片 */
    .loan-product-image {
        margin-bottom: 25px;
        width: 100%;
        height: auto;
        padding: 0;
        overflow: hidden;
    }
    
    .loan-product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 4px;
    }
    
    .loan-product-card.active .loan-product-image img {
        transform: scale(1.02);
    }
    
    /* 贷款产品标题 */
    .loan-product-title {
        font-size: 16px;
        font-weight: 600;
        color: #333333;
        margin: 0;
        line-height: 1.4;
        transition: color 0.3s ease;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        padding: 0 15px 20px;
    }
    
    .loan-product-card.active .loan-product-title {
        color: #ffffff;
    }
    
    /* 分页器样式 */
    .swiper-pagination {
        margin-top: 25px !important;
        text-align: center !important;
        position: relative !important;
        bottom: auto !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .swiper-pagination-bullet {
        width: 24px !important;
        height: 4px !important;
        background: rgba(255, 255, 255, 0.4) !important;
        border: none !important;
        border-radius: 2px !important;
        opacity: 1 !important;
        margin: 0 3px !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        display: inline-block !important;
        visibility: visible !important;
    }
    
    .swiper-pagination-bullet-active {
        background: #fbbf24 !important;
        width: 28px !important;
        height: 4px !important;
        border-radius: 2px !important;
        opacity: 1 !important;
        display: inline-block !important;
        visibility: visible !important;
    }
    
    /* 导航按钮样式 */
    .swiper-button-prev,
    .swiper-button-next {
        width: 50px !important;
        height: 50px !important;
        transition: all 0.3s ease !important;
        top: 50% !important;
        margin-top: -25px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 100 !important;
    }
    
    .swiper-button-prev {
        left: 0px !important;
    }
    
    .swiper-button-next {
        right: 0px !important;
    }
    
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        transform: scale(1.05) !important;
    }
    
    .swiper-button-prev::after,
    .swiper-button-next::after {
        display: none !important;
    }
    
    .swiper-button-prev img,
    .swiper-button-next img {
        width: 30px !important;
        height: 30px !important;
        object-fit: contain !important;
    }
}

/* 小屏幕设备优化 */
@media screen and (max-width: 479px) {
    .jinnanweida {
        padding: 30px 0;
    }
    
    .jinnanweida .container {
        padding: 0 15px;
    }
    
    .loan-product-list {
        margin-top: 25px;
    }
    
    .loan-product-swiper {
        height: 240px;
    }
    
    .loan-product-swiper .swiper-slide {
        padding: 0 5px;
    }
    
    .loan-product-card {
        width: 95%;
        max-width: 260px;
        height: 220px;
        transform: scale(0.92);
    }
    
    .loan-product-card.active {
        max-width: 280px;
        height: 240px;
    }
    
    .loan-product-image {
        margin-bottom: 20px;
        padding: 0;
    }
    
    .loan-product-image img {
        max-height: 120px;
    }
    
    .loan-product-title {
        font-size: 15px;
        padding: 0 12px 15px;
    }
    
    .swiper-pagination {
        margin-top: 25px;
    }
    
    .swiper-pagination-bullet {
        width: 20px;
        height: 3px;
        margin: 0 2px;
    }
    
    .swiper-pagination-bullet-active {
        width: 28px;
        height: 3px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 44px !important;
        height: 44px !important;
    }
    
    .swiper-button-prev {
        left: 0px !important;
    }
    
    .swiper-button-next {
        right: 0px !important;
    }
    
    .swiper-button-prev img,
    .swiper-button-next img {
        width: 30px !important;
        height: 30px !important;
    }
}

/* ========================================
   中等屏幕设备 (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;
    }
}

   

/* ========================================
   小屏幕设备优化 (480px以下)
   Small Screen Devices Optimization
======================================== */
@media screen and (max-width: 480px) {
    /* 业务办理流程区域小屏幕优化 */
    .electronic-banking-section {
        padding: 30px 0 !important;
    }
    
    .electronic-banking-section .container {
        gap: 20px !important;
    }
    
    /* 标题部分小屏幕优化 */
    .section-title {
        font-size: 18px !important;
    }
    
    .section-icon {
        width: 20px !important;
        height: 5px !important;
    }
    
    .section-subtitle {
        font-size: 9px !important;
    }
    
    /* 服务图片容器小屏幕优化 */
    .service-image {
        height: 160px !important;
    }
    
    /* 文字覆盖层小屏幕优化 */
    .service-text-overlay {
        padding: 15px !important;
    }
    
    .service-description p {
        font-size: 12px !important;
        line-height: 1.4 !important;
        margin: 0 0 10px 0 !important;
    }
    
    /* 查看详情按钮小屏幕优化 */
    .view-details-btn {
        padding: 5px 12px !important;
        font-size: 11px !important;
        border-radius: 14px !important;
    }
}

/*底部导航*/

.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;
}