@charset "utf-8";

/*弹窗样式*/
.verification {
    width: 420px;
    height: 270px;
    background-color: #ffffff;
    box-shadow: 0px 0px 46px 0px rgba(80, 131, 207, 0.13);
    border-radius: 5px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -135px;
    margin-left: -210px;
    z-index: 999;
    display: none;
}

.verification h3 {
    text-align: center;
    font-size: 16px;
    margin-top: 47px;
    margin-bottom: 38px;
}

.verification .verification_frame {
    width: 294px;
    height: 40px;
    margin: 0 auto;
}

.verification .verification_frame input {
    width: 160px;
    border: none;
    background-color: #f2f2f5;
    float: left;
    outline: none;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
}

.verification .verification_img {
    width: 119px;
    background-color: #f2f2f5;
    float: right;
    height: 40px;
}

.verification input[type=submit] {
    width: 294px;
    height: 40px;
    background-image: linear-gradient(0deg, #00c3f5 0%, #5ec2dd 0%, #bcc1c5 0%, #5ea9dd 0%, #0091f4 0%, #00c9fd 100%), linear-gradient(#5480da, #5480da);
    background-blend-mode: normal, normal;
    border-radius: 4px;
    border: none;
    color: #fff;
    font-size: 16px;
    letter-spacing: 40px;
    padding-left: 40px;
    margin: 30px auto;
    display: block;
    outline: none;
    cursor: pointer;
}

.verification .close {
    width: 18px;
    height: 18px;
    border: solid 1px #666;
    border-radius: 100%;
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
}

.verification .close:before {
    content: "x";
    text-align: center;
    font-size: 14px;
    display: inherit;
    margin-top: -2px;
}

