.header_top {
    min-width: 1200px;
    background-color: #f4f4f4;
}

.header_top .container-box {
    height: 30px;
}

.header_top .header-link a {
    color: #999;
    padding: 0 5px;
}

.header_top .header-link a i {
    margin-right: 5px;
    
}

.header_logo {
    min-width: 1200px;
    background-color: #fff;
    background: url(../images/logo-bgi.png);
}

.header_logo .container-box {
    height: 170px;
    position: relative;
}

.header_logo .title-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    letter-spacing: 10px;
    transform: translate(-50%, -50%);
}

.header_logo .logo1 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header_logo .logo2 {
    position: absolute;
    top: 50%;
    left: 150px;
    transform: translateY(-50%);
}

.header_logo img {
    height: 100px;
}

.header_logo .search-box {
    width: 245px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.header_logo .search-box p {
    margin-top: 10px;
    text-align: right;
    font-weight: 500;
}

.search-input {
    padding: 0 5px;
    height: 35px;
    line-height: 35px;
    border: 1px solid #bbb;
    border-radius: 4px;
    transition: border-color .2s cubic-bezier(.645, .045, .355, 1)
}

.search-input:focus {
    outline: none;
    border-color: #409eff;
}

.search-btn {
    background-color: #0075e1;
    padding: 0 10px;
    height: 35px;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
}

.search-btn:focus {
    outline: none;
}

.search-btn:hover {
    background-color: #1579d7;
    color: #eee;
}

.navigator {
    color: #fff;
    min-width: 1200px;
    font-size: 20px;
    font-weight: 500;
    background-color: #1579d7;
    margin-bottom: 20px;
}

.navigator .container-box {
    height: 50px;
}

.navigator ul {
    height: 100%;
}

.navigator ul li {
    width: calc(100% / 9);
    text-align: center;
}

.navigator ul li a {
    display: inline-block;
    padding: 15px 20px;
}

.navigator ul li:hover {
    background-color: #9bc5e9;
    color: #1579d7;
}

.navigator ul li.active {
    background-color: #9bc5e9;
    color: #1579d7;
}

#no-login-area {
    display: none;
}

#login-area {
    display: none;
}

#header .login-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.8);
}

#header .login-form .login-form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 350px;
    border-radius: 5px;
    overflow: hidden;
}


.login-form .login-form-container .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 16px;
    height: 40px;
    background-color: #eee;
    color: #666;
}

.login-form .login-form-container .title #hide-login-form-btn {
    cursor: pointer;
    color: #999;
    padding: 10px;
}

.login-form .login-form-container .form-content {
    padding: 20px;
}

.login-form .login-form-container .form-content input {
    display: block;
    width: 100%;
    height: 40px;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 0 10px;
}
.login-form .login-form-container .form-content #user-login-btn {
    display: block;
    margin-top: 20px;
    width: 100%;
    height: 35px;
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: 3px;
    color: #fff;
    background-color: #0075e1;
}
#password {
    margin-top: 20px;
}

#login-user-info {
    color: blue;
}

.login-form .register-info {

    display: block;
    line-height: 1.5em;
    font-size: smaller;
    background-color: #eeeeee;
    padding: 10px;
}


.login-form-tips {
    margin: 10px 0;
    text-align: right;
    font-size: 12px;
}

#header .qrCode-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.8);
}

#header .qrCode-form .qrCode-form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 280px;
    border-radius: 5px;
    overflow: hidden;
}

.qrCode-form .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 16px;
    height: 40px;
    background-color: #eee;
    color: #666;
}
.qrCode-form .qrCode-form-content {
    height: 200px;
    width: 200px;
    margin: 15px auto;

}

.qrCode-form .qrCode-form-content img {
    height: 100%;
    width: 100%;
}


#hide-qrCode-form-btn {
    cursor: pointer;
    color: #999;
    padding: 10px;
}

