/* 顶部 */
.head-bar-box {
    background: #061751;
    width: 100%;
}

.head-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1120px;
}

.head-bar .logo {
    width: auto;
    height: 70px;
    margin-left: 50px;
}

.head-bar .logo img {
    height: 100%;
    width: 100%;
}

.head-bar .login {
    border-radius: 5px;
    /* overflow: hidden; */
    font-size: 0;
    margin-right: 50px;
    display: flex;
}

.head-bar .login button {
    width: 80px;
    height: 40px;
    background: #474851;
    color: #07b8fa;
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 14px;
    border-right: 1px solid #000;
    cursor: pointer;
}

.head-bar .login button:hover {
    background: #666771;
}

.head-bar .login button:active {
    background: radial-gradient(circle, #666771, #474851);
}

/* //头像 */

.meun-box {
    display: none;
    width: 80px;
    height: 60px;
    margin: 0 auto;
    font-size: 13px;
    text-align: center;
    background-color: white;
    border-radius: 5px;
    transition: .5s all;
    color: #666;
    position: absolute;
    padding: 5px 10px;
    top: 0px;
    left: -35px;
    transition: .5s all;
    box-shadow: 0 .25rem .5rem 0 rgba(0, 0, 0, .3);

}

.meun-box>div {
    padding: 6px 5px;
    cursor: pointer;
}

.meun-box>div:hover {
    background-color: #ececee;
}

.meun-box>div:nth-last-child(1) {
    border-top: 1px solid #dedede;
}

.login:hover .meun-box {
    display: block;

}

/* 导航 */
.nav-bar-box {
    width: 100%;
    background: #061751;
}

.nav-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 auto;
    max-width: 1120px;
}

.nav-bar .nav-item {
    width: 115px;
    min-width: 115px;
    height: 48px;
    line-height: 48px;
    background: #061751;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 3px solid #222430;
}

.nav-item-act {
    border-bottom: 3px solid #07b8fa !important;
    color: #07b8fa !important;
}

.nav-bar .nav-item:hover {
    border-bottom: 3px solid #07b8fa;
    color: #07b8fa;
}

/* 底部 */
.foot-bar {
    padding: 30px 250px;
    background: #222430;
    color: white;
    text-align: center;
}

.foot-bar a {
    color: #ec8021;
}

.foot-bar a:hover {
    text-decoration: underline;
}

/* 在线客服 */
.fixed_tall {
    width: 170px;
    height: 138px;
    position: fixed;
    right: -150px;
    bottom: 50px;
    border: 1px solid;
    border-radius: 5px;
    background: #29a7e2;
    color: white;
    padding: 10px;
    transition: .5s ;
}

.flex_row {
    display: flex;
    align-items: center;
}

.col_left {
    height: 130px;
}

.col_left>div {
    width: 30px;
    font-size: 16px;
    padding-left: 4px;
    cursor: pointer;

}

.col_right_inner {
    background-color: white;
    width: 120px;
    padding: 5px;
    border-radius: 8px;
    margin: 0 auto;
    color: black;
}
.col_right_inner>div{
    padding: 5px 0;
    cursor: pointer;
}
.col_right_inner>div:nth-child(1){
    text-align: center;
}