* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  background: #3b9df8;
  display: flex;
  flex-direction: column;
}

.header {
  width: 100%;
  text-align: center;
  padding: 20px 0 10px;
}

.header img {
  width: calc(100% - 200px);
  max-width: 450px;
  height: auto;
}

.entry-page {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-rows: 1fr 1fr;
  flex: 1;
}

.entry-block {
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}

.entry-block h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: 3px;
}

.entry-block p {
  margin: 0;
  font-size: 16px;
  opacity: 0.92;
}

.entry-query {
  background: #3b9df8;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

.entry-appeal {
  background: #3b9df8;
}

.entry-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0,0,0,0.16);
}

.entry-icon svg {
  width: 48px;
  height: 48px;
  fill: #fff;
}

@media (max-width: 600px) {
  .header img {
    width: calc(100% - 130px);
  }

  .entry-page {
    min-height: calc(100vh - 82px);
  }

  .entry-block h1 {
    font-size: 30px;
  }

  .entry-block p {
    font-size: 14px;
  }
}

.site-footer {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #fff;
  line-height: 1.8;
  padding: 10px 0 14px;
}

.site-footer-inner {
  display: inline-block;
  text-align: left;
}

@media (max-width: 600px) {
  .site-footer {
    font-size: 11px;
    padding: 8px 0 12px;
  }
}
