        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', system-ui, 'Inter', sans-serif; background: #f5f5f5; color: #202124; line-height: 1.5; }
        .main-nav { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #e5e5e5; }
        .nav-content { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; height: 64px; }
  
        /* Logo 样式 - 简洁现代风格 */
        .logo {
            font-size: 30px;
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #0078d4 0%, #00a4ef 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }

        .logo::before {
            content: '';
            display: inline-block;
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #0078d4, #00a4ef);
            border-radius: 8px;
            position: relative;
            background-clip: unset;
            -webkit-background-clip: unset;
            color: white;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E");
            background-size: 20px;
            background-repeat: no-repeat;
            background-position: center;
        }

        .logo:hover {
            background: linear-gradient(135deg, #005a9e 0%, #0078d4 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }	

        /* 导航菜单 - 从左到右展开 */
        .nav-menu { 
            display: flex; 
            gap: 32px; 
            list-style: none; 
            margin: 0;
            padding: 0;
        }

        .nav-menu a { 
            text-decoration: none; 
            color: #202124; 
            font-weight: 500; 
            font-size: 15px;
            position: relative;
            padding: 8px 0;
            transition: color 0.3s ease;
            display: inline-block;
        }

        /* 下划线 - 从左到右 */
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #0078d4, #00a4ef);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        /* 悬停时下划线展开 */
        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a:hover { 
            color: #0078d4;
        }

        .nav-menu a.active { 
            color: #0078d4;
            font-weight: 600;
        }
        
        .nav-right { display: flex; align-items: center; gap: 20px; }
        .dropdown { position: relative; }
        .dropdown > a { display: flex; align-items: center; gap: 6px; }
        .dropdown-icon { font-size: 12px; }
        .dropdown-menu { position: absolute; top: 100%; left: 0; background: white; border-radius: 12px; box-shadow: 0 8px 28px rgba(0,0,0,0.12); min-width: 220px; opacity: 0; visibility: hidden; transition: all 0.2s; z-index: 100; border: 1px solid #e5e5e5; }
        .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; }
        .dropdown-item > a { display: block; padding: 12px 20px; color: #202124; text-decoration: none; font-size: 14px; }
        .dropdown-item > a:hover { background: #f0f0f0; }
        
        /* 导航栏语言选择器样式 */
        .language-selector {
            position: relative;
        }
        .lang-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: #f0f0f0;
            border: 1px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s;
            font-family: inherit;
        }
        .lang-btn:hover {
            background: #e8e8e8;
            border-color: #0078d4;
        }
        .lang-dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 28px rgba(0,0,0,0.12);
            min-width: 180px;
            max-height: 400px;
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s;
            z-index: 1000;
            border: 1px solid #e5e5e5;
            margin-top: 1px;
        }
        .language-selector:hover .lang-dropdown-menu {
            opacity: 1;
            visibility: visible;
        }
        .lang-option {
            display: block;
            padding: 12px 20px;
            text-decoration: none;
            color: #202124;
            font-size: 14px;
            transition: background 0.2s;
            white-space: nowrap;
        }
        .lang-option:hover {
            background: #f5f5f5;
        }
        .lang-option.active {
            background: #0078d4;
            color: white;
        }
        
        .mobile-menu-btn { display: none; font-size: 24px; cursor: pointer; background: none; border: none; }
        
        /* 页面横幅 - 使用背景图片 */
        .page-banner {
            /*background-image: url('img/contact-banner.jpg');*/
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 120px 24px;
            text-align: center;
            position: relative;
        }
        
        .page-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.2);
        }
        
        .page-banner h1 {
            font-size: 48px;
            font-weight: 600;
            color: white;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }
        
        .page-banner p {
            font-size: 18px;
            color: rgba(255,255,255,0.9);
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        /* 主要内容区域 */
        .main-content {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 24px;
        }
        
        /* 联系我们区块 */
        .contact-section {
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            margin-bottom: 40px;
        }
        
        .contact-wrapper {
            padding: 50px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }
        
        /* 联系信息 */
        .contact-info-box {
            padding: 30px;
            background: #f8f9fa;
            border-radius: 16px;
        }
        
        .info-title {
            font-size: 24px;
            font-weight: 600;
            color: #0078d4;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #ffb900;
            display: inline-block;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
            padding: 15px;
            background: white;
            border-radius: 12px;
            transition: all 0.3s;
        }
        
        .info-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .info-icon {
            width: 48px;
            height: 48px;
            background: #0078d4;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .info-content h4 {
            font-size: 13px;
            color: #5f6368;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .info-content p {
            font-size: 15px;
            font-weight: 500;
            color: #202124;
            word-break: break-word;
        }
        
        .info-content a {
            color: #0078d4;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .info-content a:hover {
            color: #ffb900;
        }
        
        /* 客服图片 */
        .contact-image-box {
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-image-box img {
            width: 100%;
            max-width: 500px;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .contact-image-box img:hover {
            transform: scale(1.02);
        }
        
        /* 页脚 */
        .footer {
            background: #1a1a1a;
            color: #e5e5e5;
            padding: 60px 24px 30px;
            margin-top: 60px;
        }
        
        .footer-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
        }
        
        .footer-col h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-col p {
            color: #aaa;
            line-height: 1.6;
            margin-bottom: 12px;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 12px;
        }
        
        .footer-col ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-col ul li a:hover {
            color: #0078d4;
        }
        
        .footer-col ul li i {
            width: 24px;
            margin-right: 8px;
        }
        
        .social-icons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 15px;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
            opacity: 0.9;
        }
        
        /* 语言切换按钮 */
        .lang-toggle-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #0078d4;
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 15px;
            transition: all 0.3s;
            border: none;
        }
        .lang-toggle-btn:hover {
            background: #005a9e;
            transform: translateY(-2px);
        }
        
        .footer-languages {
            margin-top: 30px;
            padding-top: 30px;

            border-top: 1px solid #333;
            text-align: center;
        }
        
        .lang-links {
            display: none;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        .lang-link {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(255,255,255,0.1);
            border-radius: 25px;
            color: #aaa;
            text-decoration: none;
            font-size: 13px;
            transition: all 0.2s;
        }
        
        .lang-link:hover {
            background: #0078d4;
            color: white;
        }
        
        .lang-link.active {
            background: #0078d4;
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 13px;
        }
        
        /* RTL 支持 */
        [dir="rtl"] .dropdown-menu {
            left: auto;
            right: 0;
        }
        
        [dir="rtl"] .info-item {
            flex-direction: row-reverse;
        }
        
        [dir="rtl"] .footer-col ul li i {
            margin-right: 0;
            margin-left: 8px;
        }
        
        /* 响应式 */
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            .nav-menu { position: fixed; top: 64px; left: -100%; width: 100%; height: calc(100vh - 64px); background: white; flex-direction: column; padding: 24px; gap: 20px; transition: left 0.3s; z-index: 999; }
            .nav-menu.active { left: 0; }
            .dropdown-menu { position: static; opacity: 1; visibility: visible; box-shadow: none; display: none; margin-top: 8px; padding-left: 20px; }
            .dropdown.active .dropdown-menu { display: block; }
            
            .page-banner { padding: 80px 24px; }
            .page-banner h1 { font-size: 32px; }
            .page-banner p { font-size: 14px; }
            .contact-wrapper { padding: 25px; }
            .contact-grid { grid-template-columns: 1fr; gap: 30px; }
            .contact-info-box { padding: 20px; }
            .info-item { flex-direction: column; align-items: center; text-align: center; }
            .info-icon { margin-bottom: 10px; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-col ul li i { margin-right: 0; margin-left: 8px; }
            .lang-links { gap: 8px; }
            .lang-link { padding: 4px 10px; font-size: 11px; }
            
            .lang-dropdown-menu {
                position: fixed;
                top: auto;
                bottom: 0;
                left: 0;
                right: 0;
                width: 100%;
                border-radius: 20px 20px 0 0;
                max-height: 60vh;
            }
            .language-selector:hover .lang-dropdown-menu {
                opacity: 0;
                visibility: hidden;
            }
            .lang-dropdown-menu.show {
                opacity: 1 !important;
                visibility: visible !important;
            }
        }

