/* footer.css */
.bottom {
    background-color: #f0f5f9;
    border-top: 2px solid #0066cc;
    padding: 40px 0 30px; /* 增加上边距 */
    margin-top: 60px; /* 显著增加页脚上边距 */
    text-align: center;
}

.bottom-container {
    width: 1000px;
    margin: 0 auto;
}

.bottom-content {
    text-align: center;
    color: #333;
    font-size: 14px;
    line-height: 1.8;
    padding: 20px 0; /* 增加内容区域内边距 */
}

.institution {
    font-weight: bold;
    color: #0066cc;
    font-size: 16px; /* 增大机构名称字号 */
    margin-bottom: 15px; /* 增加下方间距 */
}

.contact {
    margin-bottom: 15px; /* 增加下方间距 */
    color: #555; /* 使用深灰色 */
}

.copyright {
    margin-bottom: 15px; /* 增加下方间距 */
    color: #555; /* 使用深灰色 */
}

.tech-support {
    margin-top: 20px; /* 增加技术支持上边距 */
    padding-top: 20px; /* 增加内边距 */
    border-top: 1px dashed #ccc; /* 添加上方虚线分隔 */
    color: #777; /* 使用浅灰色 */
}

.tech-support a {
    color: #0066cc;
    text-decoration: none;
}

.tech-support a:hover {
    text-decoration: underline;
}

/* 内容区域底部增加更多空间 */
#content {
    padding-bottom: 80px; /* 显著增加内容区域底部空间 */
}