.sign-window {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
  }
@keyframes show {
    0%{
        transform: translateY(-10px);
        opacity: 0;
    }
    20%, 80% {
        transform: translateY(0px);
        opacity: 1;
    }
    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}
.sign-window .message-success {
    position: absolute;
    width: 240px;
    padding: 10px;
    background-color: #fff;
    overflow: hidden;
    border-radius: 5px;
    top: 50%;
    z-index: 1;
    left: 50%;
    display: none;
    margin-left: -120px;
    animation: show 5s ease both;
    font-size: 15px;
}
.sign-window .message-success-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sign-window .message-success-box .success-text {
    font-size: 30px;
    color: #faa21e;
    margin-bottom: 10px;
}
.sign-window .jiaoyin {
    width: 72px;
    height: 90.439px;
    background-image: url('../images/jiaoyin.png');
    background-repeat: no-repeat;
    background-size: 100%;
}
  .sign-window .mask-layer {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .sign-window .sign-wapper {
    position: absolute;
    width: 749px;
    height: 593px;
    left: 50%;
    margin-left: -374.5px;
    top: 50%;
    margin-top: -297.5px;
    background-color: #fff;
    background-image: url('../images/sign-bg.png');
    background-repeat: no-repeat;
    background-size: 100%;
    transform: scale(0.8);
  }
  .sign-window .sign-wapper.zxkt {
    background-image: url('../images/sign-bg-zxkt.png');
  }
  .sign-window .sign-wapper .sign-close {
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: 10px;
    right: 20px;
    border-radius: 100%;
    border: 2px solid #fff;
    cursor: pointer;
  }
  .sign-window .sign-wapper .sign-close::after {
    content: '';
    width: 2px;
    height: 10px;
    background: #fff;
    position: absolute;
    left: 50%;
    margin-left: -1px;
    top: 50%;
    margin-top: -5px;
    transform: rotate(45deg);
  }
  .sign-window .sign-wapper .sign-close::before {
    content: '';
    width: 2px;
    height: 10px;
    background: #fff;
    position: absolute;
    left: 50%;
    margin-left: -1px;
    top: 50%;
    margin-top: -5px;
    transform: rotate(-45deg);
  }
  .sign-window .sign-box {
    position: absolute;
    width: 100%;
    top: 355px;
  }
  .sign-window .sign_form {
    position: relative;
    width: 150px;
    left: 50%;
    margin-left: -88px;
    top: 0;
  }
  .sign-window .sign_form .from_card {
    width: 100%;
    margin-bottom: 9px;
    line-height: 0;
  }
  .sign-window .sign_form .from_card > * {
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    font-size: 16px;
    border: none;
    padding: 3px 9px;
    border-radius: 13px;
    background-color: #e2ecf1;
    color: #616D7E;
    outline: none;
    font-family: PingFang-SC-Bold;
    font-weight: bold;
  }
  .sign-window .sign_form select{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url(../images/icon/24.png) no-repeat scroll 90% center;
  }
  .sign-window .sign_form .username input {
      padding: 3px 9px;
  }
  .sign-window .sign_form .phone input {
    padding: 3px 9px;
  }
  .sign-window .sign-submit {
    width: 136px;
    height: 42px;
    margin: 27px auto 0;
    position: relative;
    left: -13px;
    cursor: pointer;
  }