/**
 * 主题: 纸鸢图床ZIH
 * 开发者: 白木
 * 开发者的博客: https://gl.baimu.live/
 * 
 * 基础重置样式 🔄
 * 
 * @package Zhiyuan_Imgzus
 */

/* 🔄 基础样式重置 */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 📝 基础样式 */
body,
button,
input,
select,
textarea {
    font-family: var(--font-family);
}

body {
    background-color: var(--bg-deep);
    color: var(--text-white-70);
    line-height: 1.6;
    min-height: 100vh;
}

/* 隐藏WordPress默认元素 */
.wp-caption-text,
.gallery-caption,
.bypostauthor {
    display: none;
}

/* 🔒 隐藏WordPress顶部管理栏 */
#wpadminbar {
    display: none !important;
}

/* 为隐藏管理栏调整页面 */
html {
    margin-top: 0 !important;
}

body.admin-bar {
    padding-top: 0 !important;
}

