/* ===== 站点迁移跳转模板（白色极简） ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

.gw-page {
  position: relative;
  min-height: 100vh;
  padding: 48px 40px 80px;
  background: #ffffff;
  color: #1a1a1a;
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
}

.gw-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/* Logo */
.gw-logo img {
  max-height: 64px;
  max-width: 260px;
  object-fit: contain;
}

/* 主体内容（与 Logo 保持较大间距，呼应截图留白） */
.gw-main { margin-top: 120px; }

.gw-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  color: #111111;
  letter-spacing: 0;
}

.gw-subtitle {
  margin-top: 12px;
  font-size: 16px;
  color: #666666;
}

.gw-desc {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  /* 段落间距 = 一行行高，空行分段时视觉上呈现"空一行"效果 */
  gap: 1.8em;
}
.gw-desc p {
  font-size: 16px;
  line-height: 1.8;
  color: #222222;
}

/* 入口按钮 */
.gw-entries {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.gw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 320px;
  padding: 16px 40px;
  border: 2px solid #111111;
  border-radius: 0;
  background: #ffffff;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.gw-btn:hover { background: #111111; color: #ffffff; }
.gw-btn-icon { font-size: 14px; }

.gw-btn-disabled {
  cursor: not-allowed;
  border-style: dashed;
  border-color: #bbbbbb;
  color: #888888;
}
.gw-btn-disabled:hover { background: #ffffff; color: #888888; }
.gw-btn-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 999px;
  background: #f0f0f0;
  color: #999999;
}

.gw-notice {
  margin-top: 26px;
  font-size: 13px;
  color: #999999;
}
.gw-notice i { margin-right: 6px; }

/* 底部版权/备案栏 */
.gw-footer {
  margin-top: 72px;
  padding-top: 20px;
  border-top: 1px solid #eeeeee;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 12px;
  color: #aaaaaa;
}
.gw-footer a { color: #999999; text-decoration: none; }
.gw-footer a:hover { color: #111111; }

@media (max-width: 640px) {
  .gw-page { padding: 32px 20px 56px; }
  .gw-main { margin-top: 64px; }
  .gw-title { font-size: 24px; }
  .gw-btn { min-width: 0; width: 100%; font-size: 16px; }
}
