 body {
      font-family: "Noto Sans TC", Arial, sans-serif;
      background: #f7f7f7;
      margin: 0;
      padding: 0;
    }
    /* 菜单按钮样式 */
    .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: 100vw;
      min-height: 300px;
      background: url('image/banner.png') center center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      position: relative;
      margin-bottom: 32px;
    }
    .banner::after {
      content: "";
      position: absolute;
      left: 0; top: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.35);
      z-index: 1;
    }
    .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;
    }
    .banner-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    .banner-title {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 12px;
      letter-spacing: 2px;
    }
    .banner-desc {
      font-size: 1.2rem;
      letter-spacing: 1px;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 24px;
    }
    h1 {
      text-align: center;
      margin-bottom: 32px;
    }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);  /*一行幾個的設定*/
      gap: 24px;
    }
    .blog-card {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      cursor: pointer;
      transition: box-shadow 0.2s;
      padding: 16px;
      display: flex;
      flex-direction: column;
     /* align-items: center;*/
      text-decoration: none;
      color: #222;
    }
    .blog-card:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }
    .blog-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      border-radius: 6px;
      margin-bottom: 12px;
    }
    .blog-card h2 {
      font-size: 20px;
      margin: 0 0 8px 0;
      text-align: center;
    }
    .blog-card .date {
      color: #888;
      font-size: 16px;
    }
    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 32px 0 0 0;
      gap: 8px;
    }
    .pagination button, .pagination span {
      background: #fff;
      border: 1px solid #ddd;
      color: #222;
      padding: 6px 14px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 1rem;
      min-width: 36px;
      transition: background 0.2s, color 0.2s;
    }
    .pagination button[disabled] {
      color: #aaa;
      cursor: not-allowed;
      background: #f2f2f2;
    }
    .pagination .active {
      background: #0070f3;
      color: #fff;
      border-color: #0070f3;
      cursor: default;
    }
    .footer{
      text-align: center;
      margin: 0 auto;
      background: rgb(13, 19, 26);
      color:#ffffff;
      height:60px;
    }
    .footer p{ padding-top:20px; }
    @media (max-width: 1024px) {
      .blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .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: 600px) {
      .container {
        padding: 12px;
      }
      .blog-grid {
        grid-template-columns: 1fr;
      }
      .banner {
        min-height: 180px;
      }
      .banner-title {
        font-size: 1.3rem;
      }
      .banner-desc {
        font-size: 1rem;
      }
      .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;
      }
  .banner-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  max-height: 60px;
  max-width: 150px;
}

.footer{
      text-align: center;
      margin: 0 auto;
      background: rgb(13, 19, 26);
      color:#ffffff;
      height:80px;
    }
    .footer p{ padding-top:15px; }
    }