.center-mark {
  width: 24px;
  height: 24px;
  background-image: url('./3dImg/rotatePoint.png');
  background-size: cover; /* 覆盖整个元素区域 */
  background-size: contain; /* 包含整个图像 */
  background-size: 24px 24px; /* 指定宽度和高度 */
}

.selectBox {
  border: 1px solid #41c958;
  background-color: #41c95820;
  position: fixed;
}

.-dragging {
  cursor: url('./3dImg/rotate.png'), auto;
}

.-moving {
  cursor: url('./3dImg/move.png'), auto;
}

.-zoomIn {
  cursor: url('./3dImg/zoom.png'), auto;
}

.-zoomOut {
  cursor: url('./3dImg/zoom.png'), auto;
}

/* 层级表 */
.layer {
  box-sizing: border-box;
  padding-left: 10px;
  color: #343a3f;
  cursor: default;
}

.row {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px 16px 6px 2px;
  /* position: relative; */
}

.toggle {
  width: 22px;
  height: 22px;
  img {
    width: 22px;
    height: 22px;
    padding: 3px;
  }
}

.layer-type {
  width: 16px;
  height: 16px;
  img {
    width: 16px;
    height: 16px;
  }
}

.tree-text {
  width: 145px;
  font-weight: 400;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.eye {
  margin-left: auto;
  img {
    width: 22px;
    height: 22px;
    padding: 3px;
  }
}

/* 构件模式 进度或质量 */
.compStatusBtn {
  text-wrap: nowrap;
  height: 22px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  padding: 1px 4px;
  border-radius: 4px;
}
.gray {
  background-color: #f2f4f8;
  color: #697077;
}
.red {
  background-color: #fff1f1;
  color: #da1e28;
}
.green {
  background-color: #defbe6;
  color: #24a148;
}
.blue {
  background-color: #e4f1fd;
  color: #4589ff;
}

/* bim面板 */
.infoItem {
  padding: 12px 0;
}

.infoTitle {
  padding: 0 12px;
  display: flex;
  gap: 2px;
  .info-toggle {
    img {
      width: 16px;
      height: 16px;
    }
  }
}
.infoContent {
  border-bottom: 1px solid #00000010;
  padding: 5px 0;
  margin: 0 16px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  width: calc(100% - 32px);
}
.infoKey {
  width: 120px;
  color: #a2a9b0;
}
.infoValue {
  width: calc(100% - 32px - 120px);
  color: #343a3f;
  overflow-wrap: anywhere;
}

.rtk {
  width: 197px;
  height: 38px;
  display: flex;
  gap: 4px;
  align-items: center;

  .delete-icon {
    width: 38px;
    height: 38px;
    background-color: #00193680;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
      width: 16px;
      height: 16px;
    }
  }
}
.input-with-icon {
  position: relative;
  width: 155px;
  height: 38px;
  /* border-left: 4px solid #66A6FF; */
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  font-weight: 500;
  color: #dde1e6;
  display: flex;
  justify-content: space-between;
  padding: 6px;
  background-color: #00193680;
  align-items: center;

  span {
    width: 52px;
    height: 22px;
    display: inline-block;
    line-height: 22px;
  }
  input {
    width: 72px;
    height: 26px;
    border: 1px solid #ffffff30;
    border-radius: 4px;
    padding: 4px 24px 4px 4px;
    background: transparent;
    color: #dde1e6;
  }

  input::placeholder {
    color: #dde1e6;
  }

  .icon {
    position: absolute;
    right: 12px;
  }
}
