﻿
/*#region 初始化样式 */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, button, input, textarea, p, th, td {
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
    box-sizing: border-box;
    font-size: 12px;
    background-color: #f5f7fa;
}

div {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

a {
    color: rgb(63, 62, 62);
    text-decoration: none;
}

    a:hover {
        text-decoration: none !important;
    }

i {
    font-style: normal;
}

img {
    border: none;
}

ol,
ul,
li {
    list-style: none;
}

table {
    border-collapse: collapse;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    *zoom: 1;
}
/*#endregion */



/*#region 按钮 */
.btn-info {
    --bs-btn-color: #000;
    --bs-btn-bg: var(--info-color);
    --bs-btn-border-color: var(--info-color);
    --bs-btn-hover-color: #9f75f7;
    --bs-btn-hover-bg: var(--info-color);
    --bs-btn-hover-border-color: #9f75f7;
    --bs-btn-focus-shadow-rgb: 11,172,204;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: var(--info-color);
    --bs-btn-active-border-color: #9f75f7;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    --bs-btn-disabled-color: #000;
}

.btn {
    margin-left: 1px;
    /*    height: 28px;
    --bs-btn-font-size: 12px;
    --bs-btn-padding-x: 7px;
    --bs-btn-padding-y: 4px;
    --bs-btn-border-radius: 4px;*/
    height: 24px;
    line-height: 24px;
    padding: 0 7px;
    font-size: 12px;
}

.btn-lg {
    height: 34px;
    line-height: 34px;
    padding: 0 13px;
    font-size: 13px;
}

.btn-md {
    height: 30px;
    line-height: 30px;
    padding: 0px 13px;
}

.btn-sm {
    height: 19px;
    line-height: 19px;
    padding: 0px 5px;
}

.table .btn {
    height: 20px;
    line-height: 20px;
}

.btn-circle {
    text-align: center;
    padding: 0px 4px;
    line-height: 20px;
    width: 20px;
    height: 20px;
}

.filter-item .card-footer .btn {
    padding: 0px 12px;
    font-size: .875rem;
    line-height: 13px;
    border: 1px solid #dcdfe6;
    color: #606266;
    transition: border-color .3s linear,color .3s linear;
}

.icon-button {
    padding: 0;
}

.popover-confirm-buttons .btn {
    padding: 0px 6px;
}


.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: none;
}

.button-small {
    padding: 0px 2px;
    height: 19px;
    line-height: 19px;
}

.btn-outline-danger:hover a {
    color: #fff !important;
}

.btn-info {
    color: #441250;
    background-color: var(--info-color);
    border-color: #9f75f7;
}

    .btn-info:hover {
        color: #441250;
        background-color: var(--info-color) !important;
        border-color: #9f75f7 !important;
    }

    .btn-info:active {
        color: #441250;
        background-color: var(--info-color) !important;
        border-color: #9f75f7 !important;
    }

.btn-outline-info {
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #5014d0;
    --bs-btn-color: var(--info-color);
    --bs-btn-border-color: var(--info-color);
    --bs-btn-hover-border-color: var(--bs-btn-hover-bg);
    --bs-btn-disabled-color: var(--info-color);
    --bs-btn-disabled-border-color: var(--info-color);
    --bs-btn-active-bg: var(--bs-btn-hover-bg);
    --bs-btn-active-border-color: var(--bs-btn-hover-bg);
    --bs-btn-active-color: #fff;
}

.btn-outline-purple {
    color: var(--purple-color);
    background-color: #fff;
    border-color: var(--purple-color);
}

    .btn-outline-purple:hover {
        color: var(--purple-color);
        background-color: #fff;
        border-color: var(--purple-color);
    }

    .btn-outline-purple:active {
        color: var(--purple-color);
        background-color: #fff;
        border-color: var(--purple-color);
    }


.btn-warning {
    color: #975c34;
    background-color: var(--warning-color);
    border-color: #fbd871;
}

    .btn-warning:hover {
        color: #45536d;
        background-color: var(--warning-color);
        border-color: #f2b706;
    }

.btn-danger {
    color: #bf4d84;
    background-color: var(--danger-color);
    border-color: #fab6b6;
}

    .btn-danger:hover {
        color: #bf4d84;
        background-color: var(--danger-color);
        border-color: #fc9d9d;
    }

.btn-success {
    color: #425b4a;
    background-color: var(--success-color);
    border-color: #89dfa5;
}

    .btn-success:hover {
        color: #425b4a;
        background-color: var(--success-color);
        border-color: #67c485;
    }

.btn-light {
    background-color: #fff;
    border-color: #dee2e6;
    color: #5e5e5e;
}

    .btn-light:hover {
        color: #425b4a;
        background-color: #e8e8e8;
        border-color: #dee2e6;
    }

.btn-skyblue {
    color: #477587;
    background-color: var(--skyblue-color);
    border-color: #72d3f1;
}

    .btn-skyblue:hover {
        color: #477587;
        background-color: var(--skyblue-color);
        border-color: #72d3f1;
    }

.btn-darkblue {
    background-color: #1c4c97;
    color: #fff;
    border-color: #1c4c97;
}

    .btn-darkblue:hover {
        color: #441250;
        background-color: var(--info-color);
        border-color: #9f75f7;
    }

    .btn-darkblue:active {
        color: #441250;
        background-color: var(--info-color) !important;
        border-color: #9f75f7 !important;
    }

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    color: #000;
    background-color: #00000038;
    border-color: #00000038;
    opacity: var(--bs-btn-disabled-opacity);
    cursor: not-allowed !important;
}

.dropdown-button-hidden .btn:first-child {
    display: none;
}

.btn:disabled:hover {
    color: #000;
    background-color: #00000038;
    border-color: #00000038;
    cursor: not-allowed !important;
}

button:has(.button-popconfirm) {
    padding: 0;
}

.button-popconfirm {
    height: 32px;
    line-height: 32px;
    margin-top: -2px;
    color: inherit;
}

    .button-popconfirm:hover {
        color: inherit;
        background-color: inherit;
    }

button[class^="btn btn-outline"] {
    background-color: #fff;
}



.dropdown-menu-button-left-2 {
    position: absolute;
    transform: translate(0px, 26px) !important;
}

.dropdown-menu-button-left-top-4 {
    position: absolute;
    transform: translate(53px, -26px) !important;
}
/*.btn {
    margin-right: 5px;
}*/
/*#endregion */
/*#region 编辑modal样式修改 -- 无边框表单编辑... */
/*编辑modal样式修改*/
.edit-group {
    padding: 3px;
}

    .edit-group .edit-group-title {
        margin-top: 8px;
        margin-bottom: 8px;
        font-size: 15px;
    }

        .edit-group .edit-group-title span {
            transform: scale(.5);
            color: #0000009e;
        }

    .edit-group .edit-form-content {
        width: 100%;
        border-left: 1px solid #00000017;
        border-top: 1px solid #00000017;
        border-radius: 2px;
    }

    .edit-group .edit-form-row {
        display: flex;
        border-bottom: 1px solid #00000017;
    }

    .edit-group .edit-form-header {
        height: 30px;
        line-height: 30px;
    }

        .edit-group .edit-form-header .edit-form-header-span {
            padding-left: 13px;
            padding-right: 13px;
        }

    .edit-group .edit-form-row:last-child {
        border-radius: 2px;
    }

    .edit-group .edit-form-title {
        text-align: center;
        width: 130px;
        border-right: 1px solid #00000017;
        padding-top: 4px;
    }

    .edit-group .title-required {
        color: #dd0000;
    }
    /*.edit-group .title-required::before {
    content:"* ";
}*/

    .edit-group .edit-form-value {
        flex: 1;
        flex-grow: 2;
        border-right: 1px solid #00000017;
        /*    padding-left: 15px;
    padding-top: 2px;*/
    }

.edit-form-value input, .edit-form-value .select {
    border: none !important;
}

.edit-group-footer {
    display: flex;
    background-color: var(--bs-modal-footer-bg);
    margin-top: 20px;
    padding: 5px 0px;
}

    .edit-group-footer .edit-footer-right, .edit-footer-left {
        flex: 1
    }

    .edit-group-footer .edit-footer-right {
        text-align: right;
    }

/*#endregion */

/*#region 控件样式修改 */

textarea {
    resize: none;
}

/*.text-area-container {
    position: relative;
}*/
.textarea-show-count::after {
    float: right;
    color: rgba(0,0,0,.45);
    white-space: nowrap;
    content: attr(data-count);
    pointer-events: none;
}
/*.textarea-tips {
    position: absolute;
    bottom: 0px;
    right: 3px;
    color: #cdd3d1;
}*/

.radio-list {
    border: none;
}

    .radio-list:hover {
        border: none !important;
    }

.checkbox-list .checkbox-item {
    width: auto;
    margin: 2px 0px;
}

    .checkbox-list .checkbox-item .form-check {
        width: auto;
        margin-right: 2rem;
    }

input {
    width: 150px;
    height: 24px;
}

.input-group-text {
    border-radius: 0px;
}

.table-wrapper .form-control:not(textarea), .table-wrapper .y-form-control {
    height: 20px;
}

.login input {
    height: 30px;
}

.input-group-text {
    padding: 0px 11px;
}

.dropdown-item {
    padding: 6px 10px;
}

    .dropdown-item.active, .dropdown-item:active {
        color: #363636;
        text-decoration: none;
        background-color: #d2dff7;
    }

.cascade .dropdown-item {
    padding: 5px 10px;
    line-height: 1.3;
    padding-right: 30px;
}

    .cascade .dropdown-item:not(.disabled):hover, .cascade .dropdown-item.active, .cascade .nav .nav-link:not(.disabled):hover, .cascade .nav .nav-link.active {
        color: #363636;
        background-color: #d2dff7;
    }

.form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"], .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"] {
    padding-right: 23px;
}

.form-select.select-display-temp {
    padding: 3px 7px;
    min-height: 24px;
}

.select:not(.cascade) .dropdown-menu {
    width: auto;
}

.autofill-div input {
    margin-bottom: 0px !important;
}

.multiSelector-show-single-row {
    height: 24px;
}

.multi-select {
    background-color: white;
}

.dropdown-menu {
    font-style: normal;
}

    .dropdown-menu .search .icon {
        top: 14px;
    }

    .dropdown-menu .toolbar .btn {
        padding: 0px 5px;
    }

.menu .has-leaf > .nav-link-right {
    transition: transform .3s linear;
    position: absolute;
    right: 10px;
    top: 5px;
}

.multi-select .multi-select-ph {
    line-height: 24px;
}

.form-label {
    margin-bottom: 3px;
}

.datetime-range {
    position: relative;
    padding: 0px 3px 0 3px;
    height: 24px;
}

.datetime-range-control .datetime-range-input {
    width: 62px;
}

.datetime-range:hover:not(.disabled) .range-clear {
    position: absolute;
    top: 6px;
    right: 2px;
}

.form-toolbar .search-form {
    width: 140px !important;
}

.input-group-sm > .btn, .input-group-sm > .form-control, .input-group-sm > .form-select, .input-group-sm > .input-group-text {
    border-radius: 0;
}
/*文本域显示字数*/
.textarea-count {
    position: absolute;
    right: 20px;
    bottom: 0px;
    color: #ccc;
}
/*占位图片样式*/
.bb-img-holder {
    background-color: #e5e5e5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

body, .form-control, .dropdown-menu, .form-select, .input-group-text {
    font-size: 12px;
}



.form-noborder {
    width: 100%;
}

    .form-noborder .form-control:not(.search-text) {
        outline: none;
        border: none;
    }

    .form-noborder .form-control:not(.disabled):not(:disabled):not(.is-valid):not(.is-invalid):not(.no-border):hover {
        border: none;
    }

    .form-noborder .form-control:focus {
        border: none;
    }

.search .search-text.form-control {
    border: 1px solid var(--bb-border-hover-color) !important;
    height: 24px;
}

.menu .nav .nav-link {
    padding: 5px 9px;
}


/*.table input {
    width: 100%;
    height: 20px;
}*/
/*.table-wrapper td:has(.form-control){
    padding:0px !important
}
.table-wrapper .form-control {
    height: 100%;
}*/
/*.table-container input,
.table-container .datetime-picker .form-control[readonly]:not([disabled]) {
    background-color: inherit;
}*/
/*.table-container .form-control:focus {
    background-color: inherit;
}*/
.datetime-picker-bar {
    line-height: 24px;
}

.form-control-color {
    width: 24px !important;
    padding: 4px 5px !important;
    max-width: 28px !important;
    height: 24px;
}

.table-cell .datetime-picker-bar {
    line-height: 20px;
}
/*#endregion */

/*#region 控件验证样式修改 */


form .form-label[required]:before {
    content: "";
    color: #f00;
}

.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    box-shadow: none;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    border: 1px solid var(--bs-border-color);
}

.valid.modified:not([type=checkbox]) {
    outline: none;
}

.form-control.is-valid:focus, .was-validated .form-control:valid:focus {
    border-color: #dee2e6;
    box-shadow: none;
}

.form-control.is-valid, .was-validated .form-control:valid {
    border-color: #dee2e6;
}

.readonly {
    background-color: #eee !important;
}

.required, .required:focus {
    color:black !important;
    background-color: var(--required-color) !important;
}


    .required .form-select {
        background-color: var(--required-color) !important;
    }

    .required .form-control {
        background-color: var(--required-color) !important;
    }
    .required .qhy-form-control {
        background-color: var(--required-color) !important;

    }

.form-control.is-valid, .was-validated .form-control:valid {
    background-image: none;
}

.form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"], .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"] {
    background-image: none;
}

.nav-pages .form-control {
    background-color: #fff;
}

.is-invalid {
    background-color: #fff8e9 !important;
}
/*#endregion */

/*#region inline-form-group */
.inline-form-table {
    width: 100%;
}

    .inline-form-table .fieldName {
        text-align: right;
        vertical-align: middle;
        min-width: 130px;
    }

    .inline-form-table td {
        padding: 4px 2px;
    }

/*#endregion */

/*#region 表格 */
.table thead th {
    vertical-align: bottom;
}

    .table thead th .fa-pencil {
        margin-right: 5px;
    }

.table-cell.is-ellips.is-resizable {
    position: absolute;
    left: 5px;
    right: 5px;
}

.table thead th {
    background-color: #e9e9e9 !important;
}

.table-wrapper {
    border-radius: 2px;
    background-color: #fff;
}

    .table-wrapper tr:last-child td {
        border-bottom-width: 1px;
    }

.table-fixed-header {
    border-radius: 2px;
}
/*.table-fixed-column .table .fixed, .table-fixed-column .table .fixed-scroll {
    background-color: inherit;
}*/
.table-wrapper tbody tr:last-child {
    border-bottom: 1px solid #dee2e6 !important;
}

.form-noborder:hover {
    border: none !important;
}

.form-noborder:focus {
    border: none !important;
}

.form-noborder {
    border: none !important;
    outline: none !important;
}

.page-link {
    height: 27px;
    line-height: 27px;
    vertical-align: middle;
    padding: 0px 7px;
}


.table tbody tr.active:not(.is-edit), .table-row.active {
    background-color: #d2dff7;
    /* background-color: #5085e8 !important;
    color: white !important;*/
}

.table-sm {
    --bb-table-td-padding-x: 3px;
    --bb-table-td-padding-y: 3px;
}

.table > :not(caption) > * > * {
    /*background-color: var(--bs-table-bg);*/
    background-color: inherit;
    color: inherit;
}

td:has(input) {
    background-color: #fff !important;
}

td:has(.readonly) {
    background-color: #eee !important;
}

td:has(.required) {
    background-color: var(--required-color) !important;
}

td:has([class^=bg]) {
    /*padding: 0px !important;*/
}

thead {
    background-color: #e9e9e9;
}

.nav-pages {
    justify-content: flex-start;
}

.table-fixed-body.scroll {
    height: calc(100% - 27px);
}

.table-fixed td {
    border-bottom: 1px solid #e7e6e6;
}

td:has(.dropdown) {
    overflow: inherit !important;
}

.table-container > :not(:first-child):not(.table-loader):not(.table-wrapper):not(.table-filter), .table-container > :not(.table-toolbar) + .table-wrapper {
    margin-top: 3px;
}

.table-fixed-column .table thead .fixed {
    background-color: #e9e9e9;
}

.table-scroll {
    overflow: hidden;
}

.table-overflow-hidden .table-wrapper.scroll {
    overflow: hidden;
}
/*td:has(.required) {
    padding: 0px !important;
    background-color: var(--required-color) !important;
}

    td:has(.required) .required {
        width: 100%;
    }

    td:has(.required) input {
        height: 100%;
    }

    td:has(.required) .btn {
        height: 26px;
        line-height: 26px;
    }*/
/*#endregion */
/*#region 表格 table-darkblue */
.table-darkblue {
    --th-bg-color: #162A76;
    --td-bg-color: #001861;
    --border-color: #162a76;
    padding: 0;
}

    .table-darkblue .table th {
        background-color: var(--th-bg-color) !important;
        border-right: 1px solid var(--border-color);
        color: #fff !important;
    }

    .table-darkblue .table td {
        background-color: var(--td-bg-color) !important;
        border-right: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        color: #fff !important;
    }

    .table-darkblue .table-fixed-column .table .fixed.fr {
        border-right: 1px solid var(--border-color);
    }

    .table-darkblue .table-bordered thead tr:last-child > th {
        border-bottom-width: 2px !important;
        border-bottom-color: var(--border-color);
    }

    .table-darkblue .table-wrapper {
        border: none;
        background-color: var(--td-bg-color) !important;
    }
/*#endregion */

/*#region inputs-table */
.inputs-table {
    width: 100%;
    border-spacing: 0;
    border: 0;
    border-collapse: collapse;
    font-size: 12px;
    position: relative;
    display: table;
    background-color: #fff;
}

    .inputs-table input {
        color: black !important;
    }

    .inputs-table .fieldName {
        width: 121px;
        padding-left: 5px;
    }

    .inputs-table tbody tr:nth-child(1) {
        border-top: 1px solid #cfdadd;
    }

    .inputs-table tbody tr td:nth-child(1) {
        border-left: 1px solid #cfdadd;
    }

    .inputs-table tbody tr td {
        border-right: 1px solid #cfdadd;
        border-bottom: 1px solid #cfdadd;
        min-width: 90px;
    }

    .inputs-table tbody td {
        word-break: break-all;
        min-height: var(--form-height) !important;
    }

    .inputs-table .title {
        color: #58666e;
        text-align: right;
        margin-right: 14px;
        line-height: var(--form-height) !important;
        white-space: nowrap;
    }

    .inputs-table .space {
        height: 40px;
    }

        .inputs-table .space td {
            border-left: none !important;
            border-right: none !important;
        }

    .inputs-table .form-control:not(textarea) {
        height: var(--form-height);
    }

    .inputs-table .input-mini {
        height: var(--form-mini-height) !important;
    }


    .inputs-table .datetime-picker-bar {
        line-height: var(--form-height);
    }

    .inputs-table .btn {
        height: var(--form-height);
        line-height: var(--form-height);
    }

.input-search-icon {
    position: absolute;
    right: 5px;
    top: 7px;
    color: var(--bs-primary);
    z-index: 10;
}
/*#endregion */

/*#region treeView */
.tree-view .tree-node {
    padding: 3px 5px;
    border-radius: 2px;
}

    .tree-view .tree-node:hover {
        background-color: #0000000f;
    }

.tree-view .tree-item:not(.disabled).active > .tree-content > .tree-node {
    color: #000000;
    background-color: #d0d9e1;
}
/*#endregion */

/*#region 组件 分割线 tag、modal、split、scroll... */

.modal-header {
    padding: .5rem 1rem;
    font-size: 15px;
}

.modal-content {
    border-radius: 3px;
}

.modal-footer {
    justify-content: center;
    background-color: rgba(90,110,117,.3) !important;
}

.modal-body {
    padding: 10px 10px !important;
    background: #f2f4f5 !important;
}

    .modal-body .modal-content {
        border: none;
        padding: 10px 10px !important;
        min-height: 0;
    }

.split .split-pane {
    padding-bottom: 2px;
}

.split-left:has(.left-search-div):has(.cascade,.dropdown-menu) {
    overflow: inherit !important;
}

.divider {
    margin: 10px 0;
}

.groupbox {
    margin-top: 10px;
}

.scroll {
    /*overflow: auto;*/
}

.modal-footer button:not(:last-child) {
    margin-right: 0;
}

.production-process-content {
    width: 168px;
}


.aequilate-tag {
    width: 100%;
    text-align: center;
    padding: 0 !important;
    padding-left: 50%;
    display: inline-block;
}
/*#endregion */


/*#region 按钮dropdown */
.dropdown-button-menu li {
    padding: 5px 5px;
}

.dropdown-menu.show {
    padding: 7px 8px;
}

.hidden-arrow::after {
    display: none;
}

.table-fixed-body .active .fixed {
    background-color: inherit !important;
}
/*#endregion */

/*#region 步骤条 #67c23a*/
/* 进度条 */
/* 创建步骤数字计数器 */
.steps {
    position: relative;
    margin-bottom: 30px;
    counter-reset: step;
    background: #fff;
    margin: 0px 0;
    overflow: hidden;
    width: 100%;
    text-align: center;
    height: 60px;
}
    /* 步骤描述 */
    .steps li {
        list-style-type: none;
        font-size: 14px;
        text-align: center;
        width: 20%;
        position: relative;
        float: left;
        height: 40px;
        line-height: 40px;
        padding: 10px 0;
        cursor: pointer;
    }
        /* 步骤数字 */
        .steps li:before {
            display: block;
            content: counter(step); /* 设定计数器内容 */
            counter-increment: step; /* 计数器值递增 */
            width: 10px;
            height: 10px;
            background-color: #ccc;
            line-height: 10px;
            border-radius: 10px;
            font-size: 0;
            color: #fff;
            text-align: center;
            font-weight: 600;
            margin: 0 auto 9px auto;
        }
        /* 连接线 */
        .steps li ~ li:after {
            content: '';
            width: 100%;
            height: 3px;
            background-color: #ccc;
            position: absolute;
            left: -48%;
            top: 14px;
            z-index: 0;
        }
        /* 将当前/完成步骤之前的数字及连接线变绿 */
        .steps li.active:before, .steps li.active:after {
            background-color: #6fb1bd;
        }
/*#endregion */

/*#region 时间轴 竖向*/


.lv-time-section {
    font-size: 0;
    width: 100%;
}

.lv-time-left, .lv-time-right {
    display: inline-block;
    width: calc(50% - 1px);
    height: 70px;
}

.lv-time-left {
    border-right: 2px solid #949494;
}

.time-line .lv-time-section:last-child .lv-time-left {
    height: 25px;
}

.lv-time-time, .lv-time-container {
    font-size: 16px;
    cursor:pointer;
}

.lv-time-container {
    background-color: #949494;
    border-radius: 5px;
}

.lv-time-content {
    padding: 5px;
}

.lv-time-left .lv-time-container,
.lv-time-left .lv-time-time,
.lv-time-left .lv-time-container .lv-time-content {
    float: right;
}

.lv-time-right .lv-time-container,
.lv-time-right .lv-time-time,
.lv-time-right .lv-time-container .lv-time-content {
    float: left;
}

.lv-time-left .lv-time-time:after {
    content: "";
    display: inline-block;
    height: 10px;
    width: 10px;
    border-radius: 5px;
    background-color: #949494;
    margin-right: -6px;
}

.lv-time-right .lv-time-time:before {
    content: "";
    display: inline-block;
    height: 10px;
    width: 10px;
    border-radius: 5px;
    background-color: #949494;
    margin-left: -6px;
}

.lv-time-container {
    border: 1px solid #949494;
}

.lv-time-left .lv-time-container {
    margin-right: 15px;
    text-align: right;
}

.lv-time-right .lv-time-container {
    float: left;
    margin-left: 15px;
    padding-right: 10px;
    text-align: left;
}

.lv-time-left .lv-time-container:after {
    content: "";
    display: block;
    float: right;
    border-top: 5px solid transparent;
    border-left: 10px solid #949494;
    border-bottom: 5px solid transparent;
    margin-right: -100%;
    margin-top: 5px;
}

.lv-time-right .lv-time-container:before {
    content: "";
    display: block;
    float: left;
    border-top: 5px solid transparent;
    border-right: 10px solid #949494;
    border-bottom: 5px solid transparent;
    margin-left: -11px;
    margin-top: 5px;
}
/*#endregion */

/*#region 表格内步骤条 工序 */
.step-circle .step {
    text-align: center;
    vertical-align: middle;
    display: inline-block;
}

    .step-circle .step .desc {
        width: 35px;
        overflow: hidden;
        display: inline-block;
        height: 15px;
        margin-left: 6px;
        white-space: break-spaces;
    }

    .step-circle .step:after {
        content: " - ";
        position: absolute;
        right: -5px;
        top: 9px;
        color: #000;
    }

    .step-circle .step:last-of-type:after {
        content: " ";
        display: none;
    }


    .step-circle .step .circle {
        display: block;
        margin-left: 6px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        border-radius: 50%;
        background-color: #c5c5c5;
        color: #fff;
    }

    .step-circle .step .circle-finish {
        background-color: #36ad11;
    }

    .step-circle .step .circle-executing {
        background-color: #007bff;
    }

    .step-circle .step .circle-wait {
        background-color: #919292;
    }

/*#endregion */

/*#region 图 */
.line-vertical {
    transform: rotate(90deg);
}

.line {
    width: 3px;
    height: 100%;
    background-color: #979797;
    border-radius: 20px 20px 20px 20px;
}

.scale-06 {
    transform: scale(.6);
}
/*#endregion */

/*#region 状态标签(流程  方框+三角箭头) */
.status-nav {
    display: flex;
}

    .status-nav li {
        flex: 1;
        position: relative;
        display: inline-block;
        margin-right: 10px;
        color: #fff;
        background: #b1aeae;
        line-height: 24px;
        height: 24px;
        text-align: center
    }

        .status-nav li.active {
            background: #47be7d;
        }

        .status-nav li:after {
            content: "";
            position: absolute;
            right: -15px;
            top: 0;
            z-index: 10;
            display: block;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            border-left: 15px solid #b1aeae;
        }

        .status-nav li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            display: block;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            border-left: 15px solid #fff;
        }

        .status-nav li.active:after {
            content: "";
            border-left: 15px solid #47be7d;
        }

        .status-nav li.bg-skyblue:after {
            content: "";
            border-left: 15px solid var(--skyblue-color);
        }

        .status-nav li.bg-bs-danger:after {
            content: "";
            border-left: 15px solid var(--bs-danger);
        }

        .status-nav li:last-child {
            margin-right: 0;
        }

    .status-nav:not(.show-start-arrow) li:first-child:before {
        display: none;
    }

    .status-nav:not(.show-end-arrow) li:last-child:after {
        display: none;
    }

/*#endregion */

/*#region 时间线 横向 */
/*横向时间轴*/
.time-horizontal {
    list-style-type: none;
    border-top: 2px solid #c1bdbd;
    padding: 0px;
    margin: 0px;
    display: flex;
}

    .time-horizontal li {
        flex: 1;
        position: relative;
        text-align: center;
        /*width: 25%;*/
        padding-top: 10px;
    }

        .time-horizontal li b:before {
            content: '';
            position: absolute;
            top: -7px;
            left: calc(50% - 6px);
            width: 12px;
            height: 12px;
            /* border: 2px solid #4c4c4c; */
            border-radius: 8px;
            background: #c1bdbd;
        }
/*#endregion */
/*#region 列表数据展示 */
.table-list th {
    border-bottom: none;
}

.data-view-title {
    margin: 15px 0 5px 0;
}

/*#endregion */

/*#region checkbox */
.function-span {
    margin: 0 10px;
    padding-top: 2px;
}
/*#endregion */

/*#region 进度条 */

.step-progress-bar {
    display: inline-block;
    position: relative;
    margin-right: 20px;
    height: 22px;
    line-height: 22px;
    width: 100px;
    /*background-color: #bdbaba !important;*/
    text-align: center;
    border: 1px solid #bbb;
}

.step-progress .progress-arrow:last-of-type {
    display: none;
}

.step-progress-bar:after {
    content: "=>";
    position: absolute;
    right: -18px;
    top: 0px;
    color: #000;
}

.step-progress-bar:last-of-type:after {
    content: " ";
    display: none;
}

.step-progress-bar .desc {
    position: absolute;
    left: 10px;
}

.step-progress-bar .progress-bar {
    height: 100%;
}

.step-progress-bar .progress-bar-finish {
    background-color: #50cd89;
}

.step-progress-bar .progress-bar-executing {
    background-color: #34a0fd;
}

/*#endregion */

/*#region 步骤条 */
.y-steps {
    --y-steps-width: 30px;
    list-style: none; /* 取消默认样式 */
    display: flex; /* 使用flex */
    counter-reset: steps;
}

    .y-steps li {
        flex-grow: 1;
        display: flex;
        justify-content: center;
        position: relative;
        align-items: center;
    }

    .y-steps.show-icon li::before {
        width: var(--y-steps-width); /* 步骤圆的宽 */
        height: var(--y-steps-width); /* 步骤圆的高 */
        border-radius: 50%; /* 设置形状为原型 */
        display: block; /* 需要设置为块级 不然不生效*/
        counter-increment: steps; /* 使 steps 自增 */
        display: flex;
        color: white;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        position: relative;
        z-index: 1;
    }

    .y-steps.show-number li::before {
        content: counter(steps); /* 修改content的内容为steps的值 */
        width: var(--y-steps-width); /* 步骤圆的宽 */
        height: var(--y-steps-width); /* 步骤圆的高 */
        border-radius: 50%; /* 设置形状为原型 */
        display: block; /* 需要设置为块级 不然不生效*/
        counter-increment: steps; /* 使 steps 自增 */
        display: flex;
        color: white;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        position: relative;
        z-index: 1;
    }

    .y-steps li:nth-child(n+2):after {
        content: '';
        height: 5px;
        width: 100%;
        background: #bcbcbc;
        position: absolute;
        left: -50%;
    }

    .y-steps li div {
        color: black;
    }

        .y-steps li div:before {
            content: attr(data-title);
            color: #212529;
            position: absolute;
            top: calc(var(--y-steps-width) + 5px);
            left: 50%;
            transform: translateX(-50%);
            font-size: 13px;
            font-family: 宋体;
            font-weight: normal;
        }

        .y-steps li div:after {
            content: attr(data-description);
            color: #696969;
            position: absolute;
            top: calc(var(--y-steps-width) + 22px);
            left: 50%;
            transform: translateX(-50%);
            font-size: 11px;
            font-family: 宋体;
            font-weight: normal;
        }

    .y-steps li.active:nth-child(n+2)::after {
        background: #00bc9b;
    }

    .y-steps li::before {
        background: #bcbcbc;
    }

    .y-steps li.active::before {
        background: #00bc9b;
    }

    .y-steps li:first-child {
        /*left:calc(var(--y-steps-width));*/
    }

/*#endregion */

/*#region 瀑布流 */

.waterfall-list {
    display: flex;
    flex-flow: column wrap;
    align-content: space-between;
    /* 容器必须有固定高度
   * 且高度大于最高的列高 */
    height: 100%;
    /* 非必须 */
    width: 100%;
    counter-reset: items;
}

.waterfall-list-item {
    width: 50%;
    /* 非必须 */
    position: relative;
    margin-bottom: .2rem;
    color: #fff;
    box-sizing: border-box;
}
    /* 仅用于打印数字 */
    /*.waterfall-list-item::before {
        counter-increment: items;
        content: counter(items);
    }*/

    /* 将内容块重排为3列 */
    .waterfall-list-item:nth-child(2n+1) {
        order: 1;
    }

    .waterfall-list-item:nth-child(2n+2) {
        order: 2;
    }

    .waterfall-list-item:nth-child(2n) {
        order: 3;
    }

/* 强制换列 */
.waterfall-list::before,
.waterfall-list::after {
    content: "";
    flex-basis: 100%;
    width: 0;
    order: 2;
}


/*#endregion */

/*#region 甘特图 */
rect {
    height: 26px;
}
/*#endregion */
.table-img {
    width: 25px;
    height: 25px;
}
