html {
    color: #000;
    background: #fff;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html * {
    outline: 0;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
    position: relative;
}

html, body {
    font-family: '微软雅黑', "Helvetica Neue", Helvetica, Microsoft Yahei, Hiragino Sans GB, WenQuanYi Micro Hei, sans-serif;
    line-height: 1;
    font-size: 16px;
    color: #333;
    min-height: 100%;
}

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;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

input, select, textarea {
    font-size: 100%;
}

input, textarea, button {
    border: none;
}

textarea {
    resize: none;
}

button {
    -webkit-appearance: none;
    display: block;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset, img {
    border: 0;
}

img, i {
    display: block;
}

address, caption, cite, code, dfn, em, th, var {
    font-style: normal;
    font-weight: 500;
}

ol, ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: 500;
}

a {
    text-decoration: none;
}

p {
    word-break: break-all;
}

::placeholder {
    font-family: '微软雅黑', "Helvetica Neue", Helvetica, Microsoft Yahei, Hiragino Sans GB, WenQuanYi Micro Hei, sans-serif;
    color: #999;
}

.clear:after {
    content: "";
    display: block;
    clear: both;
}

.none {
    display: none;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/***************************************************登录页***************************************************************/
html, body {
    width: 100%;
    height: 100%;
}

.login {
    width: 100%;
    height: 100%;
    padding-top: 120px;
    /*display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;*/
    background-image: url("/static/images/login-bottom-bg.png"), url("/static/images/login-bg.png");
    background-repeat: repeat-x, no-repeat;
    background-position: center bottom, center;
    background-size: 634px 108px, cover;
}

.login-logo {
    width: 384px;
    height: 37px;
    margin: 0 auto;
}

.login-main {
    width: 1200px;
    padding: 0 100px;
    margin: 87px auto 0;
}

.login-main-left {
    width: 502px;
    height: 397px;
    float: left;
    margin-top: 36px;
}

.login-main-right {
    float: right;
    width: 360px;
    padding: 30px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.6);
}

.login-main-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 40px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.login-main-item {
    width: 298px;
    height: 40px;
    border-radius: 2px;
    background-color: #fff;
    margin-bottom: 20px;
}

.login-main-icon {
    float: left;
    width: 44px;
    height: 100%;

    background-position: center;
    background-repeat: no-repeat;
}

.login-main-ipt {
    float: left;
    width: 245px;
    height: 26px;
    line-height: 26px;
    padding-left: 10px;
    border-left: 1px solid #ddd;
    margin-top: 8px;
}

.login-main-btn {
    width: 100%;
    height: 44px;
    color: #fff;
    background-color: #117da4;
    border-radius: 22px;
    margin-top: 40px;
}
@media (max-height: 680px) {
    .login {
        padding-top: 78px;
    }
    .login-main{
        margin-top: 47px;
    }
}