* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input {
    outline: none;
    background-color: transparent;
    border: none;
}

.home {
    position: relative;
    width: 100vw;
    min-width: 1200px;
    height: 100vh;
    min-height: 750px;
    background-color: #DFE1E5;
}

.main {
    position: relative;
    display: flex;
    width: 1200px;
    height: 480px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #FAFAFA;
    border: 1px solid #DEDEDE;
}

.left {
    width: 480px;
    z-index: 2;
}

.right {
    flex: 1;
}

.box {
    width: 380px;
    height: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.title {
    display: flex;
    align-items: center;
    margin: 44px 0 55px 0;
}

.title img {
    width: 100px;
    height: 50px;
    margin-right: 10px;
}

.title span {
    display: block;
    flex: 1;
    font-size: 20px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
}

.input input {
    width: 380px;
    height: 42px;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    padding-left: 20px;
    box-sizing: border-box;
}

.input input::placeholder {
    color: #999999;
}

.input .pas {
    margin-top: 10px;
}

.input .btn {
    width: 380px;
    height: 42px;
    background: #3D7EFF;
    margin-top: 50px;
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    line-height: 42px;
    cursor: pointer;
}

.support {
    position: absolute;
    min-width: 1200px;
    font-size: 12px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #666666;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    text-align: center;
}

.support img {
    width: 10px;
    height: 11px;
    margin-left: 16px;
    margin-right: 2px;
}

.support .company {
    color: #999999;
}

.toast {
    min-width: 100px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, .7);
    color: #ffffff;
    text-align: center;
    line-height: 50px;
    padding: 0 15px;
    border-radius: 8px;
}

.othLogin {
    margin-top: 20px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #999999;
}


.wximg {
    width: 24px;
    height: 24px;
    background-image: url("../style/weChat1.png");
    background-size: 24px 24px;
    cursor: pointer;
    margin-left: 10px;
}

.wximg:hover {
    background-image: url("../style/weChat2.png");
}
.wxBox{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wx {
    font-size: 20px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #000000;
    margin: 60px 0 30px 0;
}

.erCode {
    width: 250px;
    height: 250px;
    background: #FEFEFE;
    border: 1px solid #EEEEEE;
}

.tip {
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #999999;
    margin: 10px 0 40px 0;
}

.change {
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #3D7EFF;
    cursor: pointer;
}
.disNone{
    display: none;
}

.diamonds1 {
    position: absolute;
    width: 110px;
    height: 120px;
    right: 0;
    bottom: -120px;
    animation-name: myfirst;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-delay: 0;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}

.diamonds2 {
    position: absolute;
    width: 110px;
    height: 120px;
    left: 280px;
    top: -150px;
    transform: scale(0.5);
    animation-name: myfirst2;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-delay: 0;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}

.diamonds3 {
    position: absolute;
    width: 350px;
    height: 330px;
    left: -180px;
    top: 166px;
    z-index: 1;
    animation-name: myfirst3;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-delay: 0;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-play-state: running;
}

@keyframes myfirst {
    0% {
        bottom: -100px;
    }

    25% {
        bottom: -115px;
    }

    50% {
        bottom: -125px;
    }

    75% {
        bottom: -135px;
    }

    100% {
        bottom: -145px;
    }
}

@keyframes myfirst2 {
    0% {
        top: -150px;
    }

    25% {
        top: -135px;
    }

    50% {
        top: -120px;
    }

    75% {
        top: -105px;
    }

    100% {
        top: -90px;
    }
}

@keyframes myfirst3 {
    0% {
        top: 166px;
    }

    25% {
        top: 170px;
    }

    50% {
        top: 174px;
    }

    75% {
        top: 178px;
    }

    100% {
        top: 182px;
    }
}