@charset "UTF-8";
/*
 * @Author: yangyuanxi
 * @Date: 2025-03-20 16:35:37
 * @LastEditors: yangyuanxi
 * @LastEditTime: 2025-04-18 17:20:20
 */
* {
  box-sizing: border-box;
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  background-color: #dcfac3;
}

body,
html {
  width: 100%;
  height: 100%;
}

#wrap {
  min-width: 1577px;
  min-height: 100vh;
  position: relative;
  margin: 0 auto;
}

.logo {
  width: 476px;
  position: absolute;
  top: 96px;
  left: 160px;
}

.logo .img {
  width: 476px;
  height: 272px;
  display: block;
  position: relative;
  z-index: 5;
}

.logo .wdContent {
  position: relative;
  top: -40px;
  width: 476px;
  height: 345px;
  background: url(../img/web-bk.png) center no-repeat;
  background-size: 100% 100%;
  padding: 22px 23px;
  font-size: 15px;
  color: #175927;
  line-height: 25px;
  text-align: justify;
  position: relative;
  z-index: 2;
}

.mapContainer {
  max-width: 2178px;
  height: 1846px;
  background: url(../img/web-map.jpg) top center no-repeat;
  background-size: 2178px auto;
  position: relative;
  margin: 0 auto;
}
.mapContainer .map-main {
  width: 1577px;
  margin: 0 auto;
  height: 1846px;
  position: relative;
}
.mapContainer .map-main .building {
  position: absolute;
   /* background:#f0f;
   opacity: 0.4;  */
}

/* 定义关键帧动画 */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.toolbar {
  position: absolute;
  top: 153px;
  right: 188px;
  display: flex;
  z-index: 10;
}
.toolbar .tool {
  width: 46px;
  height: 46px;
  background: center no-repeat;
  background-size: contain;
  margin-left: 14px;
}
.toolbar .tool.play {
  background-image: url(../img/music_on.png);
  animation: spin 5s linear infinite;
}
.toolbar .tool.pause {
  background-image: url(../img/music_off.png);
}
.toolbar .tool.menu {
  background-image: url(../img/list_icon.png);
}

.dialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: none;
}
.dialog.show {
  display: block;
}

.dialog-box {
  background: #ffffff;
  border-radius: 20px;
  position: relative;
  z-index: 11;
  margin: 0 auto;
}
.dialog-box.list-box {
  width: 1056px;
  height: 600px;
  margin-top: max(10vh, (100vh - 600px) / 2);
}
.dialog-box.info-box {
  width: 794px;
  height: 689px;
  margin-top: max(10vh, (100vh - 689px) / 2);
}
.dialog-box .dialog-close {
  width: 22px;
  height: 22px;
  display: block;
  background: url(../img/close.png) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 22px;
  right: 22px;
  cursor: pointer;
  z-index: 30;
}

.list-box {
  padding-top: 45px;
  display: flex;
  flex-direction: column;
}
.list-box .search-box {
  width: 525px;
  height: 40px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #34b468;
  display: flex;
  overflow: hidden;
  margin: 0 auto 20px;
}
.list-box .search-box .search-input {
  flex: 1;
  height: 40px;
  border: none;
  padding: 0;
  outline-color: transparent;
  padding-left: 18px;
  font-size: 14px;
}
.list-box .search-box .search-input::placeholder {
  color: #666666;
}
.list-box .search-box .search-btn {
  width: 97px;
  height: 40px;
  background: #34B468;
  border-radius: 20px;
  border: 0;
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-box .chapter-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-box .chapter-container .chapter-item {
  height: 40px;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 18px;
  color: #333333;
  line-height: 40px;
  cursor: pointer;
}
.list-box .chapter-container .chapter-item.active {
  background: rgba(52, 180, 104, 0.1);
  color: #34B468;
}
.list-box .chapter-container .chapter-item:hover {
  color: #34B468;
}
.list-box .list-container {
  flex: 1;
  overflow: auto;
  padding-left: 48px;
  margin-top: 17px;
  clear: both;
}
.list-box .list-container::after {
  content: "";
  display: block;
  clear: both;
}
.list-box .list-container .list-item {
  width: 225px;
  margin-right: 20px;
  margin-bottom: 27px;
  cursor: pointer;
  float: left;
}
.list-box .list-container .list-item .cover {
  width: 100%;
  height: 170px;
  border-radius: 4px;
  overflow: hidden;
}
.list-box .list-container .list-item .cover .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.list-box .list-container .list-item .cover:hover .img {
  transform: scale(1.1);
}
.list-box .list-container .list-item .name {
  margin-top: 6px;
  font-size: 16px;
  color: #333333;
  line-height: 22px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.info-box {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
.info-box .info-main {
  flex: 1;
  overflow: auto;
}
.info-box .info-title {
  padding-top: 30px;
  font-weight: 500;
  font-size: 22px;
  color: #222222;
  line-height: 30px;
  text-align: center;
}
.info-box .info-coverbox {
  width: 718px;
  height: 404px;
  background-color: #D8D8D8;
  margin: 18px auto 0;
  border-radius: 8px;
  overflow: hidden;
}
.info-box .info-coverbox .cover-item {
  height: 404px;
}
.info-box .info-coverbox .cover-item .img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.info-box .info-coverbox .info-page {
  height: 26px;
  background: #57C0C2;
  line-height: 26px;
  padding: 0 9px;
  border-radius: 8px 0px 0 0px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: unset;
  width: unset;
  z-index: 10;
  color: #fff;
}
.info-box .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background-size: 46px 46px;
  right: 10px;
  background-image: url("../img/arr_r.png");
}
.info-box .swiper-button-next::after {
  display: none;
}
.info-box .swiper-button-prev::after {
  display: none;
}
.info-box .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background-size: 46px 46px;
  left: 10px;
  background-image: url("../img/arr_l.png");
}
.info-box .info-linkbox {
  width: 700px;
  display: flex;
  margin: 18px auto 0;
  justify-content: space-between;
}
.info-box .info-linkbox .link-item {
  width: 343px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 14px;
  color: #333;
}
.info-box .info-linkbox .link-item::after {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  background: url("../img/arrow.png") center no-repeat;
  background-size: contain;
}
.info-box .info-linkbox .link-item .icon {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
  margin-right: 2px;
}
.info-box .info-linkbox .link-item span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: default;
}
.info-box .info-linkbox .link-item.vr-link {
  background-image: url(../img/vr_bg.png);
  background-size: 100% 100%;
}
.info-box .info-linkbox .link-item.address-link {
  background-image: url(../img/add_bg.png);
  background-size: 100% 100%;
}
.info-box .info-desc {
  width: 700px;
  margin: 18px auto 0;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
  text-align: justify;
  text-indent: 2em;
}

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