/* styles.css */

/* 重置浏览器默认样式 */
html {
    font-size: 26px; /* 设置根元素字体大小 */
}

/* 全局样式 */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    font-size: 26px; /* 确保 body 元素字体大小 */
}

/* 主容器样式 */
.main-container {
    width: 95%; /* 修改为屏幕宽度的 95% */
    margin: 0 auto;
    padding: 10px;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* 主标题样式 */
.main-title {
    color: red;
    font-size: 34px;
    text-align: center;
    margin-bottom: 20px;
}

/* 图片样式 */
.image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

/* 每个章节的样式 */
.section {
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    font-size: 26px; /* 确保章节内字体大小 */
}

/* 章节标题样式 */
.section h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

/* 段落样式 */
p {
    margin-bottom: 15px;
    font-size: 26px; /* 确保段落字体大小 */
}

/* 学校展示部分的容器样式 */
.school-section {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-size: 26px; /* 确保学校展示部分字体大小 */
}

/* 学校名称样式 */
.school-name {
    color: blue;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 学校专业样式 */
.school-major {
    margin-bottom: 8px;
    font-size: 26px; /* 确保学校专业字体大小 */
}

/* 学校地址样式 */
.school-address {
    color: green;
    margin-bottom: 8px;
    font-size: 26px; /* 确保学校地址字体大小 */
}

/* 学校联系方式样式 */
.school-contact {
    color: orange;
    margin-bottom: 8px;
    font-size: 26px; /* 确保学校联系方式字体大小 */
}

/* 探校结果样式 */
.school-result {
    font-weight: bold;
    font-size: 26px; /* 确保探校结果字体大小 */
}

/* 突出显示特点部分 */
.feature {
    background-color: #ffffcc; /* 设置浅黄色背景色，可根据喜好调整 */
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #e9ecef;
    margin-top: auto
}

.footer p {
    margin: 5px 0;
    font-size: 14px;
    color: #6c757d;
    text-align: center
}

.footer a {
    color: #6c757d;
    text-decoration: none
}

.footer a:hover {
    text-decoration: underline
}

/* 隐藏学校信息部分 */
.school-info {
    display: none;
}

/* 数字键盘样式 */
.numeric-keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.numeric-keypad button {
    padding: 20px;
    font-size: 26px;
    background-color: #eaeaea;
    border: none;
    border-radius: 5px;
    transition: all 0.1s ease;
}

.numeric-keypad button:active {
    transform: scale(0.95);
    background-color: #d0d0d0;
}

.numeric-keypad button[type="submit"] {
    background-color: #007BFF;
    color: white;
    grid-column: 2 / span 2; /* 让提交按钮从第 2 列开始，跨度为 2 列 */
}

/* 显示密码输入的样式 */
.password-display {
    font-size: 26px;
    margin-top: 10px;
}    