* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mainbox .panel {
  position: relative;
  height: 3.875rem;
  padding: 0 0.1875rem 0.5rem;
  border: 1px solid rgba(25, 186, 139, 0.17);
  margin-bottom: 0.1875rem;
  background: url(../images/line\(1\).png) rgba(255, 255, 255, 0.03);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background: url(../images/bg.jpg) no-repeat top center;
  background-size: cover;
  line-height: 1.15;
  overflow: hidden;
  /* 防止页面滚动 */
}

.mainbox {
  position: fixed;
  /* 固定位置 */
  width: 70vw;
  height: 70vh;
  display: flex;
  justify-content: flex-start;
  /* 改为左对齐 */
  align-items: center;
}

.mainbox .column {
  position: relative;
  width: auto;
  /* 改为自适应宽度 */
  height: 100%;
  display: flex;
  justify-content: flex-start;
  /* 改为左对齐 */
  align-items: center;
  margin-left: 20px;
  /* 添加左边距 */
}

/* 地图相关样式 */
.map {
  position: relative;
  width: 500px;
  /* 固定宽度 */
  height: 500px;
  /* 固定高度 */
  transform-origin: left center;
  /* 修改变换原点为左中 */
}

.map .chart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
}

.map .map1,
.map .map2,
.map .map3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  /* 固定宽度 */
  height: 500px;
  /* 固定高度 */
  background: url(../images/map.png) no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.3;
}

.map .map2 {
  width: 500px;
  /* 固定宽度 */
  height: 500px;
  /* 固定高度 */
  background-image: url(../images/lbx.png);
  opacity: 0.6;
  animation: rotate 15s linear infinite;
  z-index: 2;
}

.map .map3 {
  width: 500px;
  /* 固定宽度 */
  height: 500px;
  /* 固定高度 */
  background-image: url(../images/jt.png);
  animation: rotate1 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotate1 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}