* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-size: 12px;
  background-color: #ea3241;
  min-height: 800px;
}
input:focus,
button:focus {
  outline: none !important;
}
.list-pop{
  position: fixed;
  z-index: 8;
  background-color: rgba(0,0,0,0.5);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.list-pop-content {
  left: 40%;
  right: 0;
  overflow-x: hidden;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 10px;
  background-color: white;
  position: absolute;
  transform: translateX(60vw);
  transition: transform 0.3s;
}
.list-pop-content.normal {
  transform: none;
}
.list-pop-head {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.list-pop-head label {
  font-size: 14px;
  margin-right: 7px;
}
.list-pop-list {
  flex: 1;
  overflow-y: auto;
}
.list-pop-item {
  margin: 7px 0;
  font-size: 14px;
  line-height: 24px;
}
#app {
  height: 100%;
  position: relative;
  max-width: 640px;
  margin: auto;
}
.page {
  height: 100%;
  width: 100%;
}
.content {
  background-color: #ea3241;
  padding: 30px;
  height: 100%;
}
h1.msg-hello {
  font-size: 28px;
  text-align: center;
  color: #d6000f;
  margin: 0;
  padding-bottom: 25px;
}
#success-img {
  box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
}
.login-form {
  background-color: white;
  box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
  padding: 10px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.form-item {
  margin-bottom: 17px;
  text-transform: uppercase;
}
.form-item label {
  font-size: 14px;
  color: #333;
  margin-bottom: 7px;
  line-height: 21px;
  display: block;
}
.red-star {
  color: #d6000f;
}
input.input-text {
  display: block;
  padding: 8px 15px;
  color: black;
  font-size: 14px;
  line-height: 2;
  width: 100%;
  background: rgba(163, 163, 163, 0.4);
  border-color: transparent;
  overflow: hidden;
}
input.input-text:focus, input.input-text:focus-within {
  outline: none !important;
  box-shadow: 0 0 1px 2px #e59804;
}
input.input-text.error {
  border-color: #d6000f;
}
button.submit-button {
  display: block;
  width: 100%;
  background: #d6000f;
  border-color: transparent;
  font-size: 17px;
  color: white;
  font-weight: 400;
  line-height: 44px;
  border: none;
}
button.submit-button:hover {
  opacity: 0.8;
}
.img-responsive{
  width: 100%;
  height: auto;
}
.error-dialog {
  position: fixed;
  width: 60vw;
  top: 50%;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 20vw;
  z-index: 9;
}
.error-dialog-content {
  font-size: 14px;
  line-height: 21px;
  max-height: 98px;
  max-width: 100%;
  overflow: hidden;
  color: white;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 4px;
  padding: 7px;
  padding-left: 28px;
  position: relative;
}
.warn-ico {
  width: 16px;
  height: 16px;
  display: block;
  text-indent: -999px;
  overflow: hidden;
  background: url(../img/warn.png);
  background-size: contain;
  position: absolute;
  left: 6px;
  top: 50%;
  margin-top: -8px;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut-element {
  animation-name: fadeIn;
  animation-duration: 2s; /* 可以根据需要调整动画持续时间 */
}
@keyframes zoomIn {
  from {
    transform: scale(0);
  }
  to {
    transform: none;
  }
}
.zoomIn-element {
  animation-name: zoomIn;
  animation-duration: 2s; /* 可以根据需要调整动画持续时间 */
}
.input-div {
  position: relative;
}
.choose-icon {
  position: absolute;
  right: 0;
  top: 0;
}