/* 字體宣告區：保留 GenSenRounded 可供選擇用 */
@font-face {
    font-family: "GenSenRounded";
    src: url("../../font/GenSenRoundedTW-M.ttf") format("truetype");
    font-weight: normal;
  }
  @font-face {
    font-family: "GenSenRounded";
    src: url("../../font/GenSenRoundedTW-M.ttf") format("truetype");
    font-weight: 400;
  }
  @font-face {
    font-family: "GenSenRounded";
    src: url("../../font/GenSenRoundedTW-M.ttf") format("truetype");
    font-weight: 500;
  }
  @font-face {
    font-family: "GenSenRounded";
    src: url("../../font/GenSenRoundedTW-B.ttf") format("truetype");
    font-weight: bold;
  }
  @font-face {
    font-family: "GenSenRounded";
    src: url("../../font/GenSenRoundedTW-B.ttf") format("truetype");
    font-weight: 700;
  }
  @font-face {
    font-family: "GenSenRounded";
    src: url("../../font/GenSenRoundedTW-H.ttf") format("truetype");
    font-weight: 900;
  }
  @font-face {
    font-family: "DIN";
    src: url("../../font/DIN-Black.ttf") format("truetype");
  }
  
  /* 全站 reset 與字體統一改為 Noto Sans TC */
  * {
    box-sizing: border-box;
    line-height: 140%;
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  }
  
  *, ::after, ::before {
    box-sizing: border-box;
    border-width: 0px;
    border-style: solid;
    border-color: currentColor;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    color: #323232;
    background-color: white;
    font-size: 16px;
    font-weight: 500;
    min-height: 100vh;
  }
  
  audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
  }
  
  img, video {
    max-width: 100%;
    height: auto;
  }
  
  h1, h2, h3, h4, h5 {
    margin: 0px;
    font-weight: 600;
  }
  
  button, input, optgroup, select, textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-weight: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
  }
  
  mark, span {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    font-family: inherit;
  }
  
  [role=button], button {
    cursor: pointer;
  }
  
  button, select {
    text-transform: none;
  }
  
  button {
    appearance: button;
    background-color: transparent;
    background-image: none;
  }
  
  a {
    color: inherit;
    text-decoration: inherit;
  }
  
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
  }
  
  ul, ol, li, p {
    margin: 0;
    padding: 0;
    text-indent: 0px;
  }
  
  video {
    pointer-events: none;
    user-select: none;
  }
  
  video::-webkit-media-controls-fullscreen-button {
    display: none;
  }
  
  video.new-version-video {
    pointer-events: initial;
    user-select: initial;
  }

.float-btn{
    top: 49%;
    right: 3%;
    transform: translateY(-50%);
    z-index: 999;
}

.float-btn .btn1,.float-btn .btn2{
    width: 48px;
}

.banner .title{
    width: 30%;
    top: 8%;
    left: 35%;
    transform: translate(-50%, -50%);
    animation: popup 0.5s ease-out forwards;   
}

@media (max-width:1080px){
    .float-btn .btn1, .float-btn .btn2 {
        width: 32px;
    }
}

@media (max-width:768px){
    /* float-btn */
    .float-btn-mb{
        bottom: 0;
        z-index: 99;
    }
    .float-btn {
        top: 83%;
    }
    .float-btn .btn1, .float-btn .btn2 {
        width: 32px;
    }
}