.autoplay3.container.slick-initialized.slick-slider.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
}

.autoplay3.container.slick-initialized.slick-slider.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

/* 图片统一比例 */
.autoplay3.container.slick-initialized.slick-slider.card-img-top {
    width: 100%;
    height: 200px;      /* 固定高度，避免不齐 */
    object-fit: cover;  /* 保持比例裁剪 */
    display: block;
}






/* 文字容器 */
.autoplay3.container.slick-initialized.slick-slider .card-body {
    padding: 10px 12px;
    text-align: center;
}

/* 优化文字样式 */
.autoplay3.container.slick-initialized.slick-slider .card-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4em;
    height: 2.8em; /* 保持两行高度 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;  /* 限制显示两行 */
    -webkit-box-orient: vertical;
}


/* 主标题 */
.about-us-title {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif; /* 高端、现代感 */
    font-size: 36px;
    font-weight: 700; /* 加粗突出 */
    color: #1a1a1a; /* 深色增加专业感 */
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

/* 主标题下的装饰线 */
.about-us-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #0073e6; /* 品牌主色 */
    margin: 10px auto 0;
    border-radius: 2px;
}

/* 副标题/引导语 */
.about-us-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}


.about-us-content {
    font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    text-align: justify; /* 左右对齐更正式 */
    margin-bottom: 20px;
}

.about-us-content span.highlight {
    color: #0073e6; /* 品牌主色 */
    font-weight: 600;
}

img {
    max-width: none;
}

.about-us-banner {
  position: relative;
}

.about-us-banner .banner-text {
  max-width: 90%;              /* 限制文字宽度，不会超出图片 */
  word-wrap: break-word;       /* 自动换行 */
  text-shadow: 0 2px 6px rgba(0,0,0,0.6); /* 提升可读性 */
}

/* 标题自适应 */
.banner-title {
  font-size: clamp(0.8rem, 4vw, 2.5rem); /* 手机最小1.2rem，桌面最大2.5rem */
  margin-bottom: 0.5rem;
}

/* 副标题自适应 */
.banner-subtitle {
  font-size: clamp(0.5rem, 2.5vw, 1.3rem); /* 手机最小0.9rem，桌面最大1.3rem */
  line-height: 1.4;
}

.fw-bold {
  color: #FFF;
}

/* 遮罩层 */
#imgModal {
  display: none; /* 默认隐藏 */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* 如果图片过大可以滚动 */
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
}

/* 大图 */
#imgModal img {
  
  max-width: 100%;
  max-height: 100%;
  cursor: zoom-in; /* 内置的放大镜带 + 号 */
  transition: transform 0.3s ease;
}

#imgModal img.zoomed {
	cursor: zoom-out; /* 内置的放大镜带 - 号 */
}


/* 关闭按钮 */
#imgModal span {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/*关闭按钮手机端样式*/
@media screen and (max-width: 768px) {
  #imgModal span {
    position: fixed !important;   /* 强制覆盖 */
    bottom: 10px !important;
    left: 50% !important;
    top: auto !important;         /* 清除默认 top */
    right: auto !important;       /* 清除默认 right */
    transform: translateX(-50%) !important;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }
}
