/* ▼Countdown Timer▼ */
.at_top{
    display: none;
}

.countdown {
    position: sticky;
    top:0;
      background: #c00000;
      background-size: cover;
      padding: 10px 0;
      width: 100%;
      max-width: 1920px;
      margin: 0 auto;
      transition: all 1s;
      z-index: 1;
      display: none;
  }

  .countdown_content {
      max-width: 900px;
      margin: 0 auto;
      font-family: 微軟正黑體, Meiryo, sans-serif, "Noto Sans TC";
      font-weight: 700;
      font-size: 2.5rem;
      letter-spacing: 5px;
      color: #fff;
      text-shadow: 1px 1px 3px #410412;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: nowrap;
      text-align: center;
  }



  #demo {
      color: #fff;
  }

  @media screen and (max-width: 900px) {
      .countdown {
          padding: 3% 0;
      }

      .countdown_content {
          font-size: 1.5rem;
          letter-spacing: 3px;
      }

  }

  @media screen and (max-width: 600px) {
      .countdown_content {
          font-size: 1.1rem;
          letter-spacing: 1px;
      }
  }


  /* ▲Countdown Timer▲ */
/* 英文版文字設定*/

  .to_e .countdown_content {
    font-size: 1.5rem;
  }
  @media screen and (max-width: 900px) {
    .to_e .countdown {
        padding: 3% 0;
    }

    .to_e .countdown_content {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

}

@media screen and (max-width: 600px) {
    .to_e .countdown_content {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}
/* 下面為個別設定*/

