@charset "utf-8";
/* CSS Document */
/*先全部格式化*/
* {
  padding: 0;
  margin: 0;
}
/* 清除li的默认样式 */
li {
  list-style: none;
}
/* 清除a的下划线 */
a {
  text-decoration: none;
  color: #999;
}
/*清空浮动以备不时之需*/
.clear {
  clear: both;
}
#weizhi a, #rweizhi a {
  color: #ccc;
  text-decoration: underline;
}
#weizhi {
  background-color: rgba(176, 176, 176, 0.5);
  font-size: 14px;
  padding: 0;
  line-height: 20px;
  border-radius: 5px;
}
#rweizhi {
  background-color: rgba(176, 176, 176, 0.5);
  font-size: 14px;
  padding: 0;
  line-height: 20px;
  border-radius: 5px;
  text-align: center;
}
#weizhi a:hover, #rweizhi a:hover {
  color: white;
  background: black;
}
#middleInfo {
  width: 100%;
  background: rgba(188, 188, 188, 0.2);
}
#middleInfo h1 {
  margin-top: 10px;
  text-align: center;
  width: 100%;
  box-shadow: rgb(255, 255, 255) 5px 5px 15px 5px;
  text-shadow: 2px 2px 4px rgba(222, 222, 0, 0.8);
}
#middleInfo h2 {
  margin-top: 10px;
  text-align: center;
  width: 100%;
  /*	box-shadow: rgb(255, 255, 255) 5px 5px 15px 5px;*/
  text-shadow: 2px 2px 4px rgba(11, 222, 222, 0.8);
  margin-bottom: 10px;
}
html, body {
  width: 100%;
  height: 100%;
  user-select: none;
  color: white; /* 将文本颜色设置为白色 */
  min-height: 100vh; /* 将 body 的最小高度设置为视窗高度，确保内容不足时仍然充满整个视窗 */
  -webkit-user-select: text; /* Safari */
  -moz-user-select: text; /* Firefox */
  -ms-user-select: text; /* IE 10+ */
  user-select: text; /* 标准语法 */
}
#bg {
  width: 100%;
  min-width: 250px;
  height: 100%;
  position: fixed;
  z-index: -1;
}
#hugebox {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* 将 body 的最小高度设置为视窗高度，确保内容不足时仍然充满整个视窗 */
}
#headbox {
  width: 100%;
  height: 150px;
}
#head {
  position: fixed;
  width: 100%;
  z-index: 5;
}
#main {
  flex: 1; /* 让 main 元素填充剩余空间，推动 footer 到底部 */
  width: 100%;
  display: flex;
  flex-direction: column;
}
#middle {
  width: 63%;
  margin: 0 auto;
}
#left {
  position: fixed;
  top: 150px;
  right: 85%;
  width: 15%;
  max-width: 300px;
  min-width: 160px;
  height: auto;
  overflow: hidden;
}
#right {
  position: fixed;
  top: 150px;
  left: 85%;
  width: 15%;
  height: auto;
  overflow: hidden;
}
#footer {
  width: 100%;
}
.pages {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* 页码容器上边距 */
}
.pages a {
  color: #fff; /* 页码文字颜色 */
  text-decoration: none; /* 去除下划线 */
  margin: 0 5px; /* 页码之间的间距 */
  padding: 5px 10px; /* 页码的内边距 */
  background-color: transparent; /* 页码背景色 */
  border: 1px solid #fff; /* 页码边框 */
  border-radius: 5px; /* 页码边框圆角 */
  transition: background-color 0.5s, border-color 0.5s; /* 过渡效果 */
}
.pages a:hover {
  background-color: rgba(255, 255, 255, 0.5); /* 悬停时的背景色 */
}
.pages a.active {
  background-color: rgba(200, 200, 200, 0.5); /* 选中页码的背景色 */
}
.pages .pageActive {
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
}
#fullscreen {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  text-align: center;
  overflow: hidden;
  padding: 20px;
  border-radius: 5px;
}
#fullscreen > img {
  max-width: 100%;
  max-height: 100%;
  cursor: pointer;
  transition: transform 0.3s ease; /* 添加过渡效果 */
}