html, body {
  margin: 0;
  padding: 0;
}
:root {
  --transition-gradient: linear-gradient(
    to bottom,
    rgba(243, 244, 246, 0) 0%,
    rgba(243, 244, 246, 1) 100%
  );
}

/* 推荐：Hero 大标题用 Inter 粗体 */
.cover-title{
  color:#fff;
  position:absolute;
  bottom:150px;
  left:100px;
  white-space: nowrap;

  /* 尺寸：原来 clamp 写反了（最小>最大）；这里修正 */
  font-size: clamp(3rem, 8vw, 6.5rem);

  font-family: "SourceSerif4Local", var(--ff-serif);
  font-weight: 700;              /* 如你有 800 可改成 800 */
  letter-spacing: -0.015em;      /* 大号字适度紧字距更稳 */
  line-height: .95;

  /* 提升可读性（照片上） */
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}


.cover-background {
  position: relative;
  width: 100%;
  height: calc(100vh - 76px);
  overflow: hidden;     /* 超出的部分裁剪 */
  margin-top: 76px;       /* 或者 margin-top: -80px; */
  z-index: 0;
}

.cover-background::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;       /* 新增：渐变高度（调整为 50px-200px，根据突兀程度） */
  background: var(--transition-gradient);  /* 渐变从透明到白色，平滑过渡到 content */
  pointer-events: none;  /* 不干扰交互 */
}



.cover-background img{
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 集成你提供的 Scroll Down Button #7 CSS */
.scroll-down {
    position: absolute;
    bottom: 20px; /* 调整位置，放在cover下方 */
    left: 50%;
    transform: translateX(-50%);
    font-size: 1em;
    text-decoration: none;
    display: inline-block;
    padding-top: 80px; /* 来自你的CSS */
    color: #7c3aed;
    z-index: 99;
    font-weight: bold;
}
/* 三个箭头公共样式（去掉原来的 border-left / border-bottom） */
.scroll-down span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  animation: sdb07 2s infinite;
  -webkit-animation: sdb07 2s infinite;
  opacity: 0;
  box-sizing: border-box;

  /* 默认颜色，防止遗漏 */
  border-left: 2px solid #a78bfa;
  border-bottom: 2px solid #a78bfa;
}

/* 第一个箭头：浅紫 */
.scroll-down span:nth-of-type(1) {
  top: 0;
  border-color: #c4b5fd; /* 浅紫 */
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}

/* 第二个箭头：中紫 */
.scroll-down span:nth-of-type(2) {
  top: 16px;
  border-color: #a78bfa; /* 中紫 */
  animation-delay: 0.15s;
  -webkit-animation-delay: 0.15s;
}

/* 第三个箭头：深紫 */
.scroll-down span:nth-of-type(3) {
  top: 32px;
  border-color: #7c3aed; /* 深紫 */
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}

@-webkit-keyframes sdb07 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes sdb07 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* 小于 1200px：navbar 不占位，封面顶到屏幕顶部铺满 */
@media (max-width: 1200px) {
  .cover-background {
    height: 100vh;
    margin-top: 0;
  }
}