
    /* ============ 全局复古样式 ============ */
    green {
      color: #1dc200;
    }
    body {
      font-family: "SimSun", "宋体", serif;
      font-size: 12px; /* ≈ 9pt */
      color: #1dc200;
      background-color: white;
      margin: 0;
      padding: 0;
      line-height: 1.35;
    }

    a {
      color: #1dc200;
      text-decoration: none;
      font-family: "SimSun", "宋体", serif;
      font-size: 12px;
    }
    a:hover {
      color: #28660d;
      text-decoration: underline;
    }

    .main-style {
      text-indent: 24px;
      margin: 3px 2px 0 5px;
      line-height: 1.35;
    }

    /* ============ 布局容器 ============ */
    .container {
      width: 753px;
      margin: 0 auto;
      border-collapse: collapse;
    }

    .header-table td {
      vertical-align: top;
    }

    .marquee-text {
      width: 227px;
      height: 13px;
      font-size: 10px;
      overflow: hidden;
    }

    /* ============ 表格区块样式 ============ */
    .panel-box {
      border: 1px solid #1dc200;
      width: 100%;
      border-collapse: collapse;
    }
    .panel-header {
      background-color: #1dc200;
      color: white;
      text-align: center;
      font-weight: bold;
      height: 22px;
      font-size: 12px;
    }
    .panel-body {
      padding: 4px;
      background-color: white;
    }

    /* ============ 主内容区 ============ */
    .content-main {
      width: 400px;
      padding: 0 15px;
      text-align: left;
    }

    .domain-table {
      width: 100%;
      border: 1px solid #000;
      border-collapse: collapse;
      margin-top: 16px;
    }
    .domain-table th,
    .domain-table td {
      border: 1px solid #000;
      padding: 4px;
      font-size: 12px;
      text-align: center;
    }

    /* ============ 底部版权 ============ */
    .footer-note {
      color: white;
      text-align: center;
      font-size: 12px;
      padding: 10px 0;
    }

    /* ============ 兼容性：模拟 marquee（可选） ============ */
    @keyframes scroll-left {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }
    .marquee-fallback {
      display: inline-block;
      white-space: nowrap;
      animation: scroll-left 12s linear infinite;
    }
  