:root {
  font-family: "Microsoft YaHei", PingFangSC-Regular, PingFang SC, "Arial";
}

::-webkit-scrollbar {
  width: 0.6rem;
  background: #f1f1f1;
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 0.5rem;
}

html,
body {
  margin: 0;
  padding: 0;
}

div {
  box-sizing: border-box;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  cursor: pointer;
}

body {
  width: 100%;
  background-color: #ffa8a0;
  background-image: url(../img/BG.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.header {
  display: flex;
  padding: 0.5% 5%;
  background-color: #c81428;
}

.header .logo {
  width: 15vw;
}

.header .nav {
  width: 85vw;
  display: flex;
  justify-content: flex-end;
}

.header .nav .navBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1vw;
  height: 100%;
  width: 12vw;
  font-weight: bold;
  background: url(../img/navBtn.png) no-repeat center;
  background-size: contain;
  color: #000;
  font-size: 1.3vw;
  transition: background 0.2s, color 0.2s;
}

.header .nav .navBtn .navIcon {
  width: 2vw;
  height: 2vw;
  margin-right: 0.2vw;
}

.header .nav .navBtn:hover {
  background: url(../img/navBtn_h.png) no-repeat center;
  background-size: contain;
  color: #f62038;
}

.container {
  width: 60vw;
  margin: 2vw auto;
}

.container .tur {
  margin-top: 3%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 2.5vw;
  text-align: center;
  flex-wrap: wrap;
  font-size: 1.2vw;
}

.container .tur .turBtn {
  color: #000;
  transition: color 0.2s, filter 0.2s;
  position: relative;
  cursor: pointer;
}

.container .tur .turBtn .turBtn_h {
  position: absolute;
  top: 0;
  z-index: -1;
}

.container .tur .turBtn .turIcon {
  width: 90%;
  margin: 5%;
}

.container .tur .turBtn:hover {
  filter: brightness(1.1);
  color: #f62038;
}

.popup {
  position: fixed;
  top: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.popup .popupBox {
  position: relative;
  width: 65dvw;
  height: 100%;
  max-height: 90dvh;
  margin: 5dvh auto;
  border-radius: 2em;
  border: 3px solid #f62038;
  background: url(../img/popBg.png) no-repeat center;
  background-size: cover;
  overflow: hidden;
}

.popup .popupBox .popCloseBtn {
  width: 5%;
  position: absolute;
  right: 2%;
  top: 2%;
  transition: filter 0.2s;
  cursor: pointer;
}

.popup .popupBox .popCloseBtn :hover {
  filter: brightness(1.2);
}

.popup .popupBox .popTitle {
  width: 50%;
  margin: 0 auto;
  position: relative;
}

.popup .popupBox .popTitleTxt {
  display: block;
  width: 100%;
  font-size: 2.5vw;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  padding: 2% 0;
  color: #fff;
}

.popup .popupBox .popContent {
  position: relative;
  margin: 1% 10%;
  padding: 20px 10px;
  max-width: 80%;
  max-height: 65dvh;
  background-color: #fff;
  border-radius: 2em;
  border: 3px solid #f62038;
  overflow: hidden;
}

.popup .popupBox .popContent .popContentImg {
  max-height: 65dvh;
  overflow: auto;
  overflow-y: scroll;
}

.popup .popupBox .download {
  position: relative;
  margin: -4.5% auto 0;
  width: 30%;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s;
  cursor: pointer;
}

.popup .popupBox .download:hover {
  filter: brightness(1.2);
}

.antiTheft {
  position: fixed;
  top: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
}

.antiTheft .antiCloseBtn {
  width: 2.5vw;
  position: absolute;
  right: 17%;
  top: 2%;
  transition: all 0.2s;
  cursor: pointer;
}

.antiTheft .antiCloseBtn :hover {
  filter: brightness(1.2);
}

.antiTheft .antiContent {
  position: relative;
  margin: 4dvh 20%;
  padding: 20px 10px;
  max-width: 60%;
  max-height: 92dvh;
  background-color: #fff;
  border-radius: 2em;
  border: 3px solid #f62038;
  overflow: hidden;
}

.antiTheft .antiContent .antiContentImg {
  max-height: 92dvh;
  overflow: auto;
  overflow-y: scroll;
}

.footer {
  margin-top: 10.3dvh;
  width: 100%;
  padding-top: 10vw;
  background-color: #000;
  text-align: center;
  color: #fff;
  padding: 0.3vw 0;
  font-size: 0.8vw;
  z-index: 0;
}

/*# sourceMappingURL=style.css.map */