* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --main-space: 0.8rem;
  --color-c1: #006B8A;
}
.main-con {
  width: calc(100vw - var(--main-space) * 2);
  margin: 0 auto;
}
.page-banner {
  position: relative;
}
.page-banner > img {
  display: block;
  width: 100%;
}
.page-banner .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  padding-right: 40%;
  transform: translate(-50%, -50%);
}
.page-banner .txt * {
  color: #fff;
}
.page-banner .txt h1 {
  font-size: 0.24rem;
}
.page-banner .txt p {
  font-size: 0.18rem;
  margin-top: 0.15rem;
}
.position-wrap {
  box-shadow: 0rem 0.025rem 0.05rem 0rem rgba(0, 0, 0, 0.05);
}
.position-wrap .main-con {
  display: flex;
  align-items: center;
  gap: 0.01rem;
  height: 0.24rem;
}
.position-wrap .main-con img {
  width: 0.08rem;
}
.position-wrap .main-con,
.position-wrap .main-con a {
  font-size: 0.07rem;
}
.return {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.0885rem;
  width: 0.5313rem;
  height: 0.2188rem;
  border-radius: 0.1094rem;
  background-color: #eeeeee;
  cursor: pointer;
}
.return img {
  width: 0.05rem;
}
.return span {
  font-size: 0.08rem;
}
section {
  padding: 0.5rem 0;
}
section .main-title {
  text-align: center;
  font-size: 0.24rem;
  margin-bottom: 0.25rem;
}
section .main-title h2 {
  font-size: inherit;
}
section .more-btn {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  text-decoration: none;
}
section .more-btn span {
  white-space: nowrap;
  font-size: 0.1rem;
  text-decoration: underline;
  color: #333;
}
section .more-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: initial;
  flex-shrink: 0;
  font-size: 0.1rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  border: 0.01rem solid #333;
}
section .more-btn.inverse {
  padding: 0.06rem;
  padding-left: 0.15rem;
  border-radius: 1rem;
  background-color: var(--color-c1);
}
section .more-btn.inverse * {
  color: #fff !important;
}
section .more-btn.inverse i {
  border-color: #fff;
}
section .img-auto {
  position: relative;
  background-color: #f5f5f5;
}
section .img-auto::before {
  content: "";
  display: block;
}
section .img-auto > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  :root {
    --main-space: 0.1rem;
  }
  html {
    font-size: 100px !important;
  }
  body {
    font-size: 16px !important;
  }
  section {
    padding: 0.3rem 0;
  }
  .page-banner > img {
    height: 30vh;
    object-fit: cover;
  }
  .page-banner .txt {
    padding-right: 20%;
  }
}
