/* 容器样式 - 移除可能冲突的容器设置 */
/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
} */

/* 头部样式 */
/* 移除原有的背景设置 */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: #ffffff;  /* 改为白色背景 */
}

/* 移除滚动时的背景效果 */
header.scrolled {
    background: #ffffff;  /* 改为白色背景 */
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* 滚动时的头部样式 */
header.scrolled {
    background: rgba(255, 255, 255, 0.5);  /* 滚动时50%透明的白色背景 */
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* 页眉基本样式 */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0; /* 调整padding使总高度为95px */
    position: relative;
    transition: all 0.3s ease;
}

/* 滚动时的调整 */
header.visible .main-header {
    padding: 10px 0;
}

/* Logo样式 */
.logo {
    margin-right: 60px;
}

.logo img {
    max-height: 55px;
    width: auto;
    transition: all 0.3s ease;
}

/* Logo悬停效果 */
.logo a {
    display: block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: translateY(-2px);
}

/* 导航菜单样式 */
.main-nav {
    flex: 1;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.main-nav ul li {
    position: relative;
    margin: 0;
}

.main-nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* 导航菜单下划线动效优化 */
.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    opacity: 0;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: calc(100% - 30px);
    opacity: 1;
}

/* 当前页面激活状态 */
.main-nav ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* 导航菜单项悬停效果 */
.main-nav ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* 导航菜单在滚动时的样式调整 */
header.visible .main-header {
    padding: 12px 0;
}

header.visible .logo img {
    max-height: 45px;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    /* 导航相关样式 */
    .logo {
        margin-right: 40px;
    }
    
    .main-nav ul li a {
        padding: 10px 12px;
    }
}

@media (max-width: 992px) {
    .logo {
        margin-right: 30px;
    }
}

/* 导航菜单样式 */
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* 当前页面激活状态 */
.main-nav a.active {
    color: #0066cc;
    font-weight: 600;
}

/* 页眉基本样式 */
/* 修改PC端和移动端页眉的基础样式 */
.desktop-header, .mobile-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 导航菜单样式优化 */
.main-nav ul li a {
    /* 保留这一个统一的导航菜单样式 */
    .main-nav ul li a {
        color: #333333;
        text-decoration: none;
        padding: 10px 15px;
        display: block;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s ease;
        position: relative;
        text-shadow: none;
    }
    
    /* 删除其他重复的颜色定义 */
}

/* 导航菜单悬停效果 */
.main-nav ul li a:hover {
    color: #444444;  /* 加深的淡黑色 */
    transform: translateY(-2px);
}

/* 当前页面激活状态 */
.main-nav ul li a.active {
    color: #444444;  /* 加深的淡黑色 */
    font-weight: 600;
}

/* 移动端导航文字样式 */
.mobile-nav-link {
    color: #333333;
    font-weight: 500;
    font-size: 16px;
    text-shadow: none;
}

/* 汉堡菜单颜色 */
.mobile-toggle span {
    background-color: #333333;
}

/* 导航菜单样式 */
.main-nav ul li a {
    color: #171716;  /* 黑色文字 */
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-shadow: none;  /* 移除文字阴影 */
}

/* 导航菜单悬停效果 */
.main-nav ul li a:hover {
    color: #ff6b00;  /* 鼠标悬停时显示橙色 */
    transform: translateY(-2px);
}

/* 当前页面激活状态 */
.main-nav ul li a.active {
    color: #ff6b00;  /* 当前页面也使用橙色 */
    font-weight: 500;
}

/* 移动端导航文字样式 */
.mobile-nav-link {
    color: #171716;  /* 黑色文字 */
    font-weight: 500;
    font-size: 18px;
    text-shadow: none;
}

/* 移动端导航悬停效果 */
.mobile-nav-link:hover {
    color: #ff6b00;  /* 鼠标悬停时显示橙色 */
}

/* 删除文件末尾重复的白色文字样式定义 */
.desktop-header {
    background: #ffffff !important;
}

.desktop-header .container {
    background: #ffffff !important;
}

.main-header {
    background: #ffffff !important;
}

/* 头部样式 */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: #ffffff;
    transform: translateY(0);  /* 初始位置 */
}

/* 向下滚动时隐藏页眉 */
header.hide {
    transform: translateY(-100%);  /* 向上移动隐藏 */
}

/* 向上滚动时显示页眉 */
header.show {
    transform: translateY(0);  /* 恢复原位 */
}

/* 语言切换按钮样式 - 重新设计 */
/* 语言切换按钮 - 新设计 */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
    background: #f8f8f8;
    border-radius: 6px;
    padding: 3px;
}

.lang-item {
    display: inline-block;
    padding: 5px 10px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
}

.lang-item:hover {
    color: #ff6b00;
}

.lang-item.active {
    color: #fff;
    background: #ff6b00;
    box-shadow: 0 2px 4px rgba(255, 107, 0, 0.2);
}

.lang-item:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lang-item.active {
    background-color: #fff8f0;
    border-color: #ff6b00;
    color: #ff6b00;
    font-weight: 500;
}

.lang-item.active:after {
    color: #ff6b00;
}

/* 移动端语言切换按钮 */
.mobile-actions {
    display: flex;
    align-items: center;
}

.mobile-lang {
    margin-right: 15px;
}

.mobile-lang .lang-item {
    padding: 3px 8px;
    font-size: 13px;
}

.mobile-lang .lang-item span {
    margin-right: 3px;
}

.mobile-lang .lang-item:after {
    font-size: 12px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .language-switcher:not(.mobile-lang) {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-lang {
        display: none;
    }
}

@media (max-width: 480px) {
    .mobile-lang .lang-item:after {
        display: none;
    }
    
    .mobile-lang .lang-item {
        padding: 3px;
        margin: 0 2px;
    }
    
    .mobile-lang .lang-item span {
        margin-right: 0;
    }
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-button {
    margin-left: 30px;
}

.contact-icon-btn {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #ff6b00;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.contact-icon-btn:hover {
    background-color: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

.contact-icon-btn i {
    margin-right: 10px;
    font-size: 18px;
}

.contact-icon-btn span {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .contact-button {
        margin-left: 20px;
    }
    
    .contact-icon-btn {
        padding: 10px 20px;
    }
    
    .contact-icon-btn i {
        font-size: 16px;
    }
    
    .contact-icon-btn span {
        font-size: 14px;
    }
}

/* 删除以下重复的样式:
.contact-icon-btn:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
}

.contact-icon-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.contact-icon-btn span {
    font-size: 14px;
    font-weight: 500;
}
*/