.poup {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.poup .box {
  width: 50%;
  max-height: 70%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 60px 0;
  box-sizing: border-box;
  border-radius: 15px;
}
.poup .box .close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.poup .box .title {
  font-size: 20px;
  text-align: center;
}
.poup .box .form-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.poup .box .form-box .line {
  height: 30px;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}
.poup .box .form-box .line .title {
  font-size: 15px;
}
.poup .box .form-box .line input {
  width: 300px;
  margin-left: 20px;
  height: 25px;
  border-radius: 3px;
  border: 1px solid #ccc;
  outline: none;
  padding-left: 10px;
  box-sizing: border-box;
}
.poup .box .btn {
  width: 350px;
  height: 30px;
  background-color: #4369d9;
  border-radius: 3px;
  text-align: center;
  line-height: 30px;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
}
.poup .box .message span {
  color: red;
  font-size: 12px;
}
.dialog {
  width: 19%;
  height: 40px;
  background-color: #e1f3d8;
  border: 1px solid #d4f7c1;
  border-radius: 3px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  z-index: 9999;
  animation: login 0.2s ease-in;
  display: none;
  line-height: 40px;
  padding: 0 25px 0 35px;
}
.dialog .content {
  width: 100%;
  height: 100%;
  text-align: center;
  box-sizing: border-box;
  font-size: 14px;
  color: #68d279;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.dialog .close {
  width: 16px;
  height: 16px;
  background: url("../images/close2.png") no-repeat 100% 100%;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}
.dialog .yes {
  width: 16px;
  height: 16px;
  background: url("../images/yes.png") no-repeat 100% 100%;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
@keyframes login {
  0% {
    top: 0px;
    opacity: 0.1;
  }
  25% {
    top: 20px;
    opacity: 0.1;
  }
  50% {
    top: 40px;
    opacity: 0.5;
  }
  75% {
    top: 60px;
    opacity: 0.6;
  }
  100% {
    top: 80px;
    opacity: 1;
  }
}
