/* 通用容器 */
body {
  font-family: "微软雅黑", sans-serif;
  background: #f0f0f0;
  color: #000;
  padding: 2em;
  margin: 0;
  background-image: url("images/MB_Lumina_Hisui.png");
  background-repeat: no-repeat;
  background-position: calc(50% - 60px) calc(50% + 50px); /* 向左 50px，向下 60px */
}

.center-container {
  max-width: 800px;
  margin: 2em auto;
  padding: 1em 1.5em;
  background-color: rgba(255, 255, 255, 0.65); /* 透明度 0.85，可调0~1 */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 内容标题和文字 */
h1 {
  margin-bottom: 1em;
}

p {
  line-height: 1.5;
  color: #333;
}

/* 链接样式 */
.bili-link {
  color: palevioletred;
  text-decoration: none;
}

.bili-link:hover {
  color: #c71585;
}

/* 返回书架按钮 */
.about-btn {
  display: inline-block;
  margin-top: 1em;
  font-size: 0.9rem;
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}

.about-btn:hover {
  color: #555;
}

/* 图片行 */
.img-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 1em 0;
  flex-wrap: wrap; /* 移动端自动换行 */
}

.about-img {
  height: 400px; /* PC端统一高度 */
  width: auto;
  object-fit: contain;
}

/* 手机端响应式 */
@media (max-width: 600px) {
  .center-container {
    padding: 1em; /* 小屏幕内边距更小 */
  }

  .img-row {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .about-img {
    width: 90%; /* 屏幕宽度90% */
    max-width: 400px;
    height: auto; /* 高度自适应 */
  }
}
