/* 全局样式 */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    height: 100%;
    overflow: hidden; /* 隐藏滚动条 */
}

/* 透明玻璃化样式 */
.glass-effect {
    background-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(9px); /* Safari 支持 */
    border: 0.8px solid rgba(255, 255, 255, 0.18);
    box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
    -webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px; /* Safari 支持 */
    border-radius: 15px;
    -webkit-border-radius: 15px; /* Safari 支持 */
    color: white; /* 字体颜色改为黑色 */
    padding: 20px;
}

/* 输入框样式 */
.input {
    max-width: 190px;
    width: 40px;
    height: 40px;
    outline: none;
    margin: 5px;
    transition: .5s;
    border: none;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5); /* 半透明背景 */
    color: rgba(0, 0, 0, 0.75); /* 深色文字 */
    transform: rotate(90deg);
}

input:focus {
    width: 150px;
    transform: rotate(0);
    background-color: rgba(255, 255, 255, 0.8); /* 悬停时背景更亮 */
}

/* 按钮样式 */
.niceButton3 {
    background-color: rgba(23, 149, 187, 0.8); /* 半透明背景 */
    border-radius: 12px;
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
}

.niceButton3:hover {
    background-color: rgba(255, 255, 255, 0.8); /* 悬停时背景变浅 */
    color: #1795bb;
    border: 1px solid rgba(204, 204, 204, 0.5);
}

/* 主要内容容器 */
.main-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center; /* 或者使用 flex-start 或 space-between */
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    gap: 20px; /* 控制子元素之间的间距 */
}

/* 透明玻璃化盒子 */
.query-container, .local-info-container {
    width: 40%; /* 根据需要调整宽度 */
    max-width: 300px; /* 设置最大宽度 */
    flex-grow: 1; /* 允许盒子在有剩余空间时扩展 */
    margin: 10px; /* 可选：增加一些外边距 */
    text-align: center; /* 文本居中对齐 */
    background-color: transparent; /* 确保背景透明 */
}

/* 应用透明玻璃化效果 */
.query-container, .local-info-container {
    class: glass-effect;
}

/* 结果和本地信息的样式 */
.result-box, .local-info-box {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
}

/* 历史按钮样式 */
.history-button {
    border: none;
    font-family: sans-serif;
    font-size: 17px;
    background: transparent;
    color: #006bb3;
    border: solid 1px rgba(0, 107, 179, 0.2);
    padding: 10px;
    border-radius: 4px;
    transition-duration: 0.2s;
}

.history-button:before {
    content: "»";
    opacity: 0;
    margin-left: -15px;
    transition-duration: 0.2s;
}

.history-button:hover:before {
    margin-left: 0px;
    opacity: 1;
}

.history-button:hover {
    color: black;
    background: rgba(0, 0, 0, 0.02);
    border: solid 1px gainsboro;
}

/* 视频背景样式 */
#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* 使用视口宽度单位 */
    height: 100vh; /* 使用视口高度单位 */
    object-fit: cover; /* 确保视频充满整个屏幕 */
    z-index: -1; /* 确保视频在所有内容的下方 */
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 999; /* 确保模态框在最上层 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: white;
    margin: 8% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
}

.loading {
    display: none;
    text-align: center;
    margin-bottom: 20px;
}

#historyContent {
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

/* 时间线样式 */
.history-event {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.history-event:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #007bff;
    border-radius: 50%;
    z-index: 1;
}

.history-event:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ddd;
    z-index: 0;
}

.history-event:last-child:after {
    display: none;
}

.history-event h3 {
    margin: 0;
    font-size: 1.2em;
    color: #007bff;
}

.history-event p {
    margin: 5px 0 0;
}