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

body {
  padding-bottom: 15px;
}

#app {
  padding: 50px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #app {
    padding: 30px 15px;
  }
}

label {
  display: block;
  font-size: 1rem;
  color: #bab4b0;
}

#factor_loading,
input {
  background-color: #fff;
  border: none;
  border-radius: 15px;
  font-size: 1rem;
  color: #3a1c0c;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  #factor_loading,
  input {
    width: 100px;
  }
}
#factor_loading:focus,
input:focus {
  outline: none;
}

.all_list {
  padding: 15px;
  border-radius: 15px;
  background-color: #fff;
  margin-top: 20px;
}
.all_list .result {
  width: 100%;
  display: flex;
  margin-bottom: 10px;
}
.all_list .result .rs {
  flex: 1;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .all_list .result {
    flex-direction: column;
  }
}

button {
  font-size: 1rem;
  border: none;
  border-radius: 15px;
  padding: 10px 30px;
  background-color: #fce4c5;
  cursor: pointer;
  transition: 0.3s;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  button {
    padding: 10px 20px;
    margin-left: 5px;
  }
}
button:hover {
  background-color: #fbd9ad;
}
button.rm_btn {
  background-color: #fa4741;
  color: #fff;
}

.fl,
.p {
  background-color: #fce4c5;
  display: inline-block;
  border-radius: 15px;
  padding: 10px 30px;
  margin: 10px;
  position: relative;
  font-size: 1.2rem;
}
.fl .del,
.p .del {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fbbc44;
  font-size: 3px;
  position: absolute;
  right: -15px;
  top: -15px;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  font-size: 1.2rem;
}
.fl .del:hover,
.p .del:hover {
  transform: scale(1.2);
  background-color: #fa4741;
}

.p {
  border: 1px solid #fce4c5;
  background-color: #fff;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

[v-cloak] {
  display: none;
}

.bxs-copy-alt {
  color: #fbbc44;
}

.rs .ave,
.rs .cr {
  display: inline-block;
  cursor: pointer;
  padding: 10px 30px;
  border-radius: 15px;
  transition: 0.3s;
  position: relative;
  border: 1px solid #fce4c5;
}
.rs .ave i,
.rs .cr i {
  transition: 0.3s;
}
.rs .ave:hover,
.rs .cr:hover {
  background-color: #fce4c5;
}
.rs .ave:hover i,
.rs .cr:hover i {
  color: #fa4741;
  transform: scale(1.2);
}
@media screen and (max-width: 768px) {
  .rs .ave,
  .rs .cr {
    display: block;
  }
}

.copy {
  display: none;
  position: absolute;
  top: 50%;
  right: -50px;
  font-size: 0.8rem;
  transform: translateY(-50%);
  pointer-events: none;
  color: #bab4b0;
}
@media screen and (max-width: 768px) {
  .copy {
    top: -50%;
    left: 0px;
    transform: translate(0, 0);
  }
}

.copy.show {
  display: inline-block;
  animation: fade 2s linear;
}

@keyframes fade {
  from {
    opacity: 100%;
  }
  to {
    opacity: 0%;
  }
}
.perspective,
.wait {
  font-size: 1rem;
  color: #bab4b0;
  margin: 10px;
}

.window {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(55, 24, 24, 0.6);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.window .popup {
  background-color: #faf4f0;
  padding: 20px;
  border-radius: 18px;
  max-width: 1300px;
}
@media screen and (max-width: 768px) {
  .window .popup {
    max-width: 90%;
    max-height: 90%;
    overflow: scroll;
    padding: 10px;
    margin: 20px;
  }
}

.info_btn {
  position: fixed;
  top: 50px;
  right: 50px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .info_btn {
    top: auto;
    bottom: 25px;
    right: 5px;
  }
}/*# sourceMappingURL=style.css.map */