/*
 * ============================================================================
 * 软件名称：约定优记宝科普智汇系统 V1.0
 * 著作权人：北京约定科技集团有限公司
 * 开发完成日期：2026年04月25日
 * 软件用途：暂定二级一键替换
 * 
 * 版权所有 (C) 2026 北京约定科技集团有限公司。保留所有权利。
 * 本软件为著作权人独立开发，未经著作权人书面许可，任何单位或个人不得：
 * 1. 复制、传播、改编本软件；
 * 2. 将本软件用于商业用途；
 * 3. 修改或反向工程本软件。
 * 违反上述规定的，著作权人将依法追究其法律责任。
 * ============================================================================
 */

/**
 * 全站公共样式，包含全局重置与通用工具类
 */

/* 全局重置 */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f7fa;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* 通用工具类 */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.img-fluid {
    width: 100%;
    height: auto;
}

/* 主内容区域 */
main {
    min-height: 60vh;
}

/* 页脚 */
.site-footer {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 14px;
    border-top: 1px solid #eee;
    margin-top: 30px;
}

.footer-line {
    margin: 8px 0;
}

.footer-line a {
    color: #999;
    text-decoration: none;
}

.footer-line a:hover {
    color: #B48C48;
    text-decoration: underline;
}