:root {
    --primary: #2362FB;
    --secondary: #6C757D;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --info: #17A2B8;
    --light: #F8F9FA;
    --dark: #343A40;
    --muted: #6C757D;
    --white: #FFFFFF;
    --borderColor: #dEE2E6;
    --lightmuted: #B2B2B2;
    --pink: #FFC0CB;
}

/*Fui 选中样式*/
.Fui-active {
    border-left: 2px #2362FB solid;
    background: #F7F8FA;
}

/*Fui input 禁止输入样式*/
.Fui-input-disabled {
    background-color: #F5F7FA !important;
    cursor: no-drop;
}

/* 隐藏 */
.Fui-hide {
    display: none !important;
}

.ls-hide {
    display: none;
}

/*展示*/
.Fui-show {
    display: block !important;
}

/*展示阴影层*/
.Fui-show-shade {
    display: flex !important;
}

/*flex 布局*/
.Fui-dis-flex {
    display: flex;
}

.Fui-justify-start {
    justify-content: start !important;
}

/* 水平居中 */
.Fui-level-center {
    display: flex;
    justify-content: center;
}

/* 垂直居中 */
.Fui-vert-center {
    display: flex;
    align-items: center;
}

/* 垂直 水平 居中 */
.Fui-vert-level {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*两端对齐*/
.Fui-space-between {
    display: flex;
    justify-content: space-between;
}

/*自动换行*/
.Fui-wrap {
    display: flex;
    flex-wrap: wrap;
}

/*垂直显示*/
.Fui-column {
    display: flex;
    flex-direction: column;
}

/*相对定位 相对于其正常位置进行定位。*/
.Fui-relative {
    position: relative !important;
}

/*绝对定位 相对于 static 定位以外的第一个父元素进行定位。 */
.Fui-absolute {
    position: absolute !important;
}

/* 绝对定位 相对于浏览器窗口进行定位。*/
.Fui-fixed {
    position: fixed !important;
}

/*定位后的距离 0*/
.Fui-location-zero {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/*margin居中*/
.Fui-margin-auto {
    margin: auto;
}

.Fui-mlr-3 {
    margin: 0 3px;
}

.Fui-margin-r-five {
    margin-right: 5px;
}

/*下外边距 0*/
.Fui-margin-bottom-zero {
    margin-bottom: 0 !important;
}

/*内边距*/
.Fui-padd-fifteen {
    padding: 15px;
}

/*层级 int 最大值*/
.Fui-z-index {
    z-index: 2147483647;
}

/*Fui 边框*/
.Fui-border {
    border: 1px rgba(0, 0, 0, .12) solid !important;
}

.Fui-border-hide {
    border: none !important;
}

/*宽度*/
.Fui-width-BFB {
    width: 100% !important;
}

/*95%*/
.Fui-width-ninety-five {
    width: 95% !important;
}

/*50%*/
.Fui-width-fifty {
    width: 50% !important;
}

/*38%*/
.Fui-width-thirty-eight {
    width: 38% !important;
}

/*30%*/
.Fui-width-thirty {
    width: 30%;
}

/*25%*/
.Fui-width-twenty-five {
    width: 25%;
}

/*20%*/
.Fui-width-twenty {
    width: 20%;
}

.Fui-width-seventeen {
    width: 17%;
}

/*高度*/
.Fui-height-BFB {
    height: 100% !important;
}

/*97%*/
.Fui-height-ninety-seven {
    height: 97% !important;
}

/* 按钮样式 默认 */
button {
    cursor: pointer;
}

.Fui-cursor {
    cursor: pointer;
    user-select: none;
}

.Fui-btn {
    height: 38px;
    color: #000000;
    cursor: pointer;
    font-size: 14px;
    padding: 0 10px;
    font-weight: 600;
    line-height: 37px;
    user-select: none;
    border-radius: 3px;
    text-align: center;
    white-space: nowrap;
    margin: 0 5px 0 5px;
    background-color: #FFFFFF;
    border: 1px #D2D2D2 solid;
}

/* 取消按钮 */
.Fui-deny:hover {
    background-color: #f1f1f1;
}

/* 确定、保存按钮 */
.Fui-define {
    color: #FFFFFF;
    background-color: #2362FB;
    border: 1px transparent solid;
}

/* 小型按钮 */
.Fui-btn-sm {
    height: 30px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 29px;
}

/*Fui 必填*/
.Fui-required {
    color: #F66C6C;
    margin-right: 5px;
}

/*Fui input 样式*/
.Fui-input {
    width: 100%;
    min-width: 140px;
    height: 38px;
    padding: 0 15px;
    font-size: 15px;
    border-radius: 5px !important;
    box-sizing: border-box;
    color: rgba(0, 0, 0, .85);
    background: #FFFFFF;
    border: 1px rgba(0, 0, 0, .2) solid;
}

/*Fui input 小型（高度）*/
.Fui-input-sm {
    height: 28px !important;
    margin: 8px 0 !important;
}

/*input hover*/
.Fui-input:hover {
    border: 1px var(--primary) solid !important;
}

/*input 点击选中样式*/
.Fui-input:focus {
    border: 1px #2362FB solid;
}

/*多行文本样式*/
.Fui-textarea {
    resize: none;
    width: 100%;
    padding: 8px;
    font-size: 15px;
    border-radius: 5px;
    box-sizing: border-box;
    color: rgba(0, 0, 0, .85);
    background: #FFFFFF;
    border: 1px rgba(0, 0, 0, .2) solid;
}

.Fui-textarea:hover {
    border: 1px #AFAFAF solid;
}

.Fui-textarea:focus {
    border: 1px #2362FB solid;
}

/*Fui select 下拉选择框样式*/
.Fui-select {
    width: 100%;
    height: 38px;
    font-size: 15px;
    border-radius: 5px;
    color: rgba(0, 0, 0, .85);
    background: #FFFFFF;
    border: 1px rgba(0, 0, 0, .2) solid;
    padding: 0 15px;
}

/*阴影遮罩*/
.Fui-shade {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483647;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .5) !important;
}

/* 弹出层 与 阴影一起使用 */
.Fui-popup {
    box-sizing: border-box;
    width: 50%;
    height: 50%;
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 5px 1%;
    position: relative;
}

/*弹出层顶部（头标题）*/
.Fui-popup-head {
    height: 45px;
    display: flex;
    align-items: center;
}

.Fui-popup-head-title {
    width: 100%;
    font-size: 17px;
    font-weight: 600
}

/*Fui 图标样式*/
.Fui-icon {
    font-size: 28px;
    color: var(--danger);
    margin: 0 8px;
}

.Fui-boy {
    margin-right: 5px;
    font-size: 16px !important;
    color: var(--primary) !important;
}

.Fui-girl {
    margin-right: 5px;
    font-size: 16px !important;
    color: var(--pink) !important;
}

.Fui-secrecy {
    margin-right: 5px;
    font-size: 16px !important;
    color: var(--secondary) !important;
}

.Fui-icon:hover {
    color: #2362FB !important;
}

/*弹出层表单*/
.Fui-popup-form {
    box-sizing: border-box;
    /*height: 89%;*/
}

.Fui-form-item {
    width: 100%;
    padding: 0 2%;
    box-sizing: border-box;
}

.Fui-form-item-info {
    width: 100%;
    margin: 15px 0;
    box-sizing: border-box
}

.Fui-form-item-info-title {
    color: #000;
    font-size: 13px;
    margin-bottom: 10px;
}

/*弹出层底部按钮（取消、保存）*/
.Fui-popup-button {
    width: 95%;
    height: 45px;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
}

/*定义块样式*/
.Fui-blockquote {
    border-left: 4px #00b7ee solid;
    padding-left: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.Fui-blockquote-text {
    font-size: 13px;
    font-weight: 600;
}

/*字体样式*/
.Fui-font-blue {
    color: var(--primary) !important;
}

.Fui-font-white {
    color: var(--white) !important;;
}

/*背景颜色*/
.Fui-backColor-bule {
    background-color: var(--primary) !important;
    border-color: #4F81FC !important;
    color: #FFFFFF !important;
}

/*浅蓝色*/
.Fui-backColor-simpleBule {
    background-color: #E9EFFF;
    border-color: #E9EFFF !important;
    color: var(--primary) !important;
}

/*红色*/
.Fui-backColor-danger {
    background-color: var(--danger) !important;
    border-color: var(--danger) !important;
}

/*白色*/
.Fui-backColor-white {
    background-color: var(--white) !important;
}

/*页面顶部搜索框样式*/
.Fui-top-box {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2%;
    box-sizing: border-box;
}

.Fui-top-leftBox {
    min-width: 125px;
}

.Fui-top-box-left-icon {
    background-color: #2362FB;
    width: 40px;
    height: 30px;
    color: #FFFFFF;
    font-size: 22px;
    border-radius: 5px;
    margin-right: 10px;
}

.Fui-top-box-left-font {
    font-weight: 600;
    font-size: 18px;
}

.Fui-top-betweenBox {
}

.Fui-between-search {

}

.Fui-between-search > input {
    /*border-radius: 5px 0 0 5px !important;*/
}

.Fui-between-search-icon {
    background-color: #F5F7FA;
    height: 38px;
    width: 70px;
    min-width: 70px;
    border-radius: 5px;
    border: 1px rgba(0, 0, 0, .12) solid;
}

.Fui-between-search-icon:hover {
    border: 1px var(--primary) solid !important;
}

.Fui-between-search-icon > i {
    font-size: 16px;
    margin-right: 5px;
    color: #A39CB2;
}

.Fui-search-info {
    margin-right: 10px;
}

.Fui-top-rightBox {

}

.Fui-rightBox-button {
    background-color: #FFFFFF;
    border: 1px rgba(0, 0, 0, .12) solid;
    width: 32px;
    height: 32px;
    min-width: 32px;
    text-align: center;
    line-height: 32px;
    color: #333333;
    margin-right: 10px;
    border-radius: 5px;
    z-index: 199;
}

.Fui-rightBox-button:hover {
    border: 1px var(--primary) solid !important;
}

.Fui-rightBox-AddButton {
    border: 1px #4F81FC solid;
    padding: 0 10px;
    box-sizing: border-box;
    height: 32px;
    text-align: center;
    line-height: 32px;
    color: #FFFFFF;
    margin-right: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.Fui-rightBox-import {
    margin-top: 8px;
    padding: 5px;
    width: 100px;
    border: 1px #ebeef5 solid;
    border-radius: 5px;
    right: 0;
}

.Fui-importIcon {
    margin-right: 4px;
    font-weight: 600;
}

.Fui-rightBox-import > label:hover {
    background-color: #E9EFFF !important;
    color: #2362FB !important;
}

/*三角形*/
.Fui-triangle {
    width: 0;
    height: 0;
    border-bottom: 8px #ebeef5 solid;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    top: -8px;
    right: 3px;
}

/*图片样式*/
.Fui-image-max {
    max-width: 25px !important;
}

/*滚动条样式*/
.Fui-roll-bar {
    overflow: auto;
}

.Fui-roll-bar::-webkit-scrollbar {
    width: 3px !important;
}

.Fui-roll-bar::-webkit-scrollbar-thumb {
    background-color: #C7D1DA !important;
}

.Fui-roll-bar::-webkit-scrollbar-track {
    background-color: #EFEFEF !important;
}

/*文字位置*/
.Fui-text {
    text-align: center;
}

.Fui-text-bold {
    font-weight: bold;
    color: #172B6A;
}

.Fui-font-size-20 {
    font-size: 20px;
}

.Fui-font-size-small {
    font-size: 12px;
}

/*修改 layui css样式*/
.layui-form-select .layui-input {
    /*width: 100%;*/
    /*height: 38px;*/
    /*font-size: 15px;*/
    /*border-radius: 5px;*/
    /*color: rgba(0, 0, 0, .85);*/
    /*background: #FFFFFF;*/
    /*border: 1px rgba(0, 0, 0, .2) solid;*/
    /*padding: 0 15px;*/
}

/* 消息待办弹出层 */
.card {
    height: 100%;
    width: 0;
    background-color: #F5F6F9;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2147483647
}

#card-close-btn {
    position: absolute;
    left: -40px;
    top: 120px;
    width: 40px;
    color: #ffffff;
    font-size: 22px;
    text-align: center;
    line-height: 40px;
    height: 40px;
    background-color: #FF6A00;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

/* 结束 */

/*使用data-tip来实现title的效果*/
/*通过属性选择器获取到标签，加上相对定位*/
[data-tip] {
    position: relative;
    display: inline-block;
}

/*统一设置伪类的样式*/
[data-tip]::before,
[data-tip]::after {
    position: absolute;
    visibility: visible;
    opacity: 0;
    z-index: 2147483660;
    pointer-events: none;
    transition: .2s;
}

/*单独设置before， 设置小三角形*/
[data-tip]::before {
    content: '';
    /*通过border来设置三角形*/
    /*border: 5px solid transparent;*/
    /*通过这个来设置三角形的直角的方向*/
    /*border-top-color: rgba(0, 0, 0, .6);*/
    /*-webkit-transform: translateX(-50%);*/
    /*transform: rotate(180deg) translateX(50%);*/
    /*bottom: 0;*/
    /*left: 50%;*/
    /*margin-bottom: -5px;*/
}

/* 设置字体和背景 */
[data-tip]::after {
    /* 通过 attr来或者字体 */
    content: attr(data-tip);
    display: block;
    color: var(--primary);
    font-size: 12px;
    padding: 4px 15px;
    background: #FFFAE6;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, .3);
    border-radius: 4px;
    /*bottom: -134%;*/
    left: 125%;
    height: 20px;
    line-height: 19px;
    text-align: center;
    margin-bottom: 5px;
    white-space: nowrap;
    transform: translateY(-80%);
}

/* hover的时候显示 */
[data-tip]:hover::before,
[data-tip]:hover::after {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: .15s;
    transition-delay: .15s;
}

/* 当data-tip 没有内容的时候隐藏 */
[data-tip=""]::before,
[data-tip=""]::after {
    display: none !important;
}

.ls-w-100 {
    width: 100%;
}

.ls-h-100 {
    height: 100%;
}

.ls-flow {
    overflow: auto;
}

.ls-box {
    box-sizing: border-box;
}

/* 内边距 */
.ls-p-10 {
    padding: 10px;
}

.ls-p-20 {
    padding: 20px;
}

/* 新css外边距高度 */
.ls-mt-20 {
    margin-top: 20px;
}

.ls-mb-8 {
    margin-bottom: 8px;
}

.ls-mb-20 {
    margin-bottom: 20px;
}

.ls-mb-180 {
    margin-bottom: 180px;
}

.ls-ml-10 {
    margin-left: 10px;
}

.ls-mr-10 {
    margin-right: 10px;
}

.ls-font-small {
    font-size: 12px;
}

.ls-font-default {
    font-size: 14px;
}

.ls-font-600 {
    font-weight: 600;
}

.ls-light-black {
    color: #172B4D;
}

.ls-light-gray {
    color: #A5ADBA;
}

.ls-gray {
    color: #A5ADBA;
}

.ls-default {
    color: #2362FB;
}

.ls-btn-danger {
    background-color: var(--danger);
}

.ls-btn-success {
    background-color: var(--success);
}

.ls-btn-info {
    background-color: var(--borderColor);
    color: var(--dark);
}

.ls-dot {
    top: 0 !important;
    margin: unset !important;
}

.ls-relative {
    position: relative;
}