/**一个简单文本DIV面板**/
.marsBlackPanel {
  min-width: 90px;
  min-height: 35px;
  position: absolute;
  left: 16px;
  bottom: 31px;
  cursor: default;
  opacity: 0.96;
  box-sizing: border-box;
}

.marsBlackPanel::before {
  content: "";
  width: calc(100% + 22px);
  height: 39px;
  position: absolute;
  bottom: -39px;
  left: -22px;
  background: url("/img/icon/popupLbl.png") 0px 0px no-repeat;
  background-position: 0px 0px;
  background-size: cover;
}

.marsBlackPanel-text {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 1px 20px;
  font-size: 23px;
  font-family: "MicrosoftYaHei";
  font-weight: 100;
  color: yellow;
  line-height: 33px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
}

.mars3d-camera-content {
  /* 防止下面的line一直随img动画 */
  height: 30px;
}
.mars3d-camera-img {
  width: 30px;
  height: 30px;
  animation: cameraMove 1s linear infinite alternate;
  -webkit-animation: cameraMove 1s linear infinite alternate;
}
@keyframes cameraMove {
  from {
    margin-top: 20px;
  }
  to {
    margin-top: 0px;
  }
}
@-webkit-keyframes cameraMove {
  from {
    margin-top: 20px;
  }
  to {
    margin-top: 0px;
  }
}
.mars3d-camera-line {
  height: 120px;
  width: 5px;
  margin-top: 20px;
  border-left: 3px dashed #5b8fee;
  margin-left: calc(50% - 1px);
}
.mars3d-camera-point {
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-left: calc(50% - 3px);
  background-color: #5b8fee;
}
