body {
  overflow-x: hidden;
}
.inner {
  box-sizing: border-box;
  position: relative;
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 100%;
    padding: 0 10px;
  }
}
.map_box {
  background: url(../image/sft_bg.png) no-repeat center;
  background-size: contain;
}
#indexMapContainer {
  margin-top: -60px;
  width: 100%;
  height: 900px;
}
.map_data {
  position: relative;
}
.map_data .line {
  z-index: 10;
  position: absolute;
  top: 20px;
  left: 00px;
  width: 1px;
  height: 120%;
  border-left: dashed 2px #ffffff;
}
.map_data .line::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ffffff;
  border: solid 4px #f19338;
}
.map_data .card {
  width: 368px;
  margin-left: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 10px 0px rgba(240, 137, 38, 0.45);
  border-radius: 10px;
  padding: 20px;
  position: relative;
}
.map_data .card h5 {
  font-size: 22px;
  font-weight: bold;
  color: #bf610f;
  text-align: center;
}
.map_data .card ul {
  margin-top: 20px;
}
.map_data .card ul li {
  margin-left: 15px;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 94%; */
}
.map_data .card ul li a {
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  line-height: 2;
  color: #333333;
  position: relative;
}
.map_data .card ul li a::after {
  content: '';
  z-index: -1;
  width: 0;
  height: 0;
}
.map_data .card ul li a::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -12px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #ffaa57;
  border-right: 6px solid transparent;
}
.map_data .card ul li a::after {
  z-index: 1;
  left: -20px;
  right: auto;
}
.map_data .card ul li a:hover {
  color: #bf610f;
}
