﻿@charset "utf-8";
/* CSS Document */

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    background: url(../images/bg.jpg) no-repeat;
    background-size: cover !important;
    background-attachment: fixed !important;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif, '微软雅黑';
}

@media screen and (min-width : 2200px) {
    body {
        zoom: 1.3;
    }
}

@media screen and (min-width : 2400px) {
    body {
        zoom: 1.4;
    }
}

@media screen and (min-width : 2600px) {
    body {
        zoom: 1.5;
    }
}

@media screen and (min-width : 2800px) {
    body {
        zoom: 1.6;
    }
}

@media screen and (max-width : 1600px) {
    body {
        zoom: 0.9;
    }
}

@media screen and (max-width : 1441px) {
    body {
        zoom: 0.9;
    }
}

@media screen and (max-width : 1366px) {
    body {
        zoom: 0.9;
    }
}

@media screen and (max-width : 1280px) {
    body {
        zoom: 0.85;
    }
}

img {
    border: 0;
}

a {
    color: #333;
    text-decoration: none !important;
}

p,
ul,
li,
dl,
dt,
dd {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

input, textarea,
button {
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    font-family: Arial, Helvetica, sans-serif, '微软雅黑';
}

button {
    cursor: pointer;
}

.login-content {
    width: 1200px;
    height: 600px;
    margin: 0 auto;
    background: url(../images/login-bg.png) no-repeat top center;
}

.page-title {
    width: 1200px;
    margin: 0 auto;
    margin-top: 60px;
    text-align: center;
    font-size: 50px;
    line-height: 3;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.login-box {
    width: 400px;
    margin-top: 80px;
    margin-right: 170px;
    float: right;
}

.login-title-2 {
    width: 100%;
    color: #999;
    font-size: 24px;
    text-align: center;
    line-height: 2;
    overflow: hidden;
}

    .login-title-2 span {
        display: block;
        width: 50%;
        float: left;
        cursor: pointer;
        border-bottom: 2px solid #dfdfdf;
    }

        .login-title-2 span.on {
            color: #377ef7;
            border-bottom: 2px solid #377ef7;
        }

.hide_box {
    display: none;
}

.show_box {
    display: block;
}




.login-form {
    width: 100%;
    margin-top: 40px;
}

.input-item {
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
}

    .input-item > input {
        width: 100%;
        height: 50px;
        box-sizing: border-box;
        padding: 0 10px 0 80px;
        font-size: 18px;
    }

        .input-item > input::placeholder {
            color: #999;
        }

.input-username {
    background: url(../images/icon-1.png) no-repeat 20px center;
    background-size: auto 40%;
    border-bottom: 1px solid #eee;
}

.input-password {
    background: url(../images/icon-2.png) no-repeat 20px center;
    background-size: auto 40%;
    border-bottom: 1px solid #eee;
}

.input-username:focus {
    background: url(../images/icon-1-b.png) no-repeat 20px center;
    background-size: auto 40%;
    border-bottom: 1px solid #377ef7;
}

.input-password:focus {
    background: url(../images/icon-2-b.png) no-repeat 20px center;
    background-size: auto 40%;
    border-bottom: 1px solid #377ef7;
}

.input-item span {
    width: 40%;
    display: block;
    font-size: 16px;
    color: #666;
}

    .input-item span a {
        color: #666;
    }

    .input-item span:nth-child(1) {
        float: left;
        margin-left: 20px;
    }

    .input-item span:nth-child(2) {
        float: right;
        text-align: right;
    }

.login-btn {
    width: 100%;
    text-align: center;
    margin-top: 50px;
}

    .login-btn button {
        width: 227px;
        height: 56px;
        color: #fff;
        text-align: center;
        font-size: 18px;
        background: url(../images/btn-bg.png) no-repeat;
        border-radius: 30px;
    }

    .login-btn span {
        display: block;
        text-align: center;
        margin-top: 20px;
    }

        .login-btn span a {
            color: #377ef7;
        }

.register-content {
    width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    padding: 50px 20px;
    overflow: hidden;
}

.register-title {
    width: 74%;
    margin: 0 auto;
    margin-bottom: 20px;
    color: #333333;
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    border-bottom: 3px solid #dfdfdf;
    line-height: 2;
}

.register-content dl {
    width: 100%;
    overflow: hidden;
}

    .register-content dl dt {
        width: 25%;
        float: left;
        height: 50px;
        line-height: 50px;
        text-align: right;
    }

    .register-content dl dd {
        width: 60%;
        float: left;
        margin-left: 2%;
    }

        .register-content dl dd input {
            width: 100%;
            height: 50px;
            box-sizing: border-box;
            padding: 0 10px 0 10px;
            font-size: 18px;
            border-bottom: 1px solid #dfdfdf;
        }

            .register-content dl dd input:focus {
                border-bottom: 1px solid #377ef7;
            }

.register-btn {
    width: 100%;
    text-align: center;
    margin-top: 50px;
}

    .register-btn button {
        width: 227px;
        height: 56px;
        color: #fff;
        text-align: center;
        font-size: 18px;
        background: url(../images/btn-bg.png) no-repeat;
        border-radius: 30px;
    }

    .register-btn span {
        display: block;
        text-align: center;
        margin-top: 20px;
    }

        .register-btn span a {
            color: #377ef7;
        }

/*0113*/
.login-title {
    width: 100%;
    text-align: center;
    color: #377ef7;
    font-size: 30px;
    border-bottom: 3px solid #dfdfdf;
}

    .login-title span {
        background: url(../images/icon-3.png) no-repeat left center;
        background-size: auto 90%;
        padding-left: 45px;
    }
