html {
    height: 100%
}

.signin {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: .8;
    background: url(../img/login-background-new.jpg) no-repeat center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.signinpanel {
    width: 750px;
    margin: 10% auto 0
}

.signinpanel .logopanel {
    float: none;
    width: auto;
    padding: 0;
    background: 0 0
}

.signinpanel .signin-info ul {
    list-style: none;
    padding: 0;
    margin: 20px 0
}

.signinpanel .form-control {
    display: block;
    margin-top: 15px
}

.signinpanel .uname {
    background: #fff url(../img/user.png) no-repeat 95% center;
    color: #333
}

.signinpanel .pword {
    background: #fff url(../img/locked.png) no-repeat 95% center;
    color: #333
}

.signinpanel .code {
    background: #fff no-repeat 95% center;
    color: #333;
    margin: 0 0 15px 0;
}

.signinpanel .btn {
    margin-top: 15px
}

.signinpanel form {
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .3);
    -moz-box-shadow: 0 3px 0 rgba(12, 12, 12, .03);
    -webkit-box-shadow: 0 3px 0 rgba(12, 12, 12, .03);
    box-shadow: 0 3px 0 rgba(12, 12, 12, .03);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 30px
}

.signup-footer {
    border-top: solid 1px rgba(255, 255, 255, .3);
    margin: 20px 0;
    padding-top: 15px
}

.code-a {
    height: 58px;
    display: inline-block;
    vertical-align: middle;
    margin-left: calc(50% - 155px);
}
.code-a img {
    height: 56px;
}

@media screen and (max-width: 768px) {
    .signinpanel, .signuppanel {
        margin: 0 auto;
        width: 420px !important;
        padding: 20px
    }

    .signinpanel form {
        margin-top: 20px
    }

    .signup-footer, .signuppanel .form-control {
        margin-bottom: 10px
    }

    .signup-footer .pull-left, .signup-footer .pull-right {
        float: none !important;
        text-align: center
    }

    .signinpanel .signin-info ul {
        display: none
    }
}

@media screen and (max-width: 320px) {
    .signinpanel, .signuppanel {
        margin: 0 20px;
        width: auto
    }
}

/*
登录界面check样式
*/
.checkbox-custom {
    position: relative;
    padding: 0 15px 0 25px;
    margin-bottom: 7px;
    display: inline-block;
}

/*
将初始的checkbox的样式改变
*/
.checkbox-custom input[type="checkbox"] {
    opacity: 0; /*将初始的checkbox隐藏起来*/
    position: absolute;
    cursor: pointer;
    z-index: 2;
    margin: -6px 0 0 0;
    top: 50%;
    left: 3px;
}

/*
设计新的checkbox，位置
*/
.checkbox-custom label:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -9px;
    width: 18px;
    height: 17px;
    display: inline-block;
    border-radius: 2px;
    border: 1px solid #bbb;
    background: #fff;
}

/*
点击初始的checkbox，将新的checkbox关联起来
*/
.checkbox-custom input[type="checkbox"]:checked + label:after {
    position: absolute;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    content: "\e013";
    top: 42%;
    left: 3px;
    margin-top: -5px;
    font-size: 11px;
    line-height: 1;
    width: 16px;
    height: 16px;
    color: #333;
}

.checkbox-custom label {
    cursor: pointer;
    line-height: 1.2;
    font-weight: normal; /*改变了rememberme的字体*/
    margin-bottom: 0;
    text-align: left;
}

/* New */
/* reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
nav ul,
nav li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* start editing from here */

a {
    text-decoration: none;
}

.txt-rt {
    text-align: right;
}


/* text align right */

.txt-lt {
    text-align: left;
}


/* text align left */

.txt-center {
    text-align: center;
}


/* text align center */

.float-rt {
    float: right;
}


/* float right */

.float-lt {
    float: left;
}


/* float left */

.clear {
    clear: both;
}


/* clear float */

.pos-relative {
    position: relative;
}


/* Position Relative */

.pos-absolute {
    position: absolute;
}


/* Position Absolute */

.vertical-base {
    vertical-align: baseline;
}


/* vertical align baseline */

.vertical-top {
    vertical-align: top;
}


/* vertical align top */

nav.vertical ul li {
    display: block;
}


/* vertical menu */

nav.horizontal ul li {
    display: inline-block;
}


/* horizontal menu */

img {
    max-width: 100%;
}


/*end reset*/

html,
body {
    padding: 0;
    margin: 0;
    background: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    zoom: 1;
}

body a {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    text-decoration: none;
}

body a:hover {
    text-decoration: none;
}

body a:focus,
a:hover {
    text-decoration: none;
}

select,
input[type="email"],
input[type="text"],
input[type=password],
input[type="button"],
input[type="submit"],
textarea {
    font-family: 'Source Sans Pro', sans-serif;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 1px;
}

p {
    margin: 20px 0;
    padding: 0;
    letter-spacing: 1px;
    font-family: 'Source Sans Pro', sans-serif;
    white-space: nowrap;
}

ul {
    margin: 0;
    padding: 0;
}


/*-- //Reset-Code --*/


/*--background --*/

/*body {*/
/*    !* position: relative;*!*/
/*    background: url(../images/b1.jpg);*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*    background-size: cover;*/
/*    -webkit-background-size: cover;*/
/*    -moz-background-size: cover;*/
/*    -o-background-size: cover;*/
/*    box-sizing: border-box;*/
/*    min-height: 100vh;*/
/*}*/

h1.header-w3ls {
    text-transform: capitalize;
    color: #ffffff;
    text-shadow: 2px 3px rgba(0, 0, 0, 0.42);
    font-weight: bold;
    text-align: center;
}

.mid-class {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    width: 100%;
    z-index: 1;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.art-right-w3ls {
    flex-basis: 60%;
    -webkit-flex-basis: 60%;
    box-sizing: border-box;
}

.art-left-w3ls {
    flex-basis: 40%;
    -webkit-flex-basis: 40%;
    box-sizing: border-box;
    min-height: 100vh;
    background: #00a1ff;
    box-sizing: border-box;
}

.form-left-to-w3l input[type="email"],
.form-left-to-w3l input[type="password"],
.form-left-to-w3l input[type="text"] {
    width: 100%;
    color: #000;
    outline: none;
    border: none;
    border-bottom: #00a1ff 2px solid;
    -webkit-appearance: none;
    background: #ffffff96;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    box-sizing: border-box;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #000;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #000;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #000;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #000;
}

.art-right-w3ls h2 {
    font-weight: 500;
    color: #ffffff;
}

button.submit {
    background: #00a1ff;
    outline: none;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border: none;
    padding: 11px 20px;
    letter-spacing: 1px;
    text-transform: capitalize;
    cursor: pointer;
    transition: 0.5s all;
    margin: 20px 0px 0px;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

button[type=submit]:hover {
    opacity: 0.8;
}

.remenber-me,
a.for {
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.remenber-me {
    padding-left: 22px;
}

.left-side-forget {
    float: left;
    position: relative;
}

.right-side-forget {
    float: right;
}

input.checked {
    display: inline-block;
    position: absolute;
    top: 5px;
    margin: 0px;
    cursor: pointer;
}

.w3layouts_more-buttn h3 {
    font-size: 18px;
    color: #fff;
    margin-top: 35px;
    font-weight: 500;
}

.w3layouts_more-buttn a {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    letter-spacing: 2px;
    outline: none;
}


/*--//background --*/


/* popup */

.popup-effect {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(152, 152, 152, 0.7);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
}

.popup-effect:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: #eaeaeabf;
    border-radius: 4px;
    max-width: 430px;
    position: relative;
    margin: 11em auto;
    padding: 3em 2em;
    z-index: 999;
    text-align: center;
}

.popup .close {
    position: absolute;
    top: 5px;
    right: 15px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

.popup .close:hover {
    color: #686de0;
}


/* //popup */

.bottem-wthree-footer {
    position: absolute;
    bottom: 30px;
    width: 100%;
}

.bottem-wthree-footer p {
    text-align: center;
    font-size: 14px;
    color: #fff;
    letter-spacing: 2px;
}

.bottem-wthree-footer p a {
    color: #ff5e00;
    font-size: 14px;
}

.bottem-wthree-footer p a:hover {
    color: #fff;
}


/*--responsive--*/

@media(min-width:1920px) {
    .form-left-to-w3l input[type="email"],
    .form-left-to-w3l input[type="password"],
    .form-left-to-w3l input[type="text"] {
        font-size: 16px;
        padding: 1em 1em;
        margin: 0px 0px 30px;
    }
    .art-right-w3ls {
        padding: 19em 24em 8em 4em;
    }
    .art-left-w3ls {
        padding: 24em 5em;
    }
    .art-right-w3ls h2 {
        font-size: 30px;
        margin-bottom: 48px;
    }
    h1.header-w3ls {
        font-size: 50px;
        letter-spacing: 3px;
    }
}

@media(max-width:1920px) {
    .form-left-to-w3l input[type="email"],
    .form-left-to-w3l input[type="password"],
    .form-left-to-w3l input[type="text"] {
        font-size: 16px;
        padding: 1em 1em;
        margin: 0px 0px 30px;
    }
    .art-right-w3ls {
        padding: 19em 24em 8em 4em;
    }
    .art-left-w3ls {
        padding: 24em 5em;
    }
    .art-right-w3ls h2 {
        font-size: 30px;
        margin-bottom: 48px;
    }
    h1.header-w3ls {
        font-size: 50px;
        letter-spacing: 3px;
    }
}

@media(max-width:1680px) {
    h1.header-w3ls {
        font-size: 53px;
    }
    .art-right-w3ls h2 {
        font-size: 28px;
    }
    .form-left-to-w3l input[type="email"],
    .form-left-to-w3l input[type="password"],
    .form-left-to-w3l input[type="text"] {
        font-size: 15px;
        margin: 0px 0px 26px;
    }
}

@media(max-width:1600px) {
    .art-right-w3ls {
        padding: 11em 24em 8em 4em;
    }
    .art-left-w3ls {
        padding: 18em 2em 10em;
    }
    h1.header-w3ls {
        font-size: 45px;
        letter-spacing: 3px;
        line-height: 66px;
    }
    .form-left-to-w3l input[type="email"],
    .form-left-to-w3l input[type="password"],
    .form-left-to-w3l input[type="text"] {
        font-size: 14px;
        padding: .8em 1em;
        margin: 0px 0px 25px;
    }
    .margin-zero input[type="password"] {
        margin: 0px !important;
    }
    .art-right-w3ls h2 {
        font-size: 28px;
        margin-bottom: 47px;
    }
}

@media(max-width:1440px) {
    .art-left-w3ls {
        padding: 10em 5em 14em;
    }
    .art-right-w3ls {
        padding: 6em 21em 8em 4em;
    }
    h1.header-w3ls {
        font-size: 48px;
    }
    .art-right-w3ls h2 {
        font-size: 26px;
        margin-bottom: 45px;
    }
}

@media(max-width:1366px) {
    button[type=submit] {
        margin: 50px 0px 0px;
    }
    .w3layouts_more-buttn h3 {
        font-size: 17px;
        margin-top: 33px;
    }
    .popup {
        margin: 8em auto;
    }
}

@media(max-width:1280px) {
    .art-left-w3ls {
        padding: 11em 3em 30.7em;
    }
    .art-left-w3ls {
        padding: 10em 3em 19.2em;
    }
    h1.header-w3ls {
        font-size: 46px;
        letter-spacing: 2px;
    }
}

@media(max-width:1080px) {
    .art-left-w3ls {
        order: 1;
        padding: 1.5em 3em 1.5em;
        text-align: center;
        min-height: 0vh;
    }
    .mid-class {
        flex-direction: column;
    }
    .art-right-w3ls {
        order: 2;
        padding: 2em 27em 2em 3em;
    }
    button[type=submit] {
        margin: 46px 0px 0px;
    }
    .art-right-w3ls h2 {
        font-size: 24px;
        margin-bottom: 41px;
    }
    .bottem-wthree-footer {
        bottom: 30px;
    }
}

@media(max-width:1050px) {
    h1.header-w3ls {
        font-size: 22px;
        line-height: 30px;
    }
    .art-left-w3ls {
        padding: 0.5em 3em 1em;
    }
    .w3layouts_more-buttn h3 {
        font-size: 16px;
        margin-top: 31px;
    }
}

@media(max-width:1024px) {
    .art-right-w3ls {
        padding: 3em 27em 6em 4em;
    }
    .popup {
        margin: 3em auto;
    }
    .form-left-to-w3l input[type="email"],
    .form-left-to-w3l input[type="password"],
    .form-left-to-w3l input[type="text"] {
        padding: .7em .9em;
        margin: 0px 0px 22px;
    }
}

@media(max-width:991px) {
    h1.header-w3ls {
        font-size: 41px;
        line-height: 63px;
    }
    button[type=submit] {
        margin: 42px 0px 0px;
    }
}

@media(max-width:900px) {
    .form-left-to-w3l input[type="email"],
    .form-left-to-w3l input[type="password"],
    .form-left-to-w3l input[type="text"] {
        padding: .7em .7em;
    }
    .art-right-w3ls h2 {
        margin-bottom: 36px;
    }
}

@media(max-width:800px) {
    .art-right-w3ls {
        padding: 3em 19em 6em 4em;
    }
    h1.header-w3ls {
        font-size: 39px;
        line-height: 63px;
        letter-spacing: 1px;
    }
}

@media(max-width:768px) {
    .w3layouts_more-buttn h3 {
        font-size: 15px;
        margin-top: 28px;
    }
}

@media(max-width:767px) {
    button[type=submit] {
        padding: 10px 18px;
    }
    h1.header-w3ls {
        font-size: 37px;
    }
}

@media(max-width:736px) {
    .form-left-to-w3l input[type="email"],
    .form-left-to-w3l input[type="password"],
    .form-left-to-w3l input[type="text"] {
        margin: 0px 0px 20px;
    }
    .bottem-wthree-footer p {
        letter-spacing: 1px;
    }
}

@media(max-width:667px) {
    .art-right-w3ls {
        padding: 3em 13em 6em 3em;
    }
    .art-left-w3ls {
        padding: 1.2em 3em 1.2em;
    }
}

@media(max-width:640px) {
    h1.header-w3ls {
        font-size: 35px;
    }
    .w3layouts_more-buttn h3 {
        margin-top: 25px;
    }
}

@media(max-width:600px) {
    .art-right-w3ls {
        padding: 3em 11em 6em 3em;
    }
    .art-right-w3ls h2 {
        font-size: 23px;
    }
}

@media(max-width:568px) {
    .form-left-to-w3l input[type="email"],
    .form-left-to-w3l input[type="password"],
    .form-left-to-w3l input[type="text"] {
        margin: 0px 0px 17px;
    }
}

@media(max-width:480px) {
    .bottem-wthree-footer p {
        line-height: 28px;
        padding: 0px 10px;
    }
    .art-left-w3ls {
        padding: 1.2em 1em 1.2em;
    }
    .art-right-w3ls {
        padding: 2.5em 6em 5em 3em;
    }
    button[type=submit] {
        margin: 37px 0px 0px;
    }
    .popup {
        max-width: 350px;
    }
    h1.header-w3ls {
        line-height: 54px;
    }
}

@media(max-width:440px) {
    h1.header-w3ls {
        font-size: 32px;
    }
    .art-right-w3ls h2 {
        margin-bottom: 31px;
    }
}

@media(max-width:414px) {
    .art-right-w3ls {
        padding: 2.5em 4em 4em 2em;
    }
    h1.header-w3ls {
        line-height: 41px;
        font-size: 30px;
    }
    .popup {
        max-width: 296px;
    }
}

@media(max-width:384px) {
    h1.header-w3ls {
        line-height: 46px;
        font-size: 28px;
    }
    .popup {
        max-width: 267px;
    }
    .code-a {
        height: 44px;
        margin-left: calc(50% - 125px);
    }
    .code-a img {
        height: 44px;
    }
}

@media(max-width:375px) {
    .art-right-w3ls h2 {
        font-size: 21px;
    }
}

@media(max-width:320px) {
    h1.header-w3ls {
        line-height: 42px;
    }
    .art-right-w3ls {
        padding: 2.5em 2em 4em 1em;
    }
    .popup {
        max-width: 239px;
        padding: 3em 1.5em;
    }
}


/*--//responsive--*/
@font-face {
    font-family: 'BankGothic';
    src: url("../fonts/BankGothic Bold.ttf");
}
