@charset "utf-8";
/* 解决IE6闪动 */
html {
    zoom: expression(function(ele){ ele.style.zoom = "1"; document.execCommand("BackgroundImageCache", false, true); }(this));
}

/* 内外边距通常让各个浏览器样式的表现位置不同 */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    margin: 0;
    padding: 0;
}

/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

/* HTML5 媒体文件跟 img 保持一致 */
audio, canvas, video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

/* 要注意表单元素并不继承父级 font 的问题 */
body, button, input, select, textarea {
    font: 12px/1.5 arial,STHeiti,'Microsoft YaHei',\5b8b\4f53;
}

input, select, textarea {
    font-size: 100%;
}

/*清除chrome下黄色背景输入框*/
input:-webkit-autofill {
    -webkit-box-shadow : 0 0 0px 1000px #ffffff inset;
}

body {
    background-color: #fff;
}

/* 去掉各Table  cell 的边距并让其边重合 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* IE bug fixed: th 不继承 text-align*/
th {
    text-align: inherit;
}

/* 去除默认边框 */
fieldset, img {
    border: 0;
}

/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
    display: block;
}

/* 去掉 firefox 下此元素的边框 */
abbr, acronym {
    border: 0;
    font-variant: normal;
}

/* 一致的 del 样式 */
del {
    text-decoration: line-through;
}

address, caption, cite, code, dfn, em, th, var {
    font-style: normal;
    font-weight: 500;
}

/* 去掉列表前的标识, li 会继承 */
ol, ul {
    list-style: none;
}

em, i {
    font-style: normal;
}

/* 对齐是排版最重要的因素, 别让什么都居中 */
caption, th {
    text-align: left;
}

/* 来自yahoo, 让标题都自定义, 适应多个系统应用 */
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: 500;
}

q:before, q:after {
    content: '';
}

/* 统一上标和下标 */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* 让链接在 hover 状态下显示下划线 */
a:hover {
    color: #1ab394;
}

/* 默认不显示下划线，保持页面简洁 */
ins, a {
    text-decoration: none;
}

.hidden {
    display: none;
}

/* 清理浮动 */
.fn-clear:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.fn-clear {
    zoom: 1; /* for IE6 IE7 */
}

/*去虚框*/
a, area {
    blr: expression(this.onFocus=this.blur())
}

/*IE*/
:focus {
    -moz-outline-style: none;
}

/*火狐*/

.clearfix {
    display: block;
    zoom: 1;
}

.modal-content {
    background: rgba(45, 52, 58, 0.9);
    box-shadow: 0 5px 15px rgba(255,255,255,.5);
    border-radius: 20px;
}
.modal-body {
    padding: 0;
}
.modal-header {
    background: #1AB394;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: none;
}

.login-main-nav {
    width: 53%;
    margin: 0 auto;
    border: 1px solid #cdcdcd;
    border-radius: 5px;
    box-sizing: border-box;
}

.nav-header {
    width: 100%;
    height: 80px;
}

.none-user-select {
    -moz-user-select: -moz-none;
    -moz-user-select: none;
    -webkit-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

.nav-login {
    width: 50%;
    height: 80px;
    color: #1ab394;
    font-size: 24px;
    line-height: 80px;
    text-align: center;
    float: left;
    box-sizing: border-box;
}

.nav-register {
    width: 50%;
    height: 80px;
    color: #fff;
    font-size: 24px;
    line-height: 80px;
    text-align: center;
    float: left;
    box-sizing: border-box;
    border-left: 1px solid #a1a1a1;
    border-bottom: 1px solid #a1a1a1;
    background: rgba(255, 255, 255, 0.2);
    color: #9d9d9d;
}

.nav-login:hover{
    color: #4DD2B7;
}
.nav-register:hover{
    color: #4DD2B7;
}

.login-content {
    width: 100%;
    margin: 30px auto;
}

.login-form {
    width: 80%;
    margin-left: 10%;
}

.login-account, .login-password, .login-code {
    height: 40px;
}

.login-password, .login-code, .login-remember, .login-button {
    margin-top: 20px;
}

.login-account label, .login-password label, .login-code label {
    width: 20%;
    height: 40px;
    display: block;
    box-sizing: border-box;
    padding-right: 10px;
    line-height: 40px;
    text-align: right;
    float: left;
    color: #ffffff;
}

.login-account input, .login-password input {
    width: 70%;
    height: 40px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
    float: left;
}

.login-code input {
    width: 50%;
    height: 40px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
    float: left;
}

.login-code img {
    width: 20%;
    height: 40px;
    margin-left: 10px;
    border-radius: 5px;
    float: left;
}

.login-account input:focus, .login-password input:focus, .login-code input:focus {
    outline: none;
    border: 1px solid #cdcdcd;
}

.sms-code-button {
    width:20%;
    height: 40px;
    margin-left: 10px;
    color: #fff;
    background-color: #cdcdcd;
    border-radius: 5px;
    line-height: 40px;
    text-align: center;
    float: left;
}
.sms-code-button-hover{
    color: #fff;
    background-color: #1AB394;
}

.login-remember {
    margin-left: 115px;
}

.login-remember label {
    box-sizing: border-box;
    padding-left: 5px;
    cursor: pointer;
    margin: 0;
    vertical-align: middle;
    color: #ffffff;

}

.login-remember input {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 1px;
}


.login-button {
    width: 40%;
    height: 40px;
    margin-left: 30%;
    color: #fff;
    background-color: #1ab394;
    border-radius: 5px;
    line-height: 40px;
    text-align: center;
}

.login-footer {
    width: 100%;
    background: #2F4050;
    box-sizing: border-box;
}

.b-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
}
