.lh-select-tile {
    .tile-title {
        font-weight: 700;
        font-size: 14px;
        margin: 8px 0;
    }
    .lh-select-tile-ul {
        display: inline-block;
        .tile-left-title {
            display: inline-block;
            color:@color_b1;
            font-size: 14px;
            font-weight: bold;
        }
        li {
            display: inline-block;
            padding-left: 12px;
            padding-right: 12px;
            height: 24px;
            line-height: 24px;
            cursor: pointer;
            color: @color_b1;
            border-radius: 12px;
            font-size: 14px;
            margin-bottom: 8px;
            margin-right: 20px;
            &:last-child {
                margin-right: 0;
            }
            &:hover {
                background: @color_theme1;
            }

            &.active {
                background-color: @color_theme1;
                color:@color_theme6;
            }
            &.disabled{
              &.active{
                background-color: @color_b7;
                color: @color_b5;
              }
              color: @color_b5;
              cursor: not-allowed;
            }

        }
    }
    .custom-option {
        color: #666;
        height: 20px;
        display: inline-block;
        position: relative;
        line-height: 20px;
        margin-left: -10px;
        input {
            /* WebKit, Blink, Edge */
            &::-webkit-input-placeholder {
                color: #b2b2b2;
                font-size: 14px;
            }
            /* Mozilla Firefox 4 to 18 */
            &:-moz-placeholder {
                color: #b2b2b2;
                font-size: 14px;
                //在测试中发现，火狐给的placeholder的颜色始终其真实值要更浅，怀疑火狐给placeholder设置了透明度。然后设置了一下opacity果然成功了。不得不佩服
                opacity: 1;
            }
            /* Mozilla Firefox 19+ */
            &::-moz-placeholder {
                color: #b2b2b2;
                font-size:14px;
                //在测试中发现，火狐给的placeholder的颜色始终其真实值要更浅，怀疑火狐给placeholder设置了透明度。然后设置了一下opacity果然成功了。不得不佩服
                opacity: 1;
            }
            /* Internet Explorer 10-11 */
            &:-ms-input-placeholder {
                color: #b2b2b2;
                font-size:14px;
            }
        }

        .custom-input {
            width: 60px;
            margin: 0;
            padding: 0 4px;
            border: none;
            text-align: center;
            background-color: transparent;
            line-height: 20px;
        }
        .custom-option-disable {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            cursor: not-allowed;
        }
    }
    .mini {
        li,input {
            font-size: 12px;
        }
        li {
            height: 20px;
            line-height: 20px;
            border-radius: 10px;
            padding-left: 10px;
            padding-right: 10px;
        }
    }
}
