/* ========== 导航栏高度变量 ========== */
:root {
    --zm-navbar-height: 80px;
}

/* ========== 页面主体不被导航栏遮挡 ========== */
body {
    padding-top: var(--zm-navbar-height);
}

/* ========== Logo 样式 - 适配 SVG ========== */
.yz-logo {
    height: 67px;
    width: auto;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.yz-logo-mobile {
    height: 34px;
    width: auto;
    display: block;
}

.yz-logo-footer {
    height: 38px;
    width: auto;
    display: block;
}

/* ========== 导航栏容器 ========== */
@keyframes zmNavGlowSlide {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes zmNavFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes zmLogoPulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
    }

    50% {
        box-shadow: 0 4px 24px rgba(0, 102, 255, 0.5), 0 0 40px rgba(0, 102, 255, 0.2);
    }
}

.zm-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 0;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

/* 导航栏背景层 - 初始就有半透明深色背景 */
.zm-navbar-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgb(88 225 233 / 98%) 0%, rgb(167 171 185) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: opacity 0.5s ease;
}

.zm-navbar.scrolled .zm-navbar-bg {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 252, 1) 100%);
}

.zm-navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.zm-navbar.scrolled .zm-navbar-inner {
    padding: 14px 40px;
}

.zm-navbar-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.4) 20%, rgba(0, 212, 170, 0.3) 50%, rgba(0, 102, 255, 0.4) 80%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.zm-navbar.scrolled .zm-navbar-glow {
    opacity: 1;
    height: 1.5px;
    background: linear-gradient(90deg, transparent 0%, #0066FF 20%, #00D4AA 50%, #0066FF 80%, transparent 100%);
}

/* ========== Logo 容器 - 新样式 ========== */
.zm-nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zm-nav-logo::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 170, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.zm-nav-logo:hover::before {
    opacity: 1;
}

.zm-nav-logo:hover .yz-logo {
    transform: scale(1.05);
}

.zm-navbar.scrolled .zm-nav-logo {
    padding: 2px 6px;
}

/* ========== 导航链接区域 ========== */
.zm-nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    margin: 0;
    padding: 0;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.zm-navbar.scrolled .zm-nav-links {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.04);
}

.zm-nav-links li {
    margin: 0;
    padding: 0;
}

.zm-nav-item .zm-nav-link,
.zm-nav-dropdown .zm-dropdown-toggle {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 17px;
    border-radius: 11px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    letter-spacing: 0.3px;
    border: none;
    background: none;
}

.zm-navbar.scrolled .zm-nav-item .zm-nav-link,
.zm-navbar.scrolled .zm-nav-dropdown .zm-dropdown-toggle {
    color: #64748b;
}

.zm-nav-item .zm-nav-link::after,
.zm-nav-dropdown .zm-dropdown-toggle::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066FF, #6366f1, #00D4AA);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.zm-nav-item .zm-nav-link:hover::after,
.zm-nav-dropdown:hover .zm-dropdown-toggle::after {
    width: 60%;
}

.zm-nav-item .zm-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.4);
}

.zm-nav-dropdown:hover .zm-dropdown-toggle {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.4);
}

.zm-navbar.scrolled .zm-nav-item .zm-nav-link:hover,
.zm-navbar.scrolled .zm-nav-dropdown:hover .zm-dropdown-toggle {
    color: #0066FF;
    background: rgba(0, 102, 255, 0.08);
    text-shadow: none;
}

/* 激活态 */
.zm-nav-item .zm-nav-link.zm-active {
    color: #fff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.zm-navbar.scrolled .zm-nav-item .zm-nav-link.zm-active {
    color: #0066FF;
    background: rgba(0, 102, 255, 0.08);
    text-shadow: none;
}

.zm-nav-item .zm-nav-link.zm-active::after {
    width: 60%;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.zm-navbar.scrolled .zm-nav-item .zm-nav-link.zm-active::after {
    background: linear-gradient(90deg, #0066FF, #6366f1, #00D4AA);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
}

.zm-nav-dropdown.zm-active>.zm-dropdown-toggle {
    color: #fff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.zm-navbar.scrolled .zm-nav-dropdown.zm-active>.zm-dropdown-toggle {
    color: #0066FF;
    background: rgba(0, 102, 255, 0.08);
    text-shadow: none;
}

.zm-nav-dropdown.zm-active>.zm-dropdown-toggle::after {
    width: 60%;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.zm-navbar.scrolled .zm-nav-dropdown.zm-active>.zm-dropdown-toggle::after {
    background: linear-gradient(90deg, #0066FF, #6366f1, #00D4AA);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
}

/* ========== 下拉箭头 ========== */
.zm-dropdown-arrow {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.7);
}

.zm-nav-dropdown:hover .zm-dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.zm-navbar.scrolled .zm-dropdown-arrow {
    color: #94a3b8;
}

/* ========== 下拉菜单面板 ========== */
.zm-nav-dropdown {
    position: relative;
}

.zm-dropdown-panel {
    position: absolute;
    top: calc(100% + 11px);
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.96);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    pointer-events: none;
}

.zm-nav-dropdown:hover .zm-dropdown-panel,
.zm-dropdown-panel:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.zm-dropdown-panel::before {
    content: "";
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid rgba(255, 255, 255, 0.98);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.zm-nav-dropdown:hover .zm-dropdown-panel::before {
    opacity: 1;
}

.zm-dropdown-header {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 19px 9px;
}

.zm-dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-radius: 18px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.03), 0 8px 32px rgba(0, 102, 255, 0.06);
    padding: 7px;
    min-width: 265px;
    list-style: none;
    margin: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.zm-dropdown-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066FF, #6366f1, #00D4AA);
    border-radius: 18px 18px 0 0;
}

.zm-dropdown-menu::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.zm-dropdown-menu.zm-dropdown-menu-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 540px;
    column-gap: 0;
}

.zm-dropdown-menu li {
    margin: 0;
    padding: 0;
}

.zm-dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    color: #475569 !important;
    padding: 11px 15px !important;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-decoration: none;
    border: none;
    background: none;
    position: relative;
}

.zm-dropdown-icon {
    font-size: 16px;
    flex-shrink: 0;
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    transition: all 0.3s ease;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.zm-dropdown-item:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 212, 170, 0.05)) !important;
    color: #0066FF !important;
    transform: translateX(4px);
}

.zm-dropdown-item:hover .zm-dropdown-icon {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 170, 0.1));
    box-shadow: 0 3px 12px rgba(0, 102, 255, 0.2), inset 0 0 0 1px rgba(0, 102, 255, 0.1);
    transform: scale(1.08);
}

.zm-dropdown-item.zm-active {
    color: #0066FF !important;
    font-weight: 600;
    background: rgba(0, 102, 255, 0.06) !important;
}

.zm-dropdown-item.zm-active .zm-dropdown-icon {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(0, 212, 170, 0.08));
}

/* ========== 右侧链接区域 ========== */
.zm-nav-right {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    margin-left: 13px;
}

.zm-login-btn {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 17px;
    border-radius: 21px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.zm-navbar.scrolled .zm-login-btn {
    color: #0066FF;
    border-color: rgba(0, 102, 255, 0.4);
    background: rgba(0, 102, 255, 0.04);
}

.zm-login-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.zm-navbar.scrolled .zm-login-btn:hover {
    color: #0066FF;
    border-color: #0066FF;
    background: rgba(0, 102, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.25);
}

.zm-login-btn svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.8);
}

.zm-navbar.scrolled .zm-login-btn svg {
    color: #64748b;
}

.zm-register-btn {
    background: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
    color: #fff !important;
    border: none;
    padding: 9px 21px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.zm-register-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 27px;
    background: linear-gradient(135deg, #0066FF, #00D4AA);
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.35s ease;
    z-index: -1;
}

.zm-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 102, 255, 0.4);
}

.zm-register-btn:hover::before {
    opacity: 0.6;
}

.zm-register-btn svg {
    transition: transform 0.35s ease;
}

.zm-register-btn:hover svg {
    transform: translateX(3px);
}

/* ========== 移动端菜单按钮 ========== */
.zm-mobile-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    cursor: pointer;
    padding: 11px;
    border-radius: 11px;
    transition: all 0.3s ease;
}

.zm-mobile-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.zm-navbar.scrolled .zm-mobile-btn {
    background: rgba(0, 0, 0, 0.04);
}

.zm-navbar.scrolled .zm-mobile-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}

.zm-mobile-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.zm-navbar.scrolled .zm-mobile-btn span {
    background: #334155;
}

.zm-mobile-btn:hover span {
    background: #fff;
}

.zm-navbar.scrolled .zm-mobile-btn:hover span {
    background: #0066FF;
}

/* ========== 移动端遮罩 ========== */
.zm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 10001;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zm-overlay.zm-active {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    visibility: visible;
}

/* ========== 移动端抽屉 ========== */
.zm-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 88%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 10002;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.zm-mobile-menu.zm-active {
    right: 0;
}

.zm-mobile-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: #64748b;
    transition: all 0.25s ease;
    z-index: 10;
}

.zm-mobile-close:hover {
    background: #e2e8f0;
    color: #334155;
}

.zm-mobile-header {
    padding: 20px 24px 16px;
    background: linear-gradient(135deg, #f8faff 0%, #f0fdf8 100%);
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.zm-mobile-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zm-mobile-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 20px 32px;
}

.zm-mobile-link {
    display: flex;
    align-items: center;
    padding: 12px 12px;
    color: #334155;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.zm-mobile-link:hover,
.zm-mobile-link.zm-active {
    color: #0066FF;
    background: rgba(0, 102, 255, 0.05);
}

.zm-mobile-link.zm-active {
    font-weight: 600;
}

.zm-mobile-dropdown {
    border-radius: 10px;
    overflow: hidden;
}

.zm-mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 12px;
    font-size: 15px;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
    user-select: none;
    border-radius: 10px;
    transition: background 0.25s ease;
}

.zm-mobile-dropdown-toggle:hover {
    background: rgba(0, 0, 0, 0.02);
}

.zm-mobile-dropdown-arrow {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    color: #94a3b8;
}

.zm-mobile-dropdown.zm-open .zm-mobile-dropdown-toggle {
    color: #0066FF;
}

.zm-mobile-dropdown.zm-open .zm-mobile-dropdown-arrow {
    transform: rotate(180deg);
    color: #0066FF;
}

.zm-mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zm-mobile-dropdown.zm-open .zm-mobile-dropdown-menu {
    max-height: 1000px;
}

.zm-mobile-sub {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 12px 10px 24px !important;
    font-size: 14px !important;
    color: #64748b !important;
    border-radius: 8px !important;
    transition: all 0.25s ease;
    text-decoration: none;
}

.zm-mobile-item-icon {
    font-size: 14px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #f1f5f9;
    flex-shrink: 0;
}

.zm-mobile-sub:hover,
.zm-mobile-sub.zm-active {
    color: #0066FF !important;
    background: rgba(0, 102, 255, 0.05) !important;
}

.zm-mobile-sub.zm-active {
    font-weight: 600;
}

.zm-mobile-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 16px 4px;
}

.zm-mobile-auth {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.zm-mobile-auth-link {
    flex: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 0 !important;
    color: #0066FF !important;
    text-decoration: none;
    font-size: 14px !important;
    font-weight: 600;
    border-radius: 12px !important;
    border: 1.5px solid rgba(0, 102, 255, 0.3);
    background: rgba(0, 102, 255, 0.03);
    transition: all 0.25s ease;
}

.zm-mobile-auth-link:hover {
    border-color: #0066FF;
    background: rgba(0, 102, 255, 0.08) !important;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.2);
}

.zm-mobile-register {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #0066FF, #00D4AA) !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 13px 0 !important;
    margin-top: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.zm-mobile-register:hover {
    box-shadow: 0 8px 28px rgba(0, 102, 255, 0.35);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    :root {
        --zm-navbar-height: 60px;
    }

    .zm-nav-links {
        display: none;
    }

    .zm-nav-right {
        display: none;
    }

    .zm-mobile-btn {
        display: flex;
    }

    .zm-navbar-inner {
        padding: 14px 16px;
    }

    .yz-logo {
        height: 34px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {

    .zm-nav-item .zm-nav-link,
    .zm-nav-dropdown .zm-dropdown-toggle {
        padding: 9px 13px;
        font-size: 13px;
    }

    .zm-login-btn {
        font-size: 12px;
        padding: 7px 13px;
    }

    .zm-register-btn {
        padding: 7px 15px;
        font-size: 12px;
    }

    .yz-logo {
        height: 36px;
    }

    .zm-navbar-inner {
        padding: 16px 32px;
    }

    :root {
        --zm-navbar-height: 72px;
    }
}