*{
    margin: 0;
    padding: 0;
    outline: 0;
    letter-spacing:140%;
    font-family: "Microsoft YaHei";
}
@font-face {
    font-family: 'Chillax'; 
    src: url('/fonts/Chillax/Chillax-Variable.ttf') 
  }
@font-face {
    font-family: 'KuaiLeTi'; 
    src: url('/fonts/KuaiLeTi/KuaiLeTi.ttf') 
  }
.panorama {
    position: fixed;  
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wrap {
    position: fixed;
    z-index: 3;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -5vh; /* 向上偏移 5vh */
}

.inner {
    width: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.titletext {
    font-size: 4rem;
    color: rgba(250, 250, 250, 0.7); /* 半透明标题 */
    padding: 10px;
    border-radius: 10px;
    font-family: "Chillax";
}

.titletext2 {
    font-size: 2rem;
    color: rgba(250, 250, 250, 0.7); /* 半透明标题 */
    padding: 10px;
    border-radius: 10px;
    font-family: "KuaiLeTi";

}

.capsule-btn {
    margin-top: 30px;
    padding: 12px 30px;
    background-color: rgba(250, 250, 250, 0); /* 半透明按钮背景 */
    color: rgba(255, 255, 255, 0.7); /* 透明字 */
    border: 2px solid rgba(250, 250, 250, 0.7);/* 半透明边框 */
    border-radius: 50px;
    font-size: 1.3rem;
    cursor: pointer;
    outline: none;
}

.capsule-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.button-row {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px; /* 按钮之间的间距 */
}

.rect-btn {
    padding: 8px 20px;
    background-color: rgba(0, 0, 0, 0); /* 中间透明 */
    color: rgba(255, 255, 255, 0.7); /* 半透明文字 */
    border: 2px solid rgba(255, 255, 255, 0.7); /* 半透明边框 */
    border-radius: 10px; /* 圆角矩形 */
    font-size: 1.2rem;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
}

.rect-btn:hover {
    background-color: rgba(0, 0, 0, 0.1); /* 鼠标悬停时稍微加深背景 */
}

.modal {
    display: none; /* 默认隐藏 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 背景色为半透明黑色 */
    justify-content: center;
    align-items: center;
    z-index: 30; /* 弹窗层级高于其他内容 */
    font-size: 1.1rem;
    line-height: 1.8; /* 增加行间距 */
    margin-bottom: 20px; /* 增加段落之间的间距 */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* 阴影效果，增加模糊度 */
}

.modal-content {
    background-color: rgba(255, 255, 255, 0.9);;
    padding: 40px;
    border-radius: 10px;
    text-align: left;
    width: calc(60%); /* 可以根据需要调整宽度 */
    max-height: 70vh;
    position: relative;
    overflow-y: auto;
}

.content-text {
    padding: 20px;
    margin: 0 auto;
}

#close-modal {
    position: absolute;
    bottom: 40px;
    right: 40px;
    padding: 15px 40px;
    background-color: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    font-size: 1.2rem;
}

#close-modal:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.copyright {
    position: fixed; /* 固定在页面底部 */
    bottom: 0; /* 使其位于页面底部 */
    left: 0; /* 确保版权信息从页面的左侧开始 */
    width: 100%; /* 让版权信息的宽度占满整个页面 */
    color: white;
    font-size: 14px;
    text-align: center; /* 使其居中显示 */
    padding: 10px 0; /* 添加一些上下间距 */
    background-color: rgba(0, 0, 0, 0.5); /* 可以加背景颜色增加可读性 */
    z-index: 999; /* 确保显示在最上层 */
}

.copyright a {
    color: white; /* 设置链接的颜色为白色 */
}
.modal a {
    color: black; /* 设置链接的颜色为白色 */
}

.page-container {
    height: 100vh;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.page {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: hidden;
}

.page1 {
    background: transparent;
}

#kuaile {
    font-family: 'KuaiLeTi';
}

.page:not(.page1) {
    background: rgba(0, 0, 0, 0.2);
}

.page:not(.page1) .blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page2 .blur-bg {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.3);
}

.page2 .content {
    padding: 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page3 .blur-bg {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.3);
}

.page3 .content {
    padding: 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page6 .blur-bg,
.page7 .blur-bg {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.3);
}

.page6 .content,
.page7 .content {
    padding: 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .page2 .grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .page2 .content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page2 .content {
        padding: 1rem;
    }
    
    .page2 .grid {
        grid-template-columns: 1fr !important;
    }

    .page3 .content {
        padding: 1.5rem;
    }
    
    .page3 .prose {
        font-size: 1rem;
    }
    
    .page3 h2 {
        font-size: 2rem !important;
    }

    .page6 .content,
    .page7 .content {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .page2 h2 {
        font-size: 2rem !important;
    }
    
    .page2 .content {
        padding: 1rem;
    }
}

html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    font-size: 2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);  /* 添加文字阴影提高可读性 */
}
