﻿:root {
            --primary: rgb(48,209,88);
            --primary-hover: #2bb94d;
            --primary-light: rgba(48,209,88,0.1);
            --text-main: #111827;
            --text-muted: #6b7280;
            --bg-body: #f3f4f6;
            --bg-card: #ffffff;
            --border-color: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --radius-md: 8px;
            --radius-lg: 16px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul, ol { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { background: var(--bg-card); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 22px; font-weight: 800; line-height: 1; color: var(--text-main); white-space: nowrap; letter-spacing: -0.5px; }
        
        
        .desktop-nav ul { display: flex; gap: 30px; }
        .desktop-nav a { font-weight: 500; font-size: 16px; color: var(--text-main); padding: 8px 0; position: relative; }
        .desktop-nav a:hover { color: var(--primary); }
        .desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s; }
        .desktop-nav a:hover::after { width: 100%; }
        
        
        .menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
        .menu-toggle span { width: 24px; height: 2px; background: var(--text-main); transition: 0.3s; }
        .mobile-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; visibility: hidden; transition: 0.3s; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--bg-card); z-index: 999; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
        .drawer-active .mobile-drawer-overlay { opacity: 1; visibility: visible; }
        .drawer-active .mobile-drawer { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { background: none; border: none; font-size: 24px; color: var(--text-muted); cursor: pointer; }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav ul { display: flex; flex-direction: column; gap: 15px; }
        .drawer-nav a { display: block; font-size: 18px; font-weight: 500; padding: 10px; border-radius: var(--radius-md); }
        .drawer-nav a:hover { background: var(--primary-light); color: var(--primary); }

        
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 16px; cursor: pointer; transition: all 0.3s; border: none; }
        .btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px var(--primary-light); }
        .btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(48,209,88,0.3); }
        .btn-outline { background: transparent; border: 2px solid var(--border-color); color: var(--text-main); }
        .btn-outline:hover { border-color: var(--primary); color: var(--primary); }

        
        .hero { padding: 80px 0; background: linear-gradient(to bottom, #ffffff, #f3f4f6); overflow: hidden; position: relative; }
        .hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: var(--primary-light); border-radius: 50%; filter: blur(80px); z-index: 0; }
        .hero-inner { display: flex; align-items: center; gap: 60px; position: relative; z-index: 1; }
        .hero-content { flex: 1; }
        .hero-badge { display: inline-block; padding: 6px 16px; background: var(--primary-light); color: var(--primary-hover); border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 20px; }
        .hero-title { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; letter-spacing: -1px; }
        .hero-title span { color: var(--primary); }
        .hero-desc { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; max-width: 500px; }
        .hero-actions { display: flex; gap: 16px; }
        .hero-visual { flex: 1; position: relative; }
        .hero-visual img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); transform: perspective(1000px) rotateY(-5deg); border: 8px solid #fff; }
        .hero-stats { position: absolute; bottom: -20px; left: -20px; background: #fff; padding: 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); display: flex; gap: 20px; }
        .stat-item { text-align: center; }
        .stat-num { display: block; font-size: 24px; font-weight: 700; color: var(--primary); }
        .stat-label { font-size: 12px; color: var(--text-muted); }

        
        .section { padding: 80px 0; }
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-title { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
        .section-desc { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
        .criteria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .criteria-card { background: var(--bg-card); padding: 32px 24px; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-sm); transition: 0.3s; border: 1px solid transparent; }
        .criteria-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
        .criteria-icon { width: 64px; height: 64px; margin: 0 auto 20px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 28px; font-weight: bold; }
        .criteria-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
        .criteria-text { font-size: 14px; color: var(--text-muted); }

        
        .ranking-bg { background: #fff; }
        .ranking-list { display: flex; flex-direction: column; gap: 16px; }
        .rank-card { display: flex; align-items: center; background: var(--bg-body); padding: 20px; border-radius: var(--radius-md); transition: 0.3s; border-left: 4px solid transparent; }
        .rank-card:hover { background: #fff; box-shadow: var(--shadow-md); border-left-color: var(--primary); transform: scale(1.01); }
        .rank-num { font-size: 32px; font-weight: 800; color: #d1d5db; width: 60px; text-align: center; font-style: italic; }
        .rank-card:nth-child(1) .rank-num { color: #fbbf24; }
        .rank-card:nth-child(2) .rank-num { color: #9ca3af; }
        .rank-card:nth-child(3) .rank-num { color: #b45309; }
        .rank-img { width: 120px; height: 80px; border-radius: var(--radius-md); object-fit: cover; margin-right: 24px; }
        .rank-info { flex: 1; }
        .rank-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
        .rank-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
        .rank-tag { font-size: 12px; background: rgba(0,0,0,0.05); padding: 2px 8px; border-radius: 4px; color: var(--text-muted); }
        .rank-tag.safe { background: var(--primary-light); color: var(--primary-hover); }
        .rank-meta { font-size: 13px; color: var(--text-muted); display: flex; gap: 16px; }
        .rank-score { display: flex; flex-direction: column; align-items: center; margin: 0 30px; }
        .score-num { font-size: 28px; font-weight: 800; color: var(--primary); line-height: 1; }
        .score-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
        .rank-action .btn { padding: 10px 24px; font-size: 14px; }

        
        .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .article-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: 0.3s; display: flex; flex-direction: column; }
        .article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
        .article-img-wrap { position: relative; padding-top: 56.25%; overflow: hidden; }
        .article-img-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .article-card:hover .article-img-wrap img { transform: scale(1.05); }
        .article-tag-abs { position: absolute; top: 12px; left: 12px; background: var(--primary); color: #fff; font-size: 12px; padding: 4px 10px; border-radius: 4px; font-weight: 600; z-index: 1; }
        .article-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
        .article-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
        .article-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #9ca3af; border-top: 1px solid var(--border-color); padding-top: 16px; }

        
        .trust-section { background: #111827; color: #fff; padding: 80px 0; text-align: center; }
        .trust-title { font-size: 36px; font-weight: 800; margin-bottom: 24px; }
        .trust-desc { font-size: 18px; color: #9ca3af; max-width: 700px; margin: 0 auto 40px; }
        .trust-features { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
        .trust-feature { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 500; }
        .trust-feature::before { content: '✓'; display: inline-flex; width: 24px; height: 24px; background: var(--primary); color: #fff; border-radius: 50%; align-items: center; justify-content: center; font-size: 14px; }

        
        .footer { background: #0f172a; color: #9ca3af; padding: 60px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.8; }
        .footer-title { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 24px; }
        .footer-links ul { display: flex; flex-direction: column; gap: 12px; }
        .footer-links a { color: #9ca3af; font-size: 14px; }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 14px; }
        .footer-disclaimer { margin-bottom: 10px; font-size: 12px; color: #64748b; }

        @media (max-width: 992px) {
            .hero-inner { flex-direction: column; text-align: center; }
            .hero-actions { justify-content: center; }
            .hero-stats { left: 50%; transform: translateX(-50%); bottom: -30px; width: 90%; justify-content: space-around; }
            .criteria-grid { grid-template-columns: repeat(2, 1fr); }
            .news-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .menu-toggle { display: flex; }
            .hero-title { font-size: 36px; }
            .rank-card { flex-direction: column; text-align: center; position: relative; padding-top: 40px; }
            .rank-num { position: absolute; top: 10px; left: 10px; font-size: 24px; }
            .rank-img { margin: 0 0 16px 0; width: 100%; height: 160px; }
            .rank-tags { justify-content: center; }
            .rank-score { margin: 16px 0; border-top: 1px dashed var(--border-color); border-bottom: 1px dashed var(--border-color); padding: 10px 0; width: 100%; }
            .news-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
        }