@import "mixins/mixins";
@import "common/var";

@include b(sku) {
    &-dl{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 40px;
        margin-left: 10px;
        dt {
            width: 100px;
            text-align: right;
        }
        dd{
            display: flex;
            justify-content: flex-start;
            align-items: center; 
            margin-left: 0;
            .button {
                cursor: pointer;
                font-size: 14px;
                font-weight: bold;
                width: 100px;
                height: 30px;
                display: flex;
                justify-content: center;
                align-items: center;
                margin: 0 10px;
                &.disabled {
                    color:#999;
                    border: 1px dashed #666;
                }
                &.active {
                    color: red;
                }
            }
        }
        
    }
   
   
    

    
}
