    :root{
        font-size: 14px;
        --text: #eeddcc;
        --title: #ffcc99;
    }

    html, body {
    width: 100%;
    height: 100%;

        }
     body{
        background-color:#101020;
        display:flex;
        flex-direction:column;
        height:100%;
        width:100%;
        margin:0px;
        font-family: Arial, sans-serif;
        color:var(--text);
        font-weight: 600;
        overflow:hidden;
       }
    #a_banner{
        display:flex;
        align-items:center;
        position:relative;
        overflow: hidden;
        height:70px;
        flex-shrink: 0; /*flex-grow 0 不可放大,flex-shrik 0 不可縮小,flex-basis auto 初始大小*/
        width:100%;
        background-image: url('/statiC/images/banner_desktopCat.png');
        background-repeat: repeat-x;
        background-size: auto 100% ;
        }


    #logo img{
        height:70px;
        width:auto;
        display:block;

    }
    #div_content{
        background-color:#101020;
        width:100%;
        align-items:center;
        margin: 0 auto;
        flex: 1 1 auto;
        overflow-y:auto;
    }
    #div_describe{
        width:90%;
        margin: 20px auto;
        line-height: 1.4;
        max-width: 1100px;
    }

    #div_describe>p{
        padding: 12px;
    }

    /* google icon go to top*/
    .gototop{
      position: fixed;
      right: 20px;
      bottom: 22px;
      z-index: 2000;
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(0,0,0,0.55);
      color: #ffcc99;
      box-shadow: 0 0 12px rgba(255,255,255,0.25);
      cursor: pointer;
      text-decoration: none;
      overflow: hidden;
    }
    .gototop-icon{
      width: 32px;
      height: 32px;
      display: block;
    }

    #div_copyright{
    background-color:#251900;
    height:20px;
    width:100%;
    text-align:right;
    font-size:12px;
    position:relative;
    bottom:0;
    right:0;
    }
    #div_copyright a{
    color:#4488aa;
    }
    #div_copyright p{
     margin:0 4px 0 0;
     line-height:20px;
    }


#div_menu {
    width: 100%;
    text-align: center;
}

#MenuBar1 {
    list-style: none;
    margin: 0;
    padding: 0 10px;
    display: flex;
    justify-content: left;
    background-color: #a2a2a2;
}
#MenuBar1 li {
    position: relative;
    display: flex;
    align-items: center;
    margin:0 0;
}
#MenuBar1 li a {
    display: block;
    padding: 2px 6px;
    color: black; /* 文本颜色 */
    text-decoration: none;
    font-size: 13px;
    transition: background-color 0.3s;
}
#MenuBar1 li a:hover,
#MenuBar1 li a:focus {
    background-color: #555577;
    color:#ffcc33;

}

#MenuBar1 li ul {
    display: none;
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    top: 100%;
    left: 0;
    z-index: 1000;
}
#MenuBar1 li:hover ul {
    display: block;
}
#MenuBar1 li ul li {
    display: block;
}
#MenuBar1 li ul li a {
    padding: 5px;
    width: auto;
    background-color: #444444;
    color: #ffffff
}

#div_info{
    height:20px;
    color:#ffff99;
    background-color:#000000;
    font-size:12px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    #div_info p {
    margin: 0;
    padding: 0;
    }

  .glow-image {
    height: auto;
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    margin: 10px;
  }

  h1{ font-size: 1.5rem; margin: 0.5rem 0; color: var(--title); }
  h2{ font-size: 1.25rem;  margin: 0.5rem 0; color: var(--title); }

  p, li{ font-size: 1rem; }
  small{ font-size: 0.875rem; }

h2 {
    color:#ffcc99;
    margin-bottom: 10px;
    text-align: center;
    font-size: 24px;
    }

  .video-frame-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .video-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
  }

  .video-link {
    font-size: 18px;
    color: #ffcc99;
    text-decoration: none;
  }

    .pic_transform{
        transform:scale(1,1);
        opacity:0.8;
        transition: transform 0.3s linear;
    }
    .pic_transform:hover{
        transform:scale(1.05,1.05);
        opacity:1.0;
        box-shadow: 0 0 15px 5px #999999;
        z-index:100;
        position:relative;
    }

    /* home page ---------------*/
    #div_master{
        width:100%;
        height:100%;
        display:flex;
        flex-direction:row;
    }
    #div_left{
        flex-grow:1;
        background-color:#101020;
        width: 80%;
        height:100%;
        text-align:center;
    }

    #div_homeImage{
        background-color:#101020;
        width: 100%;
        max-width:1100px;
        text-align:center;
    }

    /*app card 改到 home.css*/

    /* news page --------------------- */
.fb-container{
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
  }

  .fb-lead{
    text-align: left;
    font-size: 17px;
    margin-bottom: 20px;
  }

  .fb-pinned{
    background: #151530;
    border-left: 4px solid #4488aa;
    padding: 15px 18px;
    border-radius: 8px;
    margin-bottom: 22px;
  }

  .fb-pinned p{
    margin: 0;
    font-size: 15px;
    color: #cccccc;
  }

  .fb-accent{
    color: #ffcc99;
  }

  .fb-card{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 14px;
  }

  .fb-meta{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 8px;
  }

  .fb-date{
    font-size: 14px;
    color: #cccccc;
  }

  .fb-tag{
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 204, 153, 0.28);
    color: #ffcc99;
    background: rgba(255, 204, 153, 0.08);
  }

  .fb-app-link{
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    color: #eeddcc;
    text-decoration: none;
  }

  .fb-app-link:hover{
    text-decoration: underline;
  }

  .fb-card .fb-title2{
    margin: 0 0 8px 0;
    font-size: 20px;
    line-height: 1.3;
    text-align:left;
  }

  .fb-excerpt{
    margin: 0;
    color: rgba(238,221,204,0.88);
    line-height: 1.55;
  }

  .fb-divider{
    margin: 18px 0 0 0;
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.18);
  }

  .fb-footer{
    margin-top: 18px;
    font-size: 14px;
    color: #cccccc;
  }

  .fb-footer a{
    color: #ffcc99;
    text-decoration: none;
  }

  .fb-footer a:hover{
    text-decoration: underline;
  }


  .hamburger-nav{
    /*display: none;*/
  }

  /* 頁尾 footer */
 .base-footer-nav{
    text-align:center;
    margin-top:10px;
    background-color:#ffcc99;
  }
  .base-footer-nav a{
    color: #251900;
    text-decoration: none;
  }

/* ====------= 漢堡圖 =------==== */

    /* @media (max-width: 860px){ */
    .hamburger-nav{
        /*display: none;*/
    }
    /* 漢堡旋轉 */
    @keyframes hamburger-spin{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
    }

    /*使用手機時候 關閉桌面板的nav*/
    #div_menu{
        /*display: none;*/
    }
    /* 漢堡容器開啟 */
    .hamburger-nav{
        display: block;
        position: fixed;
        top: 10px;
        right: 20px;
        width: 50px;
        height: 50px;
        z-index: 3000;
    }
    /* 把手機選單內容藏起來 */
    /* 手機選單滑出 */
    .hamburger-nav .hamburger-menu{
        /*display: none;*/
        position: fixed;
        top: 0;
        right: 0;
        width: min(82vw, 320px);
        height: min(80vh, 360px);
        margin: 0;
        padding: 20px 18px 20px;
        box-sizing: border-box;
        background: rgba(50,50,60,0.9);
        border-bottom-left-radius: 20px;
        box-shadow: 0 0 12px rgba(255,255,255,0.7);
        overflow-y: auto;

        transform: translateX(110%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.28s ease, opacity 0.28s ease, visibility 0s linear 0.28s;
        z-index: 3001;
    }

    /* 把 checkbox 藏起來: display:none*/
    /* checkbox 蓋在漢堡按鈕上 透明但可點擊*/
    .hamburger-nav .toggler{
        /*display: none;*/
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        opacity: 0;
        cursor: pointer;
        z-index: 3003;
        appearance: none;
        -webkit-appearance: none;
        border: 0;
        background: transparent;
        display: block;
    }

    /* 漢堡底板 */
    .hamburger-nav .hamburger_icon{
        position: absolute;
        inset: 0;
        background-color: #ffddbb;
        border-radius: 10px;
        box-shadow: 0 0 16px rgba(0,0,0,0.8);
        z-index: 3002;
    }

    /* 中間那條線 */
    .hamburger-nav .hamburger_icon > div{
        position: absolute;
        top: 50%;
        left: 50%;
        width: 26px;
        height: 4px;
        background: #884422;
        transform: translate(-50%, -50%);
        transition: background 0.25s ease;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    /* 上下兩條線 */
    .hamburger-nav .hamburger_icon > div::before,
    .hamburger-nav .hamburger_icon > div::after{
        content: "";
        position: absolute;
        left: 0;
        width: 26px;
        height: 6px;
        background: #ff8844;
        transition: top 0.25s ease, transform 0.25s ease, background 0.25s ease;
    }

    .hamburger-nav .hamburger_icon > div::before{
        height: 8px;
        top: -11px;
        border-top-left-radius: 999px;
        border-top-right-radius: 999px;
        border-bottom-left-radius: 10;
        border-bottom-right-radius: 10;
    }

    .hamburger-nav .hamburger_icon > div::after{
        top: 7px;
        border-top-left-radius: 10;
        border-top-right-radius: 10;
        border-bottom-left-radius: 999px;
        border-bottom-right-radius: 999px;
    }

    /* 滑鼠移到漢堡上方效果 */
    .hamburger-nav:hover .hamburger_icon{
        background: #ffeecc;
        box-shadow: 0 0 16px rgba(255,220,200,0.75);
        animation: hamburger-spin 1s linear infinite;
        transform-origin: center center;
    }
    /*點擊後 漢堡不會轉*/
    .hamburger-nav .toggler:checked + .hamburger_icon{
        animation: none !important;
        transform: none !important;
    }

    /* 小於 860 不會轉*/
    @media (max-width: 980px){
        .hamburger-nav:hover .hamburger_icon{
            animation: none;
            transform: none;
        }
    }

    .hamburger-nav:hover .hamburger_icon > div,
    .hamburger-nav:hover .hamburger_icon > div::before,
    .hamburger-nav:hover .hamburger_icon > div::after{

    }

    /* 點擊後，中間線隱藏 */
    .hamburger-nav .toggler:checked + .hamburger_icon > div{
        background: transparent;
    }
    /* 上下兩條線旋轉成 X */
    .hamburger-nav .toggler:checked + .hamburger_icon > div::before{
        top: 0;
        width: 26px;
        height: 6px;
        background: #884422;
        transform: rotate(45deg);
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .hamburger-nav .toggler:checked + .hamburger_icon > div::after{
        top: 0;
        width: 26px;
        height: 6px;
        background: #884422;
        transform: rotate(-45deg);
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    /* 點擊後，手機導覽滑出 */
    .hamburger-nav .toggler:checked ~ .hamburger-menu{
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        transition: transform 0.28s ease, opacity 0.28s ease;
    }



    #MenuBar2 li{
        margin: 8px 0;
    }

    #MenuBar2 li a{
        padding: 4px;
        color: var(--text);
        text-decoration: none;
        border-radius: 6px;
    }
    #MenuBar2 li a:hover,
    #MenuBar2 li a:focus{
        background-color: var(--text);
        color: #444444;
        box-shadow: 0 0 6px var(--text)
    }
    .hamburger-menu .base-footer-nav{
        width: 100%;
        position:absolute;
        bottom: 20px;
        left: 0;
        text-align: center;
        background-color: rgba(0,0,0,0);
        color: var(--text);
    }

/*}*/
/*手機版本 @media (max-width: 860px) */












/* ======================== */