
.select-pulse
{
    margin-right: 30px;
    vertical-align: top;
    line-height: 1;
    display: inline-block;
    >div
    {
        line-height: 1;
        margin-bottom: 13px;
        font-weight: 700;

        .spanTitle {
            color: #666666;
            &.hide {
                color: #ccc;
            }
        }
        .spanHide {
            color: #8590a6;
            cursor: pointer;
        }

        &.active
        {
            display: inline-block;
            .spanTitle {
                color: #999999;
            }
            font-size: 12px;
            font-weight: normal;
        }
    }
    ul
    {
        display: inline-block;
        li
        {
            display: inline-block;
            padding-left: 6px;
            padding-right: 6px;
            height: 18px;
            line-height: 18px;
            cursor: pointer;
            color:#666666;
            border-radius: 9px;
            font-size: 12px;
            margin-bottom: 6px;
            margin-right: 5px;
            &.hide {
                color: #ccc !important;
                cursor:default !important;
                background-color: white !important;
                &:hover {
                    background: none;
                    color:#ccc;
                }
            }

            &:hover
            {
                background-color: #ff6000;
                color:white;
            }
            &.active
            {
                background-color: #ff6000;
                color:white;
            }

        }
    }
}