* {
  box-sizing: border-box;
}
.map-title {
  font-size: 32px;
  color: #1e1e1e;
  font-weight: 600;
  text-align: center;
  margin: 36px 0 30px;
}

.map-sub-title {
  background: url("../images/map_title.png") no-repeat -8px 0;
  width: 232px;
  height: 60px;
  margin-top: 30px;
}
.rjfl .map-sub-title {
    background-position: -12px -72px;
}
.yxfl .map-sub-title {
    background-position: -8px -140px;
}
.map-site {
    height: 78px;
    display: flex;
    padding: 0 30px;
    align-items: center;
    margin:  36px 0 40px;
  border-radius: 5px;
  border: solid 1px #eeeeee;
  justify-content: space-between;
  background-color: #fff;
}
.map-site a {
    display: flex;
    align-items: center;
  font-size: 18px;
  color: #040404;
}
.map-site a:hover {
  color: #0592ff;
}
.map-site a::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  margin: 0 30px;
  background-color: #dbdbdb;
  border-radius: 0.5px;
}
.map-site a:last-child::after {
  content: none;
}
.map-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 24px;
}
.map-item {
    width: 180px;
	height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
	background-color: #ffffff;
	border-radius: 28px;
	border: solid 1px #ececec;
    font-size: 18px;
	color: #040404;
}
.main-layout a {
    color: inherit;
}
.map-item:hover {
    background-color: #f2fcff;
	border-color: #b0e2ff;
    color: #0592ff;
}
.map-title--orange,
.map-title--gree {
  display: inline-block;
  position: relative;
  z-index: 1;
  color: #2c2c2c;
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
  margin: 30px 20px 24px;
}
.map-title--gree::before,
.map-title--orange::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: calc(100% + 8px);
  height: 8px;
  background-image: linear-gradient(90deg, #b8f1ff 0%, #dcfabb 100%),
    linear-gradient(#c9dfff, #c9dfff);
  background-blend-mode: normal, normal;
  border-radius: 4px;
  z-index: -1;
}
.map-title--orange::before {
  background-image: linear-gradient(90deg, #ffdeb2 0%, #fff0bc 100%),
    linear-gradient(#c9dfff, #c9dfff);
}
.map-title--gree::after,
.map-title--orange::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #27bfff; /* 左侧边框显示颜色，形成向右的三角 */
  z-index: -1;
}
.map-title--orange::after {
  border-left: 10px solid #fcbf6a; /* 左侧边框显示颜色，形成向右的三角 */
}
