@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    height: 100%;
}

body {
    /*background:url(/statics/images/loginBg.png) no-repeat;*/
    /*width:100%;*/
    /*height:100%;*/
    background: url(/statics/images/loginBg.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.content {
    width: 1200px;
    margin: 0 auto;
}

.content h2 {
    color: #fff;
    text-shadow: 0px 3px 7px rgba(0, 0, 0, 0.35);
    margin-top: 0;
    height: 45px;
    line-height: 45px;
}

.content h2 font {
    color: #0fc53e;
}

header {
    display: flex;
    flex-direction: row;
    float: left
}

header img {
    width: 39px;
    height: 45px;
    vertical-align: middle;
}

.headerTitle {
    margin-left: 10px;
}

.headerTitle span {
    width: 60px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.7);
    display: block;
}

.loginBigBox {
    width: 430px;
    height: 445px;
    margin: 0 auto;
    margin-top: 120px;
    position: relative;

	/*position: absolute;*/
	/*top: 0;*/
	/*left: 0;*/
	/*right: 0;*/
	/*bottom: 0;*/
	/*margin: auto;*/
}

.loginBox {
    width: 430px;
    height: 445px;
    border-radius: 20px;
    background-color: #d1d7f2;
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.35);
    position: absolute;
    z-index: 1;
}

.loginContent {
    width: 390px;
    height: 400px;
    background: #fff;
    margin: 20px;
    border-radius: 10px;
    padding: 35px;
    padding-top: 0;
    box-sizing: border-box;
}

.ornament {
    background: url(/statics/images/ornament1.png) no-repeat;
    position: absolute;
    width: 97px;
    height: 43px;
    position: absolute;
    z-index: -1;
}

.ornament1 {
    left: -80px;
}

.ornament2 {
    right: -80px;
    bottom: 0;
    z-index: 9;
}

.inputBox {
    position: relative;
    margin: 0 auto;
    width: 320px;
    margin-top: 20px;
}

.loginContent h4 {
    text-align: center;
    padding-top: 30px;
    font-weight: bold;
    font-size: 20px;
}

.inputBox input {
    width: 320px;
    height: 44px;
    background: #d1d7f2;
    border-radius: 10px;
    outline: none;
    border: none;
    padding-left: 40px;
    box-sizing: border-box;
    font-size: 14px;
}

.inputBox label {
    background: url(/statics/images/loginIcon.png) no-repeat;
    background-image: 20px 20px;
    position: absolute;
    left: 10px;
    top: 10px;
    width: 20px;
    height: 26px;
    display: block;
}

.inputBox .account {
    background-position: 0px;
}

.inputBox .password {
    background-position: -46px;
}

.codebox {
    width: 320px;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
}

.codebox .code {
    width: 180px;
    height: 44px;
    background: #d1d7f2;
    border-radius: 10px;
    outline: none;
    border: none;
    padding-left: 10px;
    font-size: 14px;
    margin-right: 10px;
}

.codeimg {
    width: 100px;
    height: 44px;
    background: blue;
    margin-right: 10px;
}

.refresh {
    width: 20px;
    height: 25px;
    cursor: pointer;
    vertical-align: middle;
    margin-top: 10px;
}


.checkbox {
    margin-top: 10px;
    margin-bottom: 20px;
    height: 20px;
    line-height: 14px;
    text-align: left;
}

.checkbox input {
    cursor: pointer;
    width: 18px;
    height: 18px;
    background: #e2e5f5;
}

.loginBtn {
    width: 320px;
    height: 44px;
    background: #6b6ed4;
    color: #fff;
    border-radius: 10px;
    outline: none;
    border: none;
    opacity: 0.8;
    cursor: pointer;
    margin-top: 30px;
    font-size: 14px;
}

.loginBtn:hover {
    opacity: 1.0;
}

.error {
    text-align: left;
    color: #ff5511;
    background: url(/statics/images/tip.png) no-repeat left;
    padding-left: 24px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    margin-top: 20px;
}

/*默认滚动条样式*/
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    /*
        border: 1px #d3d3d3 solid;
        box-shadow: 0px 0px 3px #dfdfdf inset;
    */
    border-radius: 10px;
    background: #eee;
}

::-webkit-scrollbar-thumb {
    /*    border: 1px #808080 solid;*/
    border-radius: 10px;
    background: #667eea;
}

::-webkit-scrollbar-thumb:hover {
    background: #667eea;
}

/*默认滚动条样式*/