
.toolbar {
    font-size: 14px;
    font-weight: 400;
    color: #222226;
    background: #fff;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .05);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .05);
    position: relative;

}

.toolbar .ct {

    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 24px;
    height: 48px;
    line-height: 48px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.toolbar .ct .menu {
    width: calc(100% - 48px);
    height: 100%;
    font-size: 0;
}

.toolbar .ct .menu ul{
  padding:0;margin:0;
}

.toolbar .ct .menu li {

    position: relative;
    display: inline-block;
    list-style: none;
    font-size: 14px;
    height: 100%;
    line-height: 48px;
    text-align: center;
}

.toolbar .ct .menu ul {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.toolbar .ct .menu li a {

    text-decoration: none;
    display: block;
    height: 100%;
    color: inherit;
    padding: 0 10px;
}

.toolbar .ct .menu li.space {
    flex: 1;
}