@charset "UTF-8";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[v-cloak] {
  display: none;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Google Sans", "Microsoft YaHei", "Roboto", "Google Material Icons", "Arial", "sans-serif";
  font-size: 16px;
  color: #000;
  background-color: #fff;
  /* background: url(../img/BG.jpg) 50% 50% no-repeat; */
  background-size: cover;
  background-attachment: fixed;
  -ms-overflow-style: none;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

body::-webkit-scrollbar {
  display: none;
}

img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

a,
a:visited,
a:link {
  text-decoration: none;
  display: block;
}

li {
  list-style: decimal;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: 0;
  padding: 0 1rem;
  font-size: 0.8rem;
  color: #0f95e9;
  background-color: #e9e9e9;
  border: none;
  border-radius: 0.5rem;
  flex-grow: 1;
}

::-moz-placeholder {
  color: #666666;
}

::placeholder {
  color: #666666;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
}

/* swiper */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* swiper end */
.container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  min-height: 100vh;
  background: #fff;
  z-index: 0;
  box-shadow: 0 0 4px 2px rgba(0, 102, 128, 0.1);
}

.container .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto 0;
  height: 2.5rem;
  width: 5rem;
  padding: 0.2rem;
  border-radius: 0.5rem;
  color: #fff;
  background: linear-gradient(#1bbeef, #0f94e9 70%);
  /* background: #fff; */
  transition: filter 0.2s;
  cursor: pointer;
}

.container .btn img {
  height: 60%;
  width: auto;
}

.container .btn span {
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

.container .btn:hover {
  filter: brightness(1.1);
}

.header {
  background: #fff;
  width: 100%;
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}

.header .logo {
  width: 12rem;
}

.header .logo img {
  display: block;
}

.area1 {
  padding: 1rem 1rem 0;
}

.search {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.search .btn {
  flex-grow: 1;
  margin-left: 0.5rem;
  background: #fff;
  border: 1px solid #0f95e9;
  color: #0f95e9;
  transition: all 0.2s;
  font-size: 1rem;
}

.search .btn:hover {
  background: linear-gradient(#1bbeef, #0f94e9 70%);
  color: #fff;
  filter: none;
}

.navBtns {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  background: #fff;
}

.navBtns .btn {
  background: #fff;
  border-radius: 99rem;
  box-shadow: 0 2px 6px #e9e9e9;
  color: #0f95e9;
  flex-grow: 1;
  margin-right: 1rem;
  cursor: pointer;
}

.navBtns .btn:nth-last-child(1) {
  margin-right: 0;
}

.navBtns .btn:hover,
.navBtns .active {
  background: linear-gradient(#1bbeef, #0f94e9 70%);
  color: #fff;
  filter: none;
}

.area3 {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9e9e9;
}

.area5 {
  padding: 0.5rem 1rem 0.1rem 1rem;
}

.notice {
  display: flex;
  align-items: center;
  font-size: 1rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  color: #0f95e9;
}

.notice .marquee-wrap {
  margin: 0 0.3rem;
  width: 100%;
  /* 宽度 100% */
  overflow: hidden;
  /* 隐藏超出部分 */
  white-space: nowrap;
  /* 防止内容换行 */
  box-sizing: border-box;
  height: 100%;
}

.notice .marquee-wrap p {
  display: inline-block;
  padding-left: 100%;
  /* 使内容从屏幕右侧开始 */
  animation: marquee-scroll 60s linear infinite;
  /* 使用动画滚动 */
}

.notice .marquee-wrap p:hover {
  animation-play-state: paused;
}

.notice .siteName {
  flex-grow: 1;
  color: #fff;
  background: linear-gradient(#1bbeef, #0f94e9 70%);
  padding: 0.2rem 0.5rem;
  border-radius: 99rem;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
    /* 从右侧开始 */
  }

  to {
    transform: translateX(-100%);
    /* 移动到左侧 */
  }
}

.area4 {
  padding: 0.1rem 1rem;
  padding-bottom: 7rem;
}

.content .lightbox {
  margin-top: 0.5rem;
  line-height: 1.6rem;
}

.content .lightbox .infoTitle {
  color: #0f95e9;
  font-weight: bold;
}

.content .lightbox .red {
  color: red;
  font-size: 0.9rem;
}

.content .lightbox .title {
  width: 100%;
  background: linear-gradient(#1bbeef, #0f94e9 70%);
  color: #fff;
  border-radius: 99rem;
  text-align: center;
  padding: 0.5rem 0;
  margin: 0.8rem 0;
  font-size: 1.2rem;
}

.content .lightbox .rules {
  margin-left: 1.5rem;
}

.content .lightbox table,
.pop table {
  background: #fff;
  border-spacing: 0;
  width: 100%;
  margin: 1rem 0;
  box-sizing: border-box;
  border-collapse: collapse;
  color: #222;
}

.tr {
  background: #0f95e9;
  color: #fff;
}

/* .content .lightbox table thead tr:nth-of-type(1){
  
} */

.pop table {
  line-height: 1.6rem;
}

.content .lightbox table th,
.content .lightbox table td,
.pop table th,
.pop table td {
  padding: 0.2rem;
  font-size: 0.8rem;
}

.content .lightbox table td {
  /* padding-left: 0.5rem; */
}

.content .lightbox table th,
.content .lightbox table td,
.pop table th,
.pop table td {
  border: 1px solid #76caff;
}

.content .lightbox table .formTitle {
  color: #0f95e9;
  background: #fff;
  top: 0;
}

.content .lightbox .highlight {
  color: red;
}

.content .website-closed-message {
  border: 1px solid #bfe6ff;
  border-radius: 99rem;
  height: 2.4rem;
  line-height: 2.4rem;
  background: url(../img/searchBg.png);
  text-align: center;
}

.content .formLv td,
.pop td {
  text-align: center;
}

.content .formQA .rules {
  margin: 0;
}

.content .formQA li {
  list-style: disc;
  margin-left: 1.2rem;
}

.content .formQA p {
  padding: 0;
  margin-bottom: 0.5rem;
}

.content .search-wrap {
  display: flex;
  width: 100%;
  position: relative;

}

.search_flex {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(8%);

}

.container .search_flex span {
  font-weight: bold;
  font-size: 0.95rem;
}

.content .search-wrap input {
  /* background: #fff; */
  background: url(../img/searchBg.png);
  border: 1px solid #bfe6ff;
  border-radius: 99rem;
  font-size: 1rem;
  padding: 0 1rem;
  height: 36px;
  height: 2.4rem;
  box-sizing: border-box;
  flex-grow: initial;
  width: 65%;
  text-align: center;
}

.content .search-wrap ::-moz-placeholder {
  color: #003464;
}

.content .search-wrap ::placeholder {
  color: #003464;
}

.content .search-wrap .btnLv {
  position: absolute;
  bottom: 1px;
  right: 0;
  width: 50%;
  /* height: 100%; */
  height: auto;
  font-size: 1.2rem;
  border-radius: 99rem;
  display: initial;
  /* display: flex; */
  padding: 0;
  background: none;
  /* width: auto; */
  aspect-ratio: 242/40;
}

.content .search-wrap .btnLv .search {
  width: auto;
  height: 100%;
  bottom: 0;
  display: flex;
}

.content .search-wrap .btnLv img {
  /* height: 50%; */
}

.content .formBorrow,
.content .formReturn {
  border: 1px solid #866538;
  border-radius: 1rem;
}

.content .formBorrow .formTop,
.content .formReturn .formTop {
  text-align: center;
  border-bottom: 1px solid #e9e9e9;
  padding: 0.5rem 0;
  margin: 0 1rem;
  color: #0f95e9;
  font-weight: bold;
}

.content .formBorrow ul,
.content .formReturn ul {
  display: flex;
  flex-direction: column;
  margin: 0.5rem 0;
}

.content .formBorrow li,
.content .formReturn li {
  list-style: none;
  margin: 0.3rem auto;
  display: flex;
  flex-wrap: wrap;
  width: 80%;
}

.content .formBorrow li .formTitle,
.content .formReturn li .formTitle {
  text-align: right;
  width: 30%;
}

.content .formBorrow li input,
.content .formReturn li input {
  background: #fff;
  border: 1px solid #866538;
  border-radius: 0.2rem;
  padding: 0.3rem;
  font-size: 1rem;
  text-align: left;
}

.content .formBorrow .btn,
.content .formReturn .btn {
  width: 10rem;
  margin: 1rem auto;
  border-radius: 99rem;
  font-size: 1.2rem;
}

.content .formBorrow .hint,
.content .formReturn .hint {
  margin: 1rem 0.5rem 1.5rem;
  text-align: center;
}

.content .note {
  margin-top: 1rem;
  border-radius: 1rem;
  padding: 1rem;
  background-color: #e9e9e9;
}

.popup {
  position: fixed;
  top: 0;
  left: calc((100vw - 500px) / 2);
  width: 500px;
  z-index: 10;
  text-align: center;
}

.popup .mask {
  height: 100vh;
  background-color: #000;
  opacity: 0.5;
}

.popup .lightbox {
  position: absolute;
  bottom: 8rem;
  left: 5%;
  width: 90%;
  background: #fff;
  border-radius: 1rem;
}

.popup .lightbox:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.8rem;
  left: 0;
  background: url(../img/popup.png) center no-repeat;
  background-size: contain;
}

.popup .infoTitle {
  display: block;
  margin: 1rem 0;
  font-size: 1.2rem;
}

.popup .turwrap {
  display: flex;
  justify-content: flex-start;
  padding: 0 5%;
  flex-wrap: wrap;
}

.popup .turwrap .tur {
  padding: 0 4%;
  width: 25%;
  margin: 0.5rem 0;
  cursor: pointer;
}

.popup .turwrap .turname {
  color: #6b4a1c;
}

.popup .close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
}

.popuptur {
  position: absolute;
  top: 0;
  left: calc((100vw - 500px) / 2);
  width: 500px;
  min-height: 100vh;
  padding-bottom: 7rem;
  z-index: 10;
  background: linear-gradient(#1bbeef, #0f94e9 70%);

}

.popuptur .closetur {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
  z-index: 20;
}

.popuptur .turinfo {
  position: relative;
  background: #fff;
  width: 90%;
  padding: 4rem 0 1.5rem;
  margin: 3rem auto 1.5rem;
  border-radius: 1rem;
}

.popuptur .turinfo .titleIcon {
  position: absolute;
  top: -2rem;
  left: calc((100% - 6rem) / 2);
  width: 6rem;
  height: 6rem;
  border-radius: 99rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}

.popuptur .turinfo .titleIcon img {
  width: 70%;
  margin: 15%;
}

.popuptur .turinfo .infoWrap {
  display: flex;
  justify-content: center;
}

.popuptur .turinfo .infoWrap .qr {
  width: 8rem;
  height: 8rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
}

.popuptur .turinfo .infoWrap .infotxt {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1rem;
}

.popuptur .turinfo .infoWrap .remark {
  margin: 0;
  font-size: 0.6rem;
  color: #666666;
}

.popuptur .turinfo .btn {
  color: #fff;
  background: linear-gradient(#9c7744, #866538 75%);
  width: 80%;
  padding: 0.5rem 1rem;
  margin: 0.5rem 0;
  border-radius: 0.5rem;
  text-align: center;
}

.popuptur .turimg {
  display: none;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 500px;
  padding: 0.8rem 2rem 0.5rem;
  margin: 0 calc((100vw - 500px) / 2);
  display: flex;
  box-shadow: 0 -3px 3px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  background: #fff;
  z-index: 100;
}

.footer .nav {
  text-align: center;
  color: #666666;
  cursor: pointer;
}

.footer .icon {
  width: 100%;
  height: 2rem;
  margin-bottom: 0.5rem;
  background-size: contain !important;
}

.footer .icon1 {
  background: url(../img/nav1.png) center no-repeat;
}

.footer .icon2 {
  background: url(../img/nav2.png) center no-repeat;
}

.footer .icon3 {
  background: url(../img/nav3.png) center no-repeat;
}

.footer .icon4 {
  background: url(../img/nav4.png) center no-repeat;
}

.footer .icon5 {
  background: url(../img/nav5.png) center no-repeat;
}

.footer .active,
.footer .nav:hover {
  position: relative;
  color: #0f95e9;
}

.footer .active .icon1,
.footer .nav:hover .icon1 {
  background: url(../img/nav1_h.png) center no-repeat;
}

.footer .active .icon2,
.footer .nav:hover .icon2 {
  background: url(../img/nav2_h.png) center no-repeat;
}

.footer .active .icon3,
.footer .nav:hover .icon3 {
  background: url(../img/nav3_h.png) center no-repeat;
}

.footer .active .icon4,
.footer .nav:hover .icon4 {
  background: url(../img/nav4_h.png) center no-repeat;
}

.footer .active .icon5,
.footer .nav:hover .icon5 {
  background: url(../img/nav5_h.png) center no-repeat;
}

.footer .active:before,
.footer .active:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  left: -50%;
  background: #fff;
  z-index: -1;
}

.footer .active:before {
  box-shadow: 0 -3px 1px rgba(0, 0, 0, 0.1);
  border-radius: 99rem;
  top: -45%;
}

.footer .active:after {
  top: -19%;
}

.cover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 101;
}

.pop {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 102;
  width: 500px;
  /* height: 60vh; */
  padding: 20px;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 2px solid #0f95e9;
  border-radius: 12px;
  padding-top: 60px;
}

.pop th {
  line-height: 1.2rem;

}

.pop .form02 tr:nth-child(even) {
  background: #ebf9ff;
}

.pop span {
  font-size: .8rem;
}

.close img {
  display: block;
  position: absolute;
  width: auto;
  top: -35px;
  right: 0;
}

.popTitle {
  width: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.pop-content {
  width: 100%;
  height: 100%;
  /* background: #eee; */
}

.pageResult p {
  font-size: 0.8rem;
  color: #666666;
  text-align: center;
  margin-bottom: 15px;
  color: #000;
}

.pages {
  margin-top: 5px;
  text-align: center;
}

/* .pageNav {
  text-align: center;
}
.pageBtnBox {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.pageBtn {
  color: #000;
  font-size: .7rem;
  padding: 3px;
  border: 1px solid #efefef;
  width: 25px;
  text-align: center;
}
.pageBtn.active {
  border: 1px solid #11a6e8;
  background: #11a6e8;
  color: #fff;
}
.prev,
.next {
  width: auto;
  padding: 3px 8px;
} */

@media screen and (max-width: 500px) {

  html,
  body {
    font-size: 3vw;
  }

  .content .formBorrow li,
  .content .formReturn li {
    width: 80%;
  }

  .content .formBorrow li .formTitle,
  .content .formReturn li .formTitle {
    width: 25%;
  }

  .popup {
    width: 100%;
    left: 0;
  }

  .popup .turwrap {
    padding: 0;
  }

  .popup .turwrap .tur {
    padding: 0 1rem;
  }

  .popup .close {
    width: 2rem;
  }

  .popup .lightbox {
    width: 95%;
    left: 2.5%;
  }

  .popuptur {
    width: 100vw;
    left: 0;
  }

  .popuptur .closetur {
    width: 2rem;
  }

  .footer {
    padding: 0.8rem 1.5rem;
    margin: 0;
  }

  .pop {
    width: 95%;
  }

  .pop span {
    font-size: .9rem;
  }

  .popTitle {
    width: 70%;
  }

  .pop table th,
  .pop table td {
    /* padding: 0.2rem; */
    font-size: 0.9rem;
  }
}

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