 <style>
        /* 閲嶇疆涓庡熀纭€鏍峰紡 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 涓诲唴瀹瑰尯鏍峰紡 */
        main.container-article {
            flex: 1;
            max-width: 1200px;
            margin: 10px auto;
            padding: 30px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .article-title {
            text-align: center;
            font-size: 24px;
            margin: 10px 0;
            padding: 20px;
            border-bottom: 1px solid #eee;
        }
        
        /* 鑷畾涔夊浘鏍� */
        .custom-icon {
            display: inline-block;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            line-height: 1;
        }
        
        .custom-download:before { content: '\2193'; font-weight: bold; }
         .custom-bars:before { content: '\2630'; }
         .custom-times:before { content: '\2715'; }
         .custom-star:before { content: '\2605'; }
         .custom-star-half:before { content: '\2BEA'; }
         .custom-check-circle:before { content: '\2714'; font-weight: bold; }
        
        /* 瀵艰埅鏍忔牱寮� */
        header {
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .logo a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo a:hover {
            color: #e0e0e0;
        }
        
        .logo i {
            margin-right: 10px;
            color: #3498db;
            background: white;
            padding: 8px;
            border-radius: 50%;
        }
         .logo img {
          height: 24px;
          margin-right: 8px;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        /* 澶氳瑷€閫夋嫨鍖哄煙鏍峰紡 */
        .language-selector {
            margin-bottom: 20px; 
            text-align: center;
        }
        
        .language-selector span {
            color: #333; 
            margin-right: 10px;
        }
        
        .language-selector a {
            color: #333; 
            text-decoration: none; 
            margin: 0 5px; 
            padding: 3px 8px;
        }
        
        .language-selector a.active {
            border: 1px solid #3498db; 
            border-radius: 3px;
        }
        
        .nav-links li {
            margin-left: 25px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #e0e0e0;
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* 杞欢淇℃伅鍖� */
        .software-hero {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 40px 0;
            padding: 30px;
            text-align: center;
        }
        
        .software-title {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .software-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .rating {
            color: #f39c12;
            margin-right: 15px;
        }
        
        .download-count {
            color: #7f8c8d;
            font-size: 14px;
            margin-right: 15px;
        }
        
        .version {
            background: #e3f2fd;
            color: #3498db;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }
        
        .software-description {
            max-width: 1200px;
            margin: 0 auto 25px;
            color: #555;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        /* 涓嬭浇閫夐」鍖哄煙 - 涓や釜鎸夐挳 */
        .download-options {
            margin-bottom: 25px;
        }
        
        .download-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        
        .download-btn-primary {
            display: inline-block;
            background: #2ecc71;
            color: white;
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            min-width: 180px;
            text-align: center;
        }
        
        .download-btn-secondary {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            min-width: 180px;
            text-align: center;
        }
        
        .download-btn-primary:hover {
            background: #27ae60;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .download-btn-secondary:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .download-info {
            font-size: 14px;
            color: #7f8c8d;
            margin-top: 10px;
        }
        
        /* 杞欢鎴浘鍖哄煙 */
        .screenshots {
            margin-bottom: 40px;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .section-title {
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f1f5f9;
            text-align: center;
        }
        
        .screenshot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 20px;
        }
        
        .screenshot-item {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .screenshot-item:hover {
            transform: translateY(-5px);
        }
        
        .screenshot-img {
            height: 200px;
            overflow: hidden;
        }
        
        .screenshot-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .screenshot-item:hover .screenshot-img img {
            transform: scale(1.05);
        }
        
        .screenshot-caption {
            padding: 15px;
            text-align: center;
        }
        
        /* 杞欢璇︽儏鍖哄煙 - 涓婁笅缁撴瀯 */
        .software-details {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .details-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .feature {
            display: flex;
            align-items: flex-start;
        }
        
        .feature i {
            color: #3498db;
            font-size: 20px;
            margin-right: 10px;
            margin-top: 3px;
        }
        
        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .requirements-card {
            background: white;
            border-radius: 8px;
            padding: 20px;
        }
        
        .requirements-card h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e1e4e8;
        }
        
        .requirements-list {
            list-style: none;
        }
        
        .requirements-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .requirements-list li:before {
            content: '鈥�';
            color: #3498db;
            font-size: 20px;
            position: absolute;
            left: 0;
            top: -3px;
        }
        
        /* 绠€鍖栭〉鑴氭牱寮� */
        footer {
          /*   background: #2c3e50; */
          /*   color: white; */
            padding: 30px 0;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .footer-links li {
            margin: 0 15px;
        }
        
        .footer-links a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #3498db;
        }
        
        .copyright {
            font-size: 14px;
             color: #333;
        }
        
        .copyright a {
             color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .copyright a:hover {
            color: #3498db;
        }
        
        /* 鍝嶅簲寮忚璁� */
        @media (max-width: 968px) {
            .features {
                grid-template-columns: 1fr;
            }
            
            .requirements-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #2c3e50, #3498db);
                padding: 20px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .software-title {
                font-size: 2rem;
            }
            
            .download-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-links {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-links li {
                margin: 5px 0;
            }
        }

    </style>