.container {
    /* 主内容容器，设置最大宽度、最小宽度、居中、圆角、阴影和内边距，并添加毛玻璃效果 */
    max-width: 1000px;
    min-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 48px 40px;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.3);
}

/* 导航栏容器布局 */
.nav-container {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.5em 1em;
  justify-content: space-between;
}
.nav-container {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.5em 1em;
  justify-content: space-between;
}

/* 左侧标题样式 */
.nav-title {
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 2em;
}

/* 右侧导航链接布局 */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5em;
}

/* 导航链接样式 */
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #ffd700;
}
body {
}

.changelog-item {
  /* 每条日志项的分隔线和内边距 */
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}
.changelog-item:last-child {
  /* 最后一条日志项不显示分隔线 */
  border-bottom: none;
}

.changelog-date {
    /* 日志日期样式，颜色和字号 */
    color: #888;
    font-size: 0.95em;
    margin-bottom: 6px;
}
.changelog-title {
    /* 日志标题加粗和字号 */
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 4px;
}
.changelog-content {
    /* 日志内容缩进和颜色 */
    margin-left: 12px;
    color: #444;
}
@media (max-width: 800px) {
  /* 平板及小屏幕：内容区宽度自适应，内边距缩小 */
  .container {
    max-width: 98vw;
    min-width: 0;
    padding: 16px 4vw;
  }
}
@media (max-width: 500px) {
  /* 手机端：进一步缩小内边距，适配极小屏幕 */
  .container {
    padding: 8px 2vw;
  }
}

/* Lightbox 放大图样式 */
.changelog-content img {
  cursor: zoom-in;
  transition: transform 0.2s ease;
}
.changelog-content img:hover {
  transform: scale(1.01);
}
.lightbox {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}
p5 {
    color: #ff95ba;
    font-size: 1.07em;
    font-weight: normal;
}
p4 {
    color: #ce65ff;
    font-size: 1.23em;
    font-weight: 700;
}
p3 {
    color: #ff3535;
    font-size: 1.74em;
    font-weight: 600;
}