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

/* 推荐产品模块样式 */
.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;
  cursor: pointer;
}

/* 副卡片（白色） */
.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: 20px;
}

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

/* 存款业务项目样式 */
.deposit-services {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding: 40px 0;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e1e8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-icon-wrapper:hover {
  background: white;
  border-color: #c5d4e8;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  max-width: 120px;
}


/*贷款业务*/
.loan-business{
  margin-top: 40px;
  background-image: url('/uiFramework/commonResource/image/2025101913533411645.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
}

/* 水平贷款产品卡片样式 */
.horizontal-loan-container {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.horizontal-loan-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  width: calc(25% - 15px);
  min-width: 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.horizontal-loan-card.horizontal-featured {
  background-image: url('/uiFramework/commonResource/image/2025101913270743052.png');
  background-size: cover;
  background-position: center;
  color: white;
}

.horizontal-loan-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.3;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.horizontal-loan-card.horizontal-featured .horizontal-loan-title {
  color: white;
}

.horizontal-loan-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.horizontal-loan-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.horizontal-loan-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.horizontal-loan-card.horizontal-featured .horizontal-loan-description {
  color: white;
}

.horizontal-loan-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
}

.horizontal-loan-card.horizontal-featured .horizontal-loan-btn {
  color: white;
}

.horizontal-loan-btn:hover {
  color: #357ABD;
}

.horizontal-loan-card.horizontal-featured .horizontal-loan-btn:hover {
  color: #f0f0f0;
}

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

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

/* 悬停效果 */
.horizontal-loan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.horizontal-loan-card:not(.horizontal-featured):hover {
  background-image: url('/uiFramework/commonResource/image/2025101913270743052.png');
  background-size: cover;
  background-position: center;
  cursor:pointer;
}

.horizontal-loan-card:not(.horizontal-featured):hover .horizontal-loan-title,
.horizontal-loan-card:not(.horizontal-featured):hover .horizontal-loan-description,
.horizontal-loan-card:not(.horizontal-featured):hover .horizontal-loan-btn {
  color: white;
}

/*中间业务*/
.middle-business{
  margin-top: 40px;
  padding-bottom:80px;
}

/* 中间业务模块样式 */
.intermediate-business-section {
  width: 100%;
  padding:0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), 0 0 40px rgba(0, 0, 0, 0.05);
  position: relative;
  border-radius: 0 0 20px 20px;
}

.intermediate-business-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 220px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  background-color: #fff;
}

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


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

/* 基础移动端样式 - 适用于所有移动设备 */
@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;
        justify-content: flex-start;
        align-items: stretch;
    }
    
    /* 产品卡片移动端优化 */
    .product-card {
        flex: none;
        width: 100%;
        max-width: none;
        padding: 25px 20px;
        min-height: auto;
        margin-bottom: 0;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    }
    
    /* 主卡片移动端样式 */
    .primary-card {
        background: #ffffff;
        color: #333;
        border: 1px solid #e8e9ea;
    }
    
    .primary-card:hover {
        background-image: url('/uiFramework/commonResource/image/2025101913255592119.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: white;
    }
    
    /* 卡片头部移动端优化 */
    .card-header {
        margin-bottom: 18px;
    }
    
    .product-title {
        font-size: 20px;
        font-weight: 600;
        margin: 0;
        line-height: 1.3;
    }
    
    /* 利率显示移动端优化 */
    .interest-rate {
        margin-bottom: 20px;
        text-align: center;
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 6px;
        border-bottom: 2px dashed #f6b300;
        padding-bottom: 20px;
    }
    
    .rate-number {
        font-size: 26px;
        font-weight: 600;
        line-height: 1.2;
        color: #ff8c00;
    }
    
    .rate-label {
        font-size: 11px;
        opacity: 0.8;
        margin-left: 2px;
    }
    
    /* 产品详情移动端优化 */
    .product-details {
        display: flex;
        gap: 15px;
        margin-bottom: 18px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .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;
        color: #0f4aa3;
    }
    
    .detail-unit {
        font-size: 11px;
        font-weight: 500;
        color: #333;
    }
    
    .detail-label {
        font-size: 11px;
        opacity: 0.8;
        white-space: nowrap;
        margin-top: 3px;
    }
    
    /* 卡片底部移动端优化 */
    .card-footer {
        margin-top: auto;
    }
    
    .view-more-link {
        text-decoration: none;
    }
    
    .view-more-btn {
        background: none;
        border: none;
        padding: 0;
        font-size: 15px;
        font-weight: 500;
        color: #333;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s ease;
        justify-content: center;
        width: 100%;
    }
    
    .view-more-btn:hover {
        color: #fff;
        transform: translateX(2px);
    }
    
    .btn-icon {
        width: 21px;
        height: 21px;
        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;
    }
    
    /* 存款业务项目移动端样式 */
    .deposit-services {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 40px;
        padding: 30px 15px;
        gap: 8px;
    }
    
    .service-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: transform 0.3s ease;
        flex: 1;
        max-width: calc(25% - 6px);
    }
    
    .service-item:hover {
        transform: translateY(-3px);
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: white;
        border: 2px solid #e1e8f5;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }
    
    .service-icon-wrapper:hover {
        background: white;
        border-color: #c5d4e8;
        box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
    }
    
    .service-icon {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }
    
    .service-title {
        font-size: 12px;
        font-weight: 500;
        color: #333;
        line-height: 1.2;
        max-width: 100%;
        word-break: keep-all;
        white-space: normal;
        text-align: center;
    }

    /* 中间业务移动端样式 */
    .intermediate-business-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        max-width: 100%;
        margin: 0 auto;
        padding: 25px 15px;
        background-color: #fff;
    }
    
    .intermediate-business-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: all 0.3s ease;
        gap: 8px;
        padding: 15px 8px;
        text-decoration: none;
        color: inherit;
        flex: 1;
        max-width: calc(33.33% - 10px);
    }
    
    .intermediate-business-item:hover {
        transform: translateY(-3px);
    }
    
    .intermediate-business-icon {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .intermediate-business-icon img {
        width: 24px;
        height: 12px;
        object-fit: contain;
    }
    
    .intermediate-business-item:hover .intermediate-business-icon {
        transform: scale(1.05);
    }
    
    .intermediate-business-title {
        font-size: 13px;
        font-weight: 500;
        color: #333;
        margin: 0;
        line-height: 1.3;
        white-space: normal;
        text-align: center;
        word-break: keep-all;
    }
}

/* 超小屏幕设备 (小于 480px)
   Extra Small Devices (phones, less than 480px)
======================================== */
@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;
    }
    
    /* 产品卡片超小屏幕优化 */
    .product-card {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .product-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .interest-rate {
        margin-bottom: 18px;
        padding-bottom: 18px;
        gap: 5px;
    }
    
    .rate-number {
        font-size: 24px;
    }
    
    .rate-label {
        font-size: 10px;
    }
    
    .product-details {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .detail-item {
        min-width: 55px;
    }
    
    .detail-number {
        font-size: 15px;
    }
    
    .detail-unit {
        font-size: 10px;
    }
    
    .detail-label {
        font-size: 10px;
    }
    
    .view-more-btn {
        padding: 8px 16px;
        font-size: 13px;
        gap: 5px;
    }
    
    .btn-icon {
        width: 10px;
        height: 10px;
    }

    .deposit-services {
        margin-top: 30px;
        padding: 25px 10px;
        gap: 6px;
    }
    
    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .service-icon {
        width: 25px;
        height: 25px;
    }
    
    .service-title {
        font-size: 10px;
        line-height: 1.1;
        white-space: normal;
        text-align: center;
    }

    /* 中间业务超小屏幕优化 */
    .intermediate-business-container {
        gap: 8px;
        padding: 20px 8px;
    }
    
    .intermediate-business-item {
        gap: 5px;
        padding: 10px 4px;
    }
    
    .intermediate-business-icon img {
        width: 20px;
        height: 10px;
    }
    
    .intermediate-business-title {
        font-size: 11px;
        line-height: 1.2;
    }
}

/* 小屏幕设备 (480px - 767px)
   Small Devices (landscape phones, 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: 22px;
        height: 5.5px;
        margin-left: 7px;
    }
    
    .section-subtitle {
        font-size: 9.5px;
    }
    
    /* 产品卡片小屏幕优化 */
    .product-card {
        padding: 22px 18px;
    }
    
    .product-title {
        font-size: 19px;
        margin-bottom: 16px;
    }
    
    .interest-rate {
        margin-bottom: 19px;
        padding-bottom: 19px;
    }
    
    .rate-number {
        font-size: 25px;
    }
    
    .rate-label {
        font-size: 10.5px;
    }
    
    .product-details {
        gap: 13px;
        margin-bottom: 16px;
    }
    
    .detail-item {
        min-width: 58px;
    }
    
    .detail-number {
        font-size: 15.5px;
    }
    
    .detail-unit {
        font-size: 10.5px;
    }
    
    .detail-label {
        font-size: 10.5px;
    }
    
    .view-more-btn {
        padding: 9px 18px;
        font-size: 13.5px;
    }
    
    .btn-icon {
        width: 11px;
        height: 11px;
    }

    .service-icon-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .service-icon {
        width: 28px;
        height: 28px;
    }
    
    .service-title {
        font-size: 11px;
        line-height: 1.15;
        white-space: normal;
        text-align: center;
    }
    
    /* 存款业务项目移动端样式 - 小屏幕 */
    .deposit-services {
        margin-top: 35px;
        padding: 28px 12px;
        gap: 7px;
    }

    /* 中间业务小屏幕优化 */
    .intermediate-business-container {
        gap: 12px;
        padding: 22px 12px;
    }
    
    .intermediate-business-item {
        gap: 6px;
        padding: 12px 6px;
    }
    
    .intermediate-business-icon img {
        width: 22px;
        height: 11px;
    }
    
    .intermediate-business-title {
        font-size: 12px;
        line-height: 1.25;
    }
}

/* ========================================
   中等屏幕设备 (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) {
    /* 禁用悬停效果，提供按压反馈 */
    .product-card:hover {
        transform: none;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    }
    
    .product-card:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.1s ease;
    }
    
    .primary-card:hover {
        background: #ffffff;
        color: #333;
    }
    
    .primary-card:active {
        background-image: url('/uiFramework/commonResource/image/2025101913255592119.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: white;
    }
    
    .view-more-btn:hover {
        color: #fff;
        transform: translateX(2px);
    }
    
    .view-more-btn:active {
        transform: scale(0.98);
        color: #fff;
    }
    
    .primary-card:active .detail-number,
    .primary-card:active .detail-unit,
    .primary-card:active .detail-label,
    .primary-card:active .rate-number,
    .primary-card:active .rate-label {
        color: white;
    }
    
    /* 主要卡片激活状态 */
    .primary-card:active .view-more-btn {
        color: white;
    }
}
    
  
}

/* ========================================
   贷款业务移动端样式
   Loan Business Mobile Styles
======================================== */
@media (max-width: 768px) {
    .horizontal-loan-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 20px 10px;
        padding: 0;
    }

    .horizontal-loan-card {
        width: calc(100% - 20px);
        min-width: unset;
        max-width: unset;
        padding: 25px;
        margin: 0 10px;
        border-radius: 10px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .horizontal-loan-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
        min-height: auto;
        line-height: 1.4;
    }

    .horizontal-loan-image {
        width: 90%;
        height: auto;
        margin: 0 auto 15px;
        flex-shrink: 0;
    }

    .horizontal-loan-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .horizontal-loan-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        max-width: 100%;
        text-align: center;
        color: #666;
    }

    .horizontal-loan-card.horizontal-featured .horizontal-loan-description {
        color: white;
    }

    .horizontal-loan-btn {
        font-size: 13px;
        gap: 6px;
        margin-top: 10px;
    }

    .horizontal-btn-arrow {
        width: 14px;
        height: 14px;
    }

    /* 悬停效果调整 */
    .horizontal-loan-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }
}

/* 小屏幕设备 (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .horizontal-loan-container {
        margin: 25px 15px;
        gap: 18px;
    }

    .horizontal-loan-card {
        width: calc(100% - 20px);
        padding: 25px;
        margin: 0 10px;
    }

    .horizontal-loan-title {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .horizontal-loan-image {
        width: 90%;
        height: auto;
        margin-bottom: 16px;
    }

    .horizontal-loan-description {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .horizontal-loan-btn {
        font-size: 14px;
        gap: 7px;
    }

    .horizontal-btn-arrow {
        width: 15px;
        height: 15px;
    }
}

/* 超小屏幕设备 (max-width: 479px) */
@media (max-width: 479px) {
    .horizontal-loan-container {
        margin: 15px 8px;
        gap: 12px;
    }

    .horizontal-loan-card {
        width: calc(100% - 16px);
        padding: 20px;
        margin: 0 8px;
        border-radius: 8px;
    }

    .horizontal-loan-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .horizontal-loan-image {
        width: 90%;
        height: auto;
        margin-bottom: 12px;
    }

    .horizontal-loan-description {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .horizontal-loan-btn {
        font-size: 12px;
        gap: 5px;
    }

    .horizontal-btn-arrow {
        width: 12px;
        height: 12px;
    }
}

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