@charset "UTF-8";

@import "variables";

//标题  normal middle large

@mixin title($size, $font-size: $font-size-h6, $color: $gray, $weight: normal, $lineheight: $line-height-base) {
    .title-#{$size} {
        font-size: $font-size;
        color: $color;
        line-height: $lineheight;
        font-weight: $weight;
        padding: ($paddingBase * 2) 0 $paddingBase $paddingLeft;

        a {
            padding-left: $titleSpaceLeft;
        }
    }
}

@mixin titleBorder($borderType, $border) {
    .title-line-#{$borderType} {
        border-#{$borderType}: $border;
        padding: 0 0 8px $paddingLeft;
    }
}

@mixin text-space($padding) {
    .text-space {
        padding: $padding;
    }
}