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


/*网上银行和短信银行*/
.electronic-banking-section {
  width: 100%;
}
.electronic-banking-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* 网上银行内容样式 */
.electronic-banking-container{
  width: 48%;
  padding-top:60px;
}
.electronic-banking-content {
  width: 100%;
  margin-top: 20px;
  padding: 0;
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #d1d1d1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 0 40px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.electronic-banking-content:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 0 60px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.service-image {
  text-align: center;
  border-radius: 20px;
  width: 100%;
}

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

.service-text {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px 0;
  font-size: 16px;
}
.intermediate-business-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  transition: all 0.3s ease;
  gap: 15px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
}

.intermediate-business-item:hover {
  transform: translateY(-10px);
}

.intermediate-business-icon {
  width: 100%;
  height: auto;
}

.intermediate-business-icon img {
  width: 30px;
  height: 15px;
  object-fit: contain;
}

.intermediate-business-item:hover .intermediate-business-icon {
  transform: scale(1.1);
}

.intermediate-business-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
}
/*手机银行*/
.phone-banking-section{
  margin-top: 80px;
}

/* 手机银行模块样式 */
.phone-banking-content {
  padding: 0;
  background: transparent;
}

.mobile-banking-item {
  position: relative;
  background-image: url('/uiFramework/commonResource/image/2025102013372192656.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
}
.telephone-banking-item{
  position: relative;
  background-image: url('/uiFramework/commonResource/image/2025102013465569579.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius:4px;
}

/* 移除遮挡层，让背景图明亮显示 */

.mobile-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 60px;
}

.mobile-text {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-description {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
  text-align: justify;
  font-family: 'Microsoft YaHei', sans-serif;
}

.detail-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
  color: white;
  padding: 5px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 2px 10px rgba(247, 174, 0, 0.3);
}

.detail-btn::after {
  content: '>';
  margin-left: 8px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.detail-btn:hover {
  background: #e09900;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(247, 174, 0, 0.4);
  color: white;
  text-decoration: none;
}

.detail-btn:hover::after {
  transform: translateX(3px);
}

.mobile-image {
  display: none;
}

.mobile-bg {
  display: none;
}


/* 其他区域样式 */
.other-section {
  position: relative;
  background-image: url('/uiFramework/commonResource/image/2025102013435176224.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

/* 服务网格布局 */
.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: 200px;
  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;
}


/*电话银行*/
.telephone-banking-section{
  margin-top: 80px;
  padding-bottom: 80px;
}



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

/* 基础移动端样式 - 适用于所有移动设备 */
@media screen and (max-width: 768px) {
    .container{width: 90% !important;}
    .telephone-banking-section{margin-bottom:20px;}
    /* 标题部分优化 - 保持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;
    }

    /* ========================================
       电子银行模块移动端样式
       Electronic Banking Module 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;
        height: 200px !important;
    }
    
    .service-icon {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
    
    /* 服务文本区域 */
    .service-text {
        display: flex !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
        padding: 20px !important;
        font-size: 16px !important;
    }
    
    /* 中间业务项目 */
    .intermediate-business-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        transition: all 0.3s ease !important;
        gap: 15px !important;
        padding: 15px !important;
        text-decoration: none !important;
        color: inherit !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
    }
    
    .intermediate-business-item:hover {
        transform: translateY(-2px) !important;
        background: transparent !important;
    }
    
    /* 中间业务图标 */
    .intermediate-business-icon {
        width: auto !important;
        height: auto !important;
        flex-shrink: 0 !important;
    }
    
    .intermediate-business-icon img {
        width: 25px !important;
        height: 12px !important;
        object-fit: contain !important;
    }
    
    /* 中间业务标题 */
    .intermediate-business-title {
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #333 !important;
        margin: 0 !important;
        line-height: 1.4 !important;
        white-space: nowrap !important;
    }

    /* ========================================
       电话银行模块移动端样式
       Telephone Banking Mobile Styles
    ======================================== */
    @media screen and (max-width: 768px) {
        /* 电话银行区域 */
        .telephone-banking-section {
            margin-top: 40px !important;
            padding: 0 !important;
        }
        
        /* 电话银行内容 */
        .phone-banking-content {
            padding: 0 !important;
            background: transparent !important;
        }
        
        /* 电话银行项目 */
        .telephone-banking-item {
            position: relative !important;
            background-image: url('/uiFramework/commonResource/image/2025102013465569579.png') !important;
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
            min-height: 250px !important;
            display: flex !important;
            align-items: center !important;
            overflow: hidden !important;
            border-radius: 8px !important;
        }
        
        /* 移动内容容器 */
        .mobile-content {
            position: relative !important;
            z-index: 2 !important;
            width: 100% !important;
            padding: 25px 20px !important;
        }
        
        /* 移动文本区域 */
        .mobile-text {
            max-width: 100% !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: center !important;
        }
        
        /* 移动描述文字 */
        .mobile-description {
            font-size: 13px !important;
            line-height: 1.6 !important;
            color: #333 !important;
            margin-bottom: 20px !important;
            text-align: justify !important;
            font-family: 'Source Han Sans SC', 'Noto Sans CJK SC', 'Noto Sans SC', "Microsoft YaHei", sans-serif !important;
        }
        
        /* 详情按钮 */
        .detail-btn {
            display: inline-flex !important;
            align-items: center !important;
            background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%) !important;
            color: white !important;
            padding: 10px 25px !important;
            border-radius: 20px !important;
            text-decoration: none !important;
            font-size: 13px !important;
            font-weight: 500 !important;
            transition: all 0.3s ease !important;
            align-self: flex-start !important;
            box-shadow: 0 2px 8px rgba(247, 174, 0, 0.3) !important;
        }
        
        .detail-btn:hover {
            background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%) !important;
            transform: translateY(-1px) !important;
            box-shadow: 0 4px 12px rgba(247, 174, 0, 0.4) !important;
        }
        
        .detail-btn:active {
            transform: scale(0.98) !important;
        }
        
        /* 添加箭头图标 */
        .detail-btn::after {
            content: ">" !important;
            margin-left: 6px !important;
            font-size: 16px !important;
            font-weight: bold !important;
            transition: transform 0.3s ease !important;
        }
        
        .detail-btn:hover::after {
            transform: translateX(2px) !important;
        }
    }
    
    /* 超小屏幕设备 (< 479px) - 电话银行 */
    @media screen and (max-width: 479px) {
        .telephone-banking-section {
            margin-top: 30px !important;
        }
        
        .telephone-banking-item {
            min-height: 220px !important;
            border-radius: 6px !important;
        }
        
        .mobile-content {
            padding: 20px 15px !important;
        }
        
        .mobile-description {
            font-size: 12px !important;
            line-height: 1.5 !important;
            margin-bottom: 15px !important;
        }
        
        .detail-btn {
            padding: 8px 20px !important;
            font-size: 12px !important;
            border-radius: 18px !important;
        }
        
        .detail-btn::after {
            margin-left: 5px !important;
            font-size: 14px !important;
        }
    }
    
    /* 小屏幕设备 (480px - 767px) - 电话银行 */
    @media screen and (min-width: 480px) and (max-width: 767px) {
        .telephone-banking-section {
            margin-top: 50px !important;
        }
        
        .telephone-banking-item {
            min-height: 280px !important;
        }
        
        .mobile-content {
            padding: 30px 25px !important;
        }
        
        .mobile-description {
            font-size: 14px !important;
            line-height: 1.7 !important;
            margin-bottom: 25px !important;
        }
        
        .detail-btn {
            padding: 12px 28px !important;
            font-size: 14px !important;
            border-radius: 22px !important;
        }
        
        .detail-btn::after {
            margin-left: 7px !important;
            font-size: 18px !important;
        }
    }
    
    /* 触摸设备优化 - 电话银行 */
    @media (hover: none) and (pointer: coarse) {
        .detail-btn:hover {
            background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%) !important;
            transform: none !important;
            box-shadow: 0 2px 8px rgba(247, 174, 0, 0.3) !important;
        }
        
        .detail-btn:active {
            background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%) !important;
            transform: scale(0.98) !important;
            transition: transform 0.1s ease !important;
        }
        
        .detail-btn:hover::after {
            transform: none !important;
        }
        
        .detail-btn:active::after {
            transform: translateX(2px) !important;
        }
    }

    .mobile-banking-item {
        min-height: 220px !important;
        border-radius: 6px !important;
    }
    
    .mobile-content {
        padding: 20px 15px !important;
    }
    
    .mobile-description {
        font-size: 12px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }
    
    .detail-btn {
        padding: 8px 20px !important;
        font-size: 12px !important;
        border-radius: 18px !important;
    }
    
    .detail-btn::after {
        margin-left: 5px !important;
        font-size: 14px !important;
    }
}

/* ========================================
   超小屏幕设备 (小于 480px)
   Extra Small Devices (phones, less than 480px)
======================================== */
@media screen and (max-width: 479px) {
    .section-title {
        font-size: 18px;
    }
    
    .section-icon {
        width: 20px;
        height: 5px;
        margin-left: 6px;
    }
    
    .section-subtitle {
        font-size: 9px;
    }

    /* 电子银行模块小屏幕优化 */
    .electronic-banking-section {
        padding: 30px 0 !important;
    }
    
    .electronic-banking-section .container {
        gap: 25px !important;
    }
    
    .service-image {
        height: 180px !important;
    }
    
    .service-text {
        gap: 15px !important;
        padding: 15px !important;
    }
    
    .intermediate-business-item {
        gap: 12px !important;
        padding: 12px !important;
    }
    
    .intermediate-business-icon img {
        width: 22px !important;
        height: 11px !important;
    }
    
    .intermediate-business-title {
        font-size: 13px !important;
    }

    /* 手机银行模块小屏幕优化 */
    .phone-banking-section {
        margin-top: 30px !important;
    }
    
    .mobile-banking-item {
        min-height: 220px !important;
        border-radius: 6px !important;
    }
    
    .mobile-content {
        padding: 20px 15px !important;
    }
    
    .mobile-description {
        font-size: 12px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }
    
    .detail-btn {
        padding: 8px 20px !important;
        font-size: 12px !important;
        border-radius: 18px !important;
    }
    
    .detail-btn::after {
        margin-left: 5px !important;
        font-size: 14px !important;
    }
}

/* ========================================
   小屏幕设备 (480px - 767px)
   Small Devices (landscape phones, 480px and up)
======================================== */
@media screen and (min-width: 480px) and (max-width: 767px) {
    .section-title {
        font-size: 22px;
    }
    
    .section-icon {
        width: 28px;
        height: 7px;
        margin-left: 10px;
    }
    
    .section-subtitle {
        font-size: 11px;
    }

    /* 电子银行模块中屏幕优化 */
    .service-image {
        height: 220px !important;
    }
    
    .service-text {
        gap: 25px !important;
        padding: 25px !important;
    }
    
    .intermediate-business-item {
        gap: 18px !important;
        padding: 18px !important;
    }
    
    .intermediate-business-icon img {
        width: 28px !important;
        height: 14px !important;
    }
    
    .intermediate-business-title {
        font-size: 15px !important;
    }

    /* 手机银行模块中屏幕优化 */
    .phone-banking-section {
        margin-top: 50px !important;
    }
    
    .mobile-banking-item {
        min-height: 280px !important;
    }
    
    .mobile-content {
        padding: 30px 25px !important;
    }
    
    .mobile-description {
        font-size: 14px !important;
        line-height: 1.7 !important;
        margin-bottom: 25px !important;
    }
    
    .detail-btn {
        padding: 12px 28px !important;
        font-size: 14px !important;
        border-radius: 22px !important;
    }
    
    .detail-btn::after {
        margin-left: 7px !important;
        font-size: 18px !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;
    }
}

/* ========================================
   其他服务模块移动端样式
   Other Services Mobile Styles
======================================== */
@media screen and (max-width: 768px) {
    /* 其他服务区域 */
    .other-section {
        margin-top: 40px;
        min-height: auto;
        padding: 40px 0;
        background-size: cover;
        background-position: center;
    }
    
    /* 服务网格 - 改为竖向排列 */
    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 20px !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
    }
    
    /* 服务卡片移动端优化 */
    .service-card {
        width: 100% !important;
        max-width: none !important;
        flex: none !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
        margin-bottom: 0 !important;
        background: white !important;
    }
    
    .service-card:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15) !important;
    }
    
    /* 服务图片容器移动端优化 */
    .service-image-container {
        height: 180px !important;
        border-radius: 12px 12px 0 0 !important;
        overflow: hidden !important;
    }
    
    .service-card-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
    }
    
    /* 服务标题栏移动端优化 */
    .service-title-bar {
        padding: 25px 20px !important;
        border-radius: 0 0 12px 12px !important;
        background: white !important;
        transition: background-color 0.3s ease !important;
        box-shadow: none !important;
        text-align: center !important;
    }
    
    .service-card:hover .service-title-bar {
        background: #f7ae00 !important;
    }
    
    /* 服务标题移动端优化 */
    .service-card-title {
        font-size: 18px !important;
        font-weight: 600 !important;
        color: #333 !important;
        margin: 0 !important;
        transition: color 0.3s ease !important;
        font-family: 'Source Han Sans SC', 'Noto Sans CJK SC', 'Noto Sans SC', "Microsoft YaHei", sans-serif !important;
    }
    
    .service-card:hover .service-card-title {
        color: white !important;
    }
    
    /* 移动端触摸优化 */
    .service-card:active {
        transform: scale(0.98) !important;
    }
}

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

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

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