/*
Theme Name: Blocksy Child
Template: blocksy
*/

/* ======================
🔥 吸顶导航自定义样式 在这里修改
======================= */
.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 99999 !important;

    /* ========== 可自定义的参数 ========== */
    height: 70px !important;           /* 导航高度 */
    background: #ffffff !important;    /* 背景颜色 #ffffff = 白色 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important; /* 阴影 */
    transition: all 0.3s ease !important;
}

/* 导航内容垂直居中（必须加） */
.header-inner {
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
}