/*
===================
@explain: 系统后台登录页面
@copyright: copyright 2016,chinafhse.org
@author: liupf@chinafhse.org
$id: admin_login.css  liupf $
===================
*/


/* 清除内外边距 */

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,

/* structural elements 结构元素 */

dl,
dt,
dd,
ul,
ol,
li,

/* list elements 列表元素 */

pre,

/* text formatting elements 文本格式元素 */

fieldset,
lengend,
button,
input,
textarea,

/* form elements 表单元素 */

th,
td {
    /* table elements 表格元素 */
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 18px;
    /* 18px / 12px = 1.5 */
}

h2 {
    font-size: 16px;
}

h3 {
    font-size: 14px;
}

h4,
h5,
h6 {
    font-size: 100%;
}

address,
cite,
dfn,
em,
var {
    font-style: normal;
}


/* 将斜体扶正 */

code,
kbd,
pre,
samp,
tt {
    font-family: "courier new", courier, monospace;
}


/* 统一等宽字体 */

small {
    font-size: 12px;
}


/* 小于 12px 的中文很难阅读，让 small 正常化 */


/* 重置列表元素 */

ul,
ol {
    list-style: none;
}


/* 重置文本格式元素 */

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

abbr[title],
acronym[title] {
    /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
    border-bottom: 1px dotted;
    cursor: help;
}

q:before,
q:after {
    content: '';
}


/* 重置表单元素 */

legend {
    color: #000;
}


/* for ie6 */

fieldset,
img {
    border: none;
}


/* img 搭车：让链接里的 img 无边框 */


/* 注：optgroup 无法扶正 */

button,
input,
select,
textarea {
    font-size: 100%;
    /* 使得表单元素在 ie 下能继承字体大小 */
}


/* 清除浮动 */

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

.clearfix {
    * height: 1%;
}


/* 登录页样式开始 */
html {
    height: 100%;
}

body {
    background-color: #284a6d;
    font: 14px 'microsoft yahei', '\5fae\8f6f\96c5\9ed1', arial, verdana, tahoma;
    background: url(/uploads/image/atspaimages/login-bg.jpg) no-repeat center top #0f0d19;
    height: 100%;
    background-size: auto 100%!important;
}

.wrap {
    width: 440px;
    padding: 8% 0 0;
    margin: auto;
}

.logo {
    text-align: center;
    color: #fff;
}

.logo img {
    width: 80px;
}

.login {
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 440px;
    background-color: #f4f4f4;
}

.login input {
    background: #fff;
    padding: 10px;
    padding-right: 40px;
    font-size: 13px;
    width: 348px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

.name,
.password,
.verifycode,
.code,
.loginbtn {
    padding-left: 20px;
    padding-right: 20px;
    width: 400px;
    position: relative;
}

.name-i,
.password-i,
.code-i {
    position: absolute;
    right: 23px;
    top: 6px;
    width: 20px;
    height: 20px;
    background: url(/uploads/image/atspaimages/icon.png) no-repeat;
    z-index: 999;
}

.name-i {
    background-position: 0 0;
}

.password-i {
    background-position: 0 -29px;
}

.code-i {
    background-position: 0 -58px;
}

.loginbtn .btn {
    padding: 10px;
    width: 400px;
    color: #fff;
    border: none;
    background-color: #152a40;
    display: block;
    cursor: pointer;
}

.loginbtn .btn:hover {
    background-color: #1a3a5d;
}

.loginbtn .tips_error {
    padding-top: 10px;
    display: block;
    padding-left: 30px;
    background: url(/uploads/image/atspaimages/icon.png) no-repeat;
    background-position: 0 -78px;
}

.loginbtn .tips_success {
    padding-top: 10px;
    display: block;
}
