        /* 新增网站指标优化样式 */
        .site-metrics {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 2px; /* 减少间隙使更紧凑 */
            margin: 5px 0; /* 减少上下间距 */
            width: 100%;
            align-items: center; /* 垂直居中 */
        }
        
        .metric-badge {
            padding: 0;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            height: 100%; /* 确保高度一致 */
        }
        
        .metric-badge img {
            display: block;
            width: auto;
            height: 20px;
            max-width: 100%;
        }
        
        /* 移动端调整 */
        @media (max-width: 768px) {
            .site-metrics {
                grid-template-columns: repeat(2, 1fr);
                gap: 5px;
                row-gap: 8px;
            }
            
            .metric-badge {
                height: auto;
            }
        }
        
        /* 其他原有样式保持不变 */
        :root {
            --primary: #2c7de6;
            --primary-light: #d4e6ff;
            --primary-dark: #0d4a9c;
            --nav-hover: #0d4a9c;
            --text-color: #333;
            --text-light: #666;
            --border-color: #e4e7ed;
            --bg-gray: #f5f7fa;
            --success: #52c41a;
            --warning: #faad14;
            --danger: #f5222d;
            --shadow: 0 4px 12px rgba(0,0,0,0.06);
            --radius: 8px;
            --disabled-bg: #f0f0f0;
            --disabled-text: #999;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            color: var(--text-color);
            background-color: #fff;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: var(--text-color);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--primary);
            text-decoration: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 顶部导航栏 */
        .topbar-bg {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .topbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            color: #666;
            font-size: 13px;
        }
        
        /* 主导航 */
        .header {
            background-color: #fff;
        }
        
        .header-container {
            display: flex;
            flex-direction: column;
            padding: 15px 0 0;
        }
        
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .logo {
            height: 50px;
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 100%;
            width: auto;
        }
        
        /* 搜索框样式 */
        .search-area {
            flex: 1;
            max-width: 480px;
            margin-left: 20px;
        }
        
        .search-box {
            width: 100%;
        }
        
        .search-form {
            display: flex;
            position: relative;
            width: 100%;
        }
        
        .search-select {
            position: relative;
            background: var(--primary-light);
            border-radius: 4px 0 0 4px;
            cursor: pointer;
            padding: 0 15px;
            height: 48px;
            display: flex;
            align-items: center;
            font-size: 14px;
            min-width: 100px;
            transition: all 0.3s;
            justify-content: center;
        }
        
        .search-select:hover {
            background: #d4e5ff;
        }
        
        .search-select::after {
            content: "▼";
            font-size: 10px;
            margin-left: 8px;
        }
        
        .search-select-options {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #fff;
            box-shadow: 0 2px 12px rgba(0,0,0,0.1);
            border-radius: 4px;
            display: none;
            z-index: 10;
        }
        
        .search-select-options a {
            display: block;
            padding: 10px 15px;
            font-size: 14px;
            text-align: center;
        }
        
        .search-select-options a:hover {
            background: var(--primary-light);
        }
        
        .search-input {
            flex: 1;
            height: 48px;
            padding: 0 15px;
            border: 2px solid var(--border-color);
            border-left: none;
            border-right: none;
            outline: none;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .search-input:focus {
            border-color: var(--primary);
        }
        
        .search-button {
            height: 48px;
            padding: 0 24px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            transition: background 0.3s;
        }
        
        .search-button:hover {
            background: #1a68cc;
        }
        
        .nav-container {
            background-color: var(--primary-light);
            border-radius: var(--radius);
            margin-top: 10px;
        }
        
        .navbar {
            display: flex;
            list-style: none;
            width: 100%;
            padding: 0;
            margin: 0;
        }
        
        .navbar li {
            padding: 0;
        }
        
        .navbar li a {
            font-weight: 500;
            font-size: 16px;
            padding: 15px 18px;
            position: relative;
            display: block;
            color: #1a68cc;
            transition: all 0.3s;
        }
        
        .navbar li a:hover {
            color: var(--nav-hover);
            background: rgba(255,255,255,0.2);
        }
        
        .navbar li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: var(--nav-hover);
            transition: width 0.3s ease;
        }
        
        .navbar li a:hover:after {
            width: 100%;
        }
        
        /* 网站统计区 */
        .stats-bar {
            background-color: var(--primary-light);
            padding: 8px 0;
            margin: 15px 0;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .stats-info {
            font-size: 14px;
            color: var(--text-light);
        }
        
        .stats-info strong {
            color: var(--primary);
            font-weight: bold;
            padding: 0 3px;
        }
        
        .quick-links {
            font-size: 14px;
        }
        
        .quick-links a {
            margin-left: 10px;
            color: var(--primary);
            font-weight: 500;
            position: relative;
        }
        
        .quick-links a:hover:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var(--primary);
        }
        
        /* 版块通用样式 */
        .section {
            margin: 30px 0;
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 25px;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .section-title {
            font-size: 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            color: var(--text-color);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -16px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            margin-bottom: 20px;
            font-size: 14px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        
        .breadcrumb a {
            color: var(--primary);
            margin: 0 5px;
        }
        
        .breadcrumb a:first-child {
            margin-left: 0;
        }
        
        .breadcrumb span {
            margin: 0 5px;
            color: #999;
        }
        
        /* 风险提示样式 */
        .risk-tip {
            font-size: 14px;
            color: #f5222d;
            font-style: italic;
            margin-left: 15px;
            font-weight: normal;
            display: inline-block;
            position: relative;
            padding-left: 20px;
        }
        
        .risk-tip:before {
            content: "!";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            background-color: #fff1f0;
            border: 1px solid #ffa39e;
            border-radius: 50%;
            color: #f5222d;
            font-weight: bold;
            text-align: center;
            line-height: 15px;
        }
        
        /* 添加VIP标签样式 */
        .vip-label {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            margin-left: 8px;
            vertical-align: middle;
            line-height: 1.4;
            position: relative;
            text-shadow: 0 1px 1px rgba(0,0,0,0.2);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            white-space: nowrap;
        }
        
        .vip-label.vip {
            background: linear-gradient(135deg, #ff9800, #ff5722);
            color: #fff;
            border: 1px solid #e65100;
        }
        
        .vip-label.svip {
            background: linear-gradient(135deg, #ffd700, #ff9800);
            color: #fff;
            border: 1px solid #e65100;
            padding-left: 24px;
        }
        
        .vip-label.svip:before {
            content: "👑";
            position: absolute;
            left: 6px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        /* 移动端VIP标签调整 */
        @media (max-width: 991px) {
            .vip-label {
                margin: 0 0 0 6px !important;
                font-size: 11px;
                padding: 2px 6px;
            }
            
            .vip-label.svip {
                padding-left: 20px;
            }
            
            .risk-tip {
                margin-left: 15px;
                font-size: 12px;
                margin-left: 10px;
            }
        }
        
        @media (max-width: 480px) {
            .vip-label {
                margin-left: 4px !important;
                padding: 1px 4px;
                font-size: 10px;
            }
            
            .vip-label.svip {
                padding-left: 18px;
            }
            
            .vip-label.svip:before {
                left: 4px;
            }
            
            .risk-tip {
                display: block;
                margin-left: 15px;
                margin-top: 5px;
                padding-left: 18px;
                font-size: 11px;
            }
        }
        
        /* 添加审核提示样式 */
        .audit-alert {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #fff8e6 0%, #ffecb3 100%);
            border: 1px solid #ffd54f;
            border-radius: 10px;
            padding: 18px 25px;
            margin: 20px 0 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
        }
        
        .audit-alert:before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.3) 10px,
                rgba(255, 255, 255, 0.3) 20px
            );
            z-index: 0;
            opacity: 0.3;
        }
        
        .audit-alert .alert-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 42px;
            height: 42px;
            background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
            color: #fff;
            font-weight: bold;
            font-size: 22px;
            border-radius: 50%;
            margin-right: 18px;
            box-shadow: 0 3px 8px rgba(245, 124, 0, 0.3);
            position: relative;
            z-index: 1;
        }
        
        .audit-alert .alert-content {
            flex: 1;
            color: #5d4037;
            font-size: 16px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
            text-shadow: 0 1px 1px rgba(255,255,255,0.8);
        }
        
        .audit-alert .alert-content strong {
            color: #e65100;
            font-weight: 700;
            text-shadow: none;
        }
        
        .status-badge.pending {
            display: inline-block;
            background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
            color: #5d4037;
            font-size: 13px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            vertical-align: middle;
            margin-left: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .site-status.status-pending {
            color: #e65100;
            font-weight: 600;
            text-shadow: 0 1px 1px rgba(255,255,255,0.5);
        }
        
        .site-status.status-pending .status-indicator.pending {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
            margin-right: 8px;
            box-shadow: 0 0 5px rgba(255, 179, 0, 0.5);
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.7; }
            100% { transform: scale(1); opacity: 1; }
        }
        
        .site-visit-button.disabled {
            background: #bdbdbd !important;
            cursor: not-allowed;
            opacity: 0.7;
            box-shadow: none !important;
        }
        
        .site-visit-button.disabled:hover {
            transform: none !important;
            box-shadow: none !important;
        }
        
        /* 网站信息详情页特定样式 */
        .site-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
            flex-wrap: wrap;
        }
        
        .site-icon {
            width: 50px;
            height: 50px;
            margin-right: 15px;
            border-radius: var(--radius);
            overflow: hidden;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            flex-shrink: 0;
        }
        
        .site-icon img {
            width: 80%;
            height: 80%;
            object-fit: contain;
        }
        
        .site-title {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.3;
            flex: 1;
            min-width: 200px;
        }
        
        .site-visit-button {
            padding: 10px 24px;
            background: var(--primary);
            color: #fff;
            border-radius: var(--radius);
            font-weight: 500;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 10px rgba(44, 125, 230, 0.3);
            border: none;
            font-size: 16px;
            cursor: pointer;
            min-width: 160px;
            justify-content: center;
        }
        
        .site-visit-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(44,125,230,0.4);
        }
        
        .site-visit-button.disabled {
            background: var(--disabled-bg);
            color: var(--disabled-text);
            box-shadow: none;
            cursor: not-allowed;
            pointer-events: none;
        }
        
        .site-visit-button.disabled:hover {
            transform: none;
            box-shadow: none;
        }
        
        .site-visit-button svg {
            margin-right: 8px;
            width: 16px;
            height: 16px;
        }
        
        /* 网站统计信息 */
        .site-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin: 25px 0;
            padding: 15px;
            background: var(--bg-gray);
            border-radius: var(--radius);
            text-align: center;
        }
        
        .stat-item {
            padding: 10px 0;
        }
        
        .stat-value {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 6px;
            font-family: 'Arial', sans-serif;
        }
        
        .stat-label {
            font-size: 13px;
            color: var(--text-light);
        }
        
        .site-details {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        @media (max-width: 768px) {
            .site-details {
                grid-template-columns: 1fr;
            }
        }
        
        .site-detail-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }
        
        .site-detail-card:last-child {
            margin-bottom: 0;
        }
        
        .site-detail-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .detail-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .detail-title svg {
            margin-right: 8px;
        }
        
        .detail-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .detail-item {
            margin-bottom: 16px;
            display: flex;
            padding: 8px 0;
            border-bottom: 1px dashed var(--border-color);
            flex-wrap: wrap;
        }
        
        .detail-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .detail-label {
            font-weight: 500;
            min-width: 85px;
            color: var(--text-light);
            padding-bottom: 5px;
        }
        
        .detail-value {
            flex: 1;
            color: #444;
            word-break: break-all;
        }
        
        .detail-value a {
            color: var(--primary);
            font-weight: 500;
        }
        
        .site-status {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .status-normal { 
            background-color: rgba(82, 196, 26, 0.1); 
            color: var(--success);
            box-shadow: 0 2px 5px rgba(82, 196, 26, 0.2);
        }
        
        .status-redirect { 
            background-color: rgba(250, 173, 20, 0.1); 
            color: var(--warning);
            box-shadow: 0 2px 5px rgba(250, 173, 20, 0.2);
        }
        
        .status-error { 
            background-color: rgba(245, 34, 45, 0.1); 
            color: var(--danger);
            box-shadow: 0 2px 5px rgba(245, 34, 45, 0.2);
        }
        
        .status-loading { 
            background-color: rgba(44, 125, 230, 0.1); 
            color: var(--primary);
            box-shadow: 0 2px 5px rgba(44, 125, 230, 0.2);
        }
        
        .status-indicator {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 6px;
        }
        
        .status-indicator.normal {
            background-color: var(--success);
            box-shadow: 0 0 6px var(--success);
        }
        
        .status-indicator.redirect {
            background-color: var(--warning);
            box-shadow: 0 0 6px var(--warning);
        }
        
        .status-indicator.error {
            background-color: var(--danger);
            box-shadow: 0 0 6px var(--danger);
        }
        
        .status-indicator.loading {
            background-color: var(--primary);
            box-shadow: 0 0 6px var(--primary);
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }
        
        /* 网站描述 */
        .site-description {
            margin-bottom: 30px;
            padding: 25px;
            background: #fff;
            border-radius: var(--radius);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
            position: relative;
        }
        
        .description-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .description-title svg {
            margin-right: 8px;
        }
        
        .description-content {
            font-size: 15px;
            line-height: 1.8;
            color: #444;
            max-height: 150px;
            overflow: hidden;
            transition: max-height 0.5s ease;
            position: relative;
            padding-bottom: 35px;
        }
        
        .description-content.expanded {
            max-height: 1000px;
        }
        
        .expand-toggle {
            position: absolute;
            bottom: 0px;
            right: 15px;
            color: var(--primary);
            background: rgba(255, 255, 255, 0.9);
            padding: 5px 15px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: all 0.3s;
            display: none;
            z-index: 10;
            border: 1px solid var(--border-color);
        }
        
        .expand-toggle:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        /* 网站截图 */
        .site-screenshot {
            margin-bottom: 30px;
        }
        
        .screenshot-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .screenshot-title svg {
            margin-right: 8px;
        }
        
        .screenshot-container {
            display: flex;
            justify-content: center;
            align-items: center;
            background: #f8fafc;
            border-radius: var(--radius);
            padding: 15px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            max-width: 100%;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .screenshot-container:hover {
            border-color: var(--primary);
            box-shadow: 0 8px 20px rgba(44, 125, 230, 0.2);
        }
        
        .screenshot-img {
            max-width: 795px;
            max-height: 512px;
            min-width: 200px;
            min-height: 80px;
            width: auto;
            height: auto;
            border-radius: var(--radius);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            object-fit: contain;
        }
        
        /* 图片弹窗样式 */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.9);
            cursor: pointer;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            display: block;
            max-width: 90%;
            max-height: 90vh;
            width: auto;
            height: auto;
            margin: auto;
        }
        
        .close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            z-index: 2001;
        }
        
        .close:hover,
        .close:focus {
            color: #bbb;
            text-decoration: none;
            cursor: pointer;
        }
        
        .site-copyright {
            padding: 25px;
            background: var(--bg-gray);
            border-radius: var(--radius);
            margin-bottom: 30px;
            border-left: 4px solid var(--primary);
        }
        
        .copyright-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .copyright-title svg {
            margin-right: 8px;
        }
        
        .copyright-content {
            font-size: 14px;
            line-height: 1.8;
            color: #555;
        }
        
        .copyright-content p {
            margin-bottom: 12px;
            position: relative;
            padding-left: 18px;
        }
        
        .copyright-content p:before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
        }
        
        .related-sites {
            margin-bottom: 30px;
        }
        
        .related-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .related-title svg {
            margin-right: 8px;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 20px;
        }
        
        .related-card {
            text-align: center;
            transition: all 0.3s;
        }
        
        .related-card:hover {
            transform: translateY(-5px);
        }
        
        .related-thumb {
            width: 100%;
            height: 90px;
            border-radius: var(--radius);
            overflow: hidden;
            margin-bottom: 12px;
            background: #f8fafc;
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }
        
        .related-thumb img {
            max-width: 90%;
            max-height: 90%;
        }
        
        .related-name {
            font-size: 15px;
            font-weight: 500;
        }
        
        /* 移动端调整 */
        @media (max-width: 991px) {
            .topbar {
                display: none;
            }
            
            .header-container {
                padding: 10px 0 0;
            }
            
            .header-top {
                flex-direction: column;
                align-items: stretch;
                margin-bottom: 10px;
            }
            
            .logo {
                margin-bottom: 15px;
                justify-content: center;
            }
            
            .search-area {
                margin: 0 0 15px;
                max-width: 100%;
                margin-left: 0;
            }
            
            .navbar {
                margin: 0;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .navbar li {
                padding: 0;
                flex: 1 0 auto;
                text-align: center;
            }
            
            .navbar li a {
                padding: 12px 10px;
                font-size: 14px;
            }
            
            .search-select {
                min-width: 80px;
                padding: 0 5px;
                font-size: 13px;
                height: 40px;
                flex-shrink: 0;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .search-select::after {
                font-size: 8px;
                margin-left: 4px;
            }
            
            .search-input {
                border-left: 2px solid var(--border-color);
                border-right: 2px solid var(--border-color);
                height: 40px;
                font-size: 14px;
            }
            
            .search-button {
                height: 40px;
                padding: 0 15px;
                font-size: 14px;
            }
            
            .search-select-options {
                width: 80px;
                left: 0;
            }
            
            .search-select-options a {
                text-align: center;
                padding: 10px 5px;
                font-size: 13px;
            }
            
            .stats-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .quick-links {
                margin-top: 10px;
                display: flex;
                flex-wrap: wrap;
            }
            
            .quick-links a {
                margin: 5px 10px 5px 0;
            }
            
            /* 移动端隐藏网站统计 */
            .stats-bar {
                display: none !important;
            }
        }
        
        @media (max-width: 768px) {
            .site-header {
                flex-wrap: wrap;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .site-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .site-title {
                margin: 10px 0;
                width: 100%;
                text-align: center;
            }
            
            .site-visit-button {
                margin: 15px 0 0 0;
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .section {
                padding: 20px;
            }
            
            .site-stats {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 10px;
                padding: 12px;
            }
            
            .stat-value {
                font-size: 12px;
            }
            
            .stat-label {
                font-size: 12px;
            }
            
            .site-details {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .qr-code {
                display: none;
            }
            
            .screenshot-container {
                padding: 10px;
                max-width: 100vw;
                box-sizing: border-box;
            }
            
            .screenshot-img {
                max-width: 100%;
                max-height: 300px;
                min-height: 120px;
                width: auto;
                height: auto;
            }
            
            .site-description {
                padding: 20px 15px;
            }
            
            .description-content {
                padding-right: 0;
            }
            
            .expand-toggle {
                right: 15px;
                bottom: 10px;
                font-size: 13px;
                padding: 4px 8px;
            }
            
            .related-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* SVG图标 */
        .icon {
            width: 18px;
            height: 18px;
            fill: currentColor;
            margin-right: 8px;
        }
        
        .btn-icon {
            width: 16px;
            height: 16px;
            fill: #fff;
        }
        
        /* 隐藏的网址样式 */
        .url-hidden {
            color: #888;
            font-style: italic;
        }
        
        /* 页脚 */
        .footer {
            margin-top: 40px;
            padding: 50px 0 30px;
            background: #fff;
            text-align: center;
            border-top: 1px solid var(--border-color);
            color: var(--text-light);
        }
        
        .footer-menu {
            margin-bottom: 25px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .footer-menu a {
            margin: 0 15px 10px;
            font-size: 14px;
            color: var(--text-light);
            transition: all 0.3s;
        }
        
        .footer-menu a:hover {
            color: var(--primary);
        }
        
        .footer-copyright {
            font-size: 13px;
            margin-top: 15px;
            line-height: 1.6;
        }
        
        /* 双列布局 - 已移除右侧边栏 */
        .dual-column {
            display: grid;
            gap: 30px;
            grid-template-columns: 1fr;
        }
        
        /* 主内容区域 */
        .main-content {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 30px;
        }
        
        /* 修复移动端溢出问题 */
        img {
            max-width: 100%;
            height: auto;
        }
        
        /* 网站详细信息网格布局 */
        @media (min-width: 768px) {
            .detail-list {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
            
            .detail-item {
                margin-bottom: 0;
                padding: 8px 0;
                border-bottom: 1px dashed var(--border-color);
            }
            
            /* 第5个和第6个条目跨两列 */
            .detail-list .detail-item:nth-child(5),
            .detail-list .detail-item:nth-child(6) {
                grid-column: span 2;
            }
        }
        
        /* 移动端调整为单列 */
        @media (max-width: 767px) {
            .detail-list {
                display: block;
            }
            
            .detail-item {
                margin-bottom: 16px;
                padding: 8px 0;
                border-bottom: 1px dashed var(--border-color);
            }
        }