@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

header {
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(255, 208, 42);
}
header div {
  flex: 0 1 50px;
  margin-left: 5rem;
}
header div img {
  width: 100%;
}
header a {
  margin-right: 5rem;
  flex: 0 1 130px;
  font-size: 1.3rem;
  text-decoration: none;
  color: rgb(255, 166, 32);
  font-weight: bold;
  text-align: center;
  background: white;
  border: 1px solid white;
  border-radius: 5rem;
  padding: 0.3rem 0.8rem;
  transition: all 0.5s ease;
}
header a:hover {
  transform: scale(1.1);
}

main {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 6rem;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  border-radius: 5rem;
}
main div.pc-window {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}
main div.pc-window div.carousel-inner {
  width: 45vw;
  border-radius: 30px; /* 四邊倒角 */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* 陰影 */
}
main div.pc-window div.carousel-indicators button.active {
  background-color: rgb(255, 166, 32);
}
main div.pc-window div.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: rgb(235, 235, 235);
}
main div.mobile-window {
  display: none;
}
main div.space {
  width: 8vw;
}
main div.download h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}
main div.download div.download-space {
  width: 10px;
}
main div.download div.store-btn {
  display: flex;
  align-content: center;
  justify-content: center;
}
main div.download div.store-btn a {
  flex: 0 1 180px;
  margin-top: 0.7rem;
  padding: 0.3rem;
  transition: all 0.5s ease;
}
main div.download div.store-btn a img {
  width: 100%;
}
main div.download div.store-btn a:hover {
  transform: scale(1.05);
}

footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 6.5rem;
}
footer div.privacy {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
footer div.privacy a {
  text-decoration: none;
  color: black;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  font-size: 1.1rem;
  font-weight: 450;
}
footer p {
  margin-left: 4rem;
  margin-top: 1rem;
  font-size: 1.2rem;
}

@media screen and (max-width: 1400px) {
  main {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    margin-top: 4rem;
    align-items: center;
    justify-content: center;
  }
  main div.pc-window div.carousel-inner {
    width: 65vw;
  }
}
@media screen and (max-width: 450px) {
  header {
    padding: 0.8rem 2rem;
    justify-content: space-between;
  }
  header div {
    margin-left: 0rem;
    flex: 0 1 30px;
  }
  header a {
    margin-right: 0;
    flex: 0 1 100px;
    font-size: 1rem;
    padding: 0.1rem;
  }
  main {
    margin-top: 2.5rem;
  }
  main div.mobile-window {
    display: flex;
    flex-direction: column;
    align-items: top;
    justify-content: top;
    margin-top: 2rem;
    padding-bottom: 3.5rem;
  }
  main div.mobile-window div.carousel-inner {
    margin-top: 0rem;
    width: 80vw;
    border-radius: 30px; /* 四邊倒角 */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); /* 陰影 */
  }
  main div.mobile-window div.carousel-indicators button.active {
    background-color: rgb(255, 166, 32);
  }
  main div.mobile-window div.carousel-indicators button {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: rgb(235, 235, 235);
  }
  main div.pc-window {
    display: none;
  }
  main div.download h2 {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  main div.download div.download-space {
    width: 1px;
  }
  main div.download div.store-btn a {
    flex: 0 1 100px;
    margin-top: 0.6rem;
    padding: 0.3rem;
  }
  footer {
    margin-top: 4rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer div.privacy a {
    font-size: 0.8rem;
  }
  footer p {
    margin: 0.5rem 0rem;
    font-size: 0.8rem;
  }
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #ffffff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(255, 208, 42);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(255, 166, 32);
}/*# sourceMappingURL=style.css.map */