* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  --height: 100vh;
  user-select: none;
}
body {
  height: var(--height);
  background-image: url('../img/map-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@font-face {
  font-family: 'ziti';
  src: url('./霞鹜臻楷.ttf');
}
.commonDot ul {
  --zoom: 1;
  position: absolute;
  inset: 0;
}
.commonDot ul li {
  --size: 26px;
  width: var(--size);
  height: var(--size);
  position: absolute;
  top: calc(var(--size) / -2);
  left: calc(var(--size) / -2);
  list-style: none;
  transform-origin: center center;
  background-image: url('../img/dot.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  cursor: pointer;
}
.commonDot ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
.commonDot ul li span {
  position: absolute;
  right: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  top: 0;
  display: none;
  background-color: #5fa44d;
  padding: 3px 10px;
  word-break: keep-all;
  white-space: nowrap;
  width: 0;
  transition: 0.3s;
  backdrop-filter: blur(6px);
  filter: drop-shadow(0 0 6px #aaa);
  font-family: 'ziti';
}
.commonDot ul li span::after {
  content: '';
  position: absolute;
  bottom: -8px;
  width: 10px;
  height: 8px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  background-color: #5fa44d;
}
.commonDot ul li:hover {
  z-index: 6;
  background-image: url('../img/dot-active.png');
  transform: scale(1.1);
}
.commonDot ul li:hover span {
  width: fit-content;
  display: block;
  top: -38px;
  color: #fff;
  border-radius: 5px;
}
.mob {
  display: none;
}
.container {
  --links-width: 320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 9rem;
  padding-left: 1rem;
  height: var(--height);
  overflow: hidden;
  position: relative;
}
.container .menu-wrap {
  margin-top: auto;
}
.container .btn-menu {
  background-image: url('../img/menu.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: transparent;
  border-radius: 50%;
  border: none;
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 1.3rem;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 100;
  filter: drop-shadow(2px 2px 8px #0006);
  display: none;
  transition: 0.2s;
}
.container .btn-menu:hover {
  transform: scale(1.2) translateY(6px);
}
.container .links {
  background-image: url('../img/title-group-bg.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: var(--links-width);
  flex-shrink: 0;
  padding: 3.3rem 3rem 3.7rem 3.2rem;
  position: relative;
  transform-origin: left bottom;
}
.container .links p {
  background-image: url('../img/title-bg.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0.9rem 0.2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #222;
  cursor: pointer;
  transition: 0.2s;
  transform-origin: center center;
}
.container .links p:hover,
.container .links p.active {
  transform: scale(1.05);
  filter: drop-shadow(0 2px 5px #be993a);
  color: #fff;
  text-shadow: 1px 0 0 #be993a, 0 1px 0 #be993a;
}
.container .map-wrap {
  width: 1200px;
  position: relative;
  z-index: 5;
}
.container .map-wrap img.map {
  max-width: 100%;
  /* 图片最大宽度不超过父容器 .map-wrap */
  max-height: 100%;
  /* 图片最大高度不超过父容器 .map-wrap */
  width: auto;
  /* 宽度自动 */
  height: auto;
  /* 高度自动 */
  object-fit: contain;
  filter: drop-shadow(0 2px 8px #17291455);
}
.container .map-wrap ul {
  --zoom: 1;
  position: absolute;
  inset: 0;
}
.container .map-wrap ul li {
  --size: 26px;
  width: var(--size);
  height: var(--size);
  position: absolute;
  top: calc(var(--size) / -2);
  left: calc(var(--size) / -2);
  list-style: none;
  transform-origin: center center;
  background-image: url('../img/dot.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  cursor: pointer;
}
.container .map-wrap ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
.container .map-wrap ul li span {
  position: absolute;
  right: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  top: 0;
  display: none;
  background-color: #5fa44d;
  padding: 3px 10px;
  word-break: keep-all;
  white-space: nowrap;
  width: 0;
  transition: 0.3s;
  backdrop-filter: blur(6px);
  filter: drop-shadow(0 0 6px #aaa);
  font-family: 'ziti';
}
.container .map-wrap ul li span::after {
  content: '';
  position: absolute;
  bottom: -8px;
  width: 10px;
  height: 8px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  background-color: #5fa44d;
}
.container .map-wrap ul li:hover {
  z-index: 6;
  background-image: url('../img/dot-active.png');
  transform: scale(1.1);
}
.container .map-wrap ul li:hover span {
  width: fit-content;
  display: block;
  top: -38px;
  color: #fff;
  border-radius: 5px;
}
.container .zxf-wrap {
  position: absolute;
  left: var(--links-width);
  bottom: 0;
  transform: scale(0.9);
  transform-origin: left bottom;
}
.container .zxf-wrap section {
  display: inline-block;
  transform: translate(-22px, -520%);
  padding: 10px 16px;
  width: fit-content;
  font-family: 'ziti';
  background-color: #6fb253;
  border-radius: 10px;
  filter: drop-shadow(2px 2px 12px #aaa9);
  position: relative;
  color: #fff;
  font-size: 18px;
}
.container .zxf-wrap section::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 18px;
  width: 22px;
  height: 22px;
  background-image: url('../img/icon-sanjiao.svg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.container .zxz-wrap {
  position: absolute;
  right: 0;
  bottom: 4px;
  transform: scale(0.9);
  transform-origin: right bottom;
}
.container .zxz-wrap section {
  display: none;
}
main {
  width: 900px;
  margin: auto;
  padding: 1rem 0 1.5rem;
  position: relative;
}
main .btn-backhome {
  position: absolute;
  filter: drop-shadow(0 0 4px rgba(78, 78, 78, 0.8));
  transform: scale(1.3);
  transform-origin: center center;
  top: 2.5rem;
  left: 1.2rem;
}
main .title {
  position: relative;
  width: fit-content;
  margin: 2rem auto 1rem;
  background: linear-gradient(15deg, #428a42, #7bbc58);
  padding: 4px 12px;
  font-family: 'ziti';
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
}
main .title .common {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
}
main .title::before {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  top: -10px;
  left: -10px;
  border-top: 3px solid #6fb253;
  border-left: 3px solid #6fb253;
}
main .title::after {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  right: -10px;
  bottom: -10px;
  border-bottom: 3px solid #6fb253;
  border-right: 3px solid #6fb253;
}
main .pic-show-wrap {
  display: flex;
  width: 100%;
  padding: 0.9rem 0.1rem 0.9rem 0.9rem;
  background-color: #fffb;
  margin: 2rem auto;
  font-size: 0;
  box-shadow: 0 2px 10px #aaab;
  aspect-ratio: 1.42857143;
  position: relative;
  border-radius: 8px;
}
main .pic-show-wrap .big {
  flex: 1;
  background-color: #f3f3f3;
}
main .pic-show-wrap .big img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
main .pic-show-wrap .small {
  width: 140px;
  flex-shrink: 0;
  height: 100%;
  overflow-y: auto;
  padding-left: 1rem;
  padding-right: 0.3rem;
}
main .pic-show-wrap .small::-webkit-scrollbar {
  width: 5px;
}
main .pic-show-wrap .small:hover::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
  border-radius: 4px;
}
main .pic-show-wrap .small section {
  width: 100%;
  aspect-ratio: 1.11111111;
  border-radius: 3px;
  border: 4px solid transparent;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}
main .pic-show-wrap .small section.active {
  border-color: #6fb253 !important;
}
main .pic-show-wrap .small section.active::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10px;
  margin: auto;
  width: 10px;
  height: 20px;
  background-color: #6fb253;
  clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
}
main .pic-show-wrap .small section:hover {
  border-color: #fff;
  box-shadow: 0 2px 10px #aaab;
}
main .pic-show-wrap .small section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .pic-show-wrap .small section:last-child {
  margin-bottom: 0;
}
main .article {
  padding: 1rem 1.5rem 0.2rem;
  background-color: #fff4;
  border: 2px solid #fffd;
  color: #333;
  line-height: 1.7;
  text-align: justify;
  backdrop-filter: blur(4px);
  letter-spacing: 1px;
  box-shadow: 0 2px 10px #aaab;
  border-radius: 8px;
}
main .article p {
  margin-bottom: 0.5rem;
}
main .article p .common {
  content: '';
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 7px;
}
main .article p:first-child::before {
  content: '';
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 7px;
  background-image: url('../img/jianjie.svg');
}
main .article p:last-child::before {
  content: '';
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 7px;
  background-image: url('../img/local.svg');
}
@media screen and (max-width: 1440px) {
  .container {
    padding-right: 6rem;
  }
  .container .zxf-wrap,
  .container .zxz-wrap,
  .container .map-title-pc {
    zoom: 0.7;
  }
  .container .zxf-wrap {
    transform: scale(0.95) translateX(2rem);
  }
  .container .links {
    zoom: 0.8;
  }
}
@media screen and (min-width: 1440px) and (max-width: 1680px) {
  .container {
    padding-right: 6rem;
  }
  .container .zxf,
  .container .zxz,
  .container .map-title-pc,
  .container .links {
    zoom: 0.85;
  }
}
@media screen and (max-height: 940px) {
  .map-title-pc {
    zoom: 0.8;
  }
}
@media screen and (max-width: 750px) {
  .mob {
    display: block;
  }
  .logo {
    transform: translateY(28px);
  }
  .map-title-pc {
    display: none;
  }
  .container {
    width: 100%;
    padding: 0 0 15vh;
    flex-direction: column;
    justify-content: flex-start;
  }
  .container .btn-menu {
    display: block;
  }
  .container .map-wrap {
    width: 100%;
    margin: auto;
  }
  .container .map-wrap ul li {
    --size: 20px;
  }
  .container .zxf-wrap {
    left: 0;
    zoom: 0.5;
    margin-left: 0;
    transform: scale(0.95) translateX(0);
  }
  .container .zxf-wrap section {
    display: none;
  }
  .container .zxz-wrap {
    right: 0;
    zoom: 0.5;
    bottom: -11px;
  }
  .container .zxz-wrap .zxz {
    transform-origin: right bottom;
    transform: scale(0.95);
  }
  .container .zxz-wrap section {
    display: inline-block;
    transform: translate(72px, -370%);
    padding: 12px 18px;
    width: fit-content;
    font-family: 'ziti';
    background-color: #6fb253;
    border-radius: 10px;
    filter: drop-shadow(2px 2px 12px #aaa9);
    position: relative;
    color: #fff;
    font-size: 32px;
  }
  .container .zxz-wrap section::after {
    content: '';
    position: absolute;
    bottom: -18px;
    right: 11px;
    width: 22px;
    height: 22px;
    background-image: url('../img/icon-sanjiao.svg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
  .container .menu-wrap {
    position: fixed;
    inset: 0;
    background-color: #fff;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    transform: scale(0);
    padding-bottom: 3rem;
    transition: 0.3s;
    opacity: 0;
  }
  .container .menu-wrap.showing {
    visibility: visible;
    transform: scale(1);
    opacity: 1;
  }
  .container .menu-wrap .links {
    zoom: 0.86;
  }
  main {
    width: calc(100% - 2rem);
  }
  main .btn-backhome {
    top: 0;
    left: -0.5rem;
    transform: scale(0.9);
  }
  main .title {
    font-size: 1.5rem;
    margin-top: 4rem;
  }
  main .pic-show-wrap {
    padding: 0.9rem;
    flex-direction: column;
  }
  main .pic-show-wrap .small {
    padding-left: 0;
    width: 100%;
    display: flex;
    overflow-x: auto;
    height: auto;
  }
  main .pic-show-wrap .small section {
    width: 90px;
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: 10px;
  }
  main .pic-show-wrap .small section.active::before {
    top: -16px;
    left: 0;
    right: 0;
    bottom: unset;
    transform: rotate(90deg);
  }
}
