.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: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 12px;
}

.section-title-group {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.section-icon {
  width: 40px;
  height: 10px;
  margin-left: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.section-subtitle {
  font-size: 14px;
  color: #999;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.more-link {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 2px;
  transition: color 0.3s ease;
}

.more-link:hover {
  color: #004499;
  text-decoration: underline;
}

/* About Content Styles */
.about{
  padding-top:60px;
}
.about-content {
  display: flex;
  gap: 0;
  margin-top: 30px;
  height: 450px;
  min-height: 450px;
  max-height: 450px;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  border: none;
  outline: none;
}

.about-left {
  flex: 1;
  background-image: url('/uiFramework/commonResource/image/2025102014182231301.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 35px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 450px;
  min-height: 450px;
  max-height: 450px;
  margin: 0;
  border: none;
  border-right: none;
  outline: none;
  box-sizing: border-box;
}

.about-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
  min-height: 450px;
  max-height: 450px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: none;
  border-left: none;
  outline: none;
  box-sizing: border-box;
}

.bank-building {
  width: 100%;
  height: 450px;
  max-height: 450px;
  min-height: 450px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.about-text {
  margin-bottom: 80px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0;
  text-align: justify;
  font-weight: 500;
  margin-top: 40px;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 30px;
  flex-wrap: nowrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 0;
}

.stat-number {
  font-size: 28px;
  font-weight: bold;
  color: #f6a300;
  margin-bottom: 5px;
  line-height: 1;
  white-space: nowrap;
}

.stat-unit {
  font-size: 16px;
  color: #f6a300;
  margin-left: 5px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.about-button {
  text-align: left;
}

.detail-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.detail-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/*党建园地*/
.party {
  width: 100%;
  margin-top: 80px;
  padding: 80px 0;
  background-image: url('/uiFramework/commonResource/image/2025102014334818384.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* 文章列表样式 */
.article-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.article-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed #ccc;
  transition: all 0.3s ease;
}

.article-title {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.3s ease;
  flex: 1;
  text-align: left;
}

.article-date {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
  margin-left: 20px;
}

.article-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-link:hover .article-title {
  color: #d32f2f;
}

/* 悬停效果 */
.article-link:hover .article-item {
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 4px;
}

.article-link:hover .article-title {
  color: #d32f2f;
}
/*其余模块*/
.other-modules {
  width: 100%;
  padding: 80px 0;
}

.other-module-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.module-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin: 0 10px;
}

.module-item:first-child {
  margin-left: 0;
}

.module-item:last-child {
  margin-right: 0;
}

.module-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
}

.module-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-title {
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-align: center;
  background-color: #ffffff;
  width: 100%;
  transition: all 0.3s ease;
}

/* 所有元素的统一悬停效果 */
.module-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.module-item:hover .module-title {
  background-color: #f6a300;
  color: #ffffff;
}

/*企业荣誉*/
.enterprise-honor{
  width: 100%;
  padding: 80px 0;
  background-image: url('/uiFramework/commonResource/image/2025102014503049056.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 荣誉列表网格布局 */
.honor-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  width: 100%;
  margin: 0;
  padding: 20px 0;
}

/* 荣誉项样式 */
.honor-item {
  position: relative;
  background-image: url('/uiFramework/commonResource/image/2025102014505657654.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 25px 20px;
  text-align: center;
  border-radius: 8px;
  min-height: 140px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.honor-item:hover {
  transform: translateY(-3px);
  cursor: pointer;
}

/* 年份样式 */
.honor-year {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}
.honor-year a{
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;

}

/* 荣誉内容样式 */
.honor-content {
  font-size: 14px;
  line-height: 1.5;
  color: #34495e;
  text-align: center;
  max-width: 240px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
  border-top: 1px solid #ccc;
  padding-top: 10px;
  font-weight: 600;
}



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

/* 基础移动端样式 - 适用于所有移动设备 */
@media screen and (max-width: 768px) {
    .container{width:90% !important;}
    .article-list{display: block;}
    .party{margin-top: 20px;}
    .enterprise-honor{margin-top: 20px;}
    .honor-year a{font-size:11px !important;}
    .section-header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 30px;
        gap: 10px;
    }
    
    .section-title-group {
        display: flex;
        align-items: baseline;
        gap: 10px;
    }
    
    .section-title {
        font-size: 24px;
        font-weight: 600;
        color: #333;
        margin: 0;
    }
    
    .section-icon {
        width: 32px;
        height: 8px;
        margin-left: 8px;
    }
    
    .section-subtitle {
        font-size: 12px;
        color: #999;
        font-weight: normal;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0;
    }
    
    .more-link {
        font-size: 13px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        align-self: flex-end;
        margin-bottom: 2px;
        transition: color 0.3s ease;
    }
    
    .more-link:hover {
        color: #004499;
        text-decoration: underline;
    }

    /* 其他模块区域移动端样式 */
    .other-modules {
        padding: 40px 0;
    }
    
    .other-module-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }
    
    .module-item {
        margin: 0;
        border-radius: 12px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    }
    
    .module-image {
        height: 150px;
    }
    
    .module-title {
        padding: 15px 12px;
        font-size: 14px;
    }

    /* 企业荣誉区域移动端样式 */
    .enterprise-honor {
        padding: 40px 0;
        margin-top: 40px;
    }
    
    .honor-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 20px 5px;
    }
    
    .honor-item {
        min-height: 100px;
        padding: 10px 6px;
        border-radius: 6px;
    }
    
    .honor-year {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .honor-content {
        font-size: 10px;
        line-height: 1.3;
        max-width: none;
        padding-top: 6px;
    }

    /* 关于我们内容区域移动端样式 */
    .about-content {
        flex-direction: column;
        height: auto;
        min-height: auto;
        max-height: none;
        gap: 20px;
        margin-top: 20px;
    }
    
    .about-left {
        flex: none;
        order: 2;
        height: auto;
        min-height: auto;
        max-height: none;
        padding: 25px 20px;
        background-image: url('/uiFramework/commonResource/image/2025102014182231301.png');
        background-size: cover;
        background-position: center;
    }
    
    .about-right {
        flex: none;
        order: 1;
        height: 250px;
        min-height: 250px;
        max-height: 250px;
        padding: 0;
    }
    
    .bank-building {
        width: 100%;
        height: 250px;
        max-height: 250px;
        min-height: 250px;
        object-fit: cover;
    }
    
    .about-text {
        margin-bottom: 30px;
    }
    
    .about-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 0;
        text-align: left;
    }
    
    .about-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 15px;
        margin-bottom: 15px;
        padding-bottom: 20px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .stat-unit {
        font-size: 14px;
    }
    
    .stat-label {
        font-size: 12px;
        line-height: 1.3;
    }
}

/* ========================================
   超小屏幕设备 (小于 480px)
   Extra Small Devices (phones, less than 480px)
======================================== */
@media screen and (max-width: 479px) {
    .section-header {
        margin-bottom: 25px;
        gap: 8px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-icon {
        width: 28px;
        height: 7px;
        margin-left: 6px;
    }
    
    .section-subtitle {
        font-size: 11px;
    }
    
    /* 党建内容区域超小屏幕样式 */
    .party-content {
        padding: 15px 10px;
    }
    
    .article-item {
        padding: 12px 0;
        gap: 6px;
    }
    
    .article-title {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .article-date {
        font-size: 11px;
    }
    
    /* 其他模块区域超小屏幕样式 */
    .other-modules {
        padding: 30px 0;
    }
    
    .other-module-list {
        gap: 15px;
        padding: 0 5px;
    }
    
    .module-item {
        border-radius: 10px;
    }
    
    .module-image {
        height: 130px;
    }
    
    .module-title {
        padding: 12px 10px;
        font-size: 13px;
    }

    /* 企业荣誉区域超小屏幕样式 */
    .enterprise-honor {
        padding: 30px 0;
        margin-top: 30px;
    }
    
    .honor-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 15px 3px;
    }
    
    .honor-item {
        min-height: 85px;
        padding: 8px 4px;
        border-radius: 5px;
    }
    
    .honor-year {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .honor-content {
        font-size: 9px;
        line-height: 1.2;
        padding-top: 4px;
    }

    /* 关于我们内容区域超小屏幕样式 */
    .about-content {
        gap: 15px;
        margin-top: 15px;
    }
    
    .about-left {
        padding: 20px 15px;
    }
    
    .about-right {
        height: 200px;
        min-height: 200px;
        max-height: 200px;
    }
    
    .bank-building {
        height: 200px;
        max-height: 200px;
        min-height: 200px;
    }
    
    .about-text p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .about-stats {
        gap: 15px 10px;
        margin-bottom: 10px;
        padding-bottom: 15px;
    }
    
    .stat-number {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .stat-unit {
        font-size: 13px;
    }
    
    .stat-label {
        font-size: 11px;
        line-height: 1.2;
    }
    
    /* 党建内容区域小屏幕样式 */
    .party-content {
        padding: 18px 12px;
    }
    
    .article-item {
        padding: 14px 0;
        gap: 8px;
    }
    
    .article-title {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .article-date {
        font-size: 11px;
    }
    
    /* 其他模块区域小屏幕样式 */
    .other-modules {
        padding: 35px 0;
    }
    
    .other-module-list {
        gap: 18px;
        padding: 0 8px;
    }
    
    .module-image {
        height: 140px;
    }
    
    .module-title {
        padding: 14px 12px;
        font-size: 14px;
    }
}

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

    /* 企业荣誉区域小屏幕样式 */
    .enterprise-honor {
        padding: 35px 0;
        margin-top: 35px;
    }
    
    .honor-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 18px 6px;
    }
    
    .honor-item {
        min-height: 95px;
        padding: 10px 8px;
        border-radius: 6px;
    }
    
    .honor-year {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .honor-content {
        font-size: 10px;
        line-height: 1.3;
        padding-top: 5px;
    }

    /* 关于我们内容区域 */
    .about-content {
        gap: 15px;
        margin-top: 15px;
    }
    
    .about-left {
        padding: 20px 15px;
    }
    
    .about-right {
        height: 200px;
        min-height: 200px;
        max-height: 200px;
    }
    
    .bank-building {
        height: 200px;
        max-height: 200px;
        min-height: 200px;
    }
    
    .about-text p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .about-stats {
        gap: 15px 10px;
        margin-bottom: 10px;
        padding-bottom: 15px;
    }
    
    .stat-number {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .stat-unit {
        font-size: 13px;
    }
    
    .stat-label {
        font-size: 11px;
        line-height: 1.2;
    }
    
    /* 党建内容区域小屏幕样式 */
    .party-content {
        padding: 18px 12px;
    }
    
    .article-item {
        padding: 14px 0;
        gap: 8px;
    }
    
    .article-title {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .article-date {
        font-size: 11px;
    }
    
    /* 其他模块区域小屏幕样式 */
    .other-modules {
        padding: 35px 0;
    }
    
    .other-module-list {
        gap: 18px;
        padding: 0 8px;
    }
    
    .module-image {
        height: 140px;
    }
    
    .module-title {
        padding: 14px 12px;
        font-size: 14px;
    }
}

/* ========================================
   中等屏幕设备 (768px - 991px)
   Medium Devices (tablets, 768px - 991px)
======================================== */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .section-title {
        font-size: 22px;
    }
    
    .section-icon {
        width: 30px;
        height: 7.5px;
        margin-left: 7px;
    }
    
    .section-subtitle {
        font-size: 12px;
    }

    /* 企业荣誉区域中等屏幕样式 */
    .enterprise-honor {
        padding: 50px 0;
        margin-top: 50px;
    }
    
    .honor-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 25px 10px;
    }
    
    .honor-item {
        min-height: 110px;
        padding: 14px 10px;
        border-radius: 7px;
    }
    
    .honor-year {
        font-size: 14px;
        margin-bottom: 7px;
    }
    
    .honor-content {
        font-size: 11px;
        line-height: 1.4;
        padding-top: 7px;
    }

    /* 关于我们内容区域 */
    .about-right {
        height: 280px;
        min-height: 280px;
        max-height: 280px;
    }
    
    .bank-building {
        height: 280px;
        max-height: 280px;
        min-height: 280px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-unit {
        font-size: 15px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    /* 党建内容区域中等屏幕样式 */
    .party-content {
        padding: 25px 20px;
    }
    
    .article-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .article-item {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        gap: 15px;
    }
    
    .article-title {
        font-size: 15px;
        line-height: 1.4;
        flex: 1;
    }
    
    .article-date {
        font-size: 12px;
        align-self: center;
        margin: 0;
    }
    
    /* 其他模块区域中等屏幕样式 */
    .other-modules {
        padding: 50px 0;
    }
    
    .other-module-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px 20px;
        padding: 0 15px;
    }
    
    .module-image {
        height: 180px;
    }
    
    .module-title {
        padding: 18px 15px;
        font-size: 15px;
    }
}

/* ========================================
   中等屏幕设备 (768px - 991px)
   Medium Devices (tablets, 768px and up)
======================================== */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .section-header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 35px;
        gap: 12px;
    }
    
    .section-title-group {
        display: flex;
        align-items: baseline;
        gap: 12px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-icon {
        width: 36px;
        height: 9px;
        margin-left: 9px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .more-link {
        font-size: 14px;
    }

    /* 关于我们内容区域 */
    .about-content {
        flex-direction: row;
        height: 400px;
        min-height: 400px;
        max-height: 400px;
        gap: 0;
        margin-top: 25px;
    }
    
    .about-left {
        order: 1;
        height: 400px;
        min-height: 400px;
        max-height: 400px;
        padding: 30px 35px;
    }
    
    .about-right {
        order: 2;
        height: 400px;
        min-height: 400px;
        max-height: 400px;
    }
    
    .bank-building {
        height: 400px;
        max-height: 400px;
        min-height: 400px;
        object-fit: contain;
    }
    
    .about-text {
        margin-bottom: 60px;
    }
    
    .about-text p {
        font-size: 15px;
        margin-top: 30px;
    }
    
    .about-stats {
        display: flex;
        gap: 12px;
        margin-bottom: 18px;
        padding-bottom: 25px;
    }
    
    .stat-number {
        font-size: 26px;
    }
    
    .stat-unit {
        font-size: 15px;
    }
    
    /* 其他模块区域中等屏幕样式 */
    .other-module-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 25px;
        padding: 0 20px;
    }
    
    .module-image {
        height: 200px;
    }
    
    .module-title {
        padding: 20px 18px;
        font-size: 16px;
    }
}

/*底部导航*/
.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;
}