/* 全局样式 */
html,body{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
#app{
  position: relative;
 }
 
.mask {
  position: fixed;
  top: 44px; /* 设置为 header 的高度 */
  left: 0;
  width: 100%;
  height: calc(100% - 44px); /* 减去 header 的高度 */
  background-color: #ccc;
  opacity: 0.7;
}

header{
  width: 100%;
  height: 44px;
  background-color: #fff;
  padding: 15px 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  position: sticky;
  top:0;
  z-index:999;
}


/* 导航栏样式 */
.navbar {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto;
}

.logo img {
  height: 30px;
}

.nav-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
}

.nav-links li {
  margin-right: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  text-align: center;
}

.nav-links li a:hover {
  color: #333;
}

.search img{
  width: 16px;
}

.search-input {
  display: none;
}
.search-input input{
  width: 440px;
  outline: none;
  border: 0px;
}

/* 内容区域 */
.mainBox{
  width: 100%;
  height: auto;
  min-height: calc(100vh - 44px);
  /* background-color: pink; */
  background-color: #f5f5f7;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.cont{
  margin: auto;
  width: 98%;
  padding: 10px;
  box-sizing: border-box;
  /* height: 100%; */
  flex: 1;
  margin-top: 20px;
}
.cont .contTitle{
  font-weight: 600;
}
.cont .smallTitle{
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  margin-top: 14px;
  position: relative;
  padding-left: 6px;
  box-sizing: border-box;
}
.cont .smallTitle::after{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 16px;
  background-color: #1D1D20;
  border-radius: 1px;
}

.cont .typeRodio{
  margin-top: 16px;
  padding-left: 20px;
  box-sizing: border-box;
}


/* 隐藏原生的单选框 */
.typeRodio input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* 自定义单选框的外观 - 未选中状态 */
.typeRodio label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #1D1D20;
  margin-right: 8px;
  vertical-align: middle;
  box-sizing: border-box;
  border-radius: 4px;
}

/* 鼠标悬停时的样式 */
.typeRodio input[type="radio"]:hover + label::before {
  border-color: #1D1D20;
}

/* 选中时的样式 */
.typeRodio input[type="radio"]:checked + label::before {
  background-color: #1D1D20;
  border-color: #1D1D20;
}

/* 为 label 添加一些样式 */
.typeRodio label {
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  display: inline-flex; /* 行内 flex 布局 */
  align-items: center;
  margin-right: 50px;
}


.title2{
  margin: 0;
  padding: 0;
  margin-top: 16px;
  position: relative;
  padding-left: 6px;
  box-sizing: border-box;
}
.title2::after{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 16px;
  background-color: #1D1D20;
  border-radius: 1px;
}
.title2>span:nth-child(1){
  margin-top: 14px;
  font-weight: 700;
}
.title2>span:nth-child(2){
  font-size: 12px;
  color: #8E8E93;
}


.content{
  width: 100%;
  min-height: 320px;
  max-height: 420px;
  background-color: #fff;
  margin-top: 16px;
  font-size: 0;
}
.content .filesList{
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  overflow-x: scroll;
  overflow-y: hidden; /* 隐藏垂直滚动条 */
  padding-bottom: 4px;
  padding-top: 8px;
}
/* 滚动条整体样式 */
.content .filesList::-webkit-scrollbar {
  height: 4px; /* 水平滚动条高度 */
}

/* 滚动条轨道 */
.content .filesList::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* 轨道背景颜色 */
  border-radius: 4px; /* 轨道圆角 */
}

/* 滚动条滑块 */
.content .filesList::-webkit-scrollbar-thumb {
  background-color: #888; /* 滑块背景颜色 */
  border-radius: 4px; /* 滑块圆角 */
}

/* 滑块悬停状态 */
.content .filesList::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* 悬停时滑块背景颜色 */
}

/* Firefox 滚动条样式（Firefox 64+ 支持） */
.content .filesList {
  scrollbar-width: thin; /* 滚动条宽度，可取值 'auto'、'thin'、'none' */
  scrollbar-color: #c9c9c9 #fff; /* 第一个值是滑块颜色，第二个值是轨道颜色 */
}
.filesList .upfiles{
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.upfiles .filesevery{
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0px 5px;
  box-sizing: border-box;
}
.upfiles .filesevery .one{
 display: flex;
 align-items: center;
 margin: 0;
 height: 100%;
 padding: 0px 12px;
 border-radius: 4px;
 box-sizing: border-box;
 background-color: #F5F5F7;
 position: relative;
}

.upfiles .filesevery .one>img:nth-child(1){
  width: 20px;
}
.upfiles .filesevery .one .delicon{
  width: 12px;
  position: absolute;
  right: 0;
  top: 0;
}
.upfiles .filesevery .one .delicon:hover{
  cursor: pointer;
}
.upfiles .filesevery .one .bottomtop span{
  margin-left: 10px;
  font-size: 12px;
  color: #8E8E93;
  display: inline-block;
  width: 100%;
  margin-right: 10px;
}
.upfiles .filesevery .one .bottomtop{
  display: flex;
  align-items: center;
  margin: 0;
  flex-wrap: wrap;
  flex-grow: 1;
}

.upfiles .filesevery .two{
  margin: 0;
  display: flex;
  align-items: center;
  height: 100%;
  border: 1px solid #8E8E93;
  position: relative;
}
.upfiles .filesevery .two .twoimg{
  height: 50px;
  object-fit: contain;
}
.upfiles .filesevery .two .delicon{
  width: 12px;
  position: absolute;
  right: 0;
  top: 0;
}

.content textarea{
  width: 100%;
  height: calc(420px - 125px);
  border: none;
  resize: none;
  outline: none;
  text-indent: 2em;
  font-size: 14px;
  padding: 10px;
  box-sizing: border-box;
  line-height: 28px;
}
.content .upload_box{
  width: 100%;
  height: calc(420px - 125px);
}
.content .btnBox{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  box-sizing: border-box;
}
.btnBox>span{
  display: inline-block;
 font-size: 12px;
 padding: 4px 10px;
 border: 1px solid #1D1D20;
 border-radius: 4px;
 color: #1D1D20;
}
.btnBox>span:hover{
  cursor: pointer;
}


.descBox{
  /* position: absolute; */
  /* bottom: 100px; */
  margin-top: 20px;
}

.descBox>p{
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: #8E8E93;
  line-height: 20px;
}
.desctitle{
  font-size: 14px;
  padding: 4px; 
  box-sizing: border-box;
  font-size: larger;
}




.uploadBox .upbox{
  width: 99%;
  height: 100%;
  border: 1px dashed #1D1D20;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.el-dialog__body{
  padding: 10px 20px;
}
.el-dialog__footer{
  padding: 0px 20px 20px 20px;
}

/* 隐藏原生的单选框 */
/* .radiobox input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
} */

/* 自定义单选框的外观 - 未选中状态 */
/* .radiobox label::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid #1D1D20;
  margin-right: 8px;
  vertical-align: middle;
  box-sizing: border-box;
  border-radius: 4px;
} */

/* 鼠标悬停时的样式 */
/* .radiobox input[type="radio"]:hover + label::before {
  border-color: #1D1D20;
} */

/* 选中时的样式 */
/* .radiobox input[type="radio"]:checked + label::before {
  background-color: #1D1D20;
  border-color: #1D1D20;
} */

/* 为 label 添加一些样式 */
/* .radiobox label {
  cursor: pointer;
  font-size: 12px;
  color: #8E8E93;
  user-select: none;
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
} */

.uploadbtn>span{
  font-size: 12px;
  color: #fff;
  padding: 4px 10px;
  background-color: #1D1D20;
  border-radius: 4px;
  margin-left: 10px
}
.uploadbtn>span:hover{
  cursor: pointer;
}


.icondesc{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.icondesc>img{
  width: 50px;
}
.icondesc .updesc{
  margin: 0;
  width: 100%;
  text-align: center;
  margin-top: 16px;
}
.icondesc .updesc>span:nth-child(1){
  font-size: 14px;
  color: #1D1D20;
  font-weight: 600;
}
.icondesc .updesc>span:nth-child(2){
  font-size: 12px;
  color: #8E8E93;
}

/* .showFile{
  min-height: 0px;
  max-height: 100px;
  margin-top: 10px;
  overflow-y: scroll;
}
.showFile {
  min-height: 0px;
  max-height: 100px;
  margin-top: 10px;
  overflow-y: scroll;
} */


/* .showFile::-webkit-scrollbar {
  width: 8px; 
}

.showFile::-webkit-scrollbar-track {
  background-color: #f1f1f1; 
  border-radius: 4px; 
}

.showFile::-webkit-scrollbar-thumb {
  background-color: #888; 
  border-radius: 4px; 
}

.showFile::-webkit-scrollbar-thumb:hover {
  background-color: #555; 
}


.showFile {
  scrollbar-width: thin; 
  scrollbar-color: #888 #f1f1f1; 
}


.showFile {
  -ms-overflow-style: -ms-autohiding-scrollbar; 
}
.everyFile{
  width: 100%;
  padding: 5px 0px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background-color: #F5F5F7;
  border-radius: 4px;
  margin-top: 5px;
}
.oneimg{
 width: 40px;
 height: auto;
 margin-left: 10px;
}
.everyFile .one{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.everyFile>.one>p{
 margin: 0;
 display: flex;
 align-items: center;
}
.everyFile>.one>p>img:nth-child(1){
 width: 20px;
 margin-left: 10px;
}
.everyFile>.one>p>span{
  font-size: 12px;
  color: #8E8E93;
  padding: 0px 10px;
  box-sizing: border-box;
}
.everyFile>.one .del{
  width: 16px;
  margin-right: 10px;
  float: right;
 }
 .everyFile>.one .del:hover{
  cursor: pointer;
 } */



 .DBSZ{
  width: 100%;
  height: 100%;
  flex: 1;
 }
 .stepBox{
  width: 100%;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
 }
 .step-bar{
  width: 160px;
  min-height: calc(100vh - 44px);
  background-color: #fff;
 }

 .stepTitle{
  display: flex;
  justify-content: center;
  margin-top: 10px;
 }
.stepTitle>span{
  display: inline-block;
  padding: 5px 14px;
  background-color: #000;
  color: #fff;
  font-size: 18px;
}
.stepEvery{
  margin-top: 20px;
}
.step{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0px;
  box-sizing: border-box;
}
.step:hover{
  cursor: pointer;
}
.stepEvery .active{
  background-color: #f5f5f7;
}
.stepEvery .step>p{
  margin: 0;
  font-size: 16px;
  color: #1D1D20;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  padding: 4px 0px;
  font-weight: 700;
}
.stepEvery .step>span{
  font-size: 14px;
  text-align: center;
  display: inline-block;
  padding: 4px 0px;
  box-sizing: border-box;
}

.step-content{
  width: calc(100% - 160px);
  /* height: 100%; */
  min-height: calc(100vh - 44px);
  box-sizing: border-box;
}
.step-content .big_title{
  font-size: 18px;
  font-weight: 700;
  padding: 10px 20px;
  box-sizing: border-box;
}
.stepbox{
  width: 100%;
  /* height: calc(100% - 104px); */
  padding: 20px;
  box-sizing: border-box;
}
.stepbox .step_title{
  font-size: 16px;
  color: #1D1D20;
  font-weight: 700;
  position: relative;
  padding-left: 6px;
  box-sizing: border-box;
}
.stepbox .step_title::after{
  position: absolute;
  content: '';
  width: 3px;
  height: 16px;
  background-color: #1D1D20;
  border-radius: 1.5px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.stepbox .step_title>span{
  font-size: 12px;
  color: #8E8E93;
  font-weight: 400;
  margin-left: 6px;
}
.stepbox .neirong_cont {
  width: 100%;
  height: 600px;
  margin-top: 10px;
  /* background-color: #fff; */
  overflow-y: auto;
}

/* 滚动条整体样式 */
.neirong_cont::-webkit-scrollbar {
  width: 8px; /* 滚动条宽度 */
}

/* 滚动条轨道样式 */
.neirong_cont::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* 轨道背景颜色 */
  border-radius: 10px; /* 轨道圆角 */
}

/* 滚动条滑块样式 */
.neirong_cont::-webkit-scrollbar-thumb {
  background-color: #c9c9c9; /* 滑块背景颜色 */
  border-radius: 10px; /* 滑块圆角 */
}

/* 鼠标悬停在滑块上时的样式 */
.neirong_cont::-webkit-scrollbar-thumb:hover {
  background-color: #D8D8D8; /* 鼠标悬停时滑块背景颜色 */
}
.neirong_cont .small_title{
  font-size: 14px;
  color: #1D1D20;
  padding-left: 6px;
  box-sizing: border-box;
  position: relative;
}
.neirong_cont .small_title::after{
  position: absolute;
  content: '';
  width: 3px;
  height: 16px;
  background-color: #555;
  border-radius: 1.5px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.neirong_cont .info{
  width: 100%;
  height: 260px;
  background-color: #fff;
  margin-bottom: 10px;
}

.neirong_cont .info textarea{
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  padding: 10px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 28px;
  text-indent: 2em;
}
.neirong_cont3 .info textarea{
  width: 100%;
  height: 92%;
  border: none;
  outline: none;
  resize: none;
  padding: 10px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 28px;
  text-indent: 2em;
}
.neirong_cont3 .add_btn_box{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
  box-sizing: border-box;
  margin-top: 4px;
}
.neirong_cont3 .add_btn_box>span{
  font-size: 12px;
  color: #8E8E93;
  font-weight: 400;
  display: inline-block;
  padding: 4px 10px;
  box-sizing: border-box;
  border: 1px solid #1D1D20;
  border-radius: 4px;
}
.neirong_cont3 .add_btn_box>span:hover{
  cursor: pointer;
}


.neirong_cont .info1{
  height: 140px;
}
.neirong_cont .info1 textarea{
  width: 100%;
  height: 75%;
}
.neirong_cont .info2{
  height: 120px;
}
.neirong_cont .info2 textarea{
  width: 100%;
  height: 100%;
}
.neirong_cont .info3{
  height: 590px;
}
.neirong_cont .info3 textarea{
  width: 100%;
  height: 100%;
}
.neirong_cont3 .info4{
  height: 590px;
}
.neirong_cont3 .info4 textarea{
  width: 100%;
}
.bottom_btn{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
  box-sizing: border-box;
  margin-top: 10px;
  width: 100%;
}
.bottom_btn>span{
  font-size: 12px;
  color: #fff;
  background-color: #1D1D20;
  border-radius: 4px;
  font-weight: 400;
  display: inline-block;
  padding: 4px 12px;
  box-sizing: border-box;
}
.bottom_btn>span:hover{
  cursor: pointer;
}

 .descInfo{
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
 }
.descInfo>p{
  font-size: 12px;
  color: #8E8E93;
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 20px;
}
.desctitle{
  font-size: 14px!important;
  font-weight: 700!important;
}

.step-content2{
  width: 100%;
  height: calc(100vh - 50px);
  padding: 20px;
  box-sizing: border-box;
  background-color: #F5F5F7;
}
.stepbox2{
  width: 100%;
  /* height: calc(100% - 44px); */
  height: 100%;
  background-color: #fff;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.leftcont{
  width: 59%;
}
.leftcont>span{
  display: inline-block;
  padding: 4px 18px;
  background-color: #1D1D20;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.leftcont>p{
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #1D1D20;
  height: 20px;
  line-height: 20px;
}
.contleft{
  width:59%;
  height: calc(100vh - 184px);
  box-sizing: border-box;
  border-right: 1px solid #F5F5F7;
}
.contright{
  width: 40%;
  height: calc(100vh - 184px);
  box-sizing: border-box;
  padding-right: 10px;
}
.contleft .contone{
  width: 98%;
  height: calc(100vh - 190px);
  background-color: #f5f5f7;
  margin: auto;
  border-radius: 10px;
  overflow-y: auto;
  padding: 10px;
  box-sizing: border-box;
}
.contright .right_title{
  border-bottom: 1px solid #D8D8D8;;
}
.contright .right_top{
 height: 50%;
 width: 100%;
 background-color: #f5f5f7;
 border-radius: 10px;
 margin-top: 10px;
}

.cont_footer{
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px;
  box-sizing: border-box;
}
.shangyibu span{
  font-size: 12px;
  color: #1D1D20;
  font-weight: 400;
  display: inline-block;
  padding: 4px 10px;
  box-sizing: border-box;
  border: 1px solid #1D1D20;
  border-radius: 4px;
}
.shangyibu span:hover{
  cursor: pointer;
}
.chongxin span{
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  display: inline-block;
  padding: 4px 10px;
  box-sizing: border-box;
  border: 1px solid #1D1D20;
  background-color: #1D1D20;
  border-radius: 4px;
}
.chongxin span:hover{
  cursor: pointer;
}