#businessDataBox{
  position: fixed;
  width: calc(100% - 45px);
  height: calc(100% - 50px);
  right: 0;
  z-index: 999;
  background: #fff;
  padding: 10px;
  overflow-y: auto;
}
#businessDataBox .dataTitle{
  text-align: center;
  line-height: 25px;
  font-size: 30px;
  margin-bottom: 5px;
  font-weight: bold;
  position: relative;
}
#businessDataBox .subTitle{
  text-align: center;
  color: #aaa;
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
}
#businessDataBox .boxClose{
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
  cursor: pointer;
  font-size: 20px;
}
#businessDataBox .rowDom{
  margin-bottom: 5px;
  font-size: 18px;
}

#businessDataBox .secondRow span{
  margin-right: 15px;
}

#businessDataBox .thirdRow{
  display: flex;
  justify-content: space-between;
}

#businessDataBox .thirdRow .thirdItem{
  width: 24.5%;
  border: 2px solid #ccc;
  padding: 5px 10px;
  text-align: center;
}
#businessDataBox .thirdRow .thirdItem span{
  display: block;
  margin-bottom: 5px;
}

#businessDataBox .fourRow{
  display: flex;
  justify-content: space-between;
}

#businessDataBox .fourRow .fourItem{
  width: 12%;
  border: 2px solid #ccc;
  padding: 5px 10px;
  text-align: center;
}

#businessDataBox .fourRow .fourItem span{
  display: block;
  margin-bottom: 5px;
}

#businessDataBox .squareItem:hover{
  border-color: skyblue;
  cursor: pointer;
}
#businessDataBox .squareItem.active{
  background: skyblue;
}

#businessDataBox .line{
    width: 100%;
    height: 2px;
    margin: 30px 0 15px;
    background: darkblue;
}
#businessDataBox .objectBox{
  display: flex;
  flex-wrap: wrap;
}
#businessDataBox .objectBox .objectRow{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
#businessDataBox .objectBox .objectRow:nth-last-child(-n+1){
  margin-bottom: 0;
}
#businessDataBox .objectBox .objectItem{
  /* width: 12.5%;
  border: 2px solid #ccc;
  text-align: center;
  padding-bottom: 12.5%;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box; */
  border: 2px solid #aaa;
  width: 24.5%; /* 设置宽度为15% */
  /* margin-left: 0.666667; */
  padding-bottom: 11%; /* 高度等于宽度 */
  box-sizing: border-box; /* 确保 padding 不影响尺寸 */
  position: relative; /* 使内容绝对定位 */
  overflow: hidden; /* 防止内容溢出 */
}
#businessDataBox .objectBox .objectItem:hover{
  border-color: blue;
  cursor: pointer;
}
#businessDataBox .objectBox .unclick:hover{
  border-color: #aaa !important;
  cursor: auto !important;
}
#businessDataBox .objectBox .objectItem span{
  display: block;
  margin-bottom: 5px;
}
#businessDataBox .objectItem .itemText {
  width: 100%;
  position: absolute; /* 绝对定位 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 水平垂直居中 */
  text-align: center; /* 多行文本居中 */
  font-size: 28px;
  font-weight: bold;
}
/* #businessDataBox .objectBox .objectItem:nth-child(4n+1) {
  margin-left: 0;
}
#businessDataBox .objectBox .objectItem:nth-last-child(-n+4) {
  margin-bottom: 0;
} */
#businessDataBox .coverBox{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  background: #fff;
}

#businessDataBox .coverBox .coverTitle{
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
#businessDataBox .coverBox .coverBack{
  position: absolute;
  left: 5px;
  top: 5px;
  z-index: 3;
  font-size: 18px;
  cursor: pointer;
}
#businessDataBox .coverBox .coverBack:hover{
  color: orange;
}

#businessDataBox .coverBox .tableBox{
  width: calc(100% - 30px);
  margin: 0 auto;
}

#ExportDataBoardYqwys {
  position: absolute;
  top: 50px;
  right: 250px;
}

.businessTableBox .tableInput{
  width: 100%;
}

.businessContorl{
  text-align: center;
  padding: 3px 0;
}
.businessContorl button{
  width: 100px;
}
#businessTable td{
  padding: 2px;
}

#businessTable td label{
  word-break: break-all;
}

#businessTable tr:hover{
    background-color: #ddd;
}