        * { 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 {
            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; }
        .dropdown-item.all-products { border-bottom: 1px solid #e5e5e5; }
        
        /* 导航栏语言选择器样式 */
        .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/news-banner.jpg');*/
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 100px 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.5);
        }
        
        .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;
        }
        
        /* 新闻详情区域 */
        .news-detail-section {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 24px;
        }
        
        .breadcrumb {
            margin-bottom: 30px;
            font-size: 14px;
            color: #5f6368;
        }
        
        .breadcrumb a {
            color: #5f6368;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            color: #0078d4;
        }
        
        .breadcrumb span {
            margin: 0 8px;
        }
        
        .news-detail-main {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        
        .news-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        
        .news-title {
            font-size: 32px;
            font-weight: 600;
            color: #202124;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .news-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e5e5e5;
            color: #5f6368;
            font-size: 14px;
        }
        
        .news-meta i {
            margin-right: 6px;
            color: #0078d4;
        }
        
        .news-body {
            line-height: 1.8;
            color: #5f6368;
        }
        
        .news-body p {
            margin-bottom: 20px;
        }
        
        .news-body img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 20px 0;
        }
        
        .news-nav {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #e5e5e5;
        }
        
        .nav-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #0078d4;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.2s;
        }
        
        .nav-link:hover {
            color: #005a9e;
        }
        
        .nav-disabled {
            color: #ccc;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }
        
        .sidebar {
            position: sticky;
            top: 80px;
            height: fit-content;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: 20px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        
        .widget-title {
            font-size: 18px;
            font-weight: 600;
            color: #202124;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #0078d4;
        }
        
        .related-list {
            list-style: none;
        }
        
        .related-item {
            padding: 12px 0;
            border-bottom: 1px solid #e5e5e5;
        }
        
        .related-item:last-child {
            border-bottom: none;
        }
        
        .related-title {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 6px;
        }
        
        .related-title a {
            text-decoration: none;
            color: #202124;
            transition: color 0.2s;
        }
        
        .related-title a:hover {
            color: #0078d4;
        }
        
        .related-date {
            font-size: 12px;
            color: #5f6368;
        }
        
        .no-related {
            color: #5f6368;
            text-align: center;
            padding: 20px;
        }
        
        .back-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 12px;
            background: #0078d4;
            color: white;
            text-decoration: none;
            border-radius: 40px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .back-btn:hover {
            background: #005a9e;
            transform: translateY(-2px);
        }
        
        /* 页脚 */
        .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;
        }
        
        @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: 60px 24px; }
            .page-banner h1 { font-size: 28px; }
            .page-banner p { font-size: 14px; }
            
            .news-detail-main {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                position: static;
            }
            
            .news-content {
                padding: 25px;
            }
            
            .news-title {
                font-size: 24px;
            }
            
            .news-nav {
                flex-direction: column;
                gap: 15px;
            }
            
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-col ul li i { margin-right: 0; margin-left: 8px; }
            
            .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;
            }
        }
        
        @media (max-width: 480px) {
            .news-content { padding: 20px; }
            .news-title { font-size: 20px; }
            .news-meta { flex-wrap: wrap; gap: 10px; }
        }
        
        [dir="rtl"] .dropdown-menu {
            left: auto;
            right: 0;
        }
        
        [dir="rtl"] .news-meta i {
            margin-right: 0;
            margin-left: 6px;
        }
        
        [dir="rtl"] .footer-col ul li i {
            margin-right: 0;
            margin-left: 8px;
        }

