#page3 {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
#page3.show {
    display: block;
    opacity: 1;
}
#page3 .back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px); /* 高斯模糊效果 */
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}
#page3 .back-button:hover {
    transform: scale(1.1); /* 鼠标悬浮时变大 */
}
#page3 .title {
    position: absolute;
    top: 20px;
    left: 80px;
    color: white;
    font-size: 24px;
    line-height: 40px;
}
#page3 .center-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 60%;
    border: 2px solid white;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px); /* 高斯模糊效果 */
    transform: translate(-50%, -50%);
    overflow: auto;
    padding: 20px;
    color: white;
    font-size: 16px;
}
#page3 .center-box {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 80%;
    max-width: 1000px; /* 限制最大宽度 */
    height: 60%;
    max-height: 800px; /* 限制最大高度 */
    border: 2px solid rgba(255, 255, 255, 0.3); /* 半透明边框 */
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1); /* 半透明背景 */
    backdrop-filter: blur(15px); /* 增强高斯模糊效果 */
    transform: translate(-50%, -50%);
    overflow: auto; /* 允许内容滚动 */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: rgba(255, 255, 255, 0.5) rgba(0, 0, 0, 0.2); /* Firefox */

    &::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    &::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }

    &::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 10px;
        border: 2px solid rgba(0, 0, 0, 0.2);
    }
    padding: 20px;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* 添加阴影 */
}

#page3 .center-box pre {
    margin: 0;
    font-family: 'Courier New', monospace; /* 使用等宽字体 */
    white-space: pre-wrap; /* 允许换行 */
    word-wrap: break-word;
    line-height: 1.5;
}
/* 日志容器样式 */
.log-container {
    font-family: 'Courier New', monospace;
    color: #e0e0e0;
    border-radius: 4px;
    padding: 10px;
}

/* 日志行样式 */
.aligned-log {
    white-space: pre-wrap;
    word-wrap: break-word;
    text-align: left;
    line-height: 1.4;
    font-size: 14px;
}

/* 时间戳样式 */
.timestamp {
    color: #4a9eff; /* 蓝色 */
}

/* 线程和日志级别样式 */
.thread {
    color: #ffaa00; /* 橙色 */
}
/* 输入框容器 */
.input-container {
    position: absolute;
    bottom: 50px; /* 距离底部 20px */
    left: 50%;
    width: 80%; /* 与 center-box 宽度一致 */
    max-width: 800px; /* 与 center-box 最大宽度一致 */
    transform: translateX(-50%); /* 水平居中 */
    padding: 10px;
    background: rgba(255, 255, 255, 0.1); /* 半透明背景 */
    backdrop-filter: blur(10px); /* 高斯模糊 */
    border-radius: 10px; /* 圆角 */
    border: 1px solid rgba(255, 255, 255, 0.2); /* 边框 */
}

/* 输入框 */
#command-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: white;
    background: transparent;
    border: none;
    outline: none;
}

#command-input::placeholder {
    color: rgba(255, 255, 255, 0.5); /* 占位符颜色 */
}
/* 输入框容器 */
.input-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: 80%;
    max-width: 800px;
    transform: translateX(-50%);
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 输入框 */
#password-input,
#command-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: white;
    background: transparent;
    border: none;
    outline: none;
}

/* 占位符颜色 */
#password-input::placeholder,
#command-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}