
@charset "UTF-8";

.slideshow {
    height: 400px;
    object-fit: cover;
}

/* 例如：设置全局字体 */
body {
  /* font-family: "微软雅黑", SimSun, serif; */
  font-family: -apple-system, BlinkMacSystemFont, font_1256165_kf5ixqaoub, "Microsoft YaHei", Roboto, Helvetica, Arial, sans-serif;
}

/* 手机端隐藏新闻中心右侧图片 */
@media (max-width: 768px) {
  .news-image-container {
    display: none !important;
  }
}

/* 标题基础样式（适用于小屏）；大屏仅覆盖变化的属性 */
.slide-title-big {
  background: linear-gradient(90deg, #00ff99, #0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent !important;
  position: relative;
  font-weight: bold;
  font-size: 24px;
  top: -100px;
}

.slide-title-big2 {
  font-weight: bold;
  font-size: 18px;
  color: #fff !important;
  position: relative;
  top: -75px;
}

/* 大屏设备只覆盖需要变更的属性，避免重复声明 */
@media (min-width: 768px) {
  .slide-title-big {
    top: -200px;
    font-size: 64px;
  }

  .slide-title-big2 {
    font-size: 32px;
    top: -160px;
  }
}
