:root {
  --main-bg-color: #232423;
  --link-color: #ff7b91;
  --link-highlight-color: #ffb1be;
  --main-text-color: #e4e4e5;
  --main-side-color: #8b3830;
}

body {
  margin: 0;
  padding: 0;
}

h1,h2,h3,h4,h5,h6,p,ul,li {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a:-webkit-any-link {
  color: #fff;
  text-decoration: none;
}

#map {
  position: fixed;
  width: 100%;
  height: 100%;
}

.left-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 100%;
  background: var(--main-bg-color);
  color: var(--main-text-color);
  transition: .3s;
}

.left-panel.close {
  left: -400px;
}

.left-panel-content {
  padding: 10px 20px;
  height: 100%;
}

.left-panel-close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  right: -25px;
  width: 25px;
  height: 50px;
  background-color: var(--main-bg-color);
  cursor: pointer;
}

.game-logo {
  display: flex;
  align-items: center;
  height: 150px;
}

.game-logo img {
  display: block;
  margin: 0 auto;
  width: 60%;
}

.web-title {
  margin-top: -20px;
  text-align: center;
  font-size: 26px;
  text-shadow: 0 0 2px #e4e4e5,0 0 4px #e4e4e5;
}

.info {
  margin: 5px 0;
  text-align: center;
  font-size: 12px;
}

.info a {
  color: var(--link-color);
  transition: .3s;
}

.info a:hover {
  color: var(--link-highlight-color);
}

.btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btns .iconfont {
  position: relative;
  top: 0;
  left: -5px;
  font-size: 26px;
  font-weight: normal;
}

.btns-item {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  margin: 10px 10px 0 0;
  padding: 7px 10px;
  height: 25px;
  line-height: 25px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  border: 2px solid #222;
  border-radius: 10px;
  cursor: pointer;
  transition: .3s;
}

.btns-item:hover {
  color: #232423;
}

.btns-home {
  background-color: #f39e4e;
}

.btns-home:hover {
  background-color: #f0c370;
}

.btns-bilibili {
  background-color: #ff7b91;
}

.btns-bilibili:hover {
  background-color: #ffafbc;
}

.btns-pay {
  background-color: #009fe9;
}

.btns-pay:hover {
  background-color: #79d5ff;
}

.btns-update {
  background-color: #a736a7;
}

.btns-update:hover {
  background-color: #e7a3e7;
}

/* 过滤面板区域 */
.type-filter-pane {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 20px 0 15px 0;
  font-size: 14px;
}

.type-filter-pane .filter-btn.all {
  text-align: center;
  margin-bottom: 15px;
}

.type-filter-pane .filter-btn {
  width: 50%;
  margin-bottom: 5px;
  text-align: left;
  cursor: pointer;
  transition: .3s;
  padding: 5px 20px 5px 3px;
  box-sizing: border-box;
}

.type-filter-pane .filter-btn:hover {
  color: var(--link-highlight-color);
}

.filter-btn.scratch {
  color: #666;
  text-decoration: line-through;
}

.filter-btn .filter-count {
  float: right;
}

/* 地图标记*/
.leaflet-marker-icon.founded {
  opacity: .2;
}

/* 地图标记弹窗 */
.leaflet-popup-content .marker-name {
  margin: 0 0 5px 0;
}

.leaflet-popup-content .marker-type {
  margin: 0 0 15px 0;
}

.leaflet-popup-content .marker-content {
  margin: 0;
}

.leaflet-popup-content .marker-btn {
  width: 90px;
  height: 30px;
  border: 1px solid #666;
  border-radius: 10px;
  margin-top: 30px;
}

.leaflet-popup-content-wrapper {
  min-width: 300px;
}

/* 地图缩放按钮 */
.leaflet-control-container{
  display: none;
}

.simplebar-scrollbar::before {
  background-color: var(--main-text-color);
}

/* 右侧地图导航 */
.map-list {
  position: fixed;
  top: 0;
  right: 0;
  padding: 10px;
  width: 200px;
  text-align: center;
}

.map-list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  margin: 5px 0;
  padding: 5px 0;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  background-color: var(--main-bg-color);
  background-size: cover;
  transition: .3s;
  cursor: pointer;
}

.map-list-item:hover {
  box-shadow: 0px 0px 5px var(--main-text-color);
}