    body {
      background: linear-gradient(180deg, #fac769 0%, #faddab 50%, #fccb65 100%);
      margin: 0;
      padding: 0;
      font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    }

    .main-container {
      padding: 0 15px;
      margin: 0 auto;
      border-radius: 16px;
      overflow: hidden;
      max-width: 1400px;
    }

    /* 顶部横幅 */
    .top-banner {
      position: relative;
      text-align: center;
    }
    .top-banner img {
      width: 100%;
      height: auto;
      display: block;
    }

    .top-banner .title {
      position: absolute;
      bottom: 6%;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      color: #faf1cb;
      text-shadow: 2px 0 5px rgba(0,0,0,0.4);
    }
    .top-banner .title h1 {
      font-weight: 800;
	font-size:clamp(1.0rem, 2vw + 0.5rem, 3rem);
      margin-bottom: 0;
	  font-size: clamp(1.5rem, 4vw + 0.5rem, 3rem);
    }
    .top-banner .title div {
      font-size: clamp(0.8rem, 1.5vw + 0.3rem, 1.2rem);
    }

    /* 获奖名单 */
    .winner-section {
      background: #5b2e9f;
      padding: 40px 15px;
      color: #fff;
      text-align: center;
      border-radius: 0;
	  border-bottom-left-radius: 25px;
	  border-bottom-right-radius: 25px;
      margin-top: 0;
    }

    .winner-table {
      background: rgba(255,255,255,0.08);
      border-radius: 10px;
      overflow: hidden;
    }
    .winner-table th {
      background: rgba(255,255,255,0.1);
      color: #fff;
      text-align: center;
    }
    .winner-table td {
      padding: 10px 12px;
      vertical-align: middle;
    }
    .winner-table tr:nth-child(odd) td {
      background: #dfbb6a;
      color: #000;
    }
    .winner-table td:first-child {
      text-align: right;
      font-weight: 600;
      white-space: nowrap;
    }

    footer {
      text-align: center;
      background: #eee;
      color: #666;
      padding: 15px 0;
      font-size: 0.9rem;
      margin-top: 40px;
    }

/* ✅ 新增：规制与条款区块整体样式 */
.rules-section {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 25px;
  padding: 30px 25px;
  margin: 40px auto 100px auto;
  color: #333;
  box-shadow: 0 17px 16px rgba(0,0,0,0.15);
  font-size: 1rem;
  line-height: 1.75;
}

/* ✅ 新增：规制与条款标题样式 */
.rules-section h2 {
  font-weight: 700;
  color: #5b2e9f;
  font-size: clamp(1.4rem, 2vw + 0.5rem, 2rem);
  margin-bottom: 20px;
  text-align: center;
}

/* ✅ 新增：规制与条款文字与列表格式 */
.rules-section p {
  margin-bottom: 12px;
}
.rules-section ul {
  padding-left: 20px;
  margin-bottom: 15px;
}
.rules-section li {
  margin-bottom: 6px;
}



    @media (max-width: 768px) {
      .top-banner .title {
        bottom: 2%;
      }
      .winner-section {
        padding: 25px 10px;
      }
      .winner-table td {
        font-size: 0.85rem;
      }
  .rules-section {
    padding: 20px 15px;
    font-size: 0.95rem;

	}
	@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1370px;
    }