/* common */
body {
    background: #ffffff !important;
    font-family: Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, WenQuanYi Micro Hei, Microsoft Yahei, sans-serif;
}

a, a:hover {
    text-decoration: none;
}

.header {
    height: 80px;
    border-top: 1px solid #e7e7e7;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1), 0 1px rgba(0, 0, 0, 0.1);
}

.header .logo {
    position: relative;
    width: 300px;
    margin: 10px 0;
    height: 60px;
    float: left;
}

.header .logo img {
    width: 80px;
    height: 55px;
}

.header .logo .slogan {
    display: block;
    height: 40px;
    position: absolute;
    left: 90px;
    bottom: 0;
    font-size: 18px;
    color: #666666;
}

.header .logo2 {
    position: relative;
    width: 300px;
    margin: 10px 0;
    height: 60px;
    float: left;
}

.header .logo2 img {
    width: 300px;
    height: 60px;
}

@media (max-width: 768px) {
    .header .logo {
        width: 100px;
    }

    .header .logo .slogan {
        display: none;
    }
}

.extra {
    position: relative;
    color: #333333;
    float: right;
    top: 45px;
}

.extra a {
    color: #E43E41;
}

/* login Page */
.content {
    min-height: 500px;
}

.login-box {
    position: absolute;
    top: 80px;
    background: #ffffff;
    opacity: 0.95;
    filter: alpha(opacity=95);
    margin-right: 15px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .login-box {
        top: 30px;
    }
}

.login-box-body .nav-tabs > li > a {
    color: #555555;
    border-radius: 0;
}

.login-box-body .nav > li > a:focus, .nav > li > a:hover {
    color: #E43E41;
    text-decoration: none;
    background-color: #ffffff;
}

.login-box-body .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    font-weight: bold;
    color: #E43E41;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}


.login-box-body .tab-content .tab-pane {
    padding: 15px 30px;
}

.login-box-body .tab-content .tab-pane .form-group {
    margin: 20px 0;
}

.login-box-body .tab-content .tab-pane .alert {
    padding: 5px 15px;
}

.login-box-footer {
    border-top: 1px solid #dddddd;
    padding: 10px 15px;
    height: 40px;
}

.login-box-footer ul {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}

.login-box-footer ul li {
    float: left;
}

.login-box-footer ul li.extra-r {
    float: right;
}

.login-box-footer .register {
    color: #E43E41;
}

/* register Page*/

/* steps */
.steps {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.steps > ul {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps > ul > li {
    display: table-cell;
    width: auto;
    vertical-align: top;
    text-align: center;
    position: relative;
}

.steps > ul > li a {
    position: relative;
    padding-top: 48px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}

.steps > ul > li:before, .steps > ul > li:after {
    content: '';
    display: block;
    position: absolute;
    top: 43px;
    width: 50%;
    height: 2px;
    background-color: #77b852;
    z-index: 9;
}

.steps > ul > li:before {
    left: 0;
}

.steps > ul > li:after {
    right: 0;
}

.steps > ul > li:first-child:before, .steps > ul > li:last-child:after {
    content: none;
}

.steps > ul > li.current:after, .steps > ul > li.current ~ li:before, .steps > ul > li.current ~ li:after {
    background-color: #eee;
}

.steps > ul > li.current > a {
    color: #333;
    cursor: default;
}

.steps > ul > li.current .number {
    font-size: 0;
    border-color: #77b852;
    background-color: #fff;
    color: #77b852;
}

.steps > ul > li.current .number:after {
    content: '\f040';
    font-family: 'FontAwesome';
    display: inline-block;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 34px;
    -webkit-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.steps > ul > li.disabled a, .steps > ul > li.disabled a:hover, .steps > ul > li.disabled a:focus {
    color: #999;
    cursor: default;
}

.steps > ul > li.done a, .steps > ul > li.done a:hover, .steps > ul > li.done a:focus {
    color: #999;
    cursor: default;
}

.steps > ul > li.done .number {
    font-size: 0;
    background-color: #77b852;
    border-color: #77b852;
    color: #fff;
}

.steps > ul > li.done .number:after {
    content: '\f00c';
    font-family: 'FontAwesome';
    display: inline-block;
    font-size: 16px;
    line-height: 34px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.steps > ul > li.error .number {
    border-color: #77b852;
    color: #77b852;
}

.steps .number {
    background-color: #fff;
    color: #ccc;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -19px;
    width: 38px;
    height: 38px;
    border: 2px solid #eee;
    font-size: 14px;
    border-radius: 50%;
    z-index: 10;
    line-height: 34px;
    text-align: center;
}

.step-panel {
    padding: 20px 0;
}


/* 验证插件样式覆盖 */
.form-group.has-error label {
    color: #333;
}

.form-group.has-success label {
    color: #333;
}

.form-group.has-success .form-control, .form-group.has-success .input-group-addon {
    border-color: #d2d6de;
    box-shadow: none;
}

/* footer */
.footer {
    border-top: 1px solid #e7e7e7;
    padding-top: 15px;
    text-align: center;
    background: #ffffff;
}

.footer a,
.footer a:visited {
    color: #666;
    text-decoration: none;
}

.footer a:hover,
.footer a:active {
    color: #E43E41;
    text-decoration: none;
}

.copyright_split {
    margin: 0 10px;
    color: #ccc;
}

.copyright_info {
    padding: 30px 0 20px 0;
    line-height: 22px;
    color: #999;
}

.copyright_info a {
    color: #999;
}

.copyright_info a:hover {
    color: #E43E41;
}

.required:before {
    content: " * ";
    color: #f05654;
    font-size: 16px;
    position: relative;
    top: 4px;
}