html {
    height: 100%;
}

html body {
    height: 100%;
}

html body .header {
    width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

html body .header .icon {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.icon .icon-title{
    font-size: 36px;
    margin-left: -200px;
    font-weight: bolder;
    letter-spacing: 6px;
    font-family: "monospace";
    text-align:center;
}

/*html body .header .icon image {*/
    /*display: inline-block;*/
    /*width: 90px;*/
    /*height: 90px;*/
/*}*/
html body .header .tab-list{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

html body .header .tab-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

html body .header .tab-list ul li {
    text-align: center;
    width: 124px;
    height: 50px;
    line-height: 50px;
    border-right: 1px solid #e5e5e5;
    font-size: 16px;
    cursor: pointer;
}

html body .header .tab-list ul li:hover {
    background-color: #3071b9;
    color: #fff;
}

html body .header .tab-list ul li.active {
    background-color: #3071b9;
}

html body .header .search {
    padding-left: 20px;
}
.search input{
    height: 22px;
 }
.search-button{
    display: inline-block;
    margin-left: -4px;
    height: 26px;
    width: 54px;
}

html body .container-background {
    width: 100%;
    height: calc(100% - 274px);
    background: url("../image/index-bg.png");
    background-size: 100% 100%;
}

html body .container-background .container {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 100%;
}

html body .container-background .container .login-form {
    position: absolute;
    top: 50px;
    right: 70px;
    padding-top: 28px;
    padding-right: 34px;
    padding-left: 34px;
    padding-bottom: 12px;
    border-radius: 8%;
    background-color: #fff;
}

html body .container-background .container .login-form .login-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
}

html body .container-background .container .login-form .login-tab i {
    font-style: normal;
    cursor: pointer;
}

html body .container-background .container .login-form .login-tab i.active {
    color: #3D535C;
}
html body .container-background .container .login-form .login-tab i.active:hover{
    color: #342bde;
}


html body .container-background .container .login-form .input-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

html body .container-background .container .login-form .input-text input {
    width: 216px;
    height: 40px;
    margin-top: 24px;
    padding-left: 40px;
    border-radius: 4px;
    border: none;
    border: 1px solid #ccc;
    border-radius: 3px;
}

html body .container-background .container .login-form .input-text span {
    margin-left: 10px;
    margin-top: -30px;
}

html body .container-background .container .login-form .login-submit {
    margin-top: 30px;
    width: 100%;
    height: 34px;
    border: none;
    border-radius: 3px;
    color: #fff;
    background-color: #376ab3;
    text-align: center;
}

html body .container-background .container .login-form .forget-password {
    font-size: 12px;
    margin-top: 38px;
    color: #7396ca;
    border-bottom: 1px solid #7396ca;
    margin-bottom: 14px;
}

html body .footer {
    width: 1200px;
    margin: 0 auto;
    margin-top: 60px;
    font-size: 14px;
    color: #8a8a8a;
    text-align: center;
}

html body .footer p {
    height: 20px;
    line-height: 20px;
}

/*# sourceMappingURL=index.css.map */