/* base.css 文件内容 */
/* 设置整个页面的背景为黑色 */
body {
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* 确保主要内容区域居中 */
.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    /*flex-direction: column; */
    position: relative;
}

.main1 {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease; /* 添加过渡效果 */
}

/* 设置每一页的样式 */
.page {
  flex: 0 0 100%; /* 每页宽度为 100% */
  height: 100%; /* 每页高度为 100% */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 20px; /* 添加内边距 */
  position: relative;
}

/* 设置顶部文字样式 */
.top {
  position: absolute; /* 固定定位 */
  top: 20px; /* 距离顶部 20px */
  left: 20px; /* 距离左侧 20px */
  z-index: 20; /* 确保在最上层 */
  margin: 0; /* 移除默认的外边距 */
  font-size: 18px; /* 设置字体大小 */
  color: white; /* 设置文字颜色 */
}
/* 为引用内容添加样式 */
.top i {
    font-style: italic;
}

.iNav1 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* 垂直居中 */
  align-items: center; /* 水平居中 */
  text-align: center;
  height: 40%;
  width: 100%;
  margin-bottom: 10px;
}

.iNav1 span {
    display: block;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.5;
    white-space: pre-wrap;
}

/* 设置导航链接容器样式 */
.iNav2 {
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: flex-start; /* 图片稍微偏上 */
  height: 60%; /* 占据整个高度 */
  width: 100%; /* 占据整个宽度 */
}

/* 设置导航链接样式 */
.iNav2 ul {
    list-style-type: none;
    padding: 0;
    margin:0;
}

.iNav2 ul li {
    margin: 10px 0;
}

.iNav2 ul li a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s;
}

.iNav2 ul li a:hover {
    color: #ddd; /* 鼠标悬停时的文字颜色 */
}

/* 设置图片容器样式 */
.iNav3 {
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center; /* 垂直居中 */
  margin-top: 10px;
}

.iNav3 img {
  width: 400px; /* 设置图片宽度 */
  height: 225px; /* 设置图片高度 */
  object-fit: cover; /* 保持图片比例，裁剪多余部分 */
  /* border-radius: 10px;  可选：添加圆角 */
}

/* 设置左右点击区域样式 */
.click-area{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20%; /* 每侧占页面宽度的一半 */
  z-index: 10; /* 确保点击区域在最上层 */
  cursor: pointer; /* 鼠标悬停时显示为手型 */
}

.click-area.left {
    left: 0;
}

.click-area.right {
    right: 0;
}
