/*--============================---
 *  基础组件 -- Radio样式
 *  loke 2018-08-20 10:38:21
 *--==============================*/
.sui-radio {
    position: relative;
    .title {
        color: #666;
        height: 32px;
        line-height: 32px;
        padding: 0 10px;
    }
    .radio-list {
        background: #fff;
        border: 1px solid #e8e8e8;
        border-left: 0;
        border-right: 0;
        .list-item {
            box-sizing: border-box;
            margin-left: 15px;
            height: 40px;
            line-height: 40px;
            border-bottom: 1px solid #e8e8e8;
            clear: right;
            color: #333;
            &:last-child {
                border-bottom: 0;
            }
            .ico {
                float: right;
                padding: 0 15px;
                height: 40px;
                overflow: hidden;
                display: none;
                > i{
                    font-weight: 600;
                }
                &.active {
                    display: inline-block;
                    color: #2599f2;
                }
            }
            &.disabled {
                color: #999;
                >.ico {
                    color: inherit;
                }
            }
        }
    }
}
