        /* 全局样式 */
		
		
		
		
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: linear-gradient(135deg, #f5f6fa 0%, #dfe9f3 100%);
            color: #2f3640;
            line-height: 1.6;
            padding-top: 5px; /* 默认电脑端的 padding */
        }

        /* 使用媒体查询来改变手机端样式 */
        @media (max-width: 600px) {
            body {
                padding-top: 120px; /* 手机端的 padding */
            }
        }

        a {
            text-decoration: none;
            color: #fff;
        }

        /* 导航栏样式 */
        header {
            background: linear-gradient(135deg, #273c75, #40739e);
            color: white;
            padding: 15px;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            padding: 10px 20px;
            font-size: 16px;
            transition: background-color 0.3s, color 0.3s;
        }

        .nav-links a:hover {
            background-color: #3b4e76;
            border-radius: 5px;
            color: #fff;
        }

        .language-selector {
            background-color: #fff;
            color: #273c75;
            padding: 8px 16px;
            border: 2px solid #273c75;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s, color 0.3s;
        }

        .language-selector:hover {
            background-color: #273c75;
            color: #fff;
        }

        /* 主容器 */
        .container {
            max-width: 800px;
            margin: 100px auto 0;
            background: #ffffff;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        }

        h2 {
            text-align: center;
            color: #273c75;
            margin-bottom: 20px;
            font-size: 2.5em;
        }

        /* 表单样式 */
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 20px;
        }

        input[type="text"] {
            padding: 12px 15px;
            border: 2px solid #dcdde1;
            border-radius: 10px;
            font-size: 16px;
            transition: border 0.3s, box-shadow 0.3s;
        }

        input[type="text"]:focus {
            border-color: #40739e;
            box-shadow: 0 0 5px rgba(64, 115, 158, 0.5);
            outline: none;
        }

        button {
            padding: 12px;
            background: linear-gradient(135deg, #40739e, #273c75);
            color: white;
            font-size: 16px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.3s;
        }

        button:hover {
            background-color: #273c75;
            transform: scale(1.05);
        }

        /* 查询结果样式 */
        #result {
            margin-top: 20px;
        }

        .result-card {
            background: #f0f4f8;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
        }

        .result-card h2 {
            color: #273c75;
            margin-bottom: 10px;
            font-size: 1.8em;
        }

        .result-card h3 {
            color: #273c75;
            margin: 10px 0 5px;
            font-size: 1.4em;
        }

        .result-card p {
            margin: 8px 0;
        }

        .result-card a {
            color: #40739e;
            text-decoration: underline;
        }

        /* 响应式设计 */
        @media (max-width: 600px) {
            .nav-links {
                flex-direction: column;
                gap: 10px;
            }

            nav {
                flex-direction: column;
                align-items: flex-start;
            }

            .container {
                padding: 20px;
            }

            h2 {
                font-size: 2em;
            }
        }
		
		
.logo {
    font-size: 10px; /* 调整字体大小，减小 logo 大小 */
    font-weight: bold; /* 加粗字体 */
    color: #ffffff; /* Logo 文字颜色 */
    margin-right: 20px; /* Logo 与链接之间的间距 */
    transition: color 0.3s ease, transform 0.3s ease; /* 平滑过渡效果 */
}

.logo:hover {
    color: #dfe9f3; /* 悬停时略微变色 */
    transform: scale(1.05); /* 悬停时稍微放大 logo */
}

/* 确保导航链接保持相同的间距和样式 */
.nav-links {
    gap: 20px; /* 保持定义的间距 */
}

/* 响应式设计调整 */
@media (max-width: 600px) {
    .nav-links {
        flex-direction: column; /* 在小屏幕上垂直排列 */
        gap: 10px; /* 保持一致的间距 */
    }

    .logo {
        margin-bottom: 10px; /* 在小屏幕上将 logo 与链接间距增加 */
    }
}

/* 可选：添加一个额外的样式来控制 logo 的背景渐变 */
.logo {
    background: linear-gradient(135deg, #ff6b6b, #f7d94c); /* 多彩渐变 */
    -webkit-background-clip: text; /* 裁剪背景到文字 */
    -webkit-text-fill-color: transparent; /* 使文字填充透明 */
}
.nav-items {
    display: none; /* 默认不显示 */
}

/* 汉堡按钮样式 */
.hamburger {
    font-size: 30px; /* 汉堡按钮大小 */
    cursor: pointer; /* 鼠标悬停时显示为可点击 */
    color: #ffffff; /* 汉堡按钮颜色 */
    display: block; /* 默认显示汉堡按钮 */
}

/* 大屏幕（电脑端）样式 */
@media (min-width: 601px) {
    .nav-items {
        display: flex; /* 默认显示导航链接 */
        flex-direction: row; /* 水平排列 */
        gap: 20px; /* 导航项之间的间距 */
    }

    .hamburger {
        display: none; /* 隐藏汉堡按钮 */
    }
}

/* 小屏幕（手机端）样式 */
@media (max-width: 600px) {
    .nav-links {
        flex-direction: column; /* 在小屏幕上垂直排列 */
        align-items: flex-start; /* 左对齐 */
    }

    .nav-items.active {
        display: flex; /* 展开导航链接 */
        flex-direction: column; /* 垂直排列 */
        gap: 10px; /* 间距 */
    }
}
