:root {
    --themeColor: #4f8ff2;
    --themeFocusColor: #4f7ff2;
    --priceColor: #FF4141;
    --supportColor: #F59A23;
}

/*默认不可编辑的状态*/
.k-readonly {
    border-color: #e0e0e0;
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.tree-readonly .k-readonly {
    background-color: transparent;
}

.k-grid-norecords-template {
    border: 0;
}

body {
    margin: 0 auto;
    font-family: "Microsoft Yahei", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #ecf0f5;
}

/*index.html style*/
.dropdown-menu-pop {
    width: 100px;
    flex-direction: column;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding-top: 8px;
    padding-bottom: 8px;
}

/* 用来移除 ::before 伪元素 */
.no-before::before {
    content: none !important;
}

.hover-pointer:hover {
    cursor: pointer;
}

.dropdown-item-pop {
    height: 26px;
    line-height: 26px;
    cursor: pointer;
}

.dropdown-item-pop:hover {
    color: var(--themeColor)
}

.baseNav-icon {
    margin-left: 10px;
    margin-top: 4px
}

.baseNav-view {
    margin-left: auto;
    display: flex;
    align-items: center
}

.baseNav-view-child {
    overflow: hidden;
    display: flex;
    transition: width 0.3s ease-in-out;
    background-color: white;
    margin-right: 30px;
    height: 30px;
    align-items: center;
    border-radius: 15px;
}

.baseNav-view-child-sel {
    margin-left: 15px;
    background: transparent;
    border: none;
    border-right: 1px solid #999999;
    height: 15px;
    border-radius: 0;
    padding: 0 15px 0 3px;
    overflow: hidden;
    white-space: nowrap; /* 让文本只显示在一行 */
    text-overflow: ellipsis; /* 显示省略号 */
}

.baseNav-view-child-sel:active {
    outline: none;
    background: transparent;
}

.baseNav-view-child-sel:hover {
    outline: none;
    background: transparent;
}

.search-results {
    width: 195px;
    height: 220px;
    position: fixed;
    margin-right: 44px;
    top: 44px;
    z-index: 99;
    border-radius: 5px;
    display: none;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-results > div {
    padding: 4px;
}

.search-results > div:hover {
    background-color: #eaeaea;
}

.top-nav {
    height: 44px;
    background-color: var(--themeColor);
    display: flex;
    min-width: 1200px;
}

.top-nav-logo {
    padding: 9px;
    height: 30px;
}

.top-menu-item {
    color: white;
    font-size: 14px;
    padding: 13px 18px;
    cursor: pointer;
}

.top-user-info {
    margin-left: 2px;
    margin-right: 10px;
    cursor: pointer;
}

.top-user-info img {
    width: 22px;
    padding: 12px 5px 12px 9px;
    border-radius: 50%;
}

.top-user-info span {
    color: white;
    float: right;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 9px;
    font-size: 12px;
}

.top-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-user-info:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-menu-right {
    justify-content: end;
}

#mega-menu {
    padding: 8px;
    background-color: white;
    top: 78px;
    left: 0;
    width: 100%;
    position: absolute;
}

.mega-menu-item span {
    padding: 8px;
}

.mega-menu-title {
    border-bottom: 1px solid #eee;
    padding-left: 8px;
    padding-bottom: 4px;
    font-size: 14px;
    font-weight: bold;
    margin-top: 16px;
}

.mega-menu-content {
    padding-top: 6px;
    padding-bottom: 6px;
    display: flex;
}

.mega-menu-content div {
    height: 30px;
    line-height: 30px;
    padding-left: 8px;
    padding-right: 8px;
    width: 120px;
    color: #666;
    cursor: pointer;
    font-size: 13px;
}

.mega-menu-content div:hover {
    color: var(--themeColor);
}

.navbar {
    padding: 8px 12px 0;
    font-size: 14px;
    height: 32px;
    display: flex;
}

.navbar-icon {
    color: #777;
    padding: 7px 9px;
    cursor: pointer;
}

.navbar-icon.active {
    color: var(--themeColor);
}

.navbar-item {
    color: #777;
    padding: 6px 11px 6px 17px;
    margin-right: 6px;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;
}

.navbar-item.active {
    white-space: nowrap;
    display: flex;
    align-items: center;
    color: var(--themeColor);
    border-bottom: 2px solid var(--themeColor);
    cursor: default;
    background: white;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    box-shadow: -2px 4px 6px 2px rgba(215, 215, 215, 0.35);
}

.navbar-item p {
    padding: 0;
    margin: 0 !important;
}

.navbar-item-close {
    font-size: 10px;
    padding-left: 8px;
    padding-right: 3px;
    color: var(--themeColor);
    cursor: pointer;
    visibility: hidden;
}

.navbar-item.active span {
    visibility: visible;
}

.navbar-item:hover span {
    visibility: visible;
}

.navbar-scroll-container {
    display: flex;
    align-items: center;
    width: calc(100% - 32px - 32px - 32px);
    overflow: hidden;
    position: relative;
}

.navbar-scroll {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.scroll-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.sortable {
    display: flex;
}

.fliter-lookup-view > div {
    min-width: 100px
}

.fliter-lookup-view > .fliter-radio2 > .k-picker > .k-input-inner {
    text-align: center;
    padding-block: 0;
    padding-inline: 0;
}

#content-wrapper {
    background-color: white;
    width: 100%;
}

.content-frame {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    border: none;
}

.commonpad {
    padding: 4px 8px;
    cursor: pointer;
    margin: 0 4px;
    color: #333
}

.k-picker-solid {
    background-color: #f0f0f0 !important;
    justify-content: space-around;
}

.commonpad:hover {
    background: rgba(52, 145, 250, 0.04);
    color: rgb(52, 145, 250);
}

.commonfgx {
    width: 1px;
    height: 14px;
    background: #ebebeb;
    margin: 0 8px;
}

.navbar-fix-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: white;
    padding: 14px 8px;
    border-radius: 2px;
    box-shadow: -2px 4px 6px 2px rgba(215, 215, 215, 0.35)
}

.navbar-fix-bar > .fix-bar-item {
    display: flex;
    flex-direction: row;
    border-right: 1px solid #eaeaea;
    padding-left: 15px;
}

.navbar-fix-bar > .fix-bar-item > .fix-item-right {
    margin-right: 20px;
}

.navbar-fix-bar > .fix-bar-item > div:hover {
    cursor: pointer;
    color: var(--themeColor)
}

.fix-bar-item i {
    margin-left: 7px;
}

.navbar-list-bar {
    margin-top: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: white;
    padding: 10px 8%;
    padding-left: 18px;
}

.navbar-list-bar > .list-bar-item {
    display: flex;
    flex-direction: row;
    padding-left: 10px;
}

.navbar-list-bar > .list-bar-item > .active {
    border: 1px solid var(--themeColor);
    padding: 5px 12px;
    border-radius: 4px;
    margin: 0 5px;
    color: var(--themeColor);
}

.navbar-list-bar .list-item-right {
    border: 1px solid #c9c9c9;
    padding: 5px 12px;
    border-radius: 4px;
    margin: 0 5px;
    cursor: pointer;
}

.navbar-filter-bar {
    display: flex;
    flex-direction: row;
    background-color: white;
    align-items: baseline;
    padding: 10px 8px 10px 18px;
    min-height: 32px;
}

.navbar-filter-bar .filter-bar-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 15px;
    min-width: 1200px;
    height: auto;
    transition: height 0.5s ease-in-out;
    overflow: hidden;
}

.hs-filter-view {
    margin-bottom: 8px;
    border-radius: 2px;
}

.filter-bar-item-row {
    display: flex;
    margin-bottom: 10px
}

.navbar-filter-bar .bar-item-r {
    margin-right: 10px;
    margin-bottom: 8px;
}

.filter-radio {
    display: flex;
    flex-direction: row;
    height: 24px;
    width: 18%;
    min-width: 218px;
}

.filter-radio > .choose-pop-item {
    justify-content: space-between;
    padding-left: 5px;
    width: 98%;
    min-width: 210px;
    cursor: pointer;
    border: 1px solid #eaeaea;
    border-radius: 4px
}

.filter-radio1 {
    background: white;
    display: flex;
    justify-content: space-between;
    border: 1px solid #c9c9c9;
    border-radius: 2px;
    text-align: left;
    min-width: 100px;
}

.filter-radio1 i {
    width: 20px;
    background: var(--themeColor);
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.filter-radio2 {
    background: #eaeaea;
    display: flex;
    justify-content: space-between;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    text-align: left;
    min-width: 70px;
    border: none;
}

.filter-radio2 span {
    border-radius: 4px 0 0 4px !important;
}

.filter-radio2 i {
    width: 20px;
    background: transparent;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.filter-radio .datepicker-range {
    /*width:45.4%;*/
    width: calc((100% - 10px) / 2);
    min-width: 200px;
    padding: 0 8px;
    border-radius: 4px;
    border: 1px solid #eaeaea;
    justify-content: space-between;
}

.filter-radio > .datepicker-range input {
    border: none;
    min-width: 160px;
    width: 90%
}

.filter-radio > .datepicker-range input::placeholder {
    color: #999999;
    font-size: 12px;
    opacity: 0.6;
}

.filter-input {
    background: white;
    display: flex;
    justify-content: space-between;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    text-align: left;
    min-width: 100px;
    padding: 0 5px;
    border-left: none;
    margin-left: -2px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    width: 72%
}

.filter-input input {
    border: none;
    min-width: 135px;
    width: 95%
}

.choose-pop-item input {
    width: 95%
}

.filter-tools {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: 228px;
    margin-top: 0;
}

.filter-tools div:hover {
    cursor: pointer;
}

.filter-tools .primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--themeColor);
    width: 22px;
    height: 22px;
    text-align: center;
    border-radius: 2px;
}

.filter-tools .default-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--themeColor);
    background: white;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 2px;
}

.filter-tools .default-btn:hover {
    border: 1px solid var(--themeFocusColor);
}

.filter-tools .default-btn:active {
    transform: translateY(1px);
}

.filter-tools i {
    text-align: center;
}

.filter-tools .ma-r {
    margin-right: 15px;
}

.filter-sec-view {
    padding: 8px;
}

.filter-sec-view > div {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 4px;
}

.filter-sec-view > div > input {
    margin-right: 10px;
    background-color: yellow;
}

.filter-sec-view input:checked {
    color: red !important;
    background-color: blue !important;
}

.pop-window-Item {
    padding: 8px 16px;
    align-items: center
}

.filter-sec-view > div:hover {
    background: #eaeaea;
}

.custom-planning-content {
    padding: 8px;
}

.custom-planning-content > div {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 4px;
    cursor: pointer;
    justify-content: center;
}

.custom-planning-content > div:hover {
    background: #eaeaea;
}

.hs-action-btn-primary {
    background: var(--themeColor);
    padding: 2px 5px;
    border-radius: 1px;
    cursor: pointer;
}

.plan-auto-size {
    min-width: 400px;
}

.plan-auto-size .filter-input {
    min-width: 390px;
}

.plan-auto-size .filter-input input {
    min-width: 330px;
}

.input-customer-autosize {
    border: 1px solid #e0e0e0;
    justify-content: space-between;
    min-height: 26px;
}

.plan-btn-size {
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #eaeaea;
    cursor: pointer;
    margin-right: 10px
}

.product-base-view {
    flex-wrap: wrap;
    min-width: 1200px;
    margin: 16px 0
}

.product-base-item {
    align-items: flex-start;
    margin-bottom: 8px;
    width: 24%
}

.product-base-item > .base-label {
    min-width: 110px;
    margin-right: 8px;
    margin-top: 4px;
}

.product-base-item .base-input {
    border: none;
    outline: none;
    padding: 4px 0;
    padding-left: 8px;
    display: flex;
    align-items: center;
    min-width: 200px;
    width: 98%;
}

.product-base-item > .base-label {
    min-width: 110px;
    margin-right: 8px;
}

.base-single-input {
    border-radius: 4px;
    min-width: 208px;
    width: calc(100% - 108px);
}

/*这个地方注释掉是因为在自定义的kendotext中，验证的边框无法正常显示颜色*/
/*.base-single-input .k-combobox {*/
/*    border-left: 1px solid #eaeaea !important;*/
/*    border-top: 1px solid #eaeaea !important;;*/
/*    border-bottom: 1px solid #eaeaea !important;;*/
/*}*/

/*.base-single-input .k-datepicker {*/
/*    border-left: 1px solid #eaeaea !important;*/
/*    border-top: 1px solid #eaeaea !important;;*/
/*    border-bottom: 1px solid #eaeaea !important;;*/
/*}*/

/*common style*/
input {
    outline: none;
}

.theme-color {
    color: var(--themeColor)
}

.theme-bg-color {
    background-color: var(--themeColor)
}

.price-color {
    color: var(--priceColor)
}

.ovh {
    overflow: hidden;
}

.tl {
    text-align: left;
}

.tr {
    text-align: right;
}

.tc {
    text-align: center;
}

.zt10 {
    font-size: 10px;
}

.zt11 {
    font-size: 11px;
}

.zt12 {
    font-size: 12px;
}

.zt13 {
    font-size: 13px;
}

.zt14 {
    font-size: 14px;
}

.zt16 {
    font-size: 16px;
}

.white {
    color: white;
}

.black {
    color: black;
}

.black3 {
    color: #333333;
}

.black4 {
    color: #444444;
}

.black5 {
    color: #555555;
}

.black6 {
    color: #666666;
}

.black9 {
    color: #999999;
}

.blod {
    font-weight: bold;
}

.dsfx {
    display: flex;
}

.dsfx-footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    justify-content: right;
    border: none;
    padding: 16px 0;
}

.dsno {
    display: none;
}

.clear-style {
    padding: 0;
    margin: 0
}

.full-w {
    width: 100%;
}

/*placeholder 适配样式*/
.input-placeholder input::-webkit-input-placeholder {
    color: #999999;
    font-size: 12px;
    opacity: 0.6;
}

.input-placeholder input:-moz-placeholder {
    color: #999999;
    font-size: 12px;
    opacity: 0.6;
}

.input-placeholder input::-moz-placeholder {
    color: #999999;
    font-size: 12px;
    opacity: 0.6;
}

.input-placeholder input:-ms-input-placeholder {
    color: #999999;
    font-size: 12px;
    opacity: 0.6;
}

/*kendo css trans style*/
.k-column-title {
    font-size: 12px;
}

.k-table-td {
    font-size: 12px;
}

.k-checkbox:checked, .k-checkbox.k-checked {
    border-color: var(--themeColor);
    color: white;
    background-color: var(--themeColor);
}

.k-window-content {
    padding: 0;
    overflow: hidden;
}

.k-chip-md {
    font-size: 11px !important;
}

.k-popover-body {
    padding-block: 0;
    padding-inline: 0;
}

.k-list-item-text {
    font-size: 12px;
}

.k-grid .k-grid-content-locked {
    border-color: transparent;
}

.k-master-row .k-grid-content-sticky {
    border-color: #eaeaea;
}

.k-grid-header .k-table-th.k-grid-header-sticky,
.k-grid-header td.k-grid-header-sticky,
.k-grid-header .k-table-td.k-grid-header-sticky,
.k-grid-header .k-grid-header-sticky.k-sorted {
    color: #424242;
    background-color: #fafafa;
    border-right-color: #eaeaea;
    border-left-color: #eaeaea;
}

.k-grid .k-grid-header-locked, .k-grid .k-grid-content-locked, .k-grid .k-grid-header-locked .k-table-th, .k-grid .k-grid-content-locked td, .k-grid .k-grid-content-locked .k-table-td {
    border-color: #eaeaea;
}

.k-grid-footer .k-grid-footer-sticky {
    border-left-color: #eaeaea;
    border-right-color: #eaeaea;
    background-color: #fafafa;
}

.k-grid-pager {
    font-size: 12px;
}

.k-pager-numbers > .k-button-flat-primary {
    color: var(--themeColor);
}

.k-pager-md .k-pager-sizes .k-dropdown-list, .k-pager-md .k-pager-sizes .k-dropdown, .k-pager-md .k-pager-sizes .k-dropdownlist, .k-pager-md .k-pager-sizes > select {
    width: 5.6em;
}

.k-expander-title {
    color: #333;
    font-size: 14px;
}

.k-expander-sub-title {
    font-size: 12px;
}

.k-radio-item .k-radio-label, .k-radio-list-item .k-radio-label {
    font-size: 12px;
    margin-left: 8px;
}

.k-radio:checked, .k-radio.k-checked {
    border-color: var(--themeColor);
    background-color: var(--themeColor)
}

.k-searchbox > .k-svg-i-search {
    height: 26px;
    margin-left: 4px
}

.k-sort-icon svg {
    fill: #333 !important
}

.k-column-menu .k-menu-link svg {
    fill: #333 !important
}

.k-menu-group-md .k-menu-item {
    font-size: 12px;
}

.k-input-md .k-input-inner {
    padding: 3px 8px;
}

.k-input-md .k-input-button {
    padding-block: 2px;
    padding-inline: 4px;
}

.k-input-button {
    width: calc(1.4285714286em + 4px);
}

.k-button-md.k-icon-button .k-button-icon.k-svg-icon > svg {
    width: 15px;
    height: 15px;
}

.k-grid-toolbar .k-button-md {
    font-size: 12px;
}

.k-command-cell .k-button {
    border: none !important;
    color: #3491FA !important;
    background-color: transparent !important;
}

.k-command-cell .k-button-solid-base {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
}

.k-switch-sm .k-switch-thumb {
    width: 25px;
    height: 25px;
}

.k-switch-sm {
    width: 60px;
}

.k-switch-on .k-switch-track {
    border-color: var(--themeColor);
    background-color: var(--themeColor);
}

.k-switch-on:focus .k-switch-track {
    outline: none;
}

.k-switch-off:focus .k-switch-track {
    outline: none;
}

.k-switch-sm .k-switch-track {
    height: 25px;
    width: 60px;

}

.k-popup-edit-form > .k-edit-buttons {
    margin: 0;
}

.k-button-md {
    font-size: 12px;
}

.k-expander {
    margin-top: 8px;
}

.disx {
    display: flex;
    align-items: center;
}

.k-form-buttons .k-button-md {
    font-size: 14px;
}


.k-upload {
    font-size: 12px;
}

.k-command-cell .k-svg-icon {
    display: none;
}

.k-dialog-actions {
    justify-content: flex-end;
}

.k-dialog > .k-justify-content-stretch > * {
    flex: 0.05 0 0;
}

.k-toolbar .k-input {
    width: 15em;
}

.k-list-item:focus, .k-list-optionlabel:focus, .k-list-item.k-focus, .k-focus.k-list-optionlabel {
    box-shadow: none;
}

.k-dropdowntree > .k-input-inner {
    background-color: white;
}

.k-dropdowntree .k-readonly {
    background-color: white;
}

.page-body {
    padding: 0 8px 16px;
    margin: 0;
    color: #424242;
}

.page-head-btn {
    background-color: #fff;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    border-radius: 2px;
    box-sizing: border-box;
    min-width: 1000px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 2px;
    position: relative;
    z-index: 1
}

.k-form-buttons {
    margin: 16px 0 0 !important;
}

.k-multiselecttree .k-input-values {
    padding: 0 !important;
    width: auto;
}

/* 订单详情样式 */
.k-stepper .k-step-current:hover .k-step-indicator {
    background-color: var(--themeColor);
}

.k-grid-toolbar > button > .k-button-icon {
    display: none !important;
}

.k-multiselecttree-popup {
    width: 260px !important;
}

.k-multiselecttree .k-input-values {
    padding: 0 !important;
    width: auto;
}

.k-step-success .k-step-indicator {
    border-color: var(--themeColor) !important;
    color: white;
    background-color: var(--themeColor) !important;

}

.k-focus .k-step-indicator {
    border-color: var(--themeColor) !important;
    color: white;
    background-color: var(--themeColor) !important;

}

#stepper .k-svg-icon > svg {
    fill: #fff !important;
}

.k-grid-header .k-grid-header-menu.k-active {
    background-color: var(--themeColor);
}

.k-edit-form-container {
    padding: 16px !important;
}

.k-button-solid-primary {
    border-color: var(--themeColor) !important;
    color: white;
    background-color: var(--themeColor) !important;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
}

.k-picker-solid {
    background-color: #f0f0f0 !important;
    justify-content: space-around;
}

.k-treeview-leaf {
    font-size: 12px;
    color: #333
}

.k-input-value-text {
    font-size: 12px;
    color: #333
}

.k-treeview-leaf.k-selected {
    color: var(--themeColor);
    background-color: transparent;
}

.k-expander-header {
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #eaeaea;
}

[aria-controls="productStockInfo_wrapper"] {
    border-bottom: 1px solid #eaeaea;
}

[aria-controls="productBaseInfo_wrapper"] {
    border-bottom: 1px solid #eaeaea;
}

.base-single-input > .k-datepicker > .k-input-inner::-moz-placeholder {
    font-size: 12px !important;
    color: #999999;
    opacity: 0.6;
}

.base-single-input > .k-datepicker > .k-input-inner:-ms-input-placeholder {
    font-size: 12px !important;
    color: #999999;
    opacity: 0.6;
}

.k-input-md, .k-picker-md {
    font-size: 12px;
}

.k-splitbar:focus,
.k-splitbar.k-focus {
    background: #3491FA;
}

.k-tabstrip-items-wrapper .k-item {
    color: #333;
}

.k-expander.k-focus {
    box-shadow: none;
}

.k-tabstrip-top > .k-tabstrip-items-wrapper .k-item:active,
.k-tabstrip-top > .k-tabstrip-items-wrapper .k-item.k-active {
    background-color: #3491FA;
    color: #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.k-tabstrip-items-wrapper .k-item:hover,
.k-tabstrip-items-wrapper .k-item.k-hover {
    color: #3491FA;
}

.order-detail-grid .k-content {
    padding: 0 !important;
}

.searchhead {
    background: #fff;
    color: #333333;
    box-sizing: border-box;
    padding: 16px 3% 8px;
    border-radius: 2px;
    min-width: 1350px;
}

.searchhead .k-justify-content-center {
    margin-bottom: 8px;
}

.labeltxt {
    width: 104px;
}

.labeltxt label {
    height: 25px;
    line-height: 25px;
}

.labeltxts label {
    line-height: 25px;
    height: 25px;
}

.labeltxts {
    width: 104px;
}

.bdx {
    color: red;
    position: absolute;
    top: 12.5px;
    left: 99%;
    transform: translateY(-50%);
}

.info-bdx {
    color: red;
    margin-left: 1.2%;
    transform: translateY(-10%);
    margin-top: 6px;
    z-index: 1
}

.bdkd {
    width: 25%;
    position: relative;
    padding: 0 8px;
    box-sizing: border-box
}

.srkkd {
    align-items: flex-start;
    margin-left: 16px;
    width: calc(100% - 120px) !important;
}

.srkkds {
    align-items: flex-start;
    margin-left: 16px;
    width: calc(100% - 120px);
}

.k-grid .k-command-cell > .k-button {
    /*margin-inline-end: 16px !important;*/
    vertical-align: middle;
}

.k-tabstrip-items-wrapper {
    background: #fff;
}

/*商品详情*/
.product-img-manager {
    padding: 0;
}

.product-img-manager > .product-img-item {
    width: 56px;
    height: 56px;
    margin-right: 8px;
    cursor: pointer;
    position: relative;
}

.product-img-manager > .product-img-item:hover .product-img-item-action {
    display: block;
}

.product-img-item-action {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    line-height: 56px;
    text-align: center;
}

.product-img-item-action i {
    font-size: 12px;
    color: #fff;
}

.product-img-item-action span {
    color: white;
    padding: 4px;
    background: var(--themeColor);
    border-radius: 4px;
    margin-right: 4px;
}

.product-img-item img {
    width: 56px;
    height: 56px;
}

.k-checkbox-item {
    font-size: 12px;
    min-width: 105px;
}

.k-child-animation-container {
    min-width: 100px;
}

.k-spreadsheet-haxis {
    border-color: #eaeaea
}

.gird-pop-resize {
    min-width: 0 /* 在弹框里面出现的时候要注意宽度 */
}

.gird-toolbar-btn {
    padding: 4px 8px;
    margin-right: 8px;
    border: 1px solid #eaeaea;
    cursor: pointer;
    border-radius: 4px;
}

.k-grid {
    min-height: 150px; /* 设置最小高度为200px */
}

/* 初始状态隐藏弹框 */
.remind-popup {
    display: none;
    position: absolute;
    top: 44px; /* 调整位置 */
    margin-left: 10px;
    transform: translateX(-50%);
    width: 140px;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 10px 0;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease-in-out; /* 初始动画 */
    z-index: 2;
}

.userInfo-popup {
    display: none;
    position: absolute;
    top: 44px; /* 调整位置 */
    margin-left: 50px;
    transform: translateX(-50%);
    width: 80px;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 10px 0;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease-in-out; /* 初始动画 */
    z-index: 2;
}

/* 定义弹出动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 为按钮容器添加样式 */
.remind-container {
    display: flex;
    flex-direction: column;
}

.remind-container > div {
    padding: 4px 8px;
}

.remind-container > div:hover {
    background-color: #e0e0e0;
    cursor: pointer;
    color: var(--themeColor)
}

.remind-view-more {
    border-top: 1px solid #eaeaea;
    margin-top: 4px;
    padding-top: 4px;
    color: var(--themeColor);
}

.choose-pop-item input {
    width: 95%
}

.filter-radio > .choose-pop-item {
    justify-content: space-between;
    padding-left: 5px;
    width: 98%;
    min-width: 210px;
    cursor: pointer;
    border: 1px solid #eaeaea;
    border-radius: 4px
}

.custom-component {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.lookup-container {
    border: 1px solid #eaeaea;
    border-radius: 4px;
    overflow: hidden;
    height: 24px;
    width: 100%
}

.lookup-results {
    display: none;
    position: absolute;
    top: 24px;
    left: -5px;
    width: calc(100% + 5px);
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
    max-height: 150px;
    overflow-y: auto;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.filter-tools {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width: 228px;
    margin-top: 0;
}

.filter-tools div:hover {
    cursor: pointer;
}

.primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--themeColor);
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 2px;
    margin-left: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background: var(--themeFocusColor);
}

.primary-btn:active {
    transform: translateY(1px);
}

.filter-tools .ma-r {
    margin-right: 15px;
}

.lookup-results.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    z-index: 10004;
}

.lookup-results li {
    font-size: 12px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.lookup-results li:hover,
.lookup-results li.selected {
    background-color: #f0f0f0;
}

.lookup-header {
    padding: 16px 8px
}

.lookup-header .lookup-header-item {
    border: 1px solid #eaeaea;
    border-radius: 4px;
    min-width: 210px;
    margin-right: 8px
}

.lookup-header .lookup-header-item > input {
    padding: 0 8px
}

.lookup-header > input::placeholder {
    font-size: 11px;
    color: #666;
}

.look_up_filterView {
    background-color: white;
    padding-inline: 0;
    padding-block: 0;
    padding: 0 8px;
    margin: 0;
    width: calc(100% - 16px);
}

.handle-bar {
    background-color: #fff;
    color: #333333;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 2px;
}

.condition-handler {
    position: absolute;
    z-index: 1;
    margin-left: calc(74% + max(0px, (980px - 74%)));
    margin-top: 1px;
}

.find-plan-del-btn {
    width: 15px;
    vertical-align: sub;
    margin-left: 3px;
    fill: #777;
}

.date-clear-btn {
    width: 15px;
    vertical-align: sub;
    margin-left: 3px;
    fill: #777;
    cursor: pointer;
}

.date-range-vessel {
    opacity: 0;
    pointer-events: none;
    margin-left: -80%
}

.find-plan-handle-bar {
    width: 99%;
    position: absolute;
    bottom: 0;
    justify-content: right;
    border: 1px solid #eaeaea;
    border-bottom: none;
    border-right: none;
    padding: 5px 0;
}

.k-form {
    font-size: 12px
}

.k-form-field:has([must="must"])::after {
    content: '*';
    color: red;
    margin-left: 4px;
}

.k-col-span-2 .k-form-label {
    width: calc(25% / 2) !important;
}

.k-col-span-2 .k-form-field-wrap {
    max-width: calc((100% - calc(25% / 2)) - 10px) !important;
    display: flex !important;
    justify-content: space-between;
}

.k-col-span-3 .k-form-label {
    width: calc(25% / 3) !important;
}

.k-col-span-3 .k-form-field-wrap {
    max-width: calc((100% - calc(25% / 3)) - 10px) !important;
    display: flex !important;
    justify-content: space-between;
}

.k-col-span-4 .k-form-label {
    width: calc(25% / 4) !important;
}

.k-col-span-4 .k-form-field-wrap {
    max-width: calc((100% - calc(25% / 4)) - 10px) !important;
    display: flex !important;
    justify-content: space-between;
}

.filter-lookup-view > div {
    min-width: 100px
}

.filter-lookup-view > .filter-radio2 > .k-picker > .k-input-inner {
    text-align: center;
    padding-block: 0;
    padding-inline: 0;
}

.right-drawer {
    right: 0 !important;
    left: unset !important;
}

.find-plan-interval {
    width: 1px;
    background: #ebebeb;
    margin: 0 5px
}

.k-notification {
    padding: 10px 8px;
}

.required {
    overflow: unset !important;
}

.required::after {
    content: '*';
    color: red;
    line-height: 23px;
    position: absolute;
    left: 101%;
}

.k-upload .k-dropzone, .k-upload .k-upload-dropzone {
    width: 56px;
    height: 56px;
}

.k-upload .k-upload-button {
    min-width: 56px;
    width: 56px;
    height: 56px;
}

.k-upload-button-wrap {
    text-align: center;
    width: 100%;
    height: 100%;
}

.k-upload .k-dropzone .k-upload-status, .k-upload .k-upload-dropzone .k-upload-status {
    display: none !important;
}

.k-upload .k-dropzone, .k-upload .k-upload-dropzone {
    padding-block: 0;
    padding-inline: 0;
}

.k-upload .k-upload-button {
    width: 100%;
    height: 100%;
    border: none;
}

.k-upload .k-upload-button > .k-button-text::before {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 41%;
    top: 48%;
    transform: translateY(-50%);
}

.k-upload .k-upload-button {
    min-width: 0em
}

.k-upload-async[role="application"] {
    margin-right: 8px
}

/*界面表格最大高度*/
.info-grid {
    max-height: 400px;
}

.affirm-action {
    flex: 0
}

.tooltip {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.tooltip img {
    width: 14px;
    height: 14px;
    margin: 0 6px
}

.lookup-multiple-result {
    max-height: 38px;
    overflow: auto;
}
.lookup-multi-select{
    max-height: 38px;
    overflow: auto;
}
.import-upload .k-actions {
    display: none;
}

.k-form .k-form-legend, .k-form-inline .k-form-legend {
    border: none;
}

.password-show {
    width: 20px;
    height: 20px;
    background-image: url('/donut/images/eye.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain
}

.password-hide {
    width: 20px;
    height: 20px;
    background-image: url('/donut/images/eye-slash.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain
}

.disabled * {
    background-color: #f0f0f0;
    cursor: not-allowed;
    pointer-events: none;
}

.lightened-cell {
    color: lightgrey; /* 文字颜色 */
}

/*搜索里面的多选框出现了上下边距不一样的情况*/
.k-chip {
    padding-block: 2.8px
}

.k-tooltip-content {
    font-size: 12px;
    max-width: 600px
}

.k-grid .k-table {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.k-tabstrip-content:focus, .k-tabstrip-content.k-focus,
.k-tabstrip > .k-content:focus,
.k-tabstrip > .k-content.k-focus {
    outline-width: 1px;
    outline-style: none;
    outline-offset: -1px;
}

.hs-context-menu {
    position: fixed;
    z-index: 1000;
    background-color: #ffffff;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 12px;
    color: #333333;
    min-width: 82px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hs-context-menu-item {
    padding: 4px 8px;
    cursor: pointer;
}

.hs-context-menu-item:hover {
    background-color: #e4e7eb;
}

.hs-context-menu-item-icon {
    display: inline-block;
    margin-right: 4px;
}

.hs-context-menu-item-title {
    display: inline-block;
}

.hs-page-content {
    overflow-y: auto;
    height: calc(100vh - 54px);
}

.hs-dialog-action {
    height: 24px;
    font-size: 14px;
    padding: 3px 6px;
}