body,
p,
h1,
h2,
h3,
img,
ul,
li,
ol,
input,
textarea,
button {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}

.header {
    display: flex;
    align-items: center;
    height: 119px;
    background: #FFFFFF;
}
.header .logo {
    margin-left: 383px;
}
.container {
    position: relative;
    height: 660px;
}
.container .loginWrapper {
    position: absolute;
    top: 99px;
    right: 372px;
    width: 400px;
    height: 400px;
    border-radius: 6px;
    box-shadow:0px 0px 20px 0px rgba(0, 0, 0, 0.12);
    background: #FFFFFF;
}
.loginWrapper .loginHead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 38px;
    height: 100px;
}
.loginWrapper .loginHead .loginHead-left {
    font-size: 20px;
    color: #333333;
}
.login-tip {
    display: flex;
}
.login-tip .poptip {
    position: relative;
    border: 1px solid #409EFF;
    padding: 0 10px;
    color: #409EFF;
    border-radius: 2px;
    font-size: 12px;
    height: 30px;
    line-height: 30px;
}

.login-tip .poptip-arrow em{
  position: absolute;
  width: 0px;
  height: 0px;
  border: 7px dashed #808080;
  border-color: transparent transparent  transparent #409EFF; 
  right: -14px;
  top: 5px;
}
.login-tip .poptip-arrow span{
    position: absolute;
    width: 0px;
    height: 0px;
    border: 7px dashed #808080;
    border-color: transparent transparent transparent #FFFFFF; 
    right: -13px;
    top: 5px;
}
.login-tip .toggle {
    margin-left: 5px;
    cursor: pointer;
}
.form {
    margin: 0 38px;
}
.form .form-item {
    height: 45px;
    vertical-align: middle;
}
.form .form-item .suffix{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 36px;
    cursor: pointer;
}
.form .form-item .validate {
    width: 190px;
}
.form .code-box {
    display: flex;
}
.form .form-item .codeImage {
    display: flex;
    align-items: center;
}

.form .flex {
    display: flex;
}

.codeWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
}
.codeWrapper .qrCode {
    width: 164px;
    height: 164px;
    border: 1px solid #E5E5E5;
}
.codeWrapper .tips {
    height: 50px;
    display: flex;
    align-items: center;
}
.codeWrapper .tips img {
    width: 24px;
    height: 24px;
}
.codeWrapper .tips .tips-text {
    font-size: 12px;
    margin-left: 8px;
}
.codeWrapper .tips .tips-text span:last-child{
    color: #999999;
}
.codeWrapper .download {
    position: absolute;
    right: 39px;
    bottom: 23px;
    font-size: 12px;
    color: #999999;
}

.footer {
    display: flex;
    justify-content: center;
    color: #666666;
    padding-top: 30px;
    font-size: 14px;
}
.footer p {
    height: 44px;
    line-height: 44px;
}

@media screen and (min-width: 320px) and (max-width: 480px) {
    .container {
        background-color: #333333;
        background-image: none;
    }
    .header .logo {
       margin: 0 auto;
    }

    .container .loginWrapper {
        right: 10px;
        left: 10px;
        width: auto;
    }

    .form .code-box {
        display: block;
        height: auto;
    }

    .form .form-item .codeImage {
        justify-content: space-between;
    }

    .form .form-item .validate {
        width: 100%;
    }
}