html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
}

body {
  background-color: #DEE3E7;
  box-sizing: border-box;
}

#app {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  border-radius: 8px;
  box-shadow: 0px 0px 20px rgba(2, 0, 41, 0.1);
  max-width: 800px;
  width: 100%;
  background-color: #fff;
  padding: 20px 40px;
}
@media all and (max-width: 959px) {
  .card {
    margin: 10px;
    max-width: 95%;
  }
}
.card h1 {
  text-align: center;
  color: #222;
}
.card h1 .en_name {
  font-size: 1rem;
  color: #888;
}

.links {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.links .link {
  list-style: none;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}
.links .link a {
  text-decoration: none;
  color: #222;
  font-size: 1.2rem;
  text-align: center;
  width: 100%;
  display: inline-block;
  padding: 10px 0;
  border-radius: 5px;
  background-color: #DEE3E7;
  border-bottom: 8px solid #DEE3E7;
  transition: 0.3s;
}
.links .link a .info_link {
  font-size: 0.8rem;
  color: rgba(236, 101, 67, 0.7);
  transition: 0.3s;
}
.links .link a .info_link:hover {
  color: #ec6543;
}
.links .link a:hover {
  border-bottom: 8px solid #EC6543;
}
@media all and (max-width: 959px) {
  .links .link a {
    border-bottom: 6px solid #e5aa9b;
  }
}

.pw {
  font-size: 0.8rem;
}/*# sourceMappingURL=style.css.map */