/* 基础样式 */
body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff; /* 白色背景 */
    color: #000000; /* 黑色文字 */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* 容器样式 */
.container {
    text-align: center;
    background-color: #ffffff; /* 白色背景 */
    padding: 30px;
    border-radius: 8px; /* 轻微圆角 */
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 轻微阴影 */
}

/* 标题样式 */
h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #000000; /* 黑色标题 */
    font-weight: 600; /* 中等加粗 */
}

/* 表单样式 */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="text"], 
textarea {
    padding: 12px;
    font-size: 1em;
    border: none; /* 无边框 */
    border-radius: 4px; /* 轻微圆角 */
    background-color: #f5f5f5; /* 浅灰色背景 */
    color: #000000; /* 黑色文字 */
    transition: background-color 0.3s ease;
}

input[type="text"]:focus, 
textarea:focus {
    outline: none;
    background-color: #e0e0e0; /* 聚焦时背景变深 */
}

button {
    padding: 12px 20px;
    font-size: 1em;
    border: none; /* 无边框 */
    border-radius: 4px; /* 轻微圆角 */
    background-color: #000000; /* 黑色背景 */
    color: #ffffff; /* 白色文字 */
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #333333; /* 深灰色背景 */
}


/* 查询结果样式 */
#result {
    margin-top: 20px;
    padding: 20px;
    background-color: #f5f5f5; /* 浅灰色背景 */
    border-radius: 4px; /* 轻微圆角 */
}

.result-text {
    font-size: 1.1em;
    color: #000000; /* 黑色文字 */
    margin-bottom: 10px;
}

.links a {
    color: #000000; /* 黑色文字 */
    text-decoration: none;
    display: block;
    margin: 3px 0;
    padding: 3px;
    background-color: #ffffff; /* 白色背景 */
    border-radius: 4px; /* 轻微圆角 */
    transition: all 0.2s ease;
}

.links a:hover {
    background-color: #e0e0e0; /* 浅灰色背景 */
}