body {
    margin: 0;
    padding: 0;
    height: 1300vh; /* 调整高度以适应两张图 */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: scroll; /* 使页面能够垂直滚动 */
    overflow-x: hidden;
    position: relative;
}



.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color:  #f3f2e7; /* 浅灰色 */
    background-size: cover;
    background-position: center;
}

.navbar {
    display: flex;
    justify-content: flex-end; /* 将导航栏内容靠右对齐 */
    background-color: #fce8b6;
    position: fixed; /* 固定导航栏在最上方 */
    top: 0px; /* 固定在顶部 */
    width: calc(100% - 0px); /* 宽度占满整个页面 */
    z-index: 1000; /* 确保导航栏在其他内容之上 */
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.244); /* 添加底部阴影效果 */
}


.image-links {
    position: absolute;
    top: 1370vh;
    display: flex;
    justify-content: space-around; /* 或者使用其他的对齐方式 */
    margin-top: 20px; /* 根据需要调整间距 */
    transform:scale(1.5);
    margin: 20px 10px;
}

.image-thumbnail {
    width: 100px; /* 根据需要设置图片宽度 */
    height: auto; /* 保持图片比例 */
}


    .footer {
        width: 100%;          /* 占据页面宽度100% */
        height: 70vh;        /* 高度为70vh */
        background-color: #f1f1f1; /* 示例背景色，可以根据需要调整 */
        display: flex;       /* 使用flex布局 */
        justify-content: center; /* 居中内容 */
        align-items: center; /* 垂直居中内容 */
        /* 其他样式根据需求添加 */
    }




/* 下拉按钮样式 */
.dropbtn {
    background-color: #fefefe00;
    color: rgb(255, 255, 255);
    padding: 0px;
    font-size: 18px; /* 增大字体大小 */
    border: none;
    cursor: pointer;
    margin: 0 45px; /* 增加间距 */
    text-decoration: none; /* 取消下划线 */
    display: flex;
    align-items: center;
    justify-content: space-between;/* 确保箭头在右侧 */
}
/* 容器 <div> - 需要定位下拉内容 */
.dropdown {
    position: relative;
    display: inline-block;
    color:#f3f2e7;
    font-weight: bold;
}

/* 下拉内容 (默认隐藏) */
.dropdown-content {
    display: none;
    position: absolute;
    color: rgb(237, 236, 236);
    background-color:  #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(255, 255, 255, 0);
    z-index: 1;
    font-weight: bold;
}

/* 下拉菜单的链接 */
.dropdown-content a {
    color: black;
    padding: 9px 10px;
    text-decoration: none; /* 取消下划线 */
    display: block;
}

/* 鼠标移上去后修改下拉菜单链接颜色 */
.dropdown-content a:hover {
    background-color: #a1a0a0;
    text-decoration: none; /* 取消下划线 */
}

/* 在鼠标移上去后显示下拉菜单 */
.dropdown:hover .dropdown-content {
    display: block;
}

/* 当下拉内容显示时修改下拉按钮的背景颜色 */
.dropdown:hover .dropbtn {
    background-color: #ffffff00;
}
.hollow-text {
    color: transparent; /* 使字母T透明 */
    text-shadow:
        1px 1px 0 #ffffff,   /* 在T的周围添加阴影以模拟镂空效果 */
        -1px -1px 0 #f1eaea,
        1px -1px 0 #fbf4f4,
        -1px 1px 0 #000;
    font-weight: bold;
    font-size: 85px;
}

.content{
    font-family:"AlibabaPuHuiTi"!important;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8;
    color:#445296;
}
@font-face {
    font-family: 'AlibabaPuHuiTi';
    src: url('../font/Alibaba\ PuHuiTi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.special-word {
    font-family: 'Arlon'; /* 替换为您想要使用的字体 */
    font-size: 40px; /* 根据需要调整字体大小 */
    color: #000; /* 根据需要调整颜色 */
    color:#445296;
}
@font-face {
    font-family: 'Arlon';
    src: url('../font/d7a02996833d3bfe1650df829a88a8ac.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.scroll-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 10px;
    height: 100vh;
    background-color: rgb(170, 167, 167); /* 滑动栏背景颜色 */
}
.scroll-thumb {
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 50px; /* 初始高度，根据需要调整 */
    background-color: rgb(190, 184, 184); /* 滑块背景颜色 */
}

.second-page-content {
    position: absolute;
    top: 90vh; /* 调整位置以适应第二页 */
    left: 25%;
    transform: translateX(-50%) scale(0.7);
    box-sizing: border-box; /* 确保padding包含在width内 */
    width:auto;
}
.second-page-word {
    position: absolute;
    top: 130vh; /* 调整位置以适应第二页 */
    left: 45%;
    box-sizing: border-box; /* 确保padding包含在width内 */
    width:50%;
    font-family:"AlibabaPuHuiTi"!important;
    font-size: 35px;
    font-weight: bold;
    line-height: 1.8;
    color:#445296;
    opacity: 0; /* 初始状态为不可见 */
    transform: translateX(100%); /* 初始位置在右侧 */
    transition: opacity 1.5s, transform 1.5s; /* 动画时长2秒 */
    text-indent: 2em; /* 这里的2em可以根据需要调整 */
}



.second-page-word.visible {
    opacity: 1; /* 可见状态 */
    transform: translateX(0); /* 移动到原始位置 */
}

.third-page-content {
    position: absolute;
    top: 180vh; /* 调整位置以适应第二页 */
    left: 30%; /* 使元素紧贴右侧边缘 */
    transform: translateX(-50%) scale(0.7);
    box-sizing: border-box; /* 确保padding包含在width内 */
    width: auto;
}

.third-page-word {
    position: absolute;
    top: 220vh; /* 调整位置以适应第二页 */
    box-sizing: border-box; /* 确保padding包含在width内 */
    left:50px;
    width:50%;
    font-family:"AlibabaPuHuiTi"!important;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8;
    color:#445296;
    opacity: 0; /* 初始状态为不可见 */
    transform: translateX(-100%); /* 初始位置在右侧 */
    transition: opacity 1.5s, transform 1.5s; /* 动画时长2秒 */
    text-indent: 2em;

}
.third-page-word.visible {
    opacity: 1; /* 可见状态 */
    transform: translateX(0); /* 移动到原始位置 */
}
.fourth-page-word {
    position: absolute;
    top: 300vh; /* 调整位置以适应第二页 */
    box-sizing: border-box; /* 确保padding包含在width内 */
    right:50px;
    width:50%;
    font-family:"AlibabaPuHuiTi"!important;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8;
    color:#445296;
    text-indent: 2em;

}



@keyframes float-up {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(-20px);
        opacity: 1;
    }
}

.float-in {
    animation: float-up 1.5s forwards;
}

.fifth-page-word {
    position: absolute;
    top: 440vh; /* 调整位置以适应第二页 */
    box-sizing: border-box; /* 确保padding包含在width内 */
    width: 70%;
    margin: 0 auto; /* 使元素水平居中 */
    font-family:"AlibabaPuHuiTi"!important;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8;
    color:#445296;
    text-indent: 2em;
}


@keyframes float-up {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(-20px);
        opacity: 1;
    }
}

.float-in5 {
    animation: float-up 1.5s forwards;
}

.sixth-page-word {
    position: absolute;
    top: 540vh; /* 调整位置以适应第二页 */
    box-sizing: border-box; /* 确保padding包含在width内 */
    width: 70%;
    margin: 0 auto; /* 使元素水平居中 */
    font-family:"AlibabaPuHuiTi"!important;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8;
    color:#445296;
    text-indent: 2em;
}


@keyframes float-up6 {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(-30px);
        opacity: 1;
    }
}

.float-in6 {
    animation: float-up6 1.5s forwards;
}
.seventh-page-content {
    position: absolute;
    top: 460vh;
    left: -50%;
    justify-content: flex-start; /* 确保内容从左侧开始 */
    box-sizing: border-box; /* 确保padding包含在width内 */
    width:auto;

}

.seventh-page-word {
    position: absolute;
    top: 590vh; /* 调整位置以适应第二页 */
    left: 45%;
    box-sizing: border-box; /* 确保padding包含在width内 */
    width:50%;
    font-family:"AlibabaPuHuiTi"!important;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8;
    color:#445296;
    opacity: 0; /* 初始状态为不可见 */
    transform: translateX(100%); /* 初始位置在右侧 */
    transition: opacity 3s, transform 3s; /* 动画时长3秒 */
    text-indent: 2em;
}

.seventh-page-word.visible {
    opacity: 1; /* 可见状态 */
    transform: translateX(0); /* 移动到原始位置 */
}


.eighth-page-content {
    position: absolute;
    top: 600vh; /* 调整位置以适应第二页 */
    left: 0%;
    transform: translateX(-50%) scale(0.7);
    box-sizing: border-box; /* 确保padding包含在width内 */
    width:auto;
}

.eighth-page-word {
    position: absolute;
    top: 650vh; /* 调整位置以适应第二页 */
    left: 30%;
    box-sizing: border-box; /* 确保padding包含在width内 */
    width:50%;
    font-family:"AlibabaPuHuiTi"!important;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8;
    color:#445296;
    text-indent: 2em;
}

.eighth-page-content img {
    width: 600px;  /* 设置图片宽度为500像素 */
    height: 800px; /* 设置图片高度为300像素 */
}

.ninth-page-content {
    position: absolute;
    top: 665vh; /* 调整位置以适应第二页 */
    left: 0;
    transform: translateX(-50%) scale(1.2);
    box-sizing: border-box; /* 确保padding包含在width内 */
    width:auto;
}

.ninth-page-word {
    position: absolute;
    top: 680vh; /* 调整位置以适应第二页 */
    left: 30%;
    box-sizing: border-box; /* 确保padding包含在width内 */
    width:50%;
    font-family:"AlibabaPuHuiTi"!important;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8;
    color:#445296;
    text-indent: 2em;
}

.tenth-page-content {
    position: absolute;
    top: 695vh; /* 调整位置以适应第二页 */
    left: 75%;
    transform: translateX(-50%) scale(0.1);
    box-sizing: border-box; /* 确保padding包含在width内 */
    width:auto;
}

.tenth-page-content img {
    width: 200px;  /* 设置图片宽度为500像素 */
    height: 300px; /* 设置图片高度为300像素 */
}

.tenth-page-word {
    position: absolute;
    top: 710vh; /* 调整位置以适应第二页 */
    left: 30%;
    box-sizing: border-box; /* 确保padding包含在width内 */
    width:50%;
    font-family:"AlibabaPuHuiTi"!important;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8;
    color:#445296;
    text-indent: 2em;
}

.eleventh-page-image {
    position: absolute;
    top: 717vh; /* 调整位置以适应第二页 */
    transform: scale(0.6);
    left: 25%; /* 图片放置在左侧 */
    width: 50%; /* 根据需要调整图片宽度 */
    height: auto;
}

.eleventh-page-word {
    position: absolute;
    top: 785vh; /* 调整位置以适应第二页 */
    box-sizing: border-box; /* 确保padding包含在width内 */
    width: 70%;
    margin: 0 auto; /* 使元素水平居中 */
    font-family:"AlibabaPuHuiTi"!important;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8;
    color:#445296;
    text-align: center;
    text-indent: 2em;
}
.float-in11 {
    animation: float-up11 1.5s forwards;
}

@keyframes float-up11 {
    from {
        transform: translateY(20px);
        opacity: 0;
        transform:  scale(0.4);
    }
    to {
        transform: translateY(-40px);
        opacity: 1;
        transform:  scale(0.6);
    }
}
.twelveth-page-image {
    position: absolute;
    top: 805vh; /* 调整位置以适应第二页 */
    transform: scale(1.1);
    left: 25%; /* 图片放置在左侧 */
    width: 50%; /* 根据需要调整图片宽度 */
    height: auto;
}

.twelveth-page-word {
    position: absolute;
    top: 875vh; /* 调整位置以适应第二页 */
    box-sizing: border-box; /* 确保padding包含在width内 */
    width: 70%;
    margin: 0 auto; /* 使元素水平居中 */
    font-family:"AlibabaPuHuiTi"!important;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8;
    color:#445296;
    text-align: center;
    text-indent: 2em;
}
.float-in12 {
    animation: float-up6 1.5s forwards;
}

.thirteenth-page-image {
    position: absolute;
    top: 895vh; /* 调整位置以适应第二页 */
    transform: scale(1.0);
    left: 25%; /* 图片放置在左侧 */
    width: 50%; /* 根据需要调整图片宽度 */
    height: auto;
}

.thirteenth-page-word {
    position: absolute;
    top: 960vh; /* 调整位置以适应第二页 */
    box-sizing: border-box; /* 确保padding包含在width内 */
    width: 78%;
    margin: 0 auto; /* 使元素水平居中 */
    font-family:"AlibabaPuHuiTi"!important;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8;
    color:#445296;
    text-align: center;
    text-indent: 2em;
}
.float-in13 {
    animation: float-up6 1.5s forwards;
}

.float-in131 {
    animation: float-up6 1.5s forwards;
}

.fourteenth-page-content {
  position: absolute;
  top: 990vh; /* 调整位置以适应第二页 */
  left: 30%;
  transform: translateX(-50%) scale(0.7);
  box-sizing: border-box; /* 确保padding包含在width内 */
  width:auto;
}

.fourteenth-page-content img {
  width: 700px;  /* 设置图片宽度为500像素 */
  height: 800px; /* 设置图片高度为300像素 */
}


.fourteenth-page-word {
  position: absolute;
  top: 1015vh;
  left: 60%;
  box-sizing: border-box; /* 确保padding包含在width内 */
  width:30%;
  font-family:"AlibabaPuHuiTi"!important;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.8;
  color:#445296;
  text-indent: 2em;
  opacity: 0; /* 初始状态为不可见 */
  transform: translateX(100%); /* 初始位置在右侧 */
  transition: opacity 1.5s, transform 1.5s; /* 动画时长2秒 */
}
.float-in14 {
    animation: float-up6 1.5s forwards;
}

.fifteenth-page-content {
    position: absolute;
    top: 985vh; /* 调整位置以适应第二页 */
    left: 60%;
    transform: translateX(-50%) scale(0.25);
    box-sizing: border-box; /* 确保padding包含在width内 */
    width:50%;
}

.fifteenth-page-word {
    position: absolute;
    top: 1115vh; /* 调整位置以适应第二页 */
    left: 10%;
    box-sizing: border-box; /* 确保padding包含在width内 */
    width:40%;
    font-family:"AlibabaPuHuiTi"!important;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.8;
    color:#445296;
    text-indent: 2em;
    opacity: 0; /* 初始状态为不可见 */
    transform: translateX(-100%); /* 初始位置在右侧 */
    transition: opacity 1.5s, transform 1.5s; /* 动画时长2秒 */

}

.fourteenth-page-word.visible {
  opacity: 1; /* 可见状态 */
  transform: translateX(0); /* 移动到原始位置 */
}

.fourteenth-page-image {
	margin-right: 10px;
	position: relative;
	left: -100%; /* 初始位置在左侧不可见区域 */
	transition: left 2s ease-out; /* 滑动动画 */
}

.fifteenth-page-word.visible {
    opacity: 1; /* 可见状态 */
    transform: translateX(0); /* 移动到原始位置 */
}

.sixteenth-page-word.visible {
    opacity: 1; /* 可见状态 */
    transform: translateX(0); /* 移动到原始位置 */
}

.fifteenth-page-image {
    margin-right: 10px;
    position: relative;
    right: -100%; /* 初始位置在左侧不可见区域 */
    transition: right 1s ease-out; /* 滑动动画 */
}

.slide-right {
  right: 0; /* 滑动到正常位置 */
}

.slide-in15 {
  left: 0; /* 滑动到正常位置 */
}

.sixteenth-page-word {
    position: absolute;
    top: 1207vh; /* 调整位置以适应第二页 */
    left: 60%;
    box-sizing: border-box; /* 确保padding包含在width内 */
    width:30%;
    font-family:"AlibabaPuHuiTi"!important;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.8;
    color:#445296;
    text-indent: 2em;
    opacity: 0; /* 初始状态为不可见 */
    transform: translateX(100%); /* 初始位置在右侧 */
    transition: opacity 1.5s, transform 1.5s; /* 动画时长2秒 */

}

.sixteen-page-word.visible {
    opacity: 1; /* 可见状态 */
    transform: translateX(0); /* 移动到原始位置 */
}

.sixteenth-page-content {
  position: absolute;
  top: 1110vh; /* 调整位置以适应第二页 */
  left: 15%;
  transform: translateX(-50%) scale(0.25);
  box-sizing: border-box; /* 确保padding包含在width内 */
  width:50%;
}

.sixteenth-page-content img {
  width: 2500px;  /* 设置图片宽度为500像素 */
  height: 1800px; /* 设置图片高度为300像素 */
}

.sixteenth-page-image {
  margin-right: 10px;
  position: relative;
  left: -100%; /* 初始位置在左侧不可见区域 */
  transition: left 1s ease-out; /* 滑动动画 */
}

.float-in16 {
    animation: float-up6 1.5s forwards;
}

.seventeenth-page-content {
    position: absolute;
    top: 1285vh; /* 调整位置以适应第二页 */
    left: 25%;
    transform: translateX(-50%) scale(0.8);
    box-sizing: border-box; /* 确保padding包含在width内 */
    width:auto;
}
.seventeenth-page-word {
    position: absolute;
    top: 1300vh; /* 调整位置以适应第二页 */
    left: 55%;
    box-sizing: border-box; /* 确保padding包含在width内 */
    width:40%;
    font-family:"AlibabaPuHuiTi"!important;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8;
    color:#445296;
    opacity: 0; /* 初始状态为不可见 */
    transform: translateX(100%); /* 初始位置在右侧 */
    transition: opacity 1.5s, transform 1.5s; /* 动画时长2秒 */
    text-indent: 2em;
}

.seventeenth-page-word.visible {
    opacity: 1; /* 可见状态 */
    transform: translateX(0); /* 移动到原始位置 */
}

.seventeenth-page-image {
    margin-right: 10px;
    position: relative;
    left: -100%; /* 初始位置在左侧不可见区域 */
    transition: left 2s ease-out; /* 滑动动画 */
}
.slide-in17 {
    left: 0; /* 滑动到正常位置 */
}
.centered-text {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.image-container {
    position: absolute;
    top:50px; /* 根据需要调整位置 */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.image-container img {
    width: 100%; /* 根据需要调整图片宽度 */
    height: 100%;
}

.second-page-image {
    margin-right: 10px;
    position: relative;
    left: -100%; /* 初始位置在左侧不可见区域 */
    transition: left 2s ease-out; /* 滑动动画 */
}
.slide-in {
    left: 0; /* 滑动到正常位置 */
}

.third-page-image {
    margin-left: 10px;
    position: relative;
    left: 200%; /* 初始位置在左侧不可见区域 */
    transition:left 2s ease-out; /* 滑动动画 */
}
.slide-in3 {
    left: 100%; /* 滑动到正常位置 */
}
.fourth-page-image {
    position: absolute;
    top: 300vh; /* 调整位置以适应第二页 */
    left: 20px; /* 图片放置在左侧 */
    width: 50%; /* 根据需要调整图片宽度 */
    height: auto;
}
.fifth-page-image {
    position: absolute;
    top: 380vh; /* 调整位置以适应第二页 */
    left: 30%; /* 图片放置在左侧 */
    width: 50%; /* 根据需要调整图片宽度 */
    height: auto;
}

.fifth-page-image.visible {
    bottom: 0;
    opacity: 1;
}
.sixth-page-image {
    position: absolute;
    top: 460vh; /* 调整位置以适应第二页 */
    left: 25%; /* 图片放置在左侧 */
    width: 50%; /* 根据需要调整图片宽度 */
    height: auto;
    transform: scale(0.8);
}

.seventh-page-image {
    margin-right: 80px;
    position: relative;
    left: 25%;
    left: -60%; /* 初始位置在左侧不可见区域 */
    transition: left 3s ease-out; /* 滑动动画 */
    transform: scale(0.35);
}

.slide-in7 {
    left: 0; /* 滑动到正常位置 */
}
.eighth-page-image {
    margin-right: 50px;
    position: relative;
    left: 0%; /* 初始位置在左侧不可见区域 */
    transition: left 3s ease-out; /* 滑动动画 */
    transform: scale(0.3);
}

.ninth-page-image {
    margin-right: 50px;
    position: relative;
    left: 35%; /* 初始位置在左侧不可见区域 */
    transition: left 3s ease-out; /* 滑动动画 */
    transform: scale(0.4);
}
.centered-text {
    position: absolute;
    top: 80px; /* 距离页面顶部60px */
    left:-150px;
    white-space: nowrap; /* 一行显示 */
    font-family:"AlfaSlabOne" !important;
    font-size: 50px;
    letter-spacing: 0.5px;
    word-spacing: 2px;
    color: #445296;
    -webkit-text-stroke: 2px #445296; /* 镂空效果 */
}
@font-face {
    font-family: 'AlfaSlabOne';
    src: url('../font/AlfaSlabOne-Regular-2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@keyframes floatUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.image-text.centered-text#floating-text {
    animation: floatUp 2s forwards;
}
