* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
a{text-decoration:none;}
        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            background: linear-gradient(to bottom, #000000, #1f2937, #000000);
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(to right, #1f2937, #000000, #1f2937);
            border-bottom: 2px solid #fbbf24;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #ffffff;
        }

        .logo img {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            margin-right: 12px;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
        }

        .logo-text {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(to right, #fbbf24, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            color: #d1d5db;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #fbbf24;
            background: rgba(251, 191, 36, 0.1);
        }

        .download-btn {
            background: linear-gradient(to right, #fbbf24, #f97316);
            color: #000000;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
        }

        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
        }

        .recharge-btn {
            background: linear-gradient(to right, #ef4444, #dc2626);
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
            margin-left: 10px;
        }

        .recharge-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
            background: linear-gradient(to right, #dc2626, #b91c1c);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 100px 0;
            text-align: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://miaoda-site-img.cdn.bcebos.com/cfea855f-cd6e-4247-83fd-ce221a839db7/images/7b02d526-a378-11f0-9d75-ced54ea2a831_0.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: -1;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 24px;
            background: linear-gradient(to right, #fbbf24, #f97316, #dc2626);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.25rem;
            color: #d1d5db;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn-primary {
            background: linear-gradient(to right, #fbbf24, #f97316);
            color: #000000;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border: 2px solid #fbbf24;
        }

        .btn-danger {
            background: linear-gradient(to right, #ef4444, #dc2626);
            color: #ffffff;
            border: 2px solid #ef4444;
        }

        .btn-danger:hover {
            background: linear-gradient(to right, #dc2626, #b91c1c);
            box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
        }

        /* Version Selection */
        .version-section {
            padding: 80px 0;
            background: rgba(0, 0, 0, 0.5);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 16px;
            background: linear-gradient(to right, #fbbf24, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #d1d5db;
        }

        .version-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .version-card {
            background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(0, 0, 0, 0.8));
            border-radius: 16px;
            padding: 40px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .version-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(249, 115, 22, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .version-card:hover::before {
            opacity: 1;
        }

        .version-card.shengling {
            border-color: #3b82f6;
        }

        .version-card.liuhe {
            border-color: #f97316;
        }

        .version-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .version-header {
            display: flex;
            align-items: center;
            margin-bottom: 24px;
        }

        .version-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            margin-right: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .version-icon.shengling {
            background: rgba(59, 130, 246, 0.2);
            color: #3b82f6;
        }

        .version-icon.liuhe {
            background: rgba(249, 115, 22, 0.2);
            color: #f97316;
        }

        .version-title {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .version-title.shengling {
            color: #3b82f6;
        }

        .version-title.liuhe {
            color: #f97316;
        }

        .version-subtitle {
            color: #d1d5db;
            font-size: 1.1rem;
        }

        .version-description {
            color: #d1d5db;
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .version-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .version-features li {
            padding: 8px 0;
            color: #d1d5db;
            display: flex;
            align-items: center;
        }

        .version-features li::before {
            content: '✓';
            color: #10b981;
            font-weight: bold;
            margin-right: 12px;
            font-size: 18px;
        }

        /* Download Section */
        .download-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(0, 0, 0, 0.8));
        }

        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .download-card {
            background: rgba(0, 0, 0, 0.6);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            border: 2px solid #374151;
            transition: all 0.3s ease;
        }

        .download-card:hover {
            border-color: #fbbf24;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(251, 191, 36, 0.2);
        }

        .download-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #fbbf24, #f97316);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: #000000;
        }

        .download-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .download-desc {
            color: #d1d5db;
            margin-bottom: 20px;
        }

        /* Tabs */
        .tabs {
            margin-bottom: 40px;
        }

        .tab-list {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .tab-button {
            padding: 12px 24px;
            background: rgba(31, 41, 55, 0.8);
            border: 2px solid #374151;
            border-radius: 8px;
            color: #d1d5db;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .tab-button.active {
            background: rgba(251, 191, 36, 0.2);
            border-color: #fbbf24;
            color: #fbbf24;
        }

        .tab-button:hover {
            border-color: #fbbf24;
            color: #fbbf24;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        /* News & Guides */
        .news-section {
            padding: 80px 0;
            background: rgba(0, 0, 0, 0.3);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .news-card {
            background: rgba(31, 41, 55, 0.8);
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid #374151;
            transition: all 0.3s ease;
        }

        .news-card:hover {
            border-color: #fbbf24;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .news-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .news-content {
            padding: 24px;
        }

        .news-category {
            display: inline-block;
            background: linear-gradient(to right, #fbbf24, #f97316);
            color: #000000;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: bold;
            margin-bottom: 12px;
        }

        .news-title {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 12px;
            color: #ffffff;
            line-height: 1.4;
        }
        .news-title a{text-decoration:none;  color: #ffffff;}
        .news-excerpt {
            color: #d1d5db;
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #9ca3af;
            font-size: 0.875rem;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(31, 41, 55, 0.9), rgba(0, 0, 0, 0.9));
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .contact-card {
            background: rgba(0, 0, 0, 0.6);
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            border: 2px solid #374151;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            border-color: #fbbf24;
            transform: translateY(-5px);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: #ffffff;
        }

        .qr-code {
            width: 150px;
            height: 150px;
            margin: 20px auto;
            background: #ffffff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            font-weight: bold;
        }

        /* Footer */
        .footer {
            background: #000000;
            padding: 60px 0 30px;
            border-top: 2px solid #fbbf24;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .footer-logo {
            margin-bottom: 30px;
        }

        .footer-logo img {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            margin-bottom: 16px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #fbbf24;
        }

        .footer-info {
            color: #9ca3af;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .footer-copyright {
            color: #6b7280;
            font-size: 0.875rem;
            padding-top: 20px;
            border-top: 1px solid #374151;
        }
        .webnav{
            display:none;
            position: fixed;
            left: 0;
            top: 0;
            width: 70%;
            height: 100%;
            z-index: 9999;
            background-color: rgba(0,0,0,1);
        }
        .webnav ul{
            width: 100%;
            padding-top: 40px;
        }
        .webnav ul li{ 
            text-align:center; 
            line-height: 60px;
            border-bottom: 1px solid #fff;
            font-size: 20px;
            list-style: none;
        }
        .webnav ul li:last-child{
            border-bottom: 0;
        }
        .webnav ul li a{
            color: #fff;
            text-decoration: none;
        }
        .webnav .logo{
            padding-top: 140px;
            justify-content: center;
        }
        .webnav .close{
            position: absolute;
            right: 40px;
            top: 50px;
            display: block;
            width: 50px;
            height: 50px;
            font-size: 30px;
            line-height: 48px;
            text-align: center;
            border-radius: 50%;
            border: 1px solid #fff;
            font-style: normal;
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .version-grid {
                grid-template-columns: 1fr;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .tab-list {
                flex-direction: column;
                align-items: center;
            }

            .tab-button {
                width: 200px;
                text-align: center;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #1f2937;
        }

        ::-webkit-scrollbar-thumb {
            background: #fbbf24;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #f59e0b;
        }
        
        
.wrap { width: 1200px; margin: auto; }    
.c_wrap_r h1 { font-weight: 400; font-size: 24px; text-align: center; padding: 15px 0; }
.c_wrap_r p.news_oth { text-align: center; color: #888; border-bottom: 1px dashed #e4e4e4; padding-bottom: 10px; }
.c_wrap_r p.news_oth span { margin: 0 10px; }
.pagebox { height: 36px;  text-align: center; }
.pagebox #pagesize { display: inline-block; }
.pagebox #pagesize li { float: left; }
.pagenav { overflow: hidden; margin-top: 30px; margin-bottom: 62px; }
.pagenav p { width: 45%; font-size: 14px; color: #777; }
.pagenav p.next { float: left; }
.pagenav p.prev { float: right; text-align: right; }
.pagenav a{color:#fff}
.interested { padding-bottom: 20px; }
.interested .list { border-bottom: 1px dashed #ddd; height: 50px; line-height: 50px; padding-right:5px; padding-left:20px; background:url(../images/jt_right.png) no-repeat center left; }
.interested .list span { float:right; color:#CCC;}
.interested .list a { display: block; color: #777; }