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

input {
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
}


html,
body {
    width: 100%;
    height: 100%;
    background-color: #FCF1D7;
}

.header {
    height: 78px;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    align-items: center;
    background-color: #fff;

    .logo {}

    .check-language {
        display: flex;
        justify-content: flex-start;
        font-size: 20px;
        font-family: PingFang SC;
        font-weight: 400;
        line-height: 28px;
        color: rgba(102, 100, 100, 1);

        span {
            margin: 0 10px;
        }

        img {
            margin-left: 10px;
        }
    }
}

.main {


    .form-area {



        .form-item {
            width: 312px;
            height: 38px;
            background: rgba(255, 255, 255, 1);
            border: 1px solid #dadada;
            opacity: 1;
            border-radius: 4px;
            margin: auto;
            margin-top: 30px;
            display: flex;
            justify-content: flex-start;

            .left {
                width: 38px;
                height: 100%;
                text-align: center;

                img {
                    margin-top: 12px;
                    width: 14px;
                    height: 14px;
                }
            }

            .right {
                width: 272px;
                height: 100%;
                position: relative;
                border: none;

                input {
                    display: block;
                    width: 100%;
                    height: 100%;
                    background: none;
                    box-shadow: inset 0 0 0 1000px #ffffff !important;
                }

                .del {
                    width: 14px;
                    height: 14px;
                    border-radius: 50%;
                    background-color: #0089E1;
                    position: absolute;
                    top: 12px;
                    right: 0;
                    cursor: pointer;
                    display: none;
                    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAIJJREFUKFOtUtsRgCAMSybTUWQyZRM3qwcHXHmocNDP0KQhLTFRnOBiHVlEDueE5KUdBXwjaTSeTQ5NJwATBRRmSXrxWJVtLRCanFhF9A5bgSkB99wk9pLTF8pBX7YtgBtAlkFPYMlqK8RmYCLiV1SmGgT237RHLm7dhY1MfV1Vr8gDG7Y7EJEhAS0AAAAASUVORK5CYII=');
                    background-repeat: no-repeat;
                    background-position: 1px 1px;
                    background-size: 12px;
                    z-index: 50;
                }
            }
        }

        .form-option {
            width: 314px;
            margin: auto;
            margin-top: 20px;
            display: flex;
            justify-content: flex-start;

            .check-box {
                width: 14px;
                height: 14px;
                background-color: #0089E1;
                cursor: pointer;
                margin-top: 1px;
            }

            .active {
                background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAHCAYAAADam2dgAAAABHNCSVQICAgIfAhkiAAAAG9JREFUGFd1j20Ng0AQRN84qANwUAvFAQ4ICrBQCZVwEpCABBwNmaZHmktu/+xH3s7Oik7Y/gBF0inbD2BMU3nbBViAVVIJ9AY2YArYAlmsSgcwAMlzVajKSvE7GeDZAl+lPx/x9pK0t7/cUO/LzC+jrycI0z5iuAAAAABJRU5ErkJggg==');
                background-repeat: no-repeat;
                background-position: center center;
            }

            .remember {
                margin-left: 8px;
                font-size: 11px;
                font-weight: 400;
                line-height: 16px;
                color: rgba(51, 51, 51, 1);
            }

            .forget {
                font-size: 11px;
                font-family: PingFang SC;
                font-weight: 400;
                line-height: 16px;
                color: #0089E1;
                cursor: pointer;
            }
        }

        .login-btn {
            width: 314px;
            height: 40px;
            margin: auto;
            background: #0089E1;
            opacity: 1;
            border-radius: 4px;
            margin-top: 30px;
            text-align: center;
            line-height: 40px;
            font-size: 17px;
            font-weight: 400;
            color: rgba(255, 255, 255, 1);
            cursor: pointer;
        }

        .login-ok {
            animation-duration: .6s
        }
    }
}

.copyright {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 500;
}