/*
Theme Name: 长寿东贤电脑企业版
Version: 2.1
*/

/* =========================
   全局基础
========================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-top: 80px;
    font-family: "Microsoft YaHei", sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f6f7fb;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================
   顶部导航（统一PC+手机）
========================= */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1200;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 30px;

    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.topbar.scrolled {
    background: rgba(0,0,0,0.35);
}

/* =========================
   菜单（核心）
========================= */

.menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* ⭐手机不挤爆 */
}

.menu a {
    color: #fff;
    margin-left: 25px;
    font-size: 16px;
    font-weight: 500;
}

.menu a:hover {
    color: #ffdd57;
}

/* =========================
   手机优化（不折叠，只排版）
========================= */

@media (max-width: 768px) {

    .topbar {
        justify-content: center;
        padding: 10px 15px;
        height: auto;
    }

    .menu {
        justify-content: center;
        flex-wrap: wrap;
    }

    .menu a {
        margin: 6px 10px;
        font-size: 14px;
    }
}