* {
    padding: 0;
    margin: 0;
    list-style: none;
}

body {
    width: 100%;
    height: 100vh;
    background: url(/static/2021/images/bg.jpg);
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box {
    position: relative;
}

.box .con {
    position: absolute;
    width: 35%;
    right: 11%;
    height: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box h2 {
    width: 100%;
    margin-bottom: 20px;
    color: rgb(30, 159, 255);
}

.box input {
    outline: none;
    width: 100%;
    height: 35px;
    background: rgb(232, 240, 254);
    border: 1px solid #ccc;
    margin-top: 20px;
    text-indent: 10px;
}

.box .submit {
    width: 100%;
    background: rgb(30, 159, 255);
    color: #fff;
    height: 50px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.box .qt {
    margin-top: 10px;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box .qt .xian {
    display: block;
    width: 80px;
    height: 1px;
    background: #ccc;
}

.box .qt span:nth-child(2) {
    padding: 0 20px;
}

.box p {
    margin-top: 10px;
    color: #999;
}