/*圆角：2，4，最大*/
.border-radius-0 {
    border-radius: 0px !important;
}

.border-radius-4 {
    border-radius: 4px !important;
}

.border-radius-2 {
    border-radius: 2px !important;
}

.border-radius-max {
    border-radius: 1000px !important;
}

/*字宽：400(常用)，500，600*/
.weight-400 {
    font-weight: 400;
}

.weight-500 {
    font-weight: 500;
}

.weight-600 {
    font-weight: 600;
}

.weight-700 {
    font-weight: 700;
}

.weight-800 {
    font-weight: 800;
}

/*字号：10，11，12，13，14，16*/
.text-10 {
    font-size: 10px !important;
}

.text-11 {
    font-size: 11px !important;
}

.text-12 {
    font-size: 12px !important;
}

.text-13 {
    font-size: 13px !important;
}

.text-14 {
    font-size: 14px !important;
}

.text-16 {
    font-size: 16px !important;
}

.text-20 {
    font-size: 20px !important;
}

.text-24 {
    font-size: 24px !important;
}

.text-30 {
    font-size: 30px !important;
}
.text-40 {
    font-size: 40px !important;
}

.text-60 {
    font-size: 60px !important;
}

/*行高：1，2，3*/
.line-height-1 {
    line-height: 1 !important;
}

.line-height-2 {
    line-height: 2 !important;
}

.line-height-3 {
    line-height: 3 !important;
}

/*字间距：1，2，3，4，5*/
.text-spacing-1 {
    letter-spacing: 1px;
}

.text-spacing-2 {
    letter-spacing: 2px;
}

.text-spacing-3 {
    letter-spacing: 3px;
}

.text-spacing-4 {
    letter-spacing: 4px;
}

.text-spacing-5 {
    letter-spacing: 5px;
}

.text-spacing-6 {
    letter-spacing: 6px;
}

.text-spacing-7 {
    letter-spacing: 7px;
}

.text-spacing-8 {
    letter-spacing: 8px;
}

.text-spacing-9 {
    letter-spacing: 9px;
}

.text-spacing-10 {
    letter-spacing: 10px;
}

/*文字超出省略号替代*/
.text-ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/*字体颜色：白色,金色,灰白色*/
.text-white {
    color: #fff;
}

.text-gold {
    color: #c6a784 !important;
}

.text-pale {
    color: #b0b0b0 !important;
}
/*对齐：居中，居左，居右*/
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

/*去除内边距：全部，上，下，左，右*/
.nopadding-all {
    padding: 0px !important;
}

.nopadding-top {
    padding-top: 0px !important;
}

.nopadding-bottom {
    padding-bottom: 0px !important;
}

.nopadding-left {
    padding-left: 0px !important;
}

.nopadding-right {
    padding-right: 0px !important;
}


/*无边框*/
.noborder {
    border: none !important;
}

/*无背景色*/
.nobgcolor {
    background-color: transparent !important;
}

/*去外边距：全部，上，下，左，右*/
.nomargin {
    margin: 0px !important;
}

.nomargin-top {
    margin-top: 0px !important;
}

.nomargin-bottom {
    margin-bottom: 0px !important;
}

.nomargin-right {
    margin-right: 0px !important;
}

.nomargin-left {
    margin-left: 0px !important;
}

/*浮动：左*/
.float-left {
    float: left !important;
}

/*链接手势*/
a:hover {
    cursor: pointer !important;
}

/*隐藏元素*/
.el-display-none {
    display: none !important;
}