body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: rgba(0, 0, 0, 0.04);
}

.container {
  padding: 10px;
}

.header {
  text-align: center;
  margin: 20px auto;
}

.header img {
  max-width: 8rem;
  height: auto;
  border-radius: 50%;
}

.intro {
  text-align: center;
  font-size: 1rem;
  color: #333;
  padding: 10px;
  border-radius: 10px;
  margin: 20px 0;
}

.banner img {
  width: 20rem;
}

.list {
  display: grid;
  gap: 20px; /* 列之间的间距 */
}

.arrow {
  margin: 0;
  padding: 0;
}

.card {
  background-color: #fff; /* 更改背景颜色 */
  border-radius: 15px; /* 增加圆角 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 添加突出效果 */
  padding: 20px;
  word-wrap: break-word; /* 强制文字换行 */
  white-space: normal; /* 确保不会被截断或拉伸 */
  line-break: anywhere;
}
/* 增加区隔和间距 */
.card h3 {
  text-align: center;
}
.card h3,
.card p {
  margin-bottom: 10px; /* 文本元素之间的底部间距 */
  line-height: 1.5; /* 行高，以提高可读性 */
  border-bottom: 1px solid #ccc; /* 底部边框，用于区隔信息 */
  padding-bottom: 10px; /* 底部边框下方的间距 */
}

.app-images-container {
  display: flex;
  gap: 5px; /* 图像之间的间距 */
  overflow-x: auto; /* 横向滚动容器 */
  padding: 10px; /* 添加内边距以创建承托效果 */
  background-color: #f0f0f0; /* 背景颜色 */
  border-radius: 5px; /* 可选：添加背景容器的圆角 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 添加背景容器的突出效果 */
}

.date-divider {
  margin-top: 20px;
  font-size: 2rem;
  text-align: center;
  position: relative;
  width: 250px;
  margin: 0 auto;
  color: #fff;
  height: 90px;
  line-height: 40px;
}
.date-divider::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  height: 100%;
  background-color: #39abff;
  z-index: -1; /* 确保背景色块位于文字的下方 */
  border-radius: 12px;
}

#nextPage {
  margin-top: 10px;
  cursor: pointer;
}

.app-logo {
  max-width: 100%; /* 图像宽度不超过容器 */
  max-height: 100px; /* 图像高度最大值，可以根据需要调整 */
  display: block;
  margin: 10px auto; /* 图像水平居中 */
  border-radius: 23px; /* 添加圆角 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 添加突出效果 */
}

.app-image {
  max-width: 100%; /* 图像宽度不超过容器 */
  max-height: 200px; /* 图像高度最大值，可以根据需要调整 */
  display: block;
  border-radius: 5px; /* 添加圆角 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 添加突出效果 */
}

.app-images {
  overflow-x: auto; /* 横向滚动容器 */
}

.download-button {
  width: 100%;
  background-color: #ff0000; /* 红色背景 */
  color: #ffffff; /* 白色文本 */
  border-radius: 5px;
  padding: 10px 20px;
  text-decoration: none; /* 移除下划线 */
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
}

#nextPage {
  background-color: #39abff; /* 背景颜色 */
  border: none; /* 移除边框 */
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s; /* 添加过渡效果 */
  width: 100%; /* 使按钮宽度与父容器（.container）一致 */
  box-sizing: border-box; /* 确保内边距和边框不增加按钮宽度 */
  font-size: 20px;
  margin: 30px 0 50px 0;
  border-radius: 45px;
  color: #fff;
  padding: 10px 40px;
}

.navbar ul {
  list-style-type: none;
  padding: 0;
  margin: 20px auto;
  display: flex;
  flex-flow: row-reverse;
}

.navbar li {
  margin-right: 20px; /* 间距可根据需要调整 */
  border: 1px solid #39abff;
  padding: 10px;
}

.navbar ul li a {
  text-decoration: none;
  color: #39abff;
}

/* 样式日期 */
.date-style {
  font-size: 22px; /* 设置字体大小 */
  color: #fff; /* 设置文本颜色为蓝色 */
  font-weight: bold; /* 加粗文本 */
  text-decoration: none; /* 添加下划线效果 */
}

/* 样式APP数量 */
.app-count-style {
  font-size: 18px; /* 设置字体大小 */
  color: #fff; /* 设置文本颜色为红色 */
  font-weight: normal; /* 使用正常的字体粗细 */
}
