.navgationDiv{display:none;}
body{
  background:#f5f5f5;
}
.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;
}

.wrapper{
  width: 100%;
  min-height: 100svh;
  height: auto;
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
  background-image:url('/uiFramework/commonResource/image/2025111116073742566.png'); 
  background-repeat:no-repeat; 
  background-position:center top; 
  background-size:cover;
}


.wrapper-container{
  min-height: auto;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background: transparent;
  z-index: 3;
}


 .content {
            flex: 1;
            padding: 0 ;
            height: auto;
            min-height: fit-content;
            z-index: 2;
        }

/* 银行网点信息表格样式 */
        .branch-table {
            width: 100%;
            margin: 20px 0;
            background-color: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 4% 11% 11% 11% 13% 8% 10% 10% 10% 12%;
            grid-template-rows: auto;
        }
        .jinrongxukezheng{
            font-size:24px;
            font-weight:700;
            text-align:center;
        }

        .table-header {
            display: contents;
        }

        .header-cell {
            background-color: #f8f9fa;
            color: #333;
            font-weight: 600;
            padding: 12px 8px;
            text-align: left;
            border-bottom: 2px solid #e9ecef;
            font-size: 16px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            word-break: keep-all;
            word-wrap: normal;
            position: relative;
            display: flex;
            align-items: center;
        }

        .table-body {
            display: contents;
        }

        .table-row {
            display: contents;
        }

        .table-cell {
            padding: 10px 2px;
            border-bottom: 1px solid #e9ecef;
            font-size: 14px;
            line-height: 1.4;
            vertical-align: top;
            white-space: normal;
            word-wrap: break-word;
           
            overflow: hidden;
            position: relative;
            /*display: flex;*/
            /*align-items: flex-start;*/
        }

        /*.table-cell.text-truncated {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }*/

        .table-row:nth-child(even) .table-cell {
            background-color: #f8f9fa;
        }

        .table-row:hover .table-cell {
            background-color: #e3f2fd;
        }

        /* 指定列不换行样式 - 机构编码、流水号、批准日期、发证日期、网点联系电话 */
        .table-cell:nth-child(5),
        .table-cell:nth-child(6),
        .table-cell:nth-child(7),
        .table-cell:nth-child(8),
        .table-cell:nth-child(9) {
            white-space: nowrap !important;
            overflow: hidden;
            text-overflow: ellipsis;
            word-wrap: normal !important;
            word-break: keep-all !important;
        }

        .branch-table .serial-number {
            text-align: center;
            font-weight: 500;
        }

        .branch-table .institution-name {
            font-weight: 500;
            color: #333;
        }

        .branch-table .business-scope {
            word-wrap: break-word;
            white-space: normal;
            position: relative;
        }

        /* 业务范围文本截断样式 */
        /*.branch-table .business-scope.text-truncated {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            cursor: pointer;
            position: relative;
        }*/

        /* 悬停提示框样式 */
        .business-scope-tooltip {
            position: absolute;
            background: rgba(0, 0, 0, 0.9);
            color: white;
            padding: 10px 15px;
            border-radius: 6px;
            font-size: 13px;
            line-height: 1.5;
            white-space: normal;
            word-wrap: break-word;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            max-width: 400px;
            min-width: 250px;
            pointer-events: none;
            display: none;
        }

        /* 文本截断悬停效果 */
        .branch-table td[title] {
            position: relative;
        }

        .branch-table td[title]:hover {
            background-color: #fff3cd !important;
            border: 1px solid #ffeaa7;
            z-index: 10;
            position: relative;
        }

        /* 自定义tooltip样式 */
        .branch-table td[title]:hover::after {
            content: attr(title);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: #333;
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 12px;
            white-space: nowrap;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            max-width: 300px;
            word-wrap: break-word;
            white-space: normal;
        }

        .branch-table td[title]:hover::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(100%);
            border: 5px solid transparent;
            border-top-color: #333;
            z-index: 1001;
        }


 /*分页样式*/

  .morepage {
    padding: 80px 0 40px;
    display: flex;
    justify-content: center;
  }

  .morepage .page-btn {
    display: inline-block;
    min-width: 40px;
    text-align: center;
    padding: 8px 4px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    background: #fff;
    color: #666;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: all .2s ease;
    cursor:pointer;
 }
  .NormalRed{
    display: inline-block;
    min-width: 30px;
    text-align: center;
    padding: 8px 4px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    background: #1f56d9;
    color: #fff;
    border-color: #1f56d9;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: all .2s ease;
    cursor:pointer;

  }
  .pagingNormal{
    display: inline-block;
    min-width: 30px;
    text-align: center;
    padding: 8px 4px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    background: #fff;
    color: #666;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: all .2s ease;
    cursor:pointer;

  }

  .morepage .jump-input {
    width: 30px;
    height: 32px;
    padding: 0 4px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    outline: none;
    text-align:center;
 }

 .morepage .page-info {
    padding: 4px 4px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    color: #666;
    font-size: 14px;
    margin:0 10px;
}

.zuzhijiagou img{width:100%;}

@media screen and (max-width: 768px) {
  .container , .wrapper-container{width:95% !important;}
  .breadcrumb{display:block !important;}
  .wrapper-container img{width:100% ;height:auto ;}
   .content-header {display: flex;align-items: baseline;margin-bottom: 10px;gap: 8px;position: relative;justify-content: flex-start;}
   .content-title {font-size: 18px !important;font-weight: 600 !important;color: #333; margin: 0;line-height: 1.2;flex-shrink: 0;}
   .section-icon {width: 20px !important;height: 5px !important;margin-left: 6px !important;}
   .content-subtitle a {font-size: 10px !important;}

   .branch-info-table{width:100%;max-width: 100%;overflow: auto;}
   .branch-table{width:1200px;}
   .easysite-total-page , .easysite-jump-page{display:none !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;
}