html,
body {
  width: 100%;
  height: 100%;
  /* overflow-x: hidden; */
}


* {
  margin: 0;
  padding: 0;
}

.partner-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.foot_image {
  width: 24rem;
}

.custom-btn_left{
  width: 160px;   /* 原来 w-32 ≈ 128px，这里调大 */
  height: 44px;   /* 原来 h-8 ≈ 32px，这里调大 */
  font-size: 18px; /* 原来 text-sm ≈ 14px */
  line-height: 40px; /* 与高度一致让文字垂直居中 */
  margin: 0 10px;
  border-radius: 8px;
  background-color: transparent;/* 背景透明 */
  border: 2px solid #fff; /* 边框白色 */
  color: #fff; /* 字体白色 */
}
.custom-btn_right{
  width: 160px;   /* 原来 w-32 ≈ 128px，这里调大 */
  height: 44px;   /* 原来 h-8 ≈ 32px，这里调大 */
  font-size: 18px; /* 原来 text-sm ≈ 14px */
  line-height: 40px; /* 与高度一致让文字垂直居中 */
  margin: 0 10px;
  border-radius: 8px;

  border: 2px solid #fff; /* 边框白色 */
}
.btn-overlay {
    position: absolute;
    top: 75%; /* 从顶部到底部的 3/4 */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}