@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");

.New-Astro-Light{
  font-family: "new-astro", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.New-Astro-Regular{
  font-family: "new-astro", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.New-Astro-Medium{
  font-family: "new-astro", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.New-Astro-SemiBold{
  font-family: "new-astro", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.New-Astro-Bold{
  font-family: "new-astro", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.raleway-thin {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}
.raleway-ExtraLight{
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}
.raleway-Light {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.raleway-Regular {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.raleway-Medium {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.raleway-SemiBold {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html, body {
  height: 100vh;
  width: 100vw;
}
.no-scroll {
    overflow: hidden;
    /* 禁止滚动条 */
    touch-action: none;
    /* 禁止移动端触摸滚动 */
    position: fixed;
    /* 防止页面跳动 */
    width: 100%;
    height: 100vh;
}
.opacity {
    opacity: 1;
    position: relative;
    visibility: visible;
}
.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  font-family: "new-astro", sans-serif;
  font-weight: 400;
  font-style: normal;
}
html.initial-loading-complete .loading {
  display: none;
}
/* overlay */
.overlay{
  display: flex;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  z-index: 999997; /* 比 preloader 小一點 */
}
.bar{
  height:105vh;
  background: #313131;
  width: 10vw;
}
.preloader{
  position: fixed;
  height:100vh;
  width: 100vw;
  top: 0;
  z-index: 999999;
  pointer-events: none; /* 不擋 overlay 視覺 */
}


.preloader .heading{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 70%;
  left:50%;
  transform: translate(-50%, -50%);
  
}
.preloader .heading h1{
  text-transform: uppercase;
  color: white;
  font-size: 15vw;
  opacity: 0;
}
.loading .loading-counter{
  position: fixed;
  top: 53%;
  left:50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  color: white;
  opacity:0;
  text-transform: uppercase;
  font-size: 10vw;
  z-index: 9999999;
}
