.cursor-pointer {
    cursor: pointer;
}

.forbid-input {
    color: #999;
    cursor: no-drop;
}

.w-percent-100 {
    width: 100%;
}

.w-percent-50 {
    width: 50%;
}

.w-fixed-30px {
    width: 30px;
}

.margin-unset {
    margin: unset !important;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-top-2 {
    margin-top: 2px;
}

.margin-bottom-2 {
    margin-bottom: 2px;
}

.margin-left-10 {
    margin-left: 10px;
}

.margin-10 {
    margin: 10px;
}

.margin-right-10 {
    margin-right: 10px;
}

.margin-right-4 {
    margin-right: 4px;
}

.margin-left-24 {
    margin-left: 24px;
}

.margin-left-30 {
    margin-left: 30px;
}

.margin-bottom-24 {
    margin-bottom: 24px;
}

.padding-10 {
    padding: 10px !important;
}

.padding-unset {
    padding: unset !important;
}

.padding-left-15 {
    padding-left: 15px;
}

.min-height-56 {
    min-height: 56px
}

/*自定义字体颜色*/
.custom-color-gray6 {
    color: #666666;
}

.custom-color-red {
    color: #ff0000;
}

.custom-color-blue {
    color: #06A8FF;
}

.custom-color-blue-green {
    color: #16baaa;
}

/*自定义class滚动条制定*/
.scroll-custom {
    overflow-y: scroll;
}

.scroll-custom::-webkit-scrollbar {
    /*滚动条宽度*/
    width: 6px;
    height: 6px;
    /*默认背景*/
    background-color: #ffffff;
}

.scroll-custom:hover ::-webkit-scrollbar-track-piece {
    /*鼠标移动上去再显示滚动条*/
    background-color: #fff;
    /* 滚动条的背景颜色 */
    border-radius: 6px;
}

.scroll-custom:hover::-webkit-scrollbar-thumb:hover {
    background-color: #c1c1c1;
}

.scroll-custom:hover::-webkit-scrollbar-thumb:vertical {
    background-color: #c1c1c1;
    border-radius: 6px;
    outline: 2px solid #c1c1c1;
    outline-offset: -2px;
    border: 2px solid #c1c1c1;
}

/*layui 滚动条自定义*/
::-webkit-scrollbar {
    /*滚动条宽度*/
    width: 6px;
    height: 8px;
    /*默认背景*/
    background-color: #ffffff;
}

::-webkit-scrollbar-track-piece:hover {
    /*鼠标移动上去再显示滚动条*/
    background-color: #fff;
    /* 滚动条的背景颜色 */
    border-radius: 6px;
}

::-webkit-scrollbar-track {
    background: #fff; /* 设置滚动条轨道的颜色 */
    /* 滚动条的背景颜色 */
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #fff;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #c1c1c1;
}

:hover::-webkit-scrollbar-thumb:vertical {
    background-color: #c1c1c1;
    border-radius: 6px;
    outline: 2px solid #c1c1c1;
    outline-offset: -2px;
    border: 2px solid #c1c1c1;
}

/*layui 样式覆盖*/
.flex-btn-form-mb{
    margin-bottom: 50px;
}

.layui-form-label {
    width: 120px !important;
    text-align: right !important;
}

.layui-input-block {
    margin-left: 150px !important;
    min-height: 36px !important;
    line-height: 36px !important;
}

.custom-input-radio .layui-form-radio {
    line-height: unset !important;
    margin: unset !important;
}

.custom-input-radio {
    height: 36px;
    line-height: 36px !important;
    border-width: 1px;
    border-style: solid;
    background-color: #fff;
    color: rgba(0,0,0,.85);
    border-radius: 2px;
    padding-left: 10px;
    border-color: #eee;
}

.layui-table-view {
    clear: unset !important;
}

.layui-table-body .layui-none {
    padding: 10px 15px 0 15px !important;
}

/*弹窗浮动按钮*/
.btn-form-save{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFF;
    border-top: solid #e6e6e6 1px;
    padding: 12px 25px;
    display: flex;
    justify-content: flex-start;
    z-index: 999;
}

/*按钮颜色 add edit delete view save*/
.layui-btn-add {
    background-color: #1e9fff;
}

.layui-btn-edit {
    background-color: #16baaa;
}

.layui-btn-delete {
    background-color: #ff5722;
}

.layui-btn-view {
    background-color: #1e9fff;
}

.layui-btn-save {
    background-color: #1e9fff;
}

/*复选框中带有input*/
.checkbox-content-box{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.checkbox-content{
    width: 100%;
}

.tag-bg-gradual {
    background-image: linear-gradient(0.4turn, #FAEBD7, #f1f1f1);
}

.title-card{
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 12px;
    color: black;
    font-weight: bold;
}

/**/
.display-block{
    display: block;
}

.display-none{
    display: none;
}

/*文字排布*/
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/*弹性布局*/
.custom-flex {
    display: flex;
}

.flex-direction-column {
    flex-direction: column;
}

.flex-justify-left {
    justify-content: flex-start;
}

.flex-justify-center {
    justify-content: center;
}

.flex-justify-right {
    justify-content: flex-end;
}

.flex-justify-between {
    justify-content: space-between;
}

.flex-align-left {
    align-items: flex-end;
}

.flex-align-center {
    align-items: center;
}

.flex-align-right {
    align-items: flex-end;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-shrink {
    flex-shrink: 0;
}

.copy-prohibited {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE/Edge */
    user-select: none;         /* 标准语法 */
}

.svg-icon {
    width: 1.8em;
    height: 1.8em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}