/*20250625*/
.isPc .tab-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}
.isPc .tabs {
  display: flex;
  border-bottom: 1px dashed #e6e6e6;
  background: #fff;
}
.isPc .tabs button {
  background: transparent;
}
.isPc .tabs .tab-btn {
  border: none;
  cursor: pointer;
  flex: 1;
  text-align: center;
  transition: all 0.3s;
  font-size: 16px;
  color: #666;
  position: relative;
  border-right: 1px solid #a7a7a7;
  height: 23px;
  line-height: 23px;
  margin: 14px 0;
}
.isPc .tabs .t3 {
  border-right: 0;
}
.isPc .tab-btn.active {
  color: #0650ac;
  border-right: 1px solid #0650ac;
}
.isPc .tabs .t3.active {
  border-right: 0;
}
.isPc .tab-btn.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
}
.isPc .tab-content {
  display: none;
  background: #fff;
  position: relative;
  height: auto;
  overflow: hidden;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.isPc .tab-content.active {
  display: block;
}
.isPc .carousel {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.isPc .carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
  will-change: transform;
}
.isPc .carousel-item {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  /* align-items: center;
  justify-content: center; */
  text-align: center;
  overflow: hidden;
}
.isPc .carousel-item span {
  display: block;
  padding: 20px 0;
}
.isPc .carousel-item h4 {
  width: 99px;
  text-align: center;
  margin-left: 3px;
  float: left;
  margin-bottom: 20px;
}
.isPc .carousel-item h4 a:hover {
  text-decoration: none;
  color: #3987d3;
}
.isPc .carousel-item h4 b {
  font-size: 14px;
  font-weight: normal;
  color: #646464;
  width: 100%;
  display: block;
  margin-top: 10px;
}
.isPc .carousel-item h4 img {
  width: 63px;
  height: 63px;
  margin: 0 auto;
}
.isPc .carousel-item ul {
  padding: 20px 0 20px 22px;
  border: 0;
  height: auto;
}
.isPc .carousel-item li {
  width: 174px;
  height: 45px;
  float: left;
  margin-right: 15px;
  font-size: 15px;
  background: #f8f8f8;
  margin-bottom: 10px;
  padding: 0;
  border-right: 0;
  line-height: 45px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

/* PC端部门链接悬浮效果 - 柔和版本 */
.isPc .carousel-item li:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #e8f2ff, #d1e7ff);
  box-shadow: 0 3px 12px rgba(59, 136, 211, 0.15);
  border: 1px solid #b8d4f0;
}

/* 添加光晕效果 - 减弱 */
.isPc .carousel-item li:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.isPc .carousel-item li:hover:before {
  left: 100%;
}

.isPc .carousel-item li a {
  font-size: 15px;
  width: 100%;
  line-height: 45px;
  display: block;
  border-radius: 5px;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  /* 文字溢出处理 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 8px;
  box-sizing: border-box;
}

/* 为长文本添加tooltip效果 */
.isPc .carousel-item li a:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  margin-bottom: 5px;
}

/* 当文本被截断时显示tooltip */
.isPc .carousel-item li a[title]:hover::after {
  opacity: 1;
}

/* 添加小箭头 */
.isPc .carousel-item li a:hover::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  margin-bottom: 1px;
}

.isPc .carousel-item li a[title]:hover::before {
  opacity: 1;
}

.isPc .carousel-item li:hover a {
  color: #2f7bc7;
  text-decoration: none;
}

.isPc .carousel-nav {
  /* position: absolute; */
  bottom: 0px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}
.isPc .carousel-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 3px;
  background-color: #e6e6e6;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.isPc .carousel-dot.active {
  background-color: #2f8de9;
}

.isPc .carousel-item h4 > a {
  display: inline-flex;
  width: 63px;
  height: 63px;
  background-color: #3b88d3;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* 鼠标悬浮效果 */
.isPc .carousel-item h4 > a:hover {
  transform: scale(1.1);
  background-color: #2f7bc7;
  box-shadow: 0 8px 20px rgba(59, 136, 211, 0.4);
  text-decoration: none;
}

/* 图标悬浮时的动画效果 */
.isPc .carousel-item h4 > a:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* 添加一个微妙的光晕效果 */
.isPc .carousel-item h4 > a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.isPc .carousel-item h4 > a:hover:before {
  opacity: 1;
}

.isPc .carousel-item h4 img {
  width: 60%;
  height: 60%;
  transition: all 0.3s ease;
}

@media (max-width: 600px) {
  .tab-btn {
    /* padding: 0.2rem 0; */
    font-size: 0.42rem;
  }
}

.isWap .tab-container {
  max-width: 100%;
  margin: 0 auto;
  /* border-radius: 8px; */
  overflow: hidden;
}
.isWap .tabs {
  display: flex;
  border-bottom: 1px dashed #e6e6e6;
  background: #fff;
}
.isWap .tabs button {
  background: transparent;
}
.isWap .tabs .tab-btn {
  border: none;
  cursor: pointer;
  flex: 1;
  text-align: center;
  transition: all 0.3s;
  color: #666;
  position: relative;
  border-right: 1px solid #a7a7a7;
  height: 0.36rem;
  line-height: 0.36rem;
  font-size: 0.32rem;
  margin: 0.28rem 0;
}
.isWap .tabs .t3 {
  border-right: 0;
}
.isWap .tab-btn.active {
  color: #0650ac;
  border-right: 1px solid #0650ac;
}
.isWap .tabs .t3.active {
  border-right: 0;
}
.isWap .tab-btn.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
}
.isWap .tab-content {
  display: none;
  background: #fff;
  position: relative;
  height: auto;
  overflow: hidden;
  padding-bottom: 0.5rem;
  margin-bottom: 0.2rem;
}
.isWap .tab-content.active {
  display: block;
}
.isWap .carousel {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.isWap .carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
  will-change: transform;
}
.isWap .carousel-item {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: 0.2rem;
}
.isWap .carousel-item span {
  display: block;
  padding: 0.26rem 0;
  width: 100%;
}
.isWap .carousel-item h4 {
  width: 20%;
  text-align: center;
  margin-left: 4%;
  float: left;
  margin-bottom: 0.2rem;
}
.isWap .carousel-item h4 a:hover {
  text-decoration: none;
  color: #3987d3;
}
.isWap .carousel-item h4 b {
  font-size: 0.22rem;
  font-weight: normal;
  color: #646464;
  width: 100%;
  display: block;
  margin-top: 0.2rem;
}
.isWap .carousel-item h4 img {
  width: 70%;
  margin: 0 auto;
}
.isWap .carousel-item ul {
  padding: 0.45rem 0 0.45rem 0.22rem;
  border: 0;
  height: auto;
}
.isWap .carousel-item li {
  width: 44%;
  float: left;
  margin-left: 3%;
  background: #f8f8f8;
  margin-bottom: 0.3rem;
  padding: 0;
  border-right: 0;
  line-height: 0.65rem;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

/* 移动端部门链接悬浮效果 - 柔和版本 */
.isWap .carousel-item li:hover {
  transform: translateY(-0.5px);
  background: linear-gradient(135deg, #e8f2ff, #d1e7ff);
  box-shadow: 0 2px 8px rgba(59, 136, 211, 0.12);
  border: 1px solid #b8d4f0;
}

/* 移动端光晕效果 - 减弱 */
.isWap .carousel-item li:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.6s ease;
}

.isWap .carousel-item li:hover:before {
  left: 100%;
}

.isWap .carousel-item li a {
  font-size: 0.24rem;
  width: 100%;
  line-height: 0.8rem;
  display: block;
  border-radius: 5px;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  /* 移动端文字溢出处理 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.1rem;
  box-sizing: border-box;
}

.isWap .carousel-item li:hover a {
  color: #2f7bc7;
  text-decoration: none;
}

.isWap .carousel-nav {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}
.isWap .carousel-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 3px 0;
  background-color: #e6e6e6;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.isWap .carousel-dot.active {
  background-color: #2f8de9;
}

.isWap .carousel-item h4 > a {
  display: inline-flex;
  width: 70%;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #3b88d3;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* 移动端鼠标悬浮效果 */
.isWap .carousel-item h4 > a:hover {
  transform: scale(1.05);
  background-color: #2f7bc7;
  box-shadow: 0 6px 15px rgba(59, 136, 211, 0.3);
  text-decoration: none;
}

/* 移动端图标悬浮时的动画效果 */
.isWap .carousel-item h4 > a:hover img {
  transform: scale(1.03);
  filter: brightness(1.1);
}

/* 移动端光晕效果 */
.isWap .carousel-item h4 > a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.isWap .carousel-item h4 > a:hover:before {
  opacity: 1;
}

.isWap .carousel-item h4 img {
  width: 60%;
  height: 60%;
  transition: all 0.3s ease;
}

.isPc .carousel-item {
  min-width: calc(100% - 16px);
  padding: 20px 8px 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  row-gap: 12px;
}

.isPc .carousel-item h4 {
  width: auto;
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.isPc #tab3 .carousel-item {
  min-width: 100%;
  display: block;
  padding: 0;
}

.isPc .carousel-item li a {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.isWap .carousel-item {
  min-width: calc(100% - 16px);
  padding: 20px 8px 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  row-gap: 12px;
}

.isWap .carousel-item h4 {
  width: auto;
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.isWap #tab3 .carousel-item {
  min-width: 100%;
  display: block;
  padding: 0;
}

.isWap .carousel-nav {
  position: relative;
}
