/**
  自定义组件样式表
  * @update 2025-4-28
*/

html,
body {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* 
    input-number 组件
*/
.unitOptions .cxd-Number {
  flex: 1;
}

/*
    规格组件 - spec-component
*/
.productSpecification {
  width: 100%;
  height: fit-content;
  display: flex;
  overflow: hidden;
  padding: 10px 10px 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #e8e9eb;
  margin-bottom: 20px;
}

.productSpecification .title {
  width: 5rem;
  font-size: 14px;
  padding-top: 6px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.productSpecification .specArea {
  width: 95%;
  height: 100%;
}

.specArea .addSpecArea {
  width: 30%;
  height: fit-content;
  margin-bottom: 10px;
}

.addSpecArea .specArea_empty {
  width: 100%;
  height: 30px;
  color: #b8babf;
  font-size: 14px;
  line-height: 30px;
}

.addSpecArea .addSpecArea_item {
  width: 100%;
  height: fit-content;
  border: 1px dashed #e8e9eb;
  box-sizing: border-box;
  padding: 10px;
  font-size: 13px;
  position: relative;
  margin-bottom: 10px;
}
.addSpecArea .addSpecArea_item:hover {
  border: 1px dashed #ff7543;
}

.addSpecArea .delIcon {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.addSpecArea .delIcon .el-icon-close {
  font-size: 20px;
}

.addSpecArea_item .specName {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
.specName .specName_input {
  width: 80%;
  margin: 4px 0;
}
.specName_input .el-input__inner,
.specValue_input .el-input__inner {
  color: #000;
  font-size: 12px;
}
.specName_input .el-input__inner:hover {
  border-color: #ff7543;
}
.specName_input .el-input__inner:focus {
  border-color: #ff7543;
}
.specValue_input .el-input__inner:hover {
  border-color: #ff7543;
}
.specValue_input .el-input__inner:focus {
  border-color: #ff7543;
}

.specValue .input_box {
  margin-top: 4px;
  display: flex;
  align-items: center;
}
.specValue .input_box .specValue_input {
  width: 85%;
}
.specValue .input_box .el-icon-error {
  font-size: 16px;
  margin-left: 2px;
  color: #99a0c0;
  cursor: pointer;
}

.specValue .specValue_empty {
  width: 420px;
  height: 30px;
  color: #b8babf;
  font-size: 14px;
  line-height: 30px;
}

.specValue .specValue_addButton {
  width: 60px;
  height: 26px;
  background-color: #ff7543;
  font-size: 13px;
  border: none;
  border-radius: 4px;
  padding: 0;
  text-align: center;
  line-height: 26px;
  margin-top: 10px;
}

.addSpecArea .addButton {
  width: 60px;
  height: 26px;
  background-color: #ff7543;
  font-size: 13px;
  border: none;
  border-radius: 4px;
  padding: 0;
  text-align: center;
  line-height: 26px;
}

.specArea .buttonGroup {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
}
.buttonGroup .bulkEditingButton {
  width: 80px;
  height: 30px;
  color: #8a8a8a;
  border: 1px solid #ddd !important;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  padding: 0;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}
.buttonGroup .bulkEditingButton:hover {
  color: #ff7543;
  border: 1px solid #ff7543 !important;
}
.buttonGroup .bulkEditingButton_forbid {
  width: 80px;
  height: 30px;
  color: #b8babf;
  background-color: #f7f8fa;
  border: 1px solid #f7f8fa !important;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  padding: 0;
  text-align: center;
  line-height: 30px;
  cursor: no-drop;
}

.buttonGroup .selectAllButton {
  width: 56px;
  height: 26px;
  color: #8a8a8a;
  border: 1px solid #ddd !important;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
}
.buttonGroup .selectAllButton:hover {
  color: #ff7543;
  border: 1px solid #ff7543 !important;
}
.buttonGroup .selectAllButton .el-icon-menu {
  font-size: 18px;
}
.buttonGroup .selectAllButton .el-icon-arrow-down + .el-icon-arrow-up {
  font-size: 14px;
  font-weight: 700;
}
.buttonGroup .selectAllButton .selectArea {
  width: 160px;
  height: fit-content;
  border-radius: 4px;
  background-color: #fff;
  position: absolute;
  top: 120%;
  left: 0;
  z-index: 99;
  box-shadow: 2px 4px 10px #ccc, -2px -1px 6px #ccc;
}
.buttonGroup .selectAllButton .selectArea .selectArea_checkboxAll {
  width: 100%;
  height: 36px;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.buttonGroup .selectAllButton .selectArea_checkbox_group {
  display: flex;
  flex-direction: column;
  height: fit-content;
}
.buttonGroup .selectAllButton .selectArea_checkbox_group .selectArea_checkbox {
  width: 100%;
  height: 36px;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.el-checkbox__input.is-checked .el-checkbox__inner,
.el-checkbox__input.is-indeterminate .el-checkbox__inner {
  background-color: #ff7543;
  border-color: #dcdfe6;
}
.el-checkbox__input.is-checked + .el-checkbox__label {
  color: #ff7543;
}
.el-checkbox__input.is-focus .el-checkbox__inner {
  border-color: #dcdfe6;
}

.bulkEditingDialog {
  border-radius: 10px;
}

.bulkEditingDialog .bulkEditingDialog_form .el-input__inner:focus {
  border: 1px solid #ff7543;
}

.bulkEditingDialog .dialog_footer {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.bulkEditingDialog .dialog_footer .dialog_footer_cancel {
  width: 80px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #8a8a8a;
  cursor: pointer;
}
.bulkEditingDialog .dialog_footer .dialog_footer_cancel:hover {
  border: 1px solid #ff7543;
  color: #ff7543;
}
.bulkEditingDialog .dialog_footer .dialog_footer_confirm {
  width: 80px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  border-radius: 4px;
  background: #ff7543;
  border: 1px solid #ff7543;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  margin-left: 16px;
  position: relative;
}
.bulkEditingDialog .dialog_footer .dialog_footer_confirm .mask {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
}
.bulkEditingDialog .dialog_footer .dialog_footer_confirm:hover .mask {
  opacity: 1;
}

.specArea .specTableArea {
  width: 100%;
  height: fit-content;
  margin-top: 10px;
}

.specTableArea .el-table__header-wrapper .originPrice_tooltip {
  display: inline-block;
  width: 14px;
  height: 14px;
  text-align: center;
  line-height: 14px;
  background-color: #fff;
  border: 1px solid #000;
  color: #84878c;
}
.specTableArea .el-table__header-wrapper .originPrice_tooltip:hover {
  background-color: #ff7543;
  color: #fff;
  cursor: pointer;
  border: 1px solid #ff7543;
}
.el-tooltip__popper {
  border: none !important;
  box-shadow: 2px 4px 10px #ccc, -2px -1px 6px #ccc !important;
}
.popper__arrow {
  border-right-color: #ccc !important;
}

.specTableArea .el-table__header-wrapper .has-gutter {
  color: #000;
}

.el-table th.el-table__cell {
  background-color: #f4f4f4;
}
.el-table td.el-table__cell,
.el-table th.el-table__cell.is-leaf {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.el-table td.el-table__cell .cell,
.el-table th.el-table__cell.is-leaf .cell {
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -mox-box;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
}
.el-table th.el-table__cell.is-leaf .cell {
  -webkit-line-clamp: 1;
  -moz-line-clamp: 1;
}

.el-table td.el-table__cell div .statusBox {
  width: fit-content;
  display: flex;
  align-items: center;
  position: relative;
}
.el-table td.el-table__cell div .statusBox .status_shelves {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(0, -50%);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  user-select: none;
}
.el-table td.el-table__cell div .statusBox .status_takedown {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(0, -50%);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  user-select: none;
}

.el-table td.el-table__cell .el_input_sku {
  width: 140px;
}
.el-table td.el-table__cell .el_input_sku .el-input__inner:hover,
.el-table td.el-table__cell .el_input_number_originPrice .el-input__inner:hover,
.el-table td.el-table__cell .el_input_number_price .el-input__inner:hover {
  border: 1px solid #ff7543;
}
.el-table td.el-table__cell .el_input_sku .el-input__inner:focus,
.el-table td.el-table__cell .el_input_number_originPrice .el-input__inner:focus,
.el-table td.el-table__cell .el_input_number_price .el-input__inner:focus {
  border: 1px solid #ff7543;
}

/*
    搜索组件 - search-component
*/
.search_custom_component {
  width: 100%;
  background-color: #fff;
  border-radius: 6px;
  font-family: PingFangSC, 'Microsoft YaHei', '微软雅黑';
}

.search_custom_component_title {
  font-size: 14px;
  color: #000;
}
.search_custom_component_group {
  width: 100%;
  height: fit-content;
  display: grid;
  margin: 0 0 10px;
  grid-template-columns: repeat(auto-fill, 25%);
  position: relative;
}
.search_custom_component.custom-page-search .search_custom_component_group {
  margin: 0 0 0;
  padding: 15px 10px 5px;
}
.component_group_dynamic_screen_width {
  grid-template-columns: repeat(auto-fill, 33.33333%) !important;
}
@media (max-width: 767px) {
  .search_custom_component_group {
    width: 100%;
    height: fit-content;
    display: grid;
    margin: 20px 0 10px;
    grid-template-columns: repeat(auto-fill, 100%) !important;
    position: relative;
  }
}
.search_group_item {
  display: flex;
  height: 32px;
  margin: 10px 0 0 !important;
  padding: 0 5px;
  box-sizing: border-box;
}
.search_custom_component.custom-page-search .search_group_item {
  margin: 0 0 10px !important;
}
.search_group_item .cxd-Form-feedback {
  color: transparent !important;
}
.search_group_item_left,
.search_group_item_left_disabled {
  width: 100px;
  flex-shrink: 0;
  height: 100%;
  margin: 0 !important;
}
.search_group_item_left .cxd-Select,
.search_group_item_left_disabled .cxd-TextControl-input {
  border-radius: 4px 0 0 4px !important;
  background-color: #fafafa !important;
  width: 100% !important;
  height: 100% !important;
}
.search_group_item_left .cxd-Select:hover {
  border: 1px solid #e8e9eb !important;
  background-color: #fafafa !important;
}
.search_group_item_left .cxd-Form-value,
.search_group_item_left .cxd-SelectControl {
  width: 100% !important;
  display: flex;
  align-items: center;
  height: 100% !important;
}
.search_group_item_left .is-opened {
  border-color: #e8e9eb !important;
  background-color: #fafafa !important;
}
@media (max-width: 767px) {
  .search_group_item_left {
    border-radius: 4px 0 0 4px !important;
    border: 1px solid #e8e9eb !important;
  }
  .search_group_item_left .cxd-Form-value {
    height: 100%;
  }
  .search_group_item_left .cxd-Form-value .cxd-Form-control {
    width: 100%;
    height: 100%;
  }
  .search_group_item_left .cxd-Form-item-controlBox .cxd-Form-control {
    width: 100%;
    height: 100%;
  }
  .search_group_item_left .cxd-Form-value .cxd-Form-control .cxd-Select.is-mobile {
    width: 100%;
    height: 100%;
    font-size: 14px !important;
  }
  .search_group_item_left .cxd-Form-item-controlBox .cxd-Form-control .cxd-Select.is-mobile {
    font-size: 14px !important;
  }
  .search_group_item_left .cxd-Form-value .cxd-Form-control .cxd-Select-valueWrap {
    margin-left: 10px;
  }
  .search_group_item_left .cxd-Form-item-controlBox .cxd-Form-control .cxd-Select-valueWrap {
    margin-left: 10px;
  }
  .search_group_item_left .cxd-Form-value .cxd-Form-control .cxd-Select-valueWrap .cxd-Select-placeholder {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .search_group_item_left_disabled {
    border: 1px solid #e8e9eb !important;
    border-radius: 4px 0 0 4px !important;
  }
  .search_group_item_left_disabled .cxd-Form-value {
    height: 100%;
  }
  .search_group_item_left_disabled .cxd-Form-control,
  .search_group_item_left_disabled .cxd-TextControl-input {
    height: 100%;
  }
  .search_group_item_left_disabled .cxd-TextControl-input {
    display: flex;
    align-items: center;
    font-size: 14px !important;
    padding: 0 !important;
    padding-left: 10px !important;
  }
  .search_group_item_left::after {
    border-bottom: none !important;
  }
}
.search_item_inputBox {
  flex: 1;
  margin: 0 0 0 -1px !important;
}
.search_item_inputBox .cxd-TextControl-input {
  border-radius: 0 4px 4px 0 !important;
  height: 100%;
}
.search_item_inputBox .cxd-Form-value,
.search_item_inputBox .cxd-Form-control {
  width: 100% !important;
  height: 100%;
}
.search_item_inputBox .cxd-TextControl-input input::placeholder {
  color: #a3aab9 !important;
}
.search_item_inputBox .cxd-TextControl-input input {
  padding: 0;
}
@media (max-width: 767px) {
  .search_item_inputBox {
    border: 1px solid #e8e9eb !important;
    border-radius: 0 4px 4px 0 !important;
    padding: 0 !important;
  }
  .search_item_inputBox .cxd-Form-value,
  .search_item_inputBox .cxd-Form-control,
  .search_item_inputBox .cxd-TextControl-input {
    height: 100% !important;
  }
  .search_item_inputBox .cxd-TextControl-input {
    font-size: 14px !important;
    display: flex;
    align-items: center;
    padding-left: 10px !important;
    box-sizing: border-box;
  }
  .search_item_inputBox .cxd-TextControl-input input {
    padding-left: 0 !important;
  }
  .amis-scope .cxd-TextControl.is-error > .cxd-TextControl-input {
    border: 1px solid var(--Form-input-onError-borderColor) !important;
  }
  .search_item_inputBox::after {
    border-bottom: none !important;
  }
}
.search_item_select_radio,
.search_item_select_nested {
  flex: 1;
  height: 100%;
  margin: 0 0 0 -1px !important;
  width: calc(100% - 100px);
}
.search_item_select_radio .cxd-Form-value,
.search_item_select_nested .cxd-Form-value {
  width: 100% !important;
  height: 100% !important;
}
.search_item_select_radio .cxd-SelectControl,
.search_item_select_nested .cxd-SelectControl {
  width: 100% !important;
  height: 100% !important;
}
.search_item_select_nested .cxd-Form-value .cxd-ResultBox-value-wrap {
  overflow: hidden;
}
.search_item_select_radio .cxd-Form-value .cxd-Select-placeholder,
.search_item_select_nested .cxd-Form-value .cxd-ResultBox-value-wrap .cxd-ResultBox-value-input,
.search_item_select_nested .cxd-Form-value .cxd-ResultBox-value-wrap .cxd-ResultBox-placeholder {
  color: #a3aab9 !important;
  margin-left: 0 !important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px !important;
  padding: 0;
}
.search_item_select_nested .cxd-Form-value .cxd-ResultBox-value-wrap .cxd-ResultBox-placeholder {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}
.search_item_select_nested .cxd-Form-value .cxd-ResultBox .cxd-ResultBox-actions {
  padding-left: 0;
}
.search_item_select_nested .cxd-Form-value .cxd-ResultBox-value-wrap .cxd-ResultBox-value-input::placeholder {
  color: #a3aab9 !important;
}
.search_item_select_nested .cxd-NestedSelectControl {
  width: 100% !important;
  height: 100% !important;
}
.search_item_select_radio .cxd-Select,
.search_item_select_nested .cxd-ResultBox {
  border-radius: 0 4px 4px 0 !important;
  height: 32px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.search_item_select_radio .cxd-Form-value .cxd-Select--multi {
  padding-left: var(--gap-base);
}
.search_item_select_radio .cxd-Select--multi .cxd-Select-valueWrap .cxd-Select-value {
  margin-bottom: 0 !important;
}

.search_item_select_nested .cxd-ResultBox .cxd-ResultBox-clear-wrap .icon-input-clear {
  font-size: 0;
}
@media (max-width: 767px) {
  .search_item_select_radio {
    border: 1px solid #e8e9eb !important;
    border-radius: 0 4px 4px 0 !important;
    padding: 0 !important;
  }
  .search_item_select_radio .cxd-SelectControl,
  .search_item_select_radio .cxd-Select.is-mobile {
    height: 100% !important;
  }
  .search_item_select_radio .cxd-Select-valueWrap {
    padding-left: 10px !important;
    box-sizing: border-box;
    font-size: 14px !important;
  }
  .search_item_select_radio .cxd-Select--multi .cxd-Select-valueWrap {
    padding-left: 0 !important;
  }
  .search_item_select_nested {
    border: 1px solid #e8e9eb !important;
    border-radius: 0 4px 4px 0 !important;
    padding: 0 !important;
  }
  .search_item_select_nested .cxd-NestedSelectControl,
  .search_item_select_nested .cxd-ResultBox {
    height: 100% !important;
  }
  .search_item_select_nested .cxd-ResultBox-value-wrap {
    padding-left: 10px !important;
    box-sizing: border-box;
    font-size: 14px !important;
    text-align: left !important;
  }
  .search_item_select_nested .cxd-ResultBox-value-input {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-left: 0 !important;
  }
  .search_item_select_nested .cxd-ResultBox-value-input::placeholder {
    color: #a3aab9 !important;
  }
  .amis-scope .cxd-SelectControl.is-error > .cxd-Select {
    border: 1px solid var(--Form-input-onError-borderColor) !important;
    border-radius: 0 4px 4px 0 !important;
  }
  .search_item_select_radio::after,
  .search_item_select_nested::after {
    border-bottom: none !important;
  }
}
.search_item_select_nested .cxd-NestedSelectControl.is-error .cxd-ResultBox {
  border: 1px solid var(--Form-input-onError-borderColor) !important;
}
.search_item_select_date_component {
  height: 100%;
  flex: 1;
  margin: 0 0 0 -1px !important;
}
.search_item_select_date_component .cxd-Form-value,
.search_item_select_date_component .cxd-DateRangeControl {
  width: 100% !important;
  height: 100%;
}
.search_item_select_date_component .cxd-DateRangePicker {
  border-radius: 0 4px 4px 0 !important;
  margin: 0 !important;
  padding-left: 10px !important;
  height: 100%;
}
.search_item_select_date_component .cxd-DateRangePicker .cxd-DateRangePicker-input {
  font-size: 14px;
}
.search_item_select_date_component .cxd-DateRangePicker .cxd-DateRangePicker-input::placeholder {
  color: #a3aab9 !important;
}
.search_item_select_date_component .cxd-DateControl {
  width: 100% !important;
}
.search_item_select_date_component .cxd-DatePicker {
  border-radius: 0 4px 4px 0 !important;
}
.search_item_select_date_component .cxd-DateRangePicker-input-separator {
  margin: 0 4px !important;
}
.search_item_select_date_component .cxd-DateRangePicker-input-separator .cxd-DateRangePicker-input-separator-line {
  width: 4px !important;
}

@media (max-width: 767px) {
  .search_item_select_date_component {
    border: 1px solid #e8e9eb !important;
    border-radius: 0 4px 4px 0 !important;
    padding: 0 !important;
  }
  .search_item_select_date_component .cxd-Form-value,
  .search_item_select_date_component .cxd-DateRangeControl,
  .search_item_select_date_component .cxd-DateRangePicker {
    height: 100%;
  }
  .search_item_select_date_component .cxd-DateRangePicker .cxd-DateRangePicker-input {
    font-size: 14px;
  }
  .search_item_select_date_component .cxd-DateControl,
  .search_item_select_date_component .cxd-DatePicker.is-mobile {
    height: 100% !important;
  }
  .search_item_select_date_component .cxd-DatePicker-input {
    font-size: 14px !important;
    margin-left: -2px;
  }
  .search_item_select_date_component .cxd-DatePicker-input::placeholder {
    color: #a3aab9 !important;
    font-size: 14px;
  }
  .search_item_select_date_component::after {
    border-bottom: none !important;
  }
}
.amis-scope .search_item_select_date_component .cxd-DateRangeControl.is-error .cxd-DateRangePicker,
.amis-scope .search_item_select_date_component .cxd-DateControl.is-error .cxd-DatePicker {
  border: 1px solid var(--Form-input-onError-borderColor) !important;
}
.search_custom_placeholder {
  height: 10px;
}
.search_action_buttons_group {
  width: 100%;
  height: fit-content;
}
.search_action_buttons_group_box_position {
  height: 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
}
.search_custom_component.custom-page-search .search_action_buttons_group_box_position {
  bottom: 15px;
  right: 10px;
}
@media (max-width: 767px) {
  .search_action_buttons_group_box_position {
    height: 32px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: static;
    right: 0;
    bottom: 0;
    transform: translateY(0%);
  }
  .search_custom_component .search_custom_component_group .search_group_item .search_group_item_left_disabled,
  .search_custom_component .search_custom_component_group .search_group_item .search_group_item_left {
    padding: 0 !important;
  }
}
.search_action_buttons_group_box {
  height: 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.search_custom_component.custom-page-search .search_action_buttons_group_box {
  padding-right: 10px;
  box-sizing: border-box;
  margin: -5px 0 5px;
}
.search_reset_button {
  height: 100%;
  font-size: 14px;
  color: #a3aab9;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: none !important;
}
.search_reset_button:hover {
  background-color: transparent !important;
}
.search_add_button {
  height: 100%;
  font-size: 14px;
  color: var(--active);
  display: flex;
  align-items: center;
  margin-left: 15px;
  cursor: pointer;
}
.search_clear_button {
  width: 54px;
  height: 32px !important;
  text-align: center;
  line-height: 32px !important;
  font-size: 14px !important;
  border-radius: 4px !important;
  margin-left: 15px !important;
  cursor: pointer;
}
.search_inquire_button {
  width: 54px;
  height: 32px !important;
  text-align: center;
  line-height: 32px !important;
  font-size: 14px !important;
  background-color: var(--button-primary-default-bg-color) !important;
  color: #fff;
  border-radius: 4px !important;
  margin-left: 15px !important;
  cursor: pointer;
  margin-right: 5px !important;
}

/*
    数据总览组件 - data-summary-component
*/
.data-summary-component {
  width: 100%;
  height: fit-content;
  background-color: #fff;
  border-radius: 10px;
  font-family: PingFang SC-Regular, PingFang SC;
  margin: 20px 0;
}
.data-summary-top-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: fit-content;
  flex-wrap: wrap;
  padding: 16px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .data-summary-top-area {
    padding-bottom: 0;
  }
}
.data-summary-top-area-title {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.data-summary-top-area-title .top-area-title-link {
  color: var(--link-color);
  margin-left: 20px;
  border: none !important;
}
.data-summary-top-area-title .top-area-title-link:hover {
  background: #fff !important;
  color: var(--link-color) !important;
}
.data-summary-top-area-select-group {
  width: 700px;
  height: 32px;
  display: flex;
}
@media (max-width: 767px) {
  .data-summary-top-area-select-group {
    width: 100%;
    flex-direction: column;
    height: fit-content;
    margin-top: 20px;
  }
}
.data-summary-top-area-select-group .select-group-box {
  display: flex;
  width: 49%;
  height: 100%;
}
@media (max-width: 767px) {
  .data-summary-top-area-select-group .select-group-box {
    width: 100%;
    height: fit-content;
    margin-bottom: 10px;
  }
}
.select-group-box-left-select {
  width: 100px;
  height: 100%;
  margin-bottom: 0 !important;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .select-group-box-left-select {
    padding: 0 !important;
    height: 32px;
  }
  .select-group-box-left-select::after {
    border-bottom: none !important;
  }
  .select-group-box-left-select .cxd-Select-value {
    font-size: 14px !important;
  }
}
.select-group-box-left-select .cxd-SelectControl .cxd-Select,
.select-group-box-left-select .cxd-SelectControl .cxd-Select.is-opened,
.select-group-box-left-select .cxd-SelectControl .cxd-Select.is-focused {
  width: 100%;
  border-radius: 4px 0 0 4px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .select-group-box-left-select .cxd-SelectControl .cxd-Select.is-mobile {
    border: 1px solid #e8e9eb;
    height: 100% !important;
    padding: 0 4px !important;
  }
}
.select-group-box-left-select .cxd-SelectControl .cxd-Select:hover,
.select-group-box-left-select .cxd-SelectControl .cxd-Select:active,
.select-group-box-left-select .cxd-SelectControl .cxd-Select:focus {
  border-color: #e8e9eb;
}
.select-group-box-right-select {
  flex: 1;
  margin-left: -1px;
}
@media (max-width: 767px) {
  .select-group-box-right-select {
    padding: 0 !important;
    height: 32px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .select-group-box-right-select::after {
    border-bottom: none !important;
  }
  .select-group-box-right-select .cxd-Select-value,
  .select-group-box-right-select .cxd-Select-placeholder,
  .select-group-box-right-select .cxd-ResultBox-value-wrap,
  .select-group-box-right-select .cxd-ResultBox-placeholder {
    font-size: 14px !important;
  }
}
.select-group-box-right-select .cxd-Select-placeholder,
.select-group-box-right-select .cxd-ResultBox-placeholder {
  color: #a3aab9;
}
.select-group-box-right-select .cxd-SelectControl .cxd-Select,
.select-group-box-right-select .cxd-NestedSelectControl .cxd-ResultBox {
  width: 100%;
  border-radius: 0 4px 4px 0;
}
.select-group-box-right-select .cxd-NestedSelectControl {
  padding-top: 0 !important;
}
.select-group-box-right-select .cxd-NestedSelectControl,
.select-group-box-right-select .cxd-NestedSelectControl .cxd-ResultBox {
  height: 100%;
}
.select-group-box-right-select .cxd-NestedSelectControl .cxd-ResultBox .cxd-ResultBox-arrow {
  margin-left: 8px !important;
}
@media (max-width: 767px) {
  .select-group-box-right-select .cxd-SelectControl .cxd-Select.is-mobile {
    border: 1px solid #e8e9eb;
    height: 100% !important;
    padding: 0 4px !important;
  }
  .select-group-box-right-select .cxd-SelectControl .cxd-Select-arrow {
    margin-right: var(--gap-xs);
    margin-left: 9px;
  }
  .select-group-box-right-select .cxd-NestedSelectControl {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .select-group-box-right-select .cxd-NestedSelectControl .cxd-ResultBox {
    border: 1px solid #e8e9eb;
    height: 100% !important;
    padding: 0 4px !important;
  }
  .select-group-box-right-select .cxd-NestedSelectControl .cxd-ResultBox .cxd-ResultBox-actions {
    padding-left: 0 !important;
  }
}
.select-group-box-right-select .cxd-NestedSelectControl .cxd-ResultBox .cxd-ResultBox-value-wrap {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left !important;
}
.data-summary-grid-area {
  width: 100%;
  height: fit-content;
  display: grid;
  padding-bottom: 10px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .data-summary-grid-area {
    grid-template-columns: repeat(auto-fill, 100%) !important;
  }
}
.data-summary-grid-item {
  box-sizing: border-box;
  padding: 0 36px;
  box-sizing: border-box;
  border-right: 1px solid var(--borderColor);
  margin: 20px 0;
}
@media (max-width: 767px) {
  .data-summary-grid-item {
    border: 0;
  }
}
.grid-item-title {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  font-size: 14px;
}
.grid-item-title-action-type {
  color: var(--link-color) !important;
  border: none !important;
}
.grid-item-title-action-type:hover {
  background: #fff !important;
}
.grid-item-data-top {
  font-size: 16px;
  color: #888;
  height: 40px;
}
.grid-item-data-top .data-top-digit {
  font-weight: bold;
  font-size: 28px;
  color: #2f2f2f;
  margin-right: 6px;
}
.grid-item-data-top .data-top-sub-digit {
  font-size: 20px;
  margin-right: 6px;
}
.grid-item-data-bottom {
  font-size: 14px;
  color: #888;
}
.grid-item-data-bottom .data-bottom-digit {
  font-weight: bold;
  margin-left: 4px;
}

/*
    弹窗组件 - dialog-component
*/
.dialogComponent-dialog-box {
  width: fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  left: 65px;
  z-index: 99;
  display: flex;
  padding-left: 10px;
}
.dialogComponent-dialog {
  width: fit-content;
  height: fit-content;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.dialogComponent-qrcodeDialog {
  width: fit-content;
  height: fit-content;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
}
.dialogComponent-qrcodeDialog .cxd-TplField {
  width: 100%;
  padding: 12px 12px 0;
  box-sizing: border-box;
}
.custom-dialog-qrcode {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  width: 120px;
  height: 120px;
  margin: 0 12px;
}
.custom-dialog-button {
  width: 120px;
  height: 28px !important;
  border-radius: 4px !important;
  border: 1px solid #d8dade;
  margin-top: 8px !important;
  text-align: center;
  line-height: 28px !important;
  color: #929394;
  font-size: 12px !important;
  cursor: pointer !important;
  background-color: #fff !important;
  margin: 0 12px 12px 12px !important;
}
.custom-dialog-button:hover {
  color: var(--active) !important;
  border-color: var(--active) !important;
}

/*
    list-card 组件 - list-card-component
*/
td:has(.custom-list-card-component) {
  border: none !important;
  padding: 0 !important;
}
.custom-list-card-component {
  width: 100%;
  height: 100%;
  padding: 8px 24px;
  box-sizing: border-box;
}
.custom-list-card-component-item {
  width: 100%;
  height: 200px;
}
.custom-list-card-component-item-header {
  width: 100%;
  height: 40px;
  background-color: #fafafa;
  padding: 0 16px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #494a4a;
  font-size: 12px;
  border: 1px solid #ececef;
  border-radius: 6px 6px 0 0;
}
.custom-list-card-component-item-header-content {
  display: flex;
}
.custom-list-card-component-item-header-content .clild-span span {
  display: inline !important;
}
.custom-list-card-component-item-header-content .cxd-TplField span {
  display: flex;
}
.custom-list-card-component-item-header-content:first-child .custom-list-card-component-item-header-content-items {
  margin-right: 12px;
}
.custom-list-card-component-item-header-content:last-child .custom-list-card-component-item-header-content-items {
  margin-left: 12px;
}
.custom-list-card-badge {
  left: 1.4% !important;
  top: 4% !important;
}

.custom-list-card-component-item-content {
  width: 100%;
  height: 160px;
  border: 1px solid #ececef;
  border-radius: 0 0 6px 6px;
  display: flex;
  border-top: none;
}

.custom-list-card-component-item-content-items:nth-child(1) {
  width: 30%;
}
.custom-list-card-component-item-content-items:nth-child(2) {
  width: 15%;
}
.custom-list-card-component-item-content-items:nth-child(3) {
  width: 15%;
}
.custom-list-card-component-item-content-items:nth-child(4) {
  width: 25%;
}
.custom-list-card-component-item-content-items:nth-child(5) {
  width: 15%;
}
.custom-list-card-component-item-content-items:last-child .custom-list-card-component-item-content-items-title {
  border-right: none;
}
.custom-list-card-component-item-content-items:last-child .custom-list-card-component-item-content-items-info {
  border-right: none;
}

.custom-list-card-component-item-content-items-title {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #ececef;
  border-bottom: 1px solid #ececef;
  font-weight: bold;
  font-size: 14px;
}
.custom-list-card-component-item-content-items-info {
  height: 120px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  box-sizing: border-box;
  border-right: 1px solid #ececef;
}
.hover-element-overflow {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 310px;
}

/* 自定义卡片 */
.custom-card {
  width: 100%;
  height: fit-content;
  padding: 18px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  border-right: 1px solid #ececef;
}
.custom-card-img {
  width: 84px;
  height: 84px;
  border-radius: 10px;
  flex-shrink: 0;
  margin-right: 12px;
  overflow: hidden;
}
.custom-card-img .img {
  width: 100%;
  height: 100%;
}
.custom-card-content {
  width: calc(100% - 96px);
  height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #2f2f2f;
  font-size: 12px;
  padding: 1px 0 2px 0;
  box-sizing: border-box;
}
.custom-card-content-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.custom-card-content-subTitle {
  color: #979797;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.hover-element:hover .hover-element-tooltipWrapper {
  position: absolute;
  top: 20px;
  left: 0;
  display: block !important;
}
.hover-element-tooltipWrapper {
  display: none;
  width: max-content;
  max-width: 330px;
  height: fit-content;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  opacity: 1;
  border: 1px solid #eeeeee;
  padding: 12px 19px;
  box-sizing: border-box;
  font-size: 12px;
  z-index: 99;
  word-break: break-all;
}

.hoverIcon {
  cursor: pointer;
}
.hoverIcon:hover .hoverIconPath {
  fill: var(--active) !important;
}

/* 
    规格组件
*/
.custom-spec-component {
  width: 100%;
  height: fit-content;
  display: flex;
  overflow: hidden;
  padding: 10px 10px 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #e8e9eb;
  margin-bottom: 20px;
}
.spec-component-title {
  width: 5rem;
  font-size: 14px;
  flex-shrink: 0;
}
.spec-component-spec-area {
  width: 95%;
  height: 100%;
}
@media (max-width: 767px) {
  .spec-component-spec-area {
    overflow: auto;
  }
}
.spec-area-panel {
  width: 30%;
  height: fit-content;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .spec-area-panel {
    width: 468px !important;
  }
}
.spec-item {
  width: 100%;
  height: fit-content;
  border: 1px dashed #e8e9eb;
  box-sizing: border-box;
  padding: 10px;
  font-size: 13px;
  position: relative;
  margin-bottom: 10px;
}
.spec-item:hover {
  border: 1px dashed var(--active);
}
.spec-name {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
.spec-name-input {
  width: 80%;
  margin: 4px 0 !important;
}
.spec-name-input .cxd-Form-label {
  width: 0px !important;
  margin-right: 0px !important;
}
@media (max-width: 767px) {
  .spec-name-input .cxd-Form-label {
    flex: none !important;
    padding: 0 !important;
  }
}
.spec-value-box {
  margin-top: 4px;
  display: flex;
  align-items: center;
}
.spec-value-input {
  width: 80%;
  margin: 0 !important;
}
.spec-value-input .cxd-Form-label {
  width: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 767px) {
  .spec-value-input .cxd-Form-label {
    flex: none !important;
    padding: 0 !important;
  }
}
.spec-value-close {
  font-size: 20px;
  margin-left: 6px;
  background: #99a0c0;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  height: 18px;
  line-height: 14px;
  text-align: center;
  width: 18px;
  font-weight: 200;
  display: inline-block;
  transform: rotate(45deg);
  &:hover {
    background: var(--active);
  }
}
.spec-value-add {
  width: 60px;
  height: 26px;
  background: var(--active);
  border-radius: 4px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  margin-top: 10px;
}
.spec-value-add span:first-child {
  margin-bottom: 6px;
}
.spec-item-close {
  font-size: 32px;
  color: rgb(47, 47, 47);
  height: 24px;
  line-height: 22px;
  text-align: center;
  width: 24px;
  font-weight: 200;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  &:hover {
    color: var(--active);
  }
}
.panel-add {
  width: 60px;
  height: 26px;
  background: var(--active);
  border-radius: 4px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  margin-top: 10px;
}
.panel-add span:first-child {
  margin-bottom: 6px;
}
.spec-area-edit-button {
  width: 80px;
  height: 30px;
  color: #8a8a8a;
  border: 1px solid #ddd !important;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  padding: 0;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}
.spec-area-edit-button:hover {
  color: var(--active);
  border: 1px solid var(--active) !important;
}
.spec-area-edit-button-forbid {
  width: 80px;
  height: 30px;
  color: #b8babf;
  background-color: #f7f8fa;
  border: 1px solid #f7f8fa !important;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  padding: 0;
  text-align: center;
  line-height: 30px;
  cursor: no-drop;
}
.spec-area-batch {
  width: 50%;
  height: fit-content;
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  z-index: 9999;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .spec-area-batch {
    width: 90% !important;
    overflow: auto;
  }
}
.spec-area-batch-header {
  padding: 20px 20px 10px;
  box-sizing: border-box;
  line-height: 24px;
  font-size: 18px;
  color: #303133;
}
.spec-area-batch-body {
  padding: 30px 20px;
  color: #606266;
  font-size: 14px;
}
.spec-area-batch-body .salesPrice,
.spec-area-batch-body .dashPrice,
.spec-area-batch-body .status {
  display: flex;
  margin-bottom: 22px;
  position: relative;
}
.salesPrice .cxd-Form-item,
.dashPrice .cxd-Form-item,
.status .cxd-Form-item {
  flex: 1;
  margin-bottom: 0 !important;
}
.salesPrice .cxd-Form-label,
.dashPrice .cxd-Form-label,
.status .cxd-Form-label {
  width: 0 !important;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .spec-area-batch-body .salesPrice,
  .spec-area-batch-body .dashPrice,
  .spec-area-batch-body .status {
    height: 32px !important;
  }
  .salesPrice .cxd-Form-item,
  .dashPrice .cxd-Form-item,
  .status .cxd-Form-item {
    padding: 0 !important;
  }
  .salesPrice .cxd-Form-label,
  .dashPrice .cxd-Form-label,
  .status .cxd-Form-label {
    flex: none !important;
    padding: 0 !important;
  }
}
.salesPrice .error-text,
.dashPrice .error-text {
  color: #f56c6c;
  font-size: 12px;
  line-height: 1;
  padding-top: 4px;
  position: absolute;
  top: 100%;
  left: 110px;
}
.spec-area-batch-footer {
  padding: 10px 20px 20px;
  display: flex;
  justify-content: flex-end;
}
.spec-area-batch-footer .cancel {
  width: 80px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #8a8a8a;
  cursor: pointer;
}
.spec-area-batch-footer .confirm {
  width: 80px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  border-radius: 4px;
  background: var(--active);
  border: 1px solid var(--active);
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  margin-left: 16px;
  position: relative;
}
.spec-area-table {
  width: 100%;
  height: fit-content;
  margin-top: 10px;
  font-size: 12px;
  display: flex;
}
@media (max-width: 767px) {
  .spec-area-table {
    width: 1500px !important;
  }
}
.spec-area-table-checkbox {
  width: 50px;
}
.spec-area-table-checkbox .cxd-Form-label {
  width: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 767px) {
  .spec-area-table-checkbox .table-checkbox {
    padding: 0 !important;
  }
  .spec-area-table-checkbox .cxd-Form-label {
    flex: none !important;
    padding: 0 !important;
  }
}
.spec-area-table-checkbox .cxd-Checkbox > i + span {
  display: none;
}
.spec-area-table-checkbox .cxd-CheckboxesControl {
  padding-top: 0px !important;
  border-collapse: collapse;
}
.spec-area-table-checkbox .cxd-CheckboxesControl .cxd-Checkbox {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ebeef5;
  margin: 0 !important;
  border-top: none;
}
.spec-area-table-checkbox .cxd-CheckboxesControl .cxd-Checkbox:first-child {
  border-top: 1px solid #ebeef5;
}
.table-checkbox-none {
  width: 50px;
  height: 110px;
  border-collapse: collapse;
}
.table-checkbox-none-item {
  width: 100%;
  height: 50px;
  border: 1px solid #ebeef5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table-checkbox-none-item-checkbox {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  border: 1px solid #ebeef5;
  cursor: not-allowed;
}
.table-checkbox-none-item2 {
  width: 100%;
  height: 60px;
  border-bottom: 1px solid #ebeef5;
  border-left: 1px solid #ebeef5;
}
.spec-area-table-title {
  width: 100%;
  height: 50px;
  display: flex;
  border: 1px solid #ebeef5;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}
.title-item {
  flex: 1;
  height: 100%;
  border-right: 1px solid #ebeef5;
  line-height: 50px;
  display: flex;
  align-items: center;
}
.title-item-name {
  height: 100%;
  padding: 0 6px 0 10px;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 14px;
}
.title-item-remark {
  display: inline-block;
  width: 14px;
  height: 14px;
  text-align: center;
  line-height: 14px;
  background-color: #fff;
  border: 1px solid #000;
  color: #84878c;
  position: relative;
  cursor: pointer;
  font-weight: 600;
}
.title-item-remark:hover {
  background-color: var(--active);
  color: #fff;
  border: 1px solid transparent;
}
.title-item-remark:hover .remark-text {
  display: block;
}
.title-item-remark .remark-text {
  display: none;
  text-align: left;
  max-width: 220px;
  width: 220px;
  padding: 10px;
  box-sizing: border-box;
  border: none !important;
  box-shadow: 2px 4px 10px #ccc, -2px -1px 6px #ccc !important;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 999;
  background-color: #fff;
  color: #606266;
  border-radius: 4px;
}
.spec-area-table-content {
  width: 100%;
  height: 50px;
  display: flex;
  border: 1px solid #ebeef5;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  font-size: 14px;
  color: #606266;
}
.content-item {
  flex: 1;
  height: 50px;
  border-right: 1px solid #ebeef5;
  line-height: 50px;
  display: flex;
  align-items: center;
}
.content-item-value {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.content-item-value .cxd-Form-label {
  width: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 767px) {
  .content-item-value .cxd-Form-label {
    flex: none !important;
    padding: 0 !important;
  }
}
.content-item-value-input {
  width: 70%;
}
.content-item-value-switch {
  height: 100%;
  margin-bottom: 0 !important;
  margin-right: 6px;
}
@media (max-width: 767px) {
  .content-item-value-switch {
    padding: 0 !important;
  }
}
.content-item-value-switch .cxd-SwitchControl {
  padding-top: 0 !important;
}
.spec-area-table-content-none {
  width: 100%;
  height: 60px;
  color: #909399;
  border: 1px solid #ebeef5;
  border-top: none;
  border-left: none;
  position: relative;
}
.spec-area-table-content-none-text {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translateY(-50%);
}
.spec-area-panel-empty {
  width: 100%;
  height: 30px;
  color: #b8babf;
  font-size: 14px;
  line-height: 30px;
}
.spec-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  transition: ease-out opacity var(--animation-duration);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--Drawer-overlay-bg);
}

/*
    通知组件 - notification-component
*/
.custom-notification-component {
  width: 100%;
  font-size: 14px;
  color: #000;
}
.notification-title {
  width: 100%;
  background-color: #fff;
  padding: 0 20px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.title-active {
  position: relative;
  color: #2a6ae4;
  cursor: pointer;
}
.title-active:hover .title-qrcode {
  display: flex;
}
.title-qrcode {
  position: absolute;
  width: fit-content;
  height: fit-content;
  border-radius: 4px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  left: 0;
  top: 30px;
  background-color: #fff;
  padding: 12px;
  box-sizing: border-box;
  display: none;
  flex-direction: column;
  align-items: center;
}
.qrcode-title {
  width: 100%;
  height: 20px;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  line-height: 20px;
}
.qrcode-img {
  width: 100px;
  height: 100px;
  margin-top: 14px;
}

.notification-table {
  width: 100%;
  height: fit-content;
  border: 1px solid #ececef;
  border-bottom: none;
}
.notification-table-header {
  width: 100%;
  height: 60px;
  background-color: #f7f7f7;
  display: flex;
  line-height: 60px;
  text-align: center;
}
.header-module {
  width: 10%;
  height: 100%;
}
.header-right {
  flex: 1;
  display: flex;
}
.header-notice-content {
  flex: 1;
  height: 100%;
  border-left: 1px solid #e8e9eb;
  border-right: 1px solid #e8e9eb;
  text-align: left;
  padding: 0 20px;
  box-sizing: border-box;
}
.header-channel {
  width: 30%;
  height: 100%;
}

.notification-table-content {
  width: 100%;
  height: fit-content;
}
.notify-content-item {
  width: 100%;
  height: fit-content;
  display: flex;
  border-bottom: 1px solid #e8e9eb;
}
.notify-content-item-name {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notify-content-item-right {
  flex: 1;
  height: fit-content;
}
.notify-content-item-right-item {
  display: flex;
  height: 52px;
  line-height: 52px;
  border-bottom: 1px solid #e8e9eb;
  border-left: 1px solid #e8e9eb;
}
.notify-content-item-right-item:last-child {
  border-bottom: none;
}
.right-item-classify {
  flex: 1;
  padding: 0 20px;
  box-sizing: border-box;

  border-right: 1px solid #e8e9eb;
}
.right-item-option {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.option-item {
  display: flex;
  margin: 0 5px;
}
.option-item .cxd-Form-label {
  width: 0 !important;
  margin: 0 !important;
}
.option-item .cxd-CheckboxControl {
  padding-top: 2px !important;
  height: 50px !important;
  box-sizing: border-box;
}
.option-item .cxd-CheckboxControl i {
  width: 22px;
  height: 22px;
  border-radius: 4px !important;
}

/* 
    oss 文件上传组件 - oss-upload-component
*/
.cxd-Modal-body:has(.oss-input-component) {
  margin-bottom: 0 !important;
}
.custom-form-item {
  margin-bottom: 0px !important;
}
.custom-input-file-error {
  font-size: 12px;
  display: flex;
  color: red;
  height: 100%;
  line-height: 32px;
}
.info-label {
  width: var(--Form--horizontal-label-widthBase);
  margin-right: var(--Form--horizontal-label-gap);
}
.error-label {
  width: var(--Form--horizontal-label-widthBase);
  margin-right: var(--Form--horizontal-label-gap);
}
.custom-input-file-operation {
  display: flex;
  justify-content: space-between;
}
.operation-button-cancel {
  min-width: var(--Modal-footer-button-width) !important;
  margin-left: var(--dialog-footer-margin-left) !important;
}
.operation-button-submit {
  min-width: var(--Modal-footer-button-width) !important;
  margin-left: var(--dialog-footer-margin-left) !important;
}
.bottom-prompt {
  display: flex;
  height: 100%;
  align-items: center;
  box-sizing: border-box;
}
.custom-loading-icon {
  font-size: 12px;
  margin-right: 4px;
  margin-bottom: -2px;
}
.loading-file-text {
  font-size: 12px;
  display: flex;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.custom-loading-icon {
  display: inline-block; /* 确保旋转效果可见 */
  animation: rotate 2s linear infinite; /* 旋转动画，持续 2 秒，线性，循环播放 */
}

/* 
    智投文案标题组件 - copy-title-component
*/
.custom-copy-title {
  font-size: 14px;
  box-sizing: border-box;
}
.custom-copy-label {
  padding-top: 2px;
  box-sizing: border-box;
  text-align: right;
  margin-right: var(--Form--horizontal-label-gap);
}
.custom-copy-content {
  display: flex;
}
.custom-copy-keyword {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.custom-copy-keyword > div {
  flex-shrink: 0;
}
.custom-copy-keyword .keyword-input {
  flex: 1;
  height: 32px;
  border-radius: 4px;
  box-sizing: border-box;
  background: #f6f6f6;
}
.custom-copy-keyword .keyword-input .cxd-Form-label {
  width: 0 !important;
  margin-right: 0 !important;
}
.custom-copy-list {
  margin-top: 10px;
}
.custom-copy-list .custom-copy-list-item {
  display: flex;
  align-items: center;
}
.custom-copy-list .custom-copy-list-item-error .cxd-TextControl-input {
  border-color: red !important;
}
.custom-copy-list .custom-copy-list-item .del-button {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  background-color: #f6f6f6;
  border-radius: 18px;
  cursor: pointer;
  &:hover {
    background-color: #ff7543;
    color: #fff;
  }
}
.custom-copy-list .custom-copy-list-item .list-item-input {
  width: 100%;
  height: 32px;
  border-radius: 4px;
  box-sizing: border-box;
  background: #f6f6f6;
  margin-bottom: 0 !important;
}
.custom-copy-list .custom-copy-list-item .list-item-input .cxd-Form-label {
  margin-right: 0 !important;
  width: 0 !important;
}
.custom-copy-add {
  width: fit-content;
  padding: 4px 10px;
  background: #ff7543;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  &:hover {
    background: #e76b3e;
  }
}
.custom-copy-add .fa-plus {
  font-weight: 400 !important;
  opacity: 0.6;
}
.custom-copy-add-forbid {
  width: fit-content;
  padding: 4px 10px;
  box-sizing: border-box;
  background: #f4f4f4;
  border-radius: 4px;
  border: 1px solid #e1e1e1;
  font-size: 14px;
  color: #919191;
  cursor: not-allowed;
}
.spinner-icon {
  margin-left: 6px;
  font-size: 12px;
  animation: rotate 1s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg); /* 初始角度 */
  }
  100% {
    transform: rotate(360deg); /* 旋转一整圈 */
  }
}

/* 
    规则选择组件 - rule-select-component
*/
.rule-select-component {
  font-size: 14px;
  margin-bottom: var(--Form-item-gap);
  box-sizing: border-box;
}
.rule-select-label {
  position: relative;
  display: flex;
  align-items: center;
}
.rule-select-remark {
  margin-left: 0 !important;
  display: flex !important;
}
.required-star {
  color: var(--Form-item-star-color);
  font-size: var(--Form-item-star-size);
  line-height: 1;
  position: absolute;
  left: -0.375rem;
  top: 0.3rem;
}
.rule-combo-multiple {
  padding: 10px;
  border: 1px dashed #ccc;
  margin: 0.5rem 0;
  position: relative;
  &:hover {
    border-color: var(--active);
  }
}
.rule-combo {
  border: none;
  margin: 0.5rem 0;
  position: relative;
}
.group-combo-del {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 30px !important;
  color: #d1d2d4 !important;
  transform: rotate(45deg);
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  &:hover {
    color: var(--active) !important;
  }
}
.combo-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-top: 0.5rem;
}
.combo-item .cxd-Form-label {
  width: 0 !important;
  margin-right: 0 !important;
}
.rule-select {
  min-width: 48%;
  max-width: 48%;
  margin-bottom: 0 !important;
  margin-right: 10px;
}
.combo-del {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 30px !important;
  color: #d1d2d4 !important;
  transform: rotate(45deg);
  cursor: pointer;
  &:hover {
    color: var(--active) !important;
  }
}
.combo-add-btn {
  color: #fff;
  width: fit-content;
  height: 28px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem !important;
  padding: 0 var(--button-size-default-paddingRight) 0 var(--button-size-default-paddingLeft);
  background-color: var(--active);
  &:hover {
    background-color: var(--button-primary-hover-bg-color);
  }
}
.plus {
  height: 26px;
  line-height: 22px;
  font-size: 20px;
  margin-right: 0.25rem;
  font-weight: 300;
}
.combo-setting {
  margin-bottom: 10px;
}
.combo-setting .cxd-Form-label {
  text-align: left !important;
}

/* 
    阶梯设置组件 - stage-setting-component
*/
.stage-setting-component {
  width: 100%;
  font-size: 14px;
}
@media (max-width: 767px) {
  .stage-setting-component {
    width: 100%;
    overflow: auto;
  }
}
.stage-execution-mode {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.execution-mode-select {
  width: 120px;
  margin-left: 20px;
}
.stage-combo {
  flex-direction: column;
  border: 1px solid #e8e9eb;
  border-radius: 2px;
  padding: 6px 10px !important;
  box-sizing: border-box;
  font-size: 14px !important;
  margin-bottom: 20px !important;
}
.stage-combo > .cxd-Form-label {
  width: 300px !important;
  text-align: left !important;
  color: #000;
  font-weight: 600;
  margin-bottom: 6px !important;
  font-size: 14px !important;
}
.stage-combo .cxd-Form-row {
  flex-direction: column !important;
}
.stage-combo .cxd-Form-col {
  width: 100%;
  margin-bottom: 10px;
}
.stage-combo .cxd-Combo.is-mobile .cxd-Combo-item::before {
  border: none !important;
}
.stage-time-select > .cxd-Form-rowInner {
  width: 100%;
  display: flex !important;
  flex-direction: column;
}
.stage-time-select .cxd-Form-label {
  text-align: left;
  font-weight: 500;
  margin-bottom: 4px;
  color: #000;
}
@media (max-width: 767px) {
  .stage-time-select {
    padding: 0 !important;
  }
  .stage-time-select .cxd-Form-label {
    margin-bottom: 10px !important;
    font-size: 14px !important;
  }
  .stage-time-select .cxd-Select-valueWrap {
    font-size: 14px !important;
  }
}
.stage-time-select .cxd-SelectControl {
  width: 100% !important;
}
@media (max-width: 767px) {
  .stage-condition-builder {
    flex-direction: column;
  }
  .stage-condition-builder .cxd-Form-description {
    font-size: 14px !important;
  }
}
.stage-condition-builder > .cxd-Form-rowInner {
  width: 100%;
  display: flex !important;
  flex-direction: column;
}
.stage-condition-builder .cxd-Form-label {
  text-align: left !important;
  font-weight: 500 !important;
  margin-bottom: 4px !important;
  color: #000 !important;
  font-size: 14px !important;
}
.stage-table {
  overflow: auto;
}
.stage-table-head {
  height: 50px;
  font-size: 12px;
  display: flex;
  align-items: center;
  background: #fafafa;
  font-weight: bolder;
  min-width: fit-content;
}
@media (max-width: 767px) {
  .stage-table-head {
    width: fit-content;
  }
}
.stage-table-head div {
  height: 26px;
  line-height: 26px;
  padding: 0 6px;
  box-sizing: border-box;
  position: relative;
}
.stage-table-head .head-title-1 {
  width: 40px;
  flex-shrink: 0;
  min-width: 40px;
  display: flex;
  align-items: center;
}
.stage-table-head .head-title-2 {
  width: 80px;
  flex-shrink: 0;
  min-width: 80px;
  display: flex;
  align-items: center;
}
.stage-table-head .head-title-3 {
  width: 15%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 120px;
}
.stage-table-head .head-title-4 {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 240px;
}
.stage-table-head .head-title-5 {
  width: 25%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 180px;
  flex: 1;
}
.stage-table-head .head-title-6 {
  width: 15%;
  flex-shrink: 0;
  min-width: 100px;
}
.table-head-remark {
  margin-left: 0 !important;
  display: flex !important;
}
.stage-table-head .head-title::after {
  content: '';
  width: 1px;
  height: 26px;
  position: absolute;
  right: 0;
  background: #e9eaed;
}
.stage-table-head .head-title:last-child::after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  background: transparent;
}
.stage-table-body {
  min-width: fit-content;
}
.stage-table-body .stage-table-tr {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e8e9eb;
  padding: 10px 0;
  box-sizing: border-box;
  &:hover {
    background: #fafafa;
  }
}
@media (max-width: 767px) {
  .stage-table-body {
    width: fit-content;
  }
  .stage-table-body .stage-table-tr .cxd-Form-item::after {
    border-bottom: none !important;
  }
}
.stage-table-td {
  padding: 0 6px;
  box-sizing: border-box;
}
.stt1 {
  width: 40px;
  flex-shrink: 0;
  min-width: 40px;
}
.stt2 {
  width: 80px;
  position: relative;
  flex-shrink: 0;
  min-width: 80px;
}
@media (max-width: 767px) {
  .stt2 .cxd-Number {
    border: 1px solid #e8e9eb !important;
  }
}
.stt2 .cxd-Form-item {
  margin-bottom: 0 !important;
}
.stage-table-td-error .cxd-Number {
  border-color: var(--Form-feedBack-color) !important;
}
.stt2 .errors-prompt {
  color: var(--Form-feedBack-color);
  font-size: 12px;
  position: absolute;
  bottom: -24px;
}
.stt3 {
  width: 15%;
  position: relative;
  flex-shrink: 0;
  min-width: 120px;
}
@media (max-width: 767px) {
  .stt3 .cxd-Select {
    border: 1px solid #e8e9eb !important;
    padding: 0 6px !important;
    box-sizing: border-box;
    font-size: 14px !important;
  }
}
.stt4 {
  flex: 1;
  min-width: 240px;
}
@media (max-width: 767px) {
  .stt4 .cxd-Number {
    border: 1px solid #e8e9eb !important;
  }
}
.table-td-row {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.ad-type-select {
  width: 100%;
  flex: 1;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .ad-type-select {
    padding: 0 !important;
  }
}
.budget-group-select {
  width: fit-content;
  flex-shrink: 0;
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  margin-right: 4px !important;
}
.budget-group-select .cxd-Button {
  padding: 6px !important;
}
.budget-group-select .cxd-Button--primary {
  background-color: #fff;
}
.budget-group-select .cxd-ButtonGroup-button--active {
  color: var(--active) !important;
  background-color: #fffaf5 !important;
  &:hover {
    color: var(--active) !important;
    background-color: #fffaf5 !important;
  }
}
@media (max-width: 767px) {
  .budget-group-select {
    padding: 0 !important;
  }
}
.budget-input {
  flex: 1;
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.budget-input.is-error .cxd-Form-feedback {
  display: none !important;
}
@media (max-width: 767px) {
  .budget-input {
    padding: 0 !important;
  }
}
.budget-input .cxd-Form-label {
  width: fit-content !important;
  height: fit-content;
  margin: 0 10px;
  flex-shrink: 0 !important;
  font-size: 14px !important;
}
.budget-input .cxd-NumberControl {
  flex: 1;
}
.td-row-del {
  width: 30px !important;
  height: 30px !important;
  text-align: center !important;
  line-height: 30px !important;
  font-size: 30px !important;
  color: #d1d2d4 !important;
  transform: rotate(45deg) !important;
  cursor: pointer !important;
  &:hover {
    color: var(--active) !important;
  }
}
.add-button {
  color: #fff !important;
  width: fit-content !important;
  height: 28px !important;
  font-size: 13px !important;
  cursor: pointer !important;
  border-radius: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 1rem !important;
  padding: 0 var(--button-size-default-paddingRight) 0 var(--button-size-default-paddingLeft) !important;
  background: var(--active) !important;
  &:hover {
    background-color: var(--button-primary-hover-bg-color) !important;
  }
}
.add-button-placeholder {
  width: 28px !important;
  height: 28px !important;
  margin-top: 1rem !important;
  background: transparent !important;
  border: none !important;
  cursor: auto !important;
}
.plus {
  height: 26px;
  line-height: 24px;
  font-size: 20px;
  margin-right: 0.25rem;
  font-weight: 300;
}
.upgrade-condition {
  width: 25%;
  flex-shrink: 0;
  min-width: 180px;
  flex: 1;
}
.upgrade-condition > div {
  border-bottom: 1px solid #e8e9eb;
  margin-bottom: 4px;
}
.upgrade-condition > div:last-child {
  border: none;
  margin-bottom: 0;
}
.condition-label {
  font-size: 13px;
  font-weight: 600;
}
.stt6 {
  width: 15%;
  flex-shrink: 0;
  min-width: 100px;
}

/* 
    卡片组件 - card-component
*/
.card-component {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.cc-image {
  width: 67px;
  height: 67px;
  box-sizing: border-box;
  border: 1px solid #e8e9eb;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 6px;
  margin-right: 10px;
}
.card-component .cxd-ImageField {
  width: 100%;
  height: 100%;
  transform: none !important;
  display: flex;
  align-items: center;
}
.cc-image .cxd-Image {
  border: none;
  padding: 0;
  width: 100% !important;
  height: 100% !important;
}
.cc-image .cxd-Form-static {
  padding: 0 !important;
}
.cc-image .cxd-Image-thumb {
  width: 100% !important;
  height: 100% !important;
}
.cc-image .cxd-Form-static .cxd-Image-thumb {
  width: 100% !important;
  height: 100% !important;
}
.cc-image .cxd-Image-thumbWrap {
  width: 100% !important;
  height: 100% !important;
}
.cc-image .cxd-Image-image {
  object-fit: fill !important;
}
.cc-detail {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cc-title {
  display: flex;
  align-items: center;
  position: relative;
}
.title-text {
  font-weight: 600;
  font-size: 14px;
  position: relative;
  margin-right: 6px;
  &:hover .custom-tooltip {
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
  }
}
.title-label {
  color: #fff;
  font-size: 10px;
  display: flex;
  flex-shrink: 0;
  font-weight: 400;
}
.title-label span {
  display: flex;
  flex-shrink: 0;
}
.title-label div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tips-box {
  position: relative;
  &:hover .custom-tooltip {
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
  }
}
.custom-tip {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  background: var(--active);
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 4px;
  cursor: pointer;
}
.cc-subTitle {
  color: #979797;
  font-size: 12px;
  position: relative;
  &:hover .custom-tooltip {
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
  }
}
.cc-content-group {
  font-size: 12px;
}
.cc-content-group-item {
  display: flex;
  min-width: 80px;
  position: relative;
  &:hover .custom-tooltip {
    display: block;
    position: absolute;
    top: 20px;
    left: 0;
  }
}
.group-item-label {
  color: #000;
  position: relative;
  white-space: nowrap;
}
.group-item-value {
  color: #747474;
}
.group-item-copy {
  flex-shrink: 0;
  margin-left: 2px;
  cursor: pointer;
  &:hover {
    color: var(--active);
  }
}
.custom-tooltip {
  font-weight: 400;
  display: none;
  width: max-content;
  max-width: 330px;
  height: fit-content;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  opacity: 1;
  border: 1px solid #eeeeee;
  padding: 12px 19px;
  box-sizing: border-box;
  font-size: 12px;
  z-index: 99;
  word-break: break-all;
  color: #000;
}
.custom-tooltip span {
  color: #000 !important;
}
.custom-popOver {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: transparent;
}
.ellipsis-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.ellipsis-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.ellipsis-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.ellipsis-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.ellipsis-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

/* 
    提示组件 - card-component
*/
.tooltip-container {
  width: fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tooltip-container i {
  color: #fb6031;
  font-size: 14px;
}
.tc-floating-layer {
  position: absolute;
  display: none;
  width: fit-content;
  height: fit-content;
  gap: 4px;
}
.tc-floating-layer-item {
  width: max-content;
  height: fit-content;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  opacity: 1;
  border: 1px solid #eeeeee;
  padding: 12px 19px;
  box-sizing: border-box;
  font-size: 12px;
  z-index: 99;
  color: #000;
}

/* 
    条件组件 - media-condition
*/
.custom-media-condition {
  display: flex;
  align-items: center;
}

.cmc-condition-items {
  display: flex;
  width: 100%;
}

.cmc-condition-items-child {
  padding: 10px;
  padding-left: 0.625rem;
  &:hover {
    cursor: pointer;
    box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.16);
    border-radius: 8px;
    box-sizing: border-box;
    background: #fff;
    z-index: 1000;
    transition: all 0.2s ease;
  }
}

.cmc-toolbar-condition {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.625rem 0 0;
  flex-direction: column;
  position: relative;
}
.cmc-toolbar-condition::before {
  content: ' ';
  position: absolute;
  top: 0.3125rem;
  bottom: 0.3125rem;
  width: var(--conditionBuilder-line-width);
  background-color: var(--conditionBuilder-line-bg-color);
}

.cmc-toolbar-condition-btn {
  font-size: var(--conditionBuilder-toolbar-fontSize);
  height: var(--conditionBuilder-toolbar-height);
  width: var(--conditionBuilder-toolbar-width);
  background: var(--conditionBuilder-toolbar-bg-color);
  color: var(--conditionBuilder-toolbar-color);
  font-weight: var(--conditionBuilder-toolbar-fontWeight);
  padding: 0;
  min-height: var(--conditionBuilder-toolbar-height);
  border-radius: var(--Form-select-borderRadius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  &:hover {
    color: #fff;
    background: #ff7543;
  }
}

.cmc-toolbar-btn-popover {
  display: block;
  position: absolute;
  width: 28px;
  left: 0px;
  top: 28px;
  margin-top: 0.25rem;
  background: var(--Form-select-menu-bg);
  color: var(--Form-select-menu-color);
  border: var(--Form-select-outer-borderWidth) solid var(--Form-select-outer-borderColor);
  box-shadow: var(--Form-select-outer-boxShadow);
  min-width: 7.5rem;
  z-index: 99;
}

.cmc-toolbar-btn-popover div {
  height: 2rem;
  text-align: center;
  line-height: 2rem;
  font-weight: 500;
  font-size: 12px;
  &:hover {
    background: #f7f7f7;
    color: #000 !important;
  }
}

.cmc-popover-active {
  color: #ff7543 !important;
}

.cmc-CBGroup-body-wrapper {
  flex: 1;
  height: fit-content;
}

.cmc-CBGroup-body {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: all var(--animation-duration) ease-out;
  background: #f7f8fa;
  padding: 0.25rem 0.75rem 0.25rem 1.75rem;
  &:not(:first-child) {
    margin-top: 0.625rem;
  }
  &:hover .cmc-CBGroup-delete {
    display: block;
  }
}

.cmc-CBGroup-body .cxd-Form-item {
  margin-bottom: 0 !important;
}

.cmc-CBGroup-selection,
.cmc-CBGroup-operator,
.cmc-CBGroup-number {
  margin: 0.1875rem;
}

.cmc-wrapper-placeholder {
  width: 100%;
  height: 100%;
  color: var(--text--muted-color);
  position: relative;
  padding: var(--conditionBuilder-body-paddingTop) var(--conditionBuilder-body-paddingRight) var(--conditionBuilder-body-paddingBottom) 0.625rem;
  background: var(--conditionBuilder-body-bg-color);
}

.cmc-CBGroup-delete {
  display: none;
  transition: all 0.5s ease;
}

.cmc-wrapper-toolbar {
  display: flex;
  width: fit-content;
  flex-direction: row;
  padding-top: 0.5rem;
  font-size: 12px;
  color: #ff7543;
  cursor: pointer;
  &:hover {
    color: #e76b3e;
  }
}

.cmc-wrapper-toolbar-add,
.cmc-wrapper-toolbar-delete {
  display: flex;
  width: fit-content;
  flex-direction: row;
  padding-top: 0.5rem;
  font-size: 12px;
  color: #ff7543;
  cursor: pointer;
  &:hover {
    color: #e76b3e;
  }
}

.cmc-wrapper-toolbar-delete {
  margin-left: 1.5rem;
}

.cmc-description {
  display: block;
  word-break: break-word;
  color: var(--Form-description-color);
  font-weight: var(--Form-description-fontWeight);
  line-height: var(--Form-description-lineHeight);
  margin-top: var(--Form-description-gap);
  font-size: var(--Form-description-fontSize);
}
