/*!
 * Copyright (c) 2013-Now http://jeesite.com All rights reserved.
 * No deletion without permission, or be held responsible to law.
 * 项目自定义的公共CSS，可覆盖jeesite.css里的样式
 */

 :root {
  /* 强制改变所有 rem 的基准 */
  font-size: 14px; 
}

.v1-title{
  font-size:16px !important;
  font-weight:400 !important;
  color: #444 !important;
  --bs-card-title-color: #444;
}

.v1-title .fa {
    color: #1e5edb;
    font-size:14px;
}

.v1-border-color{
  border-color:#eeeeee !important;
}

dialog{
 overflow: visible !important; /* 替换默认的 auto/hidden */
      position: fixed; /* 强制固定定位，避免坐标偏移 */
      z-index: 1000; /* 基础层级，确保 dialog 不被遮挡 */
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px); /* 瞬间拉满高级感 */
}
.confirm{
  min-width: 400px;
}      

label[required]::after {
      content: "*";
      color: #f00;
      margin-left: 4px;
      font-weight: bold;
}