body {
  background: #eef7fc;
  font-family: "Microsoft YaHei", Arial, sans-serif;
  color: #061b2b;
}

.app-header {
  background: #0b6688;
  color: #fff;
  padding: 0 24px;
  height: 58px;
  line-height: 58px;
  font-size: 20px;
  font-weight: bold;
}

.app-header .layui-layout-left {
  left: 24px;
}

.app-header .layui-layout-right {
  right: 24px;
}

.app-header .layui-nav {
  background: transparent;
}

.app-header .layui-nav .layui-nav-item a {
  color: #fff;
}

.app-header .layui-btn {
  background: #fff;
  color: #0b6688;
  border-radius: 8px;
  font-weight: bold;
}

.page-wrap {
  max-width: 1180px;
  margin: 28px auto;
  padding: 0 16px;
}

.page-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  margin-top:80px;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.home-card {
  display: block;
  min-height: 130px;
  border: 1px solid #dbeaf3;
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: #061b2b;
  background: #f8fcff;
  transition: 0.15s;
}

.home-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.home-card b {
  display: block;
  font-size: 22px;
  margin-bottom: 12px;
}

.home-card p {
  color: #667;
  margin: 0;
  line-height: 1.5;
}

.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf4fb;
}

.login-box {
  width: 380px;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.login-box h1 {
  margin: 0 0 24px;
  color: #082033;
  font-size: 26px;
}

.result-status-yes {
  color: #12803c;
  font-size: 28px;
  font-weight: 900;
}

.result-status-no {
  color: #c82323;
  font-size: 28px;
  font-weight: 900;
}

.tg-badge {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #179cde;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.tg-badge svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.hide {
  display: none !important;
}
