.tabs-container {
  width: 100%;
  font-family: inherit;
}

/* 标签导航栏 */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 16px;

  display: none;
}

/* 单个标签 */
.tabs-tab {
  padding: 10px 20px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
  color: #6b7280;
}

.tabs-tab:hover {
  color: #374151;
}

/* 激活标签 */
.tabs-tab-active {
  border-bottom: 2px solid #165dff;
  color: #165dff;
  font-weight: 500;
}

/* 内容区域 */
.tabs-content {
  /* padding: 8px 0; */
}

/* 面板默认隐藏 */
.tabs-pane {
  display: none;
  /* animation: fadeIn 0.25s ease; */
}

/* 激活面板显示 */
.tabs-pane-active {
  display: block;
}

/* 淡入动画 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.backbtn-container{
    cursor: pointer;
}
.bill-head-info {
    display: flex;
    height: 100%;
    padding: 4px 0;
    box-sizing: border-box;
}

.bill-head-info-bd {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0 4px;
}

.bill-head-info-bd-row {
    display: flex;
    align-items: center;
}

.bill-head-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 100%;
}

.bill-head-info-title {
    margin-left: 8px;
    display: inline-block;
    height: 100%;
    line-height: 1;
}

.bill-head-info-tag {
    margin-left: 8px;
}

.arco-form-item-simple-inner{
    border: none;
}

.arco-form-item-simple-inner input:disabled {
  background-color: transparent;
  color: #333;
  cursor: default;
  opacity: 1;
  box-shadow: none;
  /* 去除浏览器默认的禁用态文本选择限制 */
  user-select: text;
}
.arco-form-item>.arco-form-label-item {
  width: 100px;
  text-align: left;
  /* border:1px solid orange; */
}



/* 修改picker样式 */
.arco-picker {
  padding: 0 !important;
  padding-right: 2px !important;
}

.arco-picker-input{
  padding-left: 8px;
  margin-right: -8px;
}
.arco-picker input{
  padding-left: 0 !important;
}

.arco-picker-suffix{
  margin-left: 0 !important;
}

.arco-picker-input input{
  /* padding-left: 8px !important; */
}


.form-item-grid-cust{
    padding-top: 8px;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
}
.float-search {
    /* position: absolute; */
    right: 0;
    z-index: 1;
}

.height-100{
    height: 100%;
}

.tabs-content{
    height: 100%;
}
.tabs-pane{
    height: 100%;
}
.container-browse-mode{
    height: 100%;
}
.ncc-flex-container{
    display: flex;
    flex-direction: column;
}

.list-header-container{
    flex: 1;
    padding: 4px;
    overflow-y: auto;
    background-color: #f3f4fb;
}
.search-container{
    width: 100%;
}

