* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden
}

body {
    background: url(../images/loginBC.png) no-repeat;
    background-size: cover;
}

.clear {
    clear: both;
    height: 0;
    line-height: 0;
    font-size: 0
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.mainBox {
    width: 1100px;
    height: 600px;
    box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.26);
    margin: 150px auto;
    border-radius: 10px;
}

    .mainBox .leftBox {
        width: 600px;
        height: 600px;
        border-bottom-left-radius: 10px;
        border-top-left-radius: 10px;
        background-size: 600px 600px;
        float: left;
        background-image: url('../images/loginBanner.png');
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mainBox .rightBox {
        float: left;
        width: 500px;
        height: 600px;
        border-bottom-right-radius: 10px;
        border-top-right-radius: 10px;
        background-color: #FFFFFF;
    }

        .mainBox .rightBox p {
            margin-top: 44px;
            margin-left: 183px;
            height: 32px;
            font-size: 34px;
            font-family: SourceHanSansSC-Medium;
            font-weight: 500;
            color: #333333;
            line-height: 40px;
        }

        .mainBox .rightBox .input {
            width: 391px;
            height: 200px;
            margin: 0 auto;
            margin-top: 74px;
        }


            .mainBox .rightBox .input li {
                position: relative;
                width: 100%;
                height: 35px;
                line-height: 35px;
                margin-bottom: 51px;
                border-bottom: #E5E5E5 1px solid;
            }

                .mainBox .rightBox .input li:hover {
                    border-bottom: #00577B 1px solid;
                }

                .mainBox .rightBox .input li:nth-child(3) {
                    margin-bottom: 0;
                }

                .mainBox .rightBox .input li img {
                    position: absolute;
                    bottom: 11px;
                    left: 7px;
                    width: 22px;
                    height: 22px;
                }

            .mainBox .rightBox .input input {
                position: absolute;
                bottom: 11px;
                left: 59px;
                height: 23px;
                font-size: 22.17px;
                font-family: SourceHanSansSC-Normal;
                font-weight: 400;
                border: 0;
                outline: none;
            }

                .mainBox .rightBox .input input::placeholder {
                    color: #C0C0C0;
                }

            .mainBox .rightBox .input #code {
                position: absolute;
                right: 0;
                bottom: 6px;
                height: 38px;
            }

                .mainBox .rightBox .input #code img {
                    width: 100%;
                    height: 100%;
                    cursor: pointer;
                    bottom: 0;
                    left: 0;
                }

.rightBox #login {
    width: 391px;
    height: 52px;
    margin: 0 auto;
    text-align: center;
    margin-top: 45px;
    background: #00577B;
    border-radius: 8px;
    line-height: 52px;
    font-weight: 400;
    color: #FEFEFE;
    cursor: pointer;
    font-size: 22px;
    font-family: SourceHanSansSC-Regular;
}

.rightBox #bottomWords {
    width: 391px;
    height: 18px;
    margin: 0 auto;
    margin-top: 46px;
}

    .rightBox #bottomWords a {
        display: inline-block;
        font-family: SourceHanSansSC-Normal;
        color: #999999;
        cursor: pointer;
        text-decoration: none;
        font-size: 18px;
    }

        .rightBox #bottomWords a:nth-child(1) {
            float: left;
        }

        .rightBox #bottomWords a:nth-child(2) {
            float: right;
        }

#code {
    background-color: green;
    border: 0;
    color: #ffffff;
    border-radius: 3px;
    padding-left: 20px;
    padding-right: 20px;
}

    #code:hover:not([disabled]) {
        background-color: #03a903;
    }

    #code:active {
        background-color: green;
    }
