
.cursor {
    cursor: pointer;
}
.flex1 {
    flex: 1;
}

.flexnone {
    flex: none;
}

.wrap{
    flex-wrap: wrap;
}

.bold {
    font-weight: bold;
}

/* 定义字体大小 */
.x3l {
    font-size: 48px;
}
.f27 {
    font-size: 27px;
}
.f24 {
    font-size: 24px;
}
.f13 {
    font-size: 13px;
}

.xxl {
    font-size: 20px;
}

.xl {
    font-size: 19px;
}

.lg {
    font-size: 18px;
}

.md {
    font-size: 17px;
}

.nr {
    font-size: 16px;
}

.sm {
    font-size: 15px;
}

.xs {
    font-size: 14px;
}

.xxs {
    font-size: 12px;
}

/* 定义常用外边距 */

.ml5 {
    margin-left: 5px;
}

.ml10 {
    margin-left: 10px;
}

.ml20 {
    margin-left: 20px;
}

.ml30 {
    margin-left: 30px;
}

.mr5 {
    margin-right: 5px;
}

.mr10 {
    margin-right: 10px;
}

.mr20 {
    margin-right: 20px;
}

.mr30 {
    margin-right: 30px;
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mt15 {
    margin-top: 15px;
}


.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}
.mt15 {
    margin-top: 15px;;
}

/* 定义常用内边距 */
.p30 {
    padding: 30px;
}
.p20 {
    padding: 20px;
}
.p15 {
    padding: 15px;
}
.p10 {
    padding: 10px;
}
.p5 {
    padding: 5px;
}
.pb30 {
   padding-bottom: 30px;
}
.pt20 {
    padding-top: 20px;
}
.pb20 {
    padding-bottom: 20px;
 }
.pt30 {
    padding-top: 30px;
}
.pl30 {
    padding-left: 30px;
}
.pr30 {
    padding-right: 30px;
}
.pl5 {
    padding-left:5px;
}
/* 定义常用的弹性布局 */
.wrap {
    flex-wrap: wrap;
}
.flex {
    display: flex;
}
.row {
    display: flex;
    align-items: center;
}

.row-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.row-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.row-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.row-around {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.column-around {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.column-end {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.column-between {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}



/* 超出隐藏 */
.line1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.line2 {
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line4 {
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.no-wrap {
    white-space: nowrap; /* 强制不换行 */
    overflow: hidden; /* 隐藏溢出的内容 */
    text-overflow: ellipsis; /* 文本溢出时显示省略号 */
  }

/* 中划线 */
.line-through {
    text-decoration: line-through;
}

/* 常用居中 */
.text-center {
    text-align: center;
}

/* br60 */
.br60 {
    border-radius: 60px;
}

/* br10 */
.br10 {
    border-radius: 10px;
}
.br3 {
    border-radius: 3px;
}
.br5 {
    border-radius: 5px;
}
/* 隐藏滚动条 */
::-webkit-scrollbar {
    width: 0;
    height: 0;
    color: transparent;
}

em,
i {
    font-style: normal;
}

a {
    text-decoration: none;
    cursor: pointer;
}
/* 定义字体颜色 */
.primary {
    color: #005DF3;
}

.bg-primary {
    background-color:#005DF3;
}
.bg-white {
    background-color: #fff;
}
/* .bg-body {
    background-color: $-color-body;
}
.bg-gray {
    background-color: $-color-border;
} */
.bg-color {
	background-color: #1d1c30;
}

.bg-f2 {
    background-color: #f2f2f2;
}
.bg-fa{
    background-color: #fafafa;
}


.black {
    color: #000;
}

.white {
    color: #fff;
}

.normal {
    color: #333333;
}

.lighter {
    color:#666;
}

.muted {
    color: #999;
}


.line-h18 {
    line-height: 18px;
}

.line-h27 {
    line-height: 27px;
}
.line-h24 {
    line-height: 24px;
}

.border-primary {
    border:1px solid #005DF3;
}

.border-white {
    border:1px solid #fff;
}
.br-body {
    border: 1px solid #e6e6e6;
}
.br-muted {
    border: 0.5px solid rgba(153, 153, 153, 0.1);
}
.u-shadow {
    overflow: hidden;
    border-radius: 3px;
    box-shadow:  0 0 1px rgba(0,0,0,.1),0 2px 4px rgba(0,0,0,.02);
    transition: box-shadow .3s ease-in-out;
}
.u-shadow:hover {
    box-shadow: 0 0 20px rgba(0,0,0,.12)
}

.u-scale .img{
    overflow: hidden;
}
.u-scale .img img{
    -webkit-transition:all .5s ease-in-out;-moz-transition:all .5s ease-in-out;-ms-transition:all .5s ease-in-out;-o-transition:all .5s ease-in-out;transition:all .5s ease-in-out
}
.u-scale:hover .img img{
    -webkit-transform:scale(1.04);-moz-transform:scale(1.04);-ms-transform:scale(1.04);-o-transform:scale(1.04);transform:scale(1.04)
}

.layui-btn-normal {
    background-color: #005DF3 !important;
}

.rotate180 .layui-icon{
    transform: rotate(180deg)
}
