/* 在样式中添加v-cloak属性 */
[v-cloak] {
  display: none;
}
.bold{
  font-weight: bold;
}
.display-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.text-ellipsis {
  white-space: nowrap; /* 保持文本在一行内显示 */
  overflow: hidden; /* 隐藏溢出的内容 */
  text-overflow: ellipsis; /* 使用省略号表示文本溢出 */
  width: 100%; /* 定义容器宽度 */
}
.no-data-box {
    text-align: center;
    height: 80vh;
    justify-content: center;
  }
  .no-data-tips-1 {
    font-weight: 600;
    font-size: 0.88rem;
    color: #111111;
    line-height: 0.88rem;
    margin-bottom: 0.63rem;
    margin-top: 1.25rem;
  }
  .no-data-tips-2 {
    font-size: 0.75rem;
    color: #808ca2;
    line-height: 0.75rem;
  }

  .van-action-bar-button--first {
    
    margin-right: 1.25rem;
    
    color: #111111 !important;
  }
  .van-action-bar-button--last {
    
  }
  .van-action-bar-button--first, .van-action-bar-button--last {
    font-weight: 400 !important;
    height: 2.25rem !important;
    border-radius: 0.625rem;
    font-size: 1rem !important;;
  }

  #app {
    min-height: 100%;
  }

  .loading-mask{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    background: #00000005;
    z-index: 9;
  }