* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    background: #f0f2f5;
}

.container {
    background: #f0f2f5;
    padding-top: 72px;
    padding-bottom: 112px;
}

.content {
    width: 980px;
    margin: 20px auto;
}

.content>div {
    display: inline-block;
    vertical-align: top;
}

.left-content {
    width: 580px;
    padding-right: 32px;
    box-sizing: border-box;
}

.f-logo {
    margin: 112px 0 16px;
}

.f-logo>img {
    height: 106px;
    margin: -28px;
}

.f-quote {
    font-size: 28px;
    font-weight: 500;
    color: #333;
}

.card {
    background: #fff;
    width: 396px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 8px 16px rgb(0 0 0 / 10%);
    padding: 10px 15px;
    box-sizing: border-box;
    margin-top: 40px;
}

.input-container>input[type=text],
.input-container>input[type=password] {
    width: 100%;
    padding: 14px 16px;
    box-sizing: border-box;
    outline: none;
    border: 1px solid #dddfe2;
    border-radius: 6px;
    margin: 5px 0;
    font-size: 17px;
}

.input-container>input[type=text]:focus,
.input-container>input[type=password]:focus {
    border: 1px solid #1877f2;
    box-shadow: 0 0 0 2px #e7f3ff;
}

.login-btn {
    background: #1877f2;
    color: #fff;
    border-radius: 6px;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    border: none;
    box-sizing: border-box;
    padding: 14px 16px;
    margin: 10px 0;
}

.divider {
    width: 100%;
    height: 1px;
    background: #d2d2d2;
    margin-top: 15px;
    margin-bottom: 10px;
}

.f-lg-footer {
    width: 980px;
    margin: 30px auto;
}

.f-lg-footer>ul {
    margin-bottom: 10px;
    margin-top: 10px;
}

.f-lg-footer>ul>li {
    display: inline-block;
    margin: 0 5px;
}

.f-lg-footer>ul>li>a {
    text-decoration: none;
    color: #777;
    font-size: 18px;
    font-weight: 600;
}

.fix-m-header {
    background: #fffbe2;
    color: #3b5998;
    text-align: center;
    height: 50px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    display: none;
}

.fix-m-header>span,
.fix-m-header>img {
    vertical-align: top;
}

.fix-m-header>span {
    line-height: 50px;
}

.fix-m-header>img {
    position: relative;
    top: 10px;
}

.m-footer {
    display: none;
}

@media (max-width: 980px) {
    .body {
        background: #fff;
    }

    .container {
        padding-top: 0px;
        padding-bottom: 20px;
        background: #fff;
    }

    .content {
        width: 100%;
        margin: 0 auto;
    }

    .left-content {
        width: 100%;
    }

    .right-content {
        width: 100%;
    }

    .f-lg-footer {
        display: none;
    }

    .f-logo {
        margin: 0 auto;
        text-align: center;
        margin-left: 50px;
    }

    .f-logo>img {
        height: 50px;
        margin: -50px auto;
        display: inline-block;
    }

    .f-quote {
        display: none;
    }

    .card {
        width: 100%;
        box-shadow: none;
    }

    .input-container>input[typ=text],
    .input-container>input[typ=password] {
        background: #f5f6f7;
    }

    .divider {
        display: none;
    }

    .fix-m-header {
        display: block;
    }

    .m-footer {
        display: block;
        width: 250px;
        margin: 0 auto;
    }

    .m-footer .m-f-lang>ul {
        text-align: center;
        font-size: 14px;
    }

    .m-footer .m-f-lang>ul li {
        list-style: none;
    }

    .m-footer .m-f-lang>ul>li>a {
        text-decoration: none;
        color: #777;
    }

    .m-footer .links>a {
        display: inline-block;
        margin: 0 10px;
        text-decoration: none;
        color: #777;
        font-weight: 500;
    }
}