/* 基础设置 */
body {
    font-family: Arial, sans-serif;
    padding: 20px;
}

.container {
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 标题样式 */
h1 {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase; /* 大写效果 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo 样式 */
.logo {
    width: 40px; /* 设置 Logo 的大小 */
    height: auto;
    margin-right: 15px; /* 设置 Logo 和标题的间距 */
}

/* 说明文字样式 */
p {
    font-size: 18px;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* 输入框样式 */
.input-section {
    text-align: center;
    margin-bottom: 30px;
}

label {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

input {
    width: 250px;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    display: block;
    margin: 0 auto;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus {
    border-color: #3498db;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.5);
}

/* 表格样式 */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

th {
    background-color: #f4f4f4;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 20px;
    }

    input {
        width: 200px;
    }
}
