  body {
            font-family: "Microsoft JhengHei", Arial, sans-serif;
            margin: 0 !important;
            background: #f7f7f7;
        }

          /* 菜单按钮样式 */
    .menu-btn {
      position: fixed;
      top: 24px;
      right: 32px;
      z-index: 1001;
      background: #fff;
      border: none;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s;
    }
    .menu-btn:hover {
      background: #f0f0f0;
    }
    .menu-btn .menu-icon {
      width: 28px;
      height: 28px;
      display: block;
    }
    /* 菜单弹窗样式 */
    .menu-popup {
      position: fixed;
      top: 0;
      right: 0;
      width: 260px;
      height: 100vh;
      background: #fff;
      box-shadow: -2px 0 16px rgba(0,0,0,0.15);
      z-index: 1100;
      transform: translateX(100%);
      transition: transform 0.3s cubic-bezier(.4,0,.2,1);
      display: flex;
      flex-direction: column;
      padding: 32px 24px 24px 24px;
    }
    .menu-popup.open {
      transform: translateX(0);
    }
    .menu-popup .close-btn {
      position: absolute;
      top: 18px;
      right: 18px;
      background: none;
      border: none;
      font-size: 1.8rem;
      color: #222;
      cursor: pointer;
      z-index: 1200;
    }
    .menu-popup nav {
      margin-top: 48px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .menu-popup nav a {
      text-decoration: none;
      color: #222;
      font-size: 1.15rem;
      font-weight: 500;
      padding: 10px 0 10px 20px;
      border-radius: 6px;
      transition: background 0.18s, color 0.18s;
    }
    .menu-popup nav a:hover {
      background: #851b36;
      color: #fff;
    }
    .menu-popup .menu-title {
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 12px;
      color: #212122;
      letter-spacing: 1px;
    }
    .menu-popup .menu-divider {
      height: 1px;
      background: #eee;
      margin: 18px 0;
    }
    .menu-popup .menu-footer {
      margin-top: auto;
      font-size: 0.95rem;
      color: #888;
      text-align: center;
    }
    .menu-popup-bg {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.18);
      z-index: 1099;
      display: none;
    }
    .menu-popup-bg.open {
      display: block;
    }
        .banner {
            width: 100%;
            height: 260px;
            background: #eaeaea center center/cover no-repeat;
            display: flex;
            align-items: flex-end;
            justify-content: left;
            transition: background-image 0.3s;
        }
        .banner-title {
            background: rgba(0,0,0,0.5);
            color: #fff;
            padding: 24px 40px 16px 40px;
            font-size: 2.5rem;
            font-weight: bold;
            margin: 0;
        }

        .banner-logo {
            position: absolute;
            top: 24px;
            left: 24px;
            z-index: 3;
            max-height: 80px;
            max-width: 350px;
        }
        .banner-logo img {
            height: 100%;
            width: 100%;
            object-fit: contain;
        }
        .container {
            max-width: 1200px;
            margin: 10px auto 0 auto;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
            padding: 40px 32px 32px 32px;
            position: relative;
            z-index: 2;
        }
        .date {
            color: #464545;
            font-size: 1rem;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
        }
        .calendar-icon {
            display: inline-block;
            width: 20px;
            height: 20px;
            margin-right: 8px;
            vertical-align: middle;
        }
        .content {
            font-size: 1.2rem;
            line-height: 2;
            color: #222;
        }

        .footer{
            text-align: center;
            margin: 0 auto;
            background: rgb(13, 19, 26);
            color:#ffffff;
            height:60px;
        }
        .footer p{ padding-top:20px; }
        .button_back{
            text-align: center; 
            margin-top:25px;
            margin-bottom: 30px;


        }
        .button_back a{
            padding: 12px 50px; 
            font-size: 18px; 
            cursor: pointer; 
            background: linear-gradient(90deg, #a12243 0%, #b74b67 100%);
            color: #fff; 
            border: none; 
            border-radius: 30px; 
            box-shadow: 0 4px 16px rgba(78,84,200,0.15);
            transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
            outline: none;
        }

         @media (max-width: 1024px) {
     
      .banner-title {
        font-size: 2rem;
      }
      .menu-btn {
        right: 18px;
        top: 18px;
      }
      .menu-popup {
        width: 80vw;
        min-width: 180px;
        max-width: 340px;
        padding: 24px 12px 18px 12px;
      }
    }

        @media (max-width: 768px) {
            body{
                margin:0 !important;
                padding:0 !important;
            }
            .banner-title {
                font-size: 1.5rem;
                padding: 16px 16px 8px 16px;
            }
            .container {
                padding: 20px 8px 16px 8px;
            }
            .calendar-icon {
                width: 16px;
                height: 16px;
            }
 .banner-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  max-height: 60px;
  max-width: 150px;
}
.menu-btn {
        width: 40px;
        height: 40px;
        right: 10px;
        top: 10px;
      }
      .menu-btn .menu-icon {
        width: 22px;
        height: 22px;
      }
      .menu-popup {
        width: 90vw;
        min-width: 120px;
        max-width: 98vw;
        padding: 18px 6px 12px 6px;
      }
            .footer{
      text-align: center;
      margin: 0 auto;
      background: rgb(13, 19, 26);
      color:#ffffff;
      height:80px;
    }
    .footer p{ padding-top:15px; }
    }
     }