/* ========================================
   1. RESET & NORMALIZE
   初始化：清除默认样式，统一盒模型
======================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;

    /* 额外优化：防字体闪动、提升渲染质量 */
    -webkit-font-smoothing: antialiased;  /* 平滑字体边缘（Mac） */
    -moz-osx-font-smoothing: grayscale;   /* Firefox 字体抗锯齿 */
    text-rendering: optimizeLegibility;   /* 优化可读性 */
    -webkit-tap-highlight-color: transparent;
}

/* 列表：移除项目符号 */
ul,
ol {
    list-style: none;
}

/* 链接：继承颜色，去除下划线 */
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* 媒体元素：防止溢出 */
img,
picture,
video,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 表单控件：重置样式并继承字体 */
input,
button,
textarea,
select {
    font: inherit;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* 按钮：明确交互行为 */
button {
    cursor: pointer;
    border: none;
}

/* 禁用按钮样式 */
button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}

/* 所有被禁用的输入框，鼠标显示“禁止”图标 */
input[type="number"]:disabled,
input[type="text"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    background-color: #f5f5f5;
}

/* ========================================
   2. BASE STYLES & TYPOGRAPHY
   基础样式与排版系统
======================================== */

html {
    font-size: 15px; /* 基准字号，便于 rem 计算 */
    scroll-behavior: smooth; /* 平滑滚动（可选） */
}

body {
    font-family: "Microsoft YaHei", serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8em;
    color: #191919;
}

h1 {
    font-size: 2.25rem;
}

/* 36px */
h2 {
    font-size: 1.75rem;
}

/* 28px */
h3 {
    font-size: 1.5rem;
}

/* 24px */
h4 {
    font-size: 1.25rem;
}

/* 20px */
h5 {
    font-size: 1.125rem;
}

/* 18px */
h6 {
    font-size: 1rem;
}

/* 16px */

/* 段落与列表文本 */
p,
li,
dd,
dt {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1em;
}

/* ========================================
   3. LAYOUT & UTILITY CLASSES
   布局辅助类与常用工具类
======================================== */

/* Flex 布局快捷类 */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* Grid 布局 */
.grid {
    display: grid;
}

/* 文本对齐 */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* 外边距工具类（垂直方向为主） */
.mb-1 {
    margin-bottom: 0.5rem;
}

/* 8px */
.mb-2 {
    margin-bottom: 1rem;
}

/* 16px */
.mb-3 {
    margin-bottom: 1.5rem;
}

/* 24px */
.mb-4 {
    margin-bottom: 2rem;
}

/* 32px */

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* 通用间距 */
.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}


/* ========================================
   4. RESPONSIVE DESIGN
   响应式断点设置
======================================== */

/* 平板及以下 */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 2rem;
    }

    /* 32px */
    h2 {
        font-size: 1.5rem;
    }

    /* 24px */
    p, li {
        font-size: 1.1rem;
    }

    /* ~15px */
}

/* 手机小屏 */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.375rem;
    }

    .container {
        padding: 0;
    }
}


/* ========================================
   5. ACCESSIBILITY ENHANCEMENTS
   可访问性增强
======================================== */

/* 聚焦状态：提升键盘导航体验 */
*:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

*:focus-visible {
    outline-color: #0066ff;
    outline-style: solid;
    outline-width: 2px;
}

/* 屏幕阅读器专用隐藏 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    clip-path: inset(50%);
}

/* 在焦点内显示的 sr-only 元素 */
.sr-only:focus-within {
    position: static;
    clip: auto;
    clip-path: none;
    height: auto;
    width: auto;
    margin: 0;
    overflow: visible;
    white-space: normal;
}

/* 禁用文本选择 */
.no-select {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE10+/Edge */
    user-select: none;          /* 标准语法 */
}


/* ========================================
   6. SCROLLBAR CUSTOMIZATION (WebKit only)
   自定义滚动条（仅 WebKit 浏览器）
======================================== */

/* 滚动条轨道 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

/* Firefox 滚动条支持（可选） */
* {
    scrollbar-width: thin;
    scrollbar-color: #ccc #f1f1f1;
}
