/* 轮播外层 */
.banner_swiper_box{
    width: 100%;
    
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}
.banner_swiper_item{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #333;
}
.banner-slide a{display:block;}
.banner-slide img{width:100%;}
/* 淡灰色自适应箭头 */
.swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(170,170,170,0.35);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    z-index: 99;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}
.swiper-btn:hover {
    background: rgba(170,170,170,0.6);
    transform: translateY(-50%) scale(1.1);
}
.swiper-btn.prev { left: 20px; }
.swiper-btn.next { right: 20px; }

/* 移动端自适应缩小 */
@media (max-width:768px) {
    .swiper-btn {
        width: 40px;
        height: 40px;
    }
    .swiper-btn.prev { left: 10px; }
    .swiper-btn.next { right: 10px; }
}

/* 箭头线条 */
.swiper-btn::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.swiper-btn.prev::after { transform: rotate(-135deg); margin-left: 4px; }
.swiper-btn.next::after { transform: rotate(45deg); margin-right: 4px; }

.activity{background:#f5f5f5;}
  .activity-center-wrapper {
      max-width: 1400px;
      margin: 0 auto;
      padding: 60px 20px;
    }
    /* 标题 + 英文底纹 */
    .activity-center-title-wrap {
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }
    .activity-center-title {
      font-size: 42px;
      color: #0e396e;
      font-weight: bold;
      /* display: inline-block; */
      position: relative;
      z-index: 2;
    }
    .activity-center-title-en {
      position: absolute;
      top: 41%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 30px;
      color: #e7ebee;
      letter-spacing: 2px;
      font-weight: bold;
      white-space: nowrap;
      z-index: 1;
      user-select: none;
    }
    .activity-center-title::after {
      content: "";
      display: block;
      width: 297px;
      height: 21px;
      background: url(../images/zhi1.png);
      margin: 10px auto 0;
      position: relative;
      z-index: 2;
    }
    .activity-center-title-icon {
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      color: #0071bc;
      font-size: 18px;
      z-index: 2;
    }
    /* 选项卡 */
    .activity-center-tabs-nav {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    .activity-center-tab-btn {
      border: none;
      background: transparent;
      font-size: 18px;
      color: #0e396e;
      padding: 8px 24px;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .activity-center-tab-btn:hover {
      background-color: rgba(0, 113, 188, 0.1);
    }
    .activity-center-tab-btn.active {
      background-color: #0071bc;
      color: #fff;
    }
    /* 内容动画 */
    .activity-center-content-wrap {
      display: none;
      animation: fadeIn 0.4s ease forwards;
    }
    .activity-center-content-wrap.active {
      display: block;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    /* 核心布局：左右 50% 平分 */
    .activity-center-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    /* 右侧内部：上下两部分 */
    .activity-right-group {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    /* 右侧上半部分：两个带图卡片 左右排列 */
    .activity-right-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    /* 右侧下半部分：两个无图卡片 上下排列 */
    .activity-right-bottom {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    /* 卡片样式 */
    .activity-center-card {
      background: #fff;
      border: 1px solid #eee;
      overflow: hidden;
      transition: 0.3s ease;
      height: 100%;
      padding: 10px;
    }
    .activity-center-card:hover {
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      transform: translateY(-4px);
    }
    .activity-center-card-img {
      width: 100%;
      display: block;
      transition: 0.4s ease;
      object-fit: cover;
    }
    .activity-center-card:hover .activity-center-card-img {
      transform: scale(1.05);
    }
    .activity-center-card-content {
      padding: 16px;
    }
    .activity-center-card-title {
      font-size: 20px;
      margin-bottom: 12px;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2; /* 显示3行 */
      overflow: hidden;
    }
    .activity-center-card-info {
      font-size: 14px;
      color: #666;
      line-height: 1.8;
      margin-bottom: 16px;
      multi-line {
   display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3; /* 显示3行 */
      overflow: hidden;
};
      multi-line {
   display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3; /* 显示3行 */
      overflow: hidden;
};
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3; /* 显示3行 */
      overflow: hidden;
    }
    .activity-center-card-btn {
      display: inline-block;
      padding: 6px 16px;
      background: #0071bc;
      color: #fff;
      border-radius: 20px;
      text-decoration: none;
      font-size: 14px;
      transition: 0.3s;
    }
    .activity-center-card-btn:hover {
      background: #005a99;
    }
    .activity-center-card-btn-gray {
      background: #ccc;
    }
    /* 日期标签 */
    .activity-center-date-tag {
      float: right;
      background: #0071bc;
      color: #fff;
      padding: 8px 12px;
      border-radius: 4px;
      font-size: 14px;
      text-align: center;
    }
    .activity-center-date-tag .day {
      font-size: 20px;
      font-weight: bold;
      display: block;
    }
    /* 响应式 */
    @media (max-width: 1024px) {
      .activity-center-list {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 768px) {
      .activity-right-top {
        grid-template-columns: 1fr;
      }
      .activity-center-title {
        font-size: 28px;
      }
    }
	
	
	
	
	
	
	
	
	
	
 /* 主容器：1400px 居中 + 自适应 */
 .chamber{background:url(../images/ab.jpg);}
    .chamber-intro-wrapper {
      max-width: 1400px;
      margin: 0 auto;
      padding: 60px 20px;
    }
    /* 标题区域：中文+英文底纹+下划线 */
    .chamber-intro-title-wrap {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
    }
    .chamber-intro-title {
      font-size: 42px;
      color: #0e396e;
      font-weight: bold;
      /* display: inline-block; */
      position: relative;
      z-index: 2;
      padding: 0 20px;
    }
    .chamber-intro-title-en {
      position: absolute;
      top: 41%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 30px;
      color: #f1f1f1;
      letter-spacing: 2px;
      font-weight: bold;
      white-space: nowrap;
      z-index: 1;
      user-select: none;
    }
    .chamber-intro-title::after {
      content: "";
      display: block;
      width: 287px;
      height: 22px;
      margin: 10px auto 0;
      position: relative;
      z-index: 2;
      background: url(../images/zhi2.png);
    }
    .chamber-intro-title-icon {
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      color: #0071bc;
      font-size: 18px;
      z-index: 2;
    }
    /* 核心内容布局：左右分栏（自适应） */
    .chamber-intro-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: flex-start;
    }
    /* 左侧文字区域 */
    .chamber-intro-text {
      /* padding: 0 20px; */
    }
    .chamber-intro-logo {
      /* width: 80px; */
      /* height: 80px; */
      margin-bottom: 20px;
    }
    .chamber-intro-subtitle {
      font-size: 24px;
      color: #000;
      margin-bottom: 20px;
      font-weight: bold;
    }
    .chamber-intro-paragraph {
      font-size: 17px;
      color: #333;
      margin-bottom: 15px;
      line-height: 1.8;
      text-align: justify;
      font-weight: 600;
    }
    /* 底部按钮栏 - 像素级100%复刻设计图 + hover交互 */
    .chamber-intro-tabs {
      display: flex;
      margin-top: 30px;
      gap: 30px; /* 按钮之间的空隙，匹配设计图 */
      
      width: fit-content;
      background-color: #0071bc; /* 整体蓝色背景 */
      padding: 25px 15px; /* 内边距，匹配设计图的蓝色区域大小 */
      border-radius: 4px;
      width: 100%;
    }
    .chamber-intro-tab-btn {
      display: flex;
      align-items: center;
      width: 35%;
      gap: 8px;
      padding: 12px 7px; /* 按钮内边距，精准匹配 */
      background-color: #fff; /* 按钮白底 */
      color: #0071bc; /* 文字蓝色 */
      border: 1px solid #fff; /* 白色边框，匹配设计图 */
      border-radius: 4px; /* 按钮圆角 */
      font-size: 16px;
      cursor: pointer; /* 鼠标移上去变手型 */
      pointer-events: auto; /* 恢复交互 */
      transition: all 0.3s ease; /* 过渡动画，让交互更丝滑 */
    }
    /* hover交互效果：温柔的样式变化 */
    .chamber-intro-tab-btn:hover {
      background-color: #f0f7ff; /* 浅蓝底，比纯白更有层次感 */
      border-color: #0071bc; /* 边框变蓝色 */
      transform: translateY(-2px); /* 轻微上移，灵动不突兀 */
      box-shadow: 0 2px 8px rgba(0, 113, 188, 0.15); /* 轻微阴影，提升质感 */
    }
    /* 图标容器：匹配设计图的图标样式 + hover同步变化 */
    .chamber-intro-tab-icon {
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      /* width: 24px; */
      /* height: 24px; */
      color: #0071bc; /* 图标蓝色 */
      transition: color 0.3s ease;
    }
    .chamber-intro-tab-btn:hover .chamber-intro-tab-icon {
      color: #005a99; /* hover时图标颜色加深 */
    }
    /* 文字区域：中文+小英文，精准排版 + hover同步变化 */
    .chamber-intro-tab-text {
      display: flex;
      flex-direction: column;
      text-align: left;
    }
    .chamber-intro-tab-cn {
      font-size: 20px;
      font-weight: 600;
      color: #000;
      line-height: 1.2;
      transition: color 0.3s ease;
    }
    .chamber-intro-tab-en {
      font-size: 13px;
      margin-top: 1px;
      opacity: 0.9;
      color: #000;
      line-height: 1.2;
      transition: color 0.3s ease;
      text-align: l;
    }
    .chamber-intro-tab-btn:hover .chamber-intro-tab-cn,
    .chamber-intro-tab-btn:hover .chamber-intro-tab-en {
      color: #005a99; /* hover时文字颜色加深 */
    }
    /* 右侧图片区域 */
    .chamber-intro-img-wrap {
      width: 100%;
      overflow: hidden;
      border-radius: 4px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .chamber-intro-img {
      width: 100%;
      display: block;
      transition: transform 0.5s ease;
    }
    .chamber-intro-img-wrap:hover .chamber-intro-img {
      transform: scale(1.02);
    }
    /* 响应式适配：平板/手机 */
    @media (max-width: 1024px) {
      .chamber-intro-content {
        grid-template-columns: 1fr;
      }
      .chamber-intro-img-wrap {
        margin-top: 20px;
      }
    }
    @media (max-width: 768px) {
      .chamber-intro-title {
        font-size: 28px;
      }
      .chamber-intro-title-en {
        font-size: 36px;
      }
      .chamber-intro-tab-btn {
        padding: 6px 12px;
        font-size: 14px;
        width: 100%;
      }
      .chamber-intro-tab-cn {
        font-size: 14px;
      }
      .chamber-intro-tab-en {
        font-size: 10px;
      }
      .chamber-intro-subtitle {
        font-size: 20px;
      }
      .chamber-intro-paragraph {
        font-size: 14px;
      }
    }









 /* 主容器：1400px居中 + 自适应 */
    .core-team-wrapper {
      max-width: 1400px;
      margin: 0 auto;
      padding: 60px 20px;
    }
    /* 标题区域：1:1复刻设计图 */
    .core-team-title-wrap {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
    }
    .core-team-title {
      font-size: 36px;
      color: #0e396e;
      font-weight: bold;
      display: inline-block;
      position: relative;
      z-index: 2;
      padding: 0 20px;
    }
    .core-team-title-en {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 52px;
      color: #f1f1f1;
      letter-spacing: 4px;
      font-weight: bold;
      white-space: nowrap;
      z-index: 1;
      user-select: none;
    }
    .core-team-title::after {
      content: "";
      display: block;
      width: 100px;
      height: 2px;
      background-color: #0071bc;
      margin: 10px auto 0;
      position: relative;
      z-index: 2;
    }
    .core-team-title-icon {
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      color: #0071bc;
      font-size: 18px;
      z-index: 2;
    }
    /* Swiper容器样式 */
   .core-team-wrapper .core-team-swiper {
      width: 100%;
      position: relative;
	  padding-bottom:60px;
    }
    /* 轮播项样式：3列展示，匹配设计图 */
    .core-team-wrapper .swiper-slide {
      display: flex !important;
      justify-content: center;
      align-items: stretch;
      gap: 20px;
      padding: 0 10px;
    }
    /* 团队成员卡片：默认统一样式 */
    .team-card {
      width: 100%;
      display: flex;
      flex-direction: column;
      background-color: #f9f9f9;
      cursor: pointer; /* 鼠标移上去变手型 */
      transition: all 0.3s ease;
    }
    /* 头像容器：圆形裁剪 + 背景，匹配设计图 */
    .team-avatar-wrap {
      width: 100%;
      padding: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      /* background-color: #fff; */
    }
    .team-avatar {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
    }
    /* 成员信息栏：默认白底黑字，hover时蓝底白字 */
    .team-info {
      padding: 20px;
      flex: 1;
      transition: all 0.3s ease; /* 过渡动画，效果丝滑 */
    }
    /* 核心修改：hover时触发蓝底白字 */
    .team-card:hover .team-info {
      background-color: #0071bc;
      color: #fff;
    }
    .team-name {
      font-size: 26px;
      font-weight: bold;
      margin-bottom: 8px;
      transition: color 0.3s ease;
    }
    .team-position {
      font-size: 18px;
      margin-bottom: 8px;
      opacity: 0.9;
      transition: color 0.3s ease;
      font-weight: 700;
    }
    .team-company {
      font-size: 15px;
      line-height: 1.6;
      opacity: 0.8;
      transition: color 0.3s ease;
    }
    /* hover时文字颜色同步变白（防止层级问题） */
    .team-card:hover .team-name,
    .team-card:hover .team-position,
    .team-card:hover .team-company {
      color: #fff;
      opacity: 1;
    }
    /* 自定义左右箭头：1:1匹配设计图 */
    .core-team-swiper .core-team-prev,
.core-team-swiper .core-team-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 100px;
      color: #ccc;
      cursor: pointer;
      z-index: 10;
      transition: all 0.3s ease;
      border: none;
      background: transparent;
    }

	.core-team-swiper .swiper-pagination-bullet{width:15px;height:15px;}
   .core-team-swiper  .core-team-prev {
      left: 0px;
    }
    .core-team-swiper .core-team-next {
      right: 0px;
      color: #0071bc; /* 右箭头默认蓝色，匹配设计图 */
    }
    .core-team-prev:hover {
      color: #0071bc;
    }
    .core-team-next:hover {
      color: #005a99;
    }
    /* 自定义分页器：底部小圆点，匹配设计图 */
    .core-team-pagination {
      text-align: center;
      margin-top: 30px;
    }
   .core-team-swiper   .swiper-pagination-bullet {
    
      background-color: #7fb6db;
      opacity: 1;
      margin: 0 4px !important;
    }
	
		.core-team-swiper .swiper-pagination-bullet-active {
      background-color: #006db8;
    }
    .swiper-pagination-bullet-active {
      background-color: #0071bc;
    }
    /* 响应式适配：移动端优化 */
    @media (max-width: 1024px) {
      .team-avatar {
        width: 160px;
        height: 160px;
      }
      .team-name {
        font-size: 20px;
      }
    }
    @media (max-width: 768px) {
      .core-team-title {
        font-size: 28px;
      }
      .core-team-title-en {
        font-size: 36px;
      }
      .swiper-slide {
        flex-direction: column;
        align-items: center;
      }
      .team-card {
        width: 100%;
        margin-bottom: 20px;
      }
      .team-avatar {
        width: 140px;
        height: 140px;
      }
      .core-team-prev, .core-team-next {
        display: none; /* 移动端隐藏箭头 */
      }
    }





	
  /* 全屏容器：100%视口宽度 + 自适应高度 */
    .chamber-fullscreen-module {
      width: 100%;
      display: flex;
      flex-wrap: wrap; /* 移动端自动换行 */
    }
    /* 左侧大模块：党建中心（调整为60%宽度） */
    .module-left {
      width: 60%; /* 核心修改：从50%改为60% */
      height: 600px; /* 设计图比例高度，可根据实际图片调整 */
      position: relative;
      overflow: hidden;
    }
    /* 右侧小模块容器：入会申请+组织架构（调整为40%宽度） */
    .module-right {
      width: 40%; /* 核心修改：从50%改为40% */
      display: flex;
      flex-direction: column;
    }
    /* 右侧上下两个小模块：各占50%高度 */
    .module-right-top,
    .module-right-bottom {
      width: 100%;
      height: 300px; /* 左侧高度的一半 */
      position: relative;
      overflow: hidden;
    }
    /* 通用模块背景图样式：全屏覆盖 + 居中 */
    .module-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; /* 覆盖容器且保持比例 */
      transition: transform 0.5s ease; /* hover缩放效果 */
    }
    /* 模块hover交互：背景图轻微缩放，提升质感 */
    .module-item:hover .module-bg {
      transform: scale(1.02);
    }
    /* 通用文字遮罩层：左侧底部居中，右侧垂直+水平居中 */
    .module-text-wrap {
      position: absolute;
      color: #fff;
      z-index: 2; /* 确保文字在背景图上方 */
      /* 核心修改：右侧文字垂直居中的基础样式 */
      display: flex;
      flex-direction: column;
      justify-content: center; /* 垂直居中 */
    }
    /* 左侧党建模块：蓝色底栏 + 文字居中（底部） */
    .module-left .module-text-wrap {
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 20px 40px;
      background-color: #0071bc; /* 主蓝色，匹配设计图 */
      align-items: center; /* 水平居中 */
      justify-content: center; /* 垂直居中（底栏内） */
      height: 100px; /* 固定底栏高度，匹配设计图 */
    }
    /* 右侧模块：文字垂直+水平左对齐（核心修改） */
    .module-right .module-text-wrap {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; /* 占满模块高度，实现垂直居中 */
      padding: 0 40px; /* 左右内边距，上下无padding */
      background: linear-gradient(transparent, rgba(0,0,0,0.7)); /* 渐变黑底 */
      align-items: flex-start; /* 水平左对齐 */
    }
    /* 中文标题样式 */
    .module-title-cn {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 8px;
      line-height: 1.2;
    }
    /* 英文副标题样式 */
    .module-title-en {
      font-size: 16px;
      opacity: 0.9;
      letter-spacing: 1px;
    }
    /* 左侧党建模块文字放大（匹配设计图视觉层级） */
    .module-left .module-title-cn {
      font-size: 32px;
    }
    .module-left .module-title-en {
      font-size: 18px;
    }
    /* 通用模块项：鼠标移上去变手型 */
    .module-item {
      cursor: pointer;
    }
    /* 响应式适配：移动端全屏单列展示 */
    @media (max-width: 768px) {
      .chamber-fullscreen-module {
        flex-direction: column;
      }
      .module-left,
      .module-right {
        width: 100%; /* 移动端恢复100%宽度 */
      }
      .module-left {
        height: 400px;
      }
      .module-right-top,
      .module-right-bottom {
        height: 200px;
      }
      .module-title-cn {
        font-size: 22px;
      }
      .module-title-en {
        font-size: 14px;
      }
      .module-left .module-title-cn {
        font-size: 26px;
      }
      .module-left .module-title-en {
        font-size: 16px;
      }
      .module-left .module-text-wrap {
        padding: 15px 20px;
        height: 70px;
      }
      .module-right .module-text-wrap {
        padding: 0 20px;
      }
    }
    /* 平板适配：调整高度比例 */
    @media (max-width: 1024px) {
      .module-left {
        height: 450px;
      }
      .module-right-top,
      .module-right-bottom {
        height: 225px;
      }
    }	
	
	
	
	
	
	
	/* 主容器：1400px居中 + 自适应 */
.news-chamber-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}
/* 标题区域 */
.news-chamber-title-wrap {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.news-chamber-title {
  font-size: 36px;
  color: #0e396e;
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding: 0 0 10px;
}
.news-chamber-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0071bc;
  margin: 5px auto 0;
}
/* 选项卡导航 */
.news-chamber-tabs-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.news-chamber-tab-item {
  padding: 8px 24px;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 20px;
}
.news-chamber-tab-item.active {
  background-color: #0071bc;
  color: #fff;
}
.news-chamber-tab-item:hover:not(.active) {
  color: #0071bc;
}
/* 轮播容器控制 */
.news-chamber-swiper-container {
  display: none;
}
.news-chamber-swiper-container.active {
  display: block;
}
/* Swiper容器 */
.news-chamber-swiper-container .news-chamber-swiper {
  width: 100% !important;
  max-width: 1400px;
  margin: 0 auto !important;
  padding-bottom:80px;
}
/* 单条slide间距 */
.news-chamber-swiper .news-chamber-slide {
  padding: 0 8px;
}
/* 资讯卡片 */
.news-chamber-card {
  width: 100%;
}
/* 图片容器 */
.news-chamber-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  margin-bottom: 12px;
}
.news-chamber-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-chamber-img-wrap:hover .news-chamber-img {
  transform: scale(1.02);
}
/* 文字内容 */
.news-chamber-tag {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
  display: none;
}
.news-chamber-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}
.news-chamber-card:hover .news-chamber-card-title {
  color: #0071bc;
}
.news-chamber-desc {
  font-size: 14px;
  color: #000;
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-chamber-date {
  font-size: 14px;
  color: #000;
}
/* 分页器 */
.news-chamber-pagination {
  text-align: center;
  margin-top: 20px;
}
.news-chamber-swiper .swiper-pagination-bullet{
  width:15px;
  height:15px;
  margin: 0 4px !important;
  background-color: #ccc;
  opacity: 1;
}
.news-chamber-swiper .swiper-pagination-bullet-active {
  background-color: #006db8;
}
/* 移动端适配（768px以下单张） */
@media (max-width: 768px) {
  .news-chamber-title {
    font-size: 28px;
  }
  .news-chamber-tab-item {
    padding: 6px 16px;
    font-size: 16px;
  }
  .news-chamber-img-wrap {
    height: 200px;
  }
  .news-chamber-card-title {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .chamber-intro-tabs {
 
    flex-wrap: wrap;
}
}
	