/* ==============================
   导航栏完整原版样式
============================== */

/* 头部导航容器 */
header {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* LOGO 尺寸 */
.logo-img {
    height: 60px !important;
    width: auto !important;
}

/* 导航布局居中 */
.container.header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 15px 0 !important;
}

/* logo容器右边距 —— 调整变小，让导航更靠近LOGO */
.logo {
    margin-right: 15px !important;
}

/* 导航菜单横向排列 */
nav ul {
    display: flex !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 导航菜单项 —— 间距变小 */
nav li {
    margin: 0 6px !important;
    padding: 0 !important;
}

/* 导航默认样式 —— 内边距变小，更紧凑 */
nav a {
    display: inline-block !important;
    padding: 6px 12px !important;
    font-size: 15px !important;
    color: #000 !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* 鼠标悬浮效果 */
nav a:hover {
    background-color: #00CCCC !important;
    color: #fff !important;
}

/* 当前选中导航样式 */
nav a.active {
    background: #00CCCC !important;
    color: #fff !important;
}

/* 橙色按钮 */
nav ul li a.btn-orange {
    background: #ff6c00 !important;
    color: #ffffff !important;
    padding: 6px 14px !important;
    border-radius: 4px !important;
    font-size: 15px !important;
}

/* 橙色按钮悬浮 */
nav ul li a.btn-orange:hover {
    background: #00B2B2 !important;
    color: #ffffff !important;
}

/* ==============================
   👇 LOGO 样式（中英宽度对齐，互不影响）
============================== */

.logo {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.logo-text {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.3 !important;
    width: 320px !important;
    max-width: 320px !important;
    overflow: hidden !important;
}

/* 中文 LOGO：调大字间距，与英文宽度对齐 */
.logo-cn {
    font-size: 26px !important;
    font-weight: bold !important;
    color: #000 !important;
    white-space: nowrap !important;
    display: block !important;
    letter-spacing: 6px !important;
    width: 100% !important;
}

/* 拼音 */
.logo-pinyin {
    font-size: 14px !important;
    color: #666 !important;
    letter-spacing: 1px !important;
    display: block !important;
}

/* 英文 LOGO：保持 26px，自动缩放，与中文宽度对齐 */
.logo-en {
    font-size: 26px !important;
    font-weight: bold !important;
    color: #000 !important;
    white-space: nowrap !important;
    display: block !important;
    transform-origin: left center !important;
    width: 100% !important;
}