html,body {
    width: 100%;
    height: 100%;
    font-family: "Microsoft Yahei", "Arial", sans-serif;
    font-size: 14px;
    color: #333;
}

/*pc-mobile 公共的样式 */
.login_box .login_form .group {
    height: 42px;
    line-height: 42px;
}
.login_box .login_form .group+.group {
    margin-top: 20px;
}
.login_box .login_form input {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    border: none;
    outline: 0;
    padding: 0 16px;
}

.login_box .inp-err {
    display: none;
    width: 100%;
    margin-top: 6px;
    color: #d44848;
    font-size: 14px;
}

.inpbox-err {
    border-color: #d44848 !important;
}

.login_box .login_form .login_btn {
    height: 48px;
    line-height: 48px;
    text-align: center;
    width: 300px;
    color: #fff;
    font-size: 16px;
    margin-top: 32px;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.login_box .login_form .login_btn:hover {
    -webkit-transition: all .2s;
    transition: all .2s;
}

/* 底部 */
footer {
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 1%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
footer .tdc-right {
    color: #fff;
    font-size: 12px;
    text-align: center;
}
footer .tdc-right p {
    line-height: 21px;
    text-shadow: rgb(153, 153, 153) 0px 1px 2px;
}

/* maxWidth 767px */
@media (max-width: 767px) {
    .login-slogan {
        display: none; 
    }

    .wrapper {
        width: 767px;
        margin: 0 auto;
    }

    .login_container {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 500px;
        background-color: #4879EB;
        overflow-x: hidden;
        overflow-y: auto;

    }

    .login_container .login_main {
        width: 100%;
        height: 100%;
    }

    .login_box {
        position: absolute;
        width: 86%;
        left: 50%;
        top: 40%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        background-color: #fff;
        box-sizing: border-box;
        padding: 20px;   
    }

    .login_box .header {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 40px;  
    }
    .login_box .header .logo {
        display: none
    }
    .login_box .header .title {
        font-size: 24px;
        color: #333;
        letter-spacing: 0;
    }

    .login_box .login_form {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .login_box .login_form .group {
        border-radius: 0;
        border: 1px solid #ddd;
        width: 100%;
    }
    .login_box .login_form label{
        display: none;
    }
    .login_box .login_form input {
        box-sizing: border-box;
        display: block;
        padding: 0 16px;
        width: 100%;
        height: 100%;
        color: #000;
        font-size: 14px;
        border: none;
    }

    ::-webkit-input-placeholder {
        color: #333;
    }
    :-moz-placeholder {
    color:#333;
    }
    ::-moz-placeholder {
    color: #333;
    }
    :-ms-input-placeholder {
    color: #333;
    }

    .login_box .login_form .login_btn {
        border-radius: 0;
        background: none;
        -webkit-user-select: none;
        user-select: none;
        background-color: #1282E7;
        width: 100%;
        border: 0 none;
    }

    .login_box .login_form .login_btn:hover {
        color: #fff;
        background-color: #74b9ff;
    }
}

/* 大屏幕下 */

@media (min-width: 767px) {

    .login_container {
        height: 100%;
        background-color: #4879EB;
        /* background-color: #1690FF; */
        /* background-color: #00BCBD; */
        /* background-color: #272835;  */
    }

    /* 版心 */
    .wrapper {
        width: 1228px;
        margin: 0 auto;
    }
    .login_main {
        position: relative;
        height: 100%;
    }

    /* banner */
    .login_banner {
        background: url(../img/login-banner.png) no-repeat 20% center;
        width: 1016px;
        height: 579px;
        position: absolute;
        left: 50%;
        top: 50%;
        /* transform: translate3d(-50%,-50%,0); */
        margin-top: -260px;
        margin-left: -740px;
    }

    /* 口号 */
    .login-slogan {
        position: absolute;
        left: 50%;
        margin-left: -500px;
        color: #fff;
        font-size: 48px;
        top: 50%;
        margin-top: -280px;
    }

    .login-slogan h1 {
        display: flex;
        flex-direction: column;
        font-size: 48px;
        font-weight: bold;
    }

    .login-slogan small {
        font-size: 18px;
        display: block;
        font-weight: normal;
        opacity: 0.6;
        letter-spacing: 2.5px;
    }

    /* 登录窗口 */

    .login_box {
        position: absolute;
        right: 70px;
        top: 50%;
        margin-top: -230px;
        padding: 35px;
        width: 330px;
        background-color: #fff;
    }

    .login_box .header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-bottom: 25px;  
    }
    .login_box .header .logo {
        width: 214px;
        height: 70px;
        text-align: center;
        font-size: 0;
    }

    .login_box .logo img {
        width: 100%;
        height: 100%;
    }

    .login_box .header .title {
       display: none
    }

    .login_box .login_form {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .login_box .login_form .group {
        border-radius: 0;
        border: 1px solid #ddd;
        width: 100%;
    }
    .login_box .login_form label{
        display: none;
    }
    .login_box .login_form input {
        box-sizing: border-box;
        display: block;
        padding: 0 16px;
        width: 100%;
        height: 100%;
        color: #000;
        font-size: 14px;
        border: none;
    }

    ::-webkit-input-placeholder {
        color: #333;
    }
    :-moz-placeholder {
    color:#333;
    }
    ::-moz-placeholder {
    color: #333;
    }
    :-ms-input-placeholder {
    color: #333;
    }

    .login_box .login_form .login_btn {
        border-radius: 0;
        background: none;
        -webkit-user-select: none;
        user-select: none;
        background-color: #1282E7;
        width: 100%;
        border: 0 none;
    }

    .login_box .login_form .login_btn:hover {
        color: #fff;
        background-color: #74b9ff;
    }

}

@media (max-width: 1287px) {
    .wrapper {
        width: auto;
        padding: 0 16px;
    }


}