/* ========================================
   Anya & Kimo - Reset 样式
   
   统一清除浏览器默认样式，建立一致的盒模型基准。
   所有页面应在引入 variables.css 之后引入本文件。
   ======================================== */

/* 全局盒模型统一 */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HTML 根元素 */
html {
    scroll-behavior: smooth;             /* 锚点平滑滚动 */
    font-size: 16px;                     /* 基准字号 */
}

/* 链接默认无下划线 */
a {
    text-decoration: none;
    color: inherit;
}

/* 图片不超出容器 */
img {
    max-width: 100%;
    height: auto;
}

/* 选中文字颜色 */
::selection {
    background: var(--pink);
    color: white;
}