/*愚蠢的全局圆角*/
* {
    border-radius: 8px;
}

/*全局字体*/
body {
    font-size: 0.95em;
    font-family: "LXGW WenKai", sans-serif;
}

/*调整默认阴影*/
:root {
    --card-box-shadow: 0 3px 8px 6px rgba(7, 17, 27, 0.17);
    --card-hover-box-shadow: 0 3px 8px 6px rgba(7, 17, 27, 0.17);
}

/*调整元素背景色*/
[data-theme="light"] {
    --card-bg: rgba(255, 255, 255, 0.67);
}

/*调整顶栏圆角*/
#nav {
    border-radius: 0 0 12px 12px;
}

/*调整背景遮罩*/
#web_bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
}

[data-theme="light"] #web_bg::before {
    background-color: rgba(255, 143, 158, 0.57);
}

[data-theme="dark"] #web_bg::before {
    background-color: rgba(19, 21, 25, 0.5);
}

/*调整页脚文字颜色*/
#footer {
    --light-grey: var(--font-color);
}