ul li{
    list-style: none;
}

@font-face {
    font-family: 'MyCustomFontBold';
    /* src: url('/templates/assets/fonts/SourceHanSansCN-Regular.otf') format('opentype'); */
    src: url('../fonts/SourceHanSansCN-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MyCustomFontRegular';
    src: url('../fonts/SourceHanSansCN-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

#cdp .swiper-pagination {
    /* 设置分页点的样式 */
    display: flex;
    gap: 0.5rem; /* Tailwind的spacing为2 */
}

#cdp .swiper-pagination-bullet {
    width: 42px; /* 自定义宽度 */
    height: 6px; /* 自定义高度 */
    /* background: white; */
    /* border-radius: 50%; 圆形 */
    /* opacity: 0.5; 默认透明度 */
    background: rgba(47,94,172,0.5);
    border-radius: 0;
}

#cdp .swiper-pagination-bullet-active {
    opacity: 1; /* 激活状态的透明度 */
    background: #2f5eac;
}

  /* 我们的客户 */

  #ourCostomers .swiper-pagination-bullet.swiper-pagination-bullet-active {
    /* opacity: 1; */
    background-color: #0043B0!important;
  } 
  
  #ourCostomers .swiper-pagination-bullet {
    width:0;
    height:0;
    /* width: 42px;
    height: 6px;
    background: rgba(47, 94, 172, 0.5);
    border-radius: 0;
    position: relative; 让伪类相对于分页按钮定位 */
}

/* 基础样式：矩形按钮 */
#ourCostomers .swiper-pagination-bullet {
  width: 70px;
  height: 12px;
  background-color: #A7C1EC;
  position: relative;
  border-radius: 0;
  margin: 0 4px; /* 分隔按钮 */
}

/* 第一个按钮：左上角缺角 */
#ourCostomers .swiper-pagination-bullet:first-child {
  background-color: #A7C1EC;
}

#ourCostomers .swiper-pagination-bullet:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  left: 83%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 13px 13px ; /* 控制三角形的大小 */
  border-color:  transparent transparent white transparent; /* 左上角的直角三角形 */
  /* 不要使用 transform */
}


/* 最后一个按钮：右下角缺角 */
#ourCostomers .swiper-pagination-bullet:last-child {
  background-color: #A7C1EC;
}

#ourCostomers .swiper-pagination-bullet:last-child::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 13px 0 0; /* 控制三角形的大小 */
  border-color: white transparent transparent transparent; 
}

/* 中间按钮：标准矩形 */
#ourCostomers .swiper-pagination-bullet:not(:first-child):not(:last-child) {
  background-color: #A7C1EC;
}

/* md */
/* 最小屏幕 */

@media (min-width: 375px) and (max-width: 639px) {
  #cdp .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 88%;
  }
  /* 基础样式：矩形按钮 */
  #ourCostomers .swiper-pagination-bullet {
    width: 40px;
    height: 8px;
    background-color: #A7C1EC;
    position: relative;
    border-radius: 0;
    margin: 0 4px; /* 分隔按钮 */
  }

  #ourCostomers .swiper-pagination-bullet:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: 83%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 9px 9px ; /* 控制三角形的大小 */
    border-color:  transparent transparent white transparent; /* 左上角的直角三角形 */
    /* 不要使用 transform */
  }



  #ourCostomers .swiper-pagination-bullet:last-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 9px 0 0; /* 控制三角形的大小 */
    border-color:  white transparent transparent transparent; 
  }
}

/* 小屏幕（sm） */
@media (min-width: 640px) and (max-width: 767px) {
  #cdp .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 90%;
  }
  #ourCostomers .swiper-pagination-bullet {
    width: 40px;
    height: 8px;
    background-color: #A7C1EC;
    position: relative;
    border-radius: 0;
    margin: 0 4px; /* 分隔按钮 */
  }

  #ourCostomers .swiper-pagination-bullet:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: 83%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 9px 9px ; /* 控制三角形的大小 */
    border-color:  transparent transparent white transparent; /* 左上角的直角三角形 */
    /* 不要使用 transform */
  }



  #ourCostomers .swiper-pagination-bullet:last-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 9px 0 0; /* 控制三角形的大小 */
    border-color: white transparent transparent transparent; 
  }
}

/* 中屏幕（md） */
@media (min-width: 768px) and (max-width: 1023px) {
  #cdp .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 88%;
  }
}

/* 大屏幕（lg） */
 @media (min-width: 1024px) {
  #cdp .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    top: 90%;
  }
  /* 基础样式：矩形按钮 */
#ourCostomers .swiper-pagination-bullet {
  width: 70px;
  height: 12px;
  background-color: #A7C1EC;
  position: relative;
  border-radius: 0;
  margin: 0 4px; /* 分隔按钮 */
}


#ourCostomers .swiper-pagination-bullet:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  left: 83%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 13px 13px ; /* 控制三角形的大小 */
  border-color:  transparent transparent white transparent; /* 左上角的直角三角形 */
  /* 不要使用 transform */
}


#ourCostomers .swiper-pagination-bullet:last-child::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 13px 0 0; /* 控制三角形的大小 */
  border-color: white transparent transparent transparent; 
}

  
} 
#cdp .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  width: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);


}

.nav-item.active {
  color: #1D24AF;
  position: relative;
}
.nav-item.active::before {
  content: '';               /* 必须有 content 属性才能显示伪元素 */
  position: absolute;        /* 绝对定位 */
  left: 0;                   /* 竖线在左侧 */
  top: 50%;                  /* 竖线在菜单项的垂直中间 */
  transform: translateY(-50%); /* 确保竖线居中 */
  width: 3px;                /* 竖线宽度 */
  height: 24px;              /* 竖线高度 */
  background: #1D24AF;       /* 竖线颜色 */
}

.zBorder{
  border: 3px solid #3C6DF0!important;
}

.custom-padding-big {
  padding-left: calc((100% - 1600px) / 2);
  padding-right: calc((100% - 1600px) / 2);
}


table {
  /* border-collapse: separate;  */
  border-collapse: collapse;
  border-spacing: 20px 10px;    /* 添加行间距 */
  margin-top: 20px;
  width: 100%;
}
thead {
  background-color: #F0F6FB;
}

th,td {
  padding: 10px;
}
.el-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* 半透明遮罩层 */
  z-index: 1000; /* 确保在最上层 */
}


/* 弹窗样式 */
.el-dialog {
  background: #fff;
  width: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 实现上下左右居中 */
  z-index: 1001; /* 确保弹窗在遮罩层之上 */
}

.el-dialog__header {
  padding: 16px;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}

.el-dialog__body {
  padding: 16px;
}

.el-dialog__footer {
  padding: 16px;
  text-align: right;
  border-top: 1px solid #ddd;
}

.el-button {
  padding: 8px 0;
  width: 100px;
  text-align: center;
  
  margin-left: 8px;
  cursor: pointer;
  border-radius: 5px;

}
.el-button:first-child{
  border:1px solid #999;
  color: black;
}
.el-button:last-child{
  border:1px solid #3C6DF0;
  background: #3C6DF0;
  color:white;
}

.el-button--danger {
  color: #fff;
  background-color: #f56c6c;
  border: none;
}

.el-button--primary {
  color: #fff;
  background-color: #409eff;
  border: none;
}

.input-with-border {
  border: 1px solid #ccc; /* 设置边框颜色为浅灰色 */
  padding: 5px 10px; /* 内边距使输入框内容不靠边 */
  width: 65%; /* 设置输入框宽度为100%，以适应容器 */
  box-sizing: border-box; /* 使padding不影响输入框的总宽度 */
  text-align: left; 
  font-size: 14px; /* 可以设置字体大小 */
  border-radius: 5px
}

.input-with-border:focus {
  border-color: #409EFF; /* 聚焦时改变边框颜色 */
  outline: none; /* 移除默认的聚焦轮廓 */
}
/* 公司 远程搜索 */
#myCompany {
  width: 65%;
}

.label-fixed-width {
  flex: 0 1 120px; /* 设置label的宽度为100px，且不允许伸展 */
  padding-right: 10px; /* 为label右边添加一些空隙 */
  font-size: 14px; /* 可选，设置字体大小 */
  text-align: right; /* 如果需要可以设置文本右对齐 */
}

.error-border {
  border: 1px solid red;
}
#confirmModal{
  position: fixed;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index:1003;
  width: 100%;
  height: 100%;
}
#confirmModal .confirmContainer{
  width: 400px;
}
td, th {
  white-space: nowrap;
}
.empty-row td {
  padding-top: 100px; /* 设置与表头的间距 */
}
#wechat{
  position: fixed;
    display: flex;
    width: 150px;
    height: 206px;
    bottom: 12vh;
    left: 20px;
    margin: auto;
    align-items: center;
    border: 3px solid transparent;
    background-image: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)), linear-gradient(321.64deg, rgb(93, 237, 228) 17.3%, rgb(28, 159, 255) 60.35%);
    border-radius: 20px;
    background-origin: border-box;
    background-clip: content-box, border-box;
    flex-direction: column;
    font-size: 16px;
    font-weight: 600;
    box-shadow: rgb(28 159 255 / 10%) 0px 0px 15px;
    z-index: 1000000000;
    overflow: hidden;
}
#editInfo{
  cursor: pointer;
}
.rlave{
  position: relative;
}
.rlave .select2-selection__arrow{
 display:none;
}
.special .select2-container{
  width: 65%!important;
  
}
.select2-container{
  font-size: 14px!important;
}
.select2-results__options{
  font-size: 14px!important;
}
.select2-container--default .select2-results__option--highlighted{
  background: #fff!important;
  color: #000!important;
}
/* .select2-container--default .select2-results__option--highlighted>div{
  color: #000!important;
}
.select2-container--default .select2-results__option--highlighted ul{
  color: #888!important;
  padding: 5px!important;
} */
#searchResults{
  position: absolute;
    left: 21%;
    top: 102%;
    height: 200px;
    overflow-y: scroll;
    background: #fff;
    width: 374px;
    padding-left: 11px;
}
#searchResults li{
  color: #999;
  font-size: 15px;
  padding-bottom: 2px;
}
#searchResults li:first-child{
  padding-top: 5px;
}


/* //滚动条 */
/* 针对 Webkit 浏览器（Chrome, Safari, Edge 等） */
::-webkit-scrollbar {
  width: 8px; /* 滚动条的宽度 */
  height: 8px; /* 水平滚动条的高度 */
}

::-webkit-scrollbar-thumb {
  background-color: #888; /* 滚动条的颜色 */
  border-radius: 10px; /* 滚动条的圆角 */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* 鼠标悬停时滚动条颜色 */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* 滚动条背景色 */
  border-radius: 10px; /* 滚动条背景的圆角 */
}

::-webkit-scrollbar-track:hover {
  background: #ddd; /* 鼠标悬停时滚动条背景颜色 */
}


/* 树形结构项样式调整 */
.nested-item {
  padding-left: 15px;  /* 设置嵌套项的缩进 */
}

/* 控制下拉框的最大高度，避免撑满屏幕 */
.hangye .select2-dropdown {
  max-height: 300px;
  overflow-y: auto;
}

/* 用于调整 jsTree 树的样式 */
.hangye .select2-dropdown-tree {
  max-height: 200px;  /* 控制树形结构的高度 */
  overflow-y: auto;
  width: 100%;
  background-color: white; /* 确保背景色不会干扰到 select2 样式 */
  border: 1px solid #ccc; /* 树的边框样式 */
  border-radius: 4px; /* 树的圆角样式 */
}


/* 自定义下拉树形样式 */
/* 树形结构样式 */
.tree-container {
  position: relative;
  font-family: Arial, sans-serif;
  
}
/* .tree-container input{
  width: 369px;
} */
#treeInput{
  border: 1px solid #aaa;
  font-size: 14px;
  padding: 3px;
  width: 368px;
  border-radius: 4px;

}
#treeInput:focus {
  outline: none;  /* 去掉默认的焦点外边框 */
  border: 1px solid #aaa;
  box-shadow: none; /* 去掉焦点时的阴影效果 */
}
.tree-dropdown input:focus{
  outline: none;  /* 去掉默认的焦点外边框 */
  border: 1px solid #aaa;
  box-shadow: none; /* 去掉焦点时的阴影效果 */
}



/* 使用伪元素添加向下箭头 */
#treeInput::after {
  content: '\2193';   /* Unicode 向下箭头字符 */
  position: absolute;
  right: 10px;         /* 右侧距离 */
  top: 50%;            /* 垂直居中 */
  transform: translateY(-50%);  /* 垂直居中 */
  font-size: 14px;     /* 箭头大小 */
  color: #888;         /* 箭头颜色 */
  pointer-events: none; /* 禁止点击 */
}

/* 树形列表的基本样式 */
.tree-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

/* 单个节点项的样式 */
.tree-item {
  padding: 5px 10px 5px 20px;
  cursor: pointer;
  font-size: 14px;
  color:rgba(0,0,0,.65);
  position: relative;
}
/* #treeList>.tree-item {
  padding: 5px 10px 5px 22px;
} */
/* 树形箭头的初始样式，朝下 */
.tree-arrow {
  border-color: #888 transparent transparent transparent; /* 向下的箭头 */
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 9px;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 14px;
  width: 0;
  transition: transform 0.3s ease;  /* 动画效果 */
}

/* 当点击后，箭头旋转成向右 */
.tree-arrow.expanded {
  transform: rotate(-90deg);
  left: 9px;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 16px;
}



.tree-item:hover {
  background-color: #f0f0f0;
}

/* 树形子节点的缩进 */
.tree-item .tree-children {
  display: none;
  padding-left: 20px;
}

/* 展开/折叠图标 */
.tree-item .toggle-icon {
  /* margin-right: 10px; */
  cursor: pointer;
}

/* 被选中的项的样式 */
.selected {
  background-color: #cce5ff;
}
.arrow{
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  right: 10px;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.clear-btn{
  width: 16px;
  height: 16px;
  right: 10px;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
}
/* 修改输入框默认文字样式 */
input::-webkit-input-placeholder {
  padding-left: 5px;
  font-size: 12px;
  color: #aaa;
}

input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  padding-left: 5px;
  font-size: 12px;
  color: #aaa;
}

input:-ms-input-placeholder {
   /* Internet Explorer 10+ */
   padding-left: 5px;
   font-size: 12px;
   color: #aaa;
}

/* 多选 */
/* 取消原生的checkbox样式 */
.custom-checkbox{
  margin-right: 10px;
}



.checkbox {
  display: none;
}

.checkbox-box {
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-right: 10px;
  transition: all 0.3s ease;
}
/* 选中状态的复选框 */
.checkbox:checked + .checkbox-box {
  background-color: #3C6DF0; /* 背景色变蓝色 */
  border-color: #3C6DF0; /* 边框颜色变为蓝色 */
}

.checkbox:checked + .checkbox-box::after {
  content: '\2713'; /* Unicode字符代表勾号 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white; /* 勾选的对钩为白色 */
  font-size: 14px;
}

.custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-label {
  font-size: 14px;
}

/* 个人信息表单错误 */
/* 隐藏错误提示信息，只有在有错误时才显示 */
.error-message {
  display: none;
  color: red;
  font-size: 12px;
  margin-left: 120px;
}

/* 错误状态时，边框变为红色 */
.input-with-border.error {
  border-color: red;
}

/* 树形选择框的错误样式 */
.tree-container.error input {
  border-color: red;
}

.tree-dropdown.error {
  border: 1px solid red;
}


/* 覆盖浏览器自动填充的样式 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: white !important;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* 普通浏览器的支持 */
input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
    -webkit-text-fill-color: white !important;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
}








  