@import '../../style/variables.less';
.@{prefix}-pageheader-bar {
    display: flex; // justify-content: space-between;
    flex-shrink: 0;
    height: 50px;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid @border-color;
    background-color: #fff;
    font-size: 16px;
    font-weight: bold;
    &_back {
        margin-right: @box-padding/2;
        width: 25px;
        height: 25px;
        line-height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: @secondary-text-color;
        &:hover {
            cursor: pointer;
            color: @maycur-color;
        }
    }
    &_title {
        font-size: @primary-font-size;
        font-weight: bold;
        flex: auto;
    }
    &_help {
        color: @maycur-color;
        cursor: pointer;
        justify-self: flex-end;
        &_icon {
            margin-right: 4px;
            font-size:18px;
            vertical-align: middle;
        }
    }
    &_content {
        max-width: 400px;
    }
    &_close {
        padding: @box-padding/2;
        cursor: pointer;
    }
}