        /* 复用首页的样式 */
        body {
            background: #f7f8fc;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;  /* 添加这行，防止横向滚动 */
        }
        
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 140px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            z-index: -2;
        }
        
        #particles-js {
            position: fixed;
            width: 100%;
            height: 50vh;
            background: transparent;
            z-index: -1;
            top: 0;
            left: 0;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
            flex: 1;
            display: flex;
            flex-direction: column;
            width: 100%;
            box-sizing: border-box;  /* 添加这行 */
        }
        
        /* 复制首页的头部样式 */
        .header {
            padding: 20px 25px;
            margin: 20px 0 30px 0;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            animation: headerGlow 8s ease-in-out infinite;
        }
        
        @keyframes headerGlow {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, 20px); }
        }
        
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            position: relative;
            min-height: 60px;
        }
        
        .header-left {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-shrink: 0;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        
        .logo-section img {
            height: 50px;
            width: auto;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
        }
        
        .logo-section img:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .site-title {
            font-size: 36px;
            font-weight: 700;
            background: #fff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0;
            text-decoration: none;
            transition: all 0.3s ease;
            letter-spacing: -0.5px;
            white-space: nowrap;
        }
        
        .site-title:hover {
            transform: translateY(-1px);
            filter: brightness(1.1);
        }
        
        .header-center {
            flex: 1;
            max-width: 600px;
            min-width: 0;
            display: flex;
        }
        
        .search-container {
            position: relative;
            width: 100%;
        }
        
        .search-box {
            width: 100%;
            padding: 16px 55px 16px 24px;
            border: 2px solid transparent;
            border-radius: 50px;
            background: #f0f2f5;
            font-size: 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            outline: none;
            font-weight: 500;
            color: #2d3748;
        }
        
        .search-box:focus {
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 10px 35px rgba(0,0,0,0.08);
            transform: translateY(-1px);
        }
        
        .search-box::placeholder {
            color: #a0aec0;
            font-weight: 400;
        }
        
        .search-btn {
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #667eea, #764ba2);
            border: none;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            color: white;
            font-size: 16px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            flex-shrink: 0;
        }
        
        .search-btn:hover {
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }
        
        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        
        .user-menu {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .user-menu a,
        .user-menu span {
            padding: 10px 18px;
            background: linear-gradient(135deg, #f7f8fc, #eef1f5);
            border-radius: 50px;
            color: #4a5568;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }
        
        .user-menu a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            transition: left 0.3s ease;
            z-index: -1;
        }
        
        .user-menu a:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
        }
        
        .user-menu a:hover::before {
            left: 0;
        }
        
        .user-menu span {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }
        
        /* 移动端菜单按钮 */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(135deg, #667eea4a, #764ba259);
            border: none;
            border-radius: 12px;
            width: 20px;
            height: 20px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            font-size: 12px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .mobile-menu-dropdown {
            display: none;
            position: absolute;
            /*top: calc(100% + 10px);*/
            right: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-radius: 16px;
            z-index: 9999;
            padding: 8px;
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .mobile-menu-dropdown.show {
            display: block;
            opacity: 1;
        }
        
        .mobile-menu-dropdown a,
        .mobile-menu-dropdown span {
            color: #4a5568;
            padding: 10px 16px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            margin: 2px 0;
        }
        
        .mobile-menu-dropdown a:hover {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            transform: translateX(5px);
        }
        
        /* 原有的页面特定样式保持不变 */
        .page-container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* 主要内容区域 */
        .main-content {
            flex: 1;
            max-width: 1200px;
            margin: -20px auto 40px;
            padding: 0 20px;
            width: 100%;
        }
        
        /* 网站信息卡片 */
        .website-detail-card {
            background: white;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .website-header {
            background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%);
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .website-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .website-main-info {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .website-icon-large {
            width: 120px;
            height: 120px;
            border-radius: 24px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
            font-weight: bold;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            flex-shrink: 0;
        }
        
        .website-icon-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 24px;
        }
        
        .website-info {
            flex: 1;
        }
        
        .website-name {
            font-size: 36px;
            font-weight: 800;
            color: #2d3748;
            margin: 0 0 10px 0;
            line-height: 1.2;
        }
        
        .website-url-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #667eea;
            text-decoration: none;
            font-size: 18px;
            margin-bottom: 20px;
            transition: color 0.3s;
        }
        
        .website-url-link:hover {
            color: #5a67d8;
        }
        
        .website-badges {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .badge-large {
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .badge-language {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
        }
        
        .badge-free {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
        }
        
        .badge-paid {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
        }
        
        .badge-domestic {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
        }
        
        .badge-overseas {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
        }
        
        /* 操作按钮区域样式 */
        .website-actions {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            padding: 20px;
            background: #f8fafc;
            border-radius: 12px;
        }
        
        .action-button {
            padding: 12px 24px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .favorite-btn {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
        }
        
        .favorite-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
        }
        
        .favorite-btn.favorited {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }
        
        .favorite-btn.favorited:hover {
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
        }
        
        .rating-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .rating-label {
            font-size: 16px;
            color: #4a5568;
            font-weight: 500;
        }
        
        .star-rating {
            display: flex;
            gap: 4px;
        }
        
        .star {
            cursor: pointer;
            font-size: 24px;
            color: #e2e8f0;
            transition: all 0.2s ease;
        }
        
        .star.active,
        .star:hover {
            color: #fbbf24;
            transform: scale(1.1);
        }
        
        .star.active {
            text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
        }
        
        /* 统计信息网格 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            padding: 30px 40px;
            background: #fafbfc;
            border-top: 1px solid #e5e7eb;
        }
        
        .stat-card {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .stat-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 24px;
        }
        
        .stat-value {
            font-size: 28px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 14px;
            color: #64748b;
        }
        
        /* 登录提示样式 */
        .login-prompt {
            text-align: center;
            padding: 20px;
            background: #f8fafc;
            border-radius: 12px;
            margin-top: 20px;
        }
        
        .login-prompt p {
            margin-bottom: 15px;
            color: #718096;
        }
        
        .login-prompt a {
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
            cursor: pointer;
        }
        
        .login-prompt a:hover {
            text-decoration: underline;
        }
        
        /* 详细信息区域 */
        .content-sections {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .content-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .section-title {
            font-size: 24px;
            font-weight: 700;
            color: #2d3748;
            margin: 0 0 20px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .section-title i {
            color: #667eea;
        }
        
        /* 基本信息表格 */
        .info-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .info-table tr {
            border-bottom: 1px solid #f1f5f9;
        }
        
        .info-table tr:last-child {
            border-bottom: none;
        }
        
        .info-table td {
            padding: 15px 0;
        }
        
        .info-table td:first-child {
            font-weight: 600;
            color: #64748b;
            width: 120px;
            vertical-align: top;
        }
        
        .info-table td:last-child {
            color: #2d3748;
        }
        
        /* 关键词标签 */
        .keyword-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .keyword-tag {
            padding: 8px 16px;
            background: #e0e7ff;
            color: #4c51bf;
            border-radius: 20px;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .keyword-tag:hover {
            background: #667eea;
            color: white;
            transform: translateY(-2px);
        }
        
        /* 评分展示 */
        .rating-display {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .rating-stars {
            display: flex;
            gap: 4px;
        }
        
        .star {
            color: #fbbf24;
            font-size: 24px;
        }
        
        .star.empty {
            color: #e5e7eb;
        }
        
        .rating-text {
            font-size: 24px;
            font-weight: 700;
            color: #2d3748;
        }
        
        .rating-count {
            color: #64748b;
            font-size: 14px;
        }
        
        /* 评分分布 */
        .rating-distribution {
            margin-top: 20px;
        }
        
        .rating-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .rating-bar-label {
            width: 60px;
            font-size: 14px;
            color: #64748b;
        }
        
        .rating-bar-bg {
            flex: 1;
            height: 8px;
            background: #f1f5f9;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .rating-bar-fill {
            height: 100%;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            transition: width 0.3s;
        }
        
        .rating-bar-value {
            width: 40px;
            text-align: right;
            font-size: 14px;
            color: #64748b;
        }
        
        /* 详细介绍内容 */
        .detail-content {
            line-height: 1.8;
            color: #475569;
            font-size: 16px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #f1f5f9;
        }
        
        .detail-content img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 20px 0;
        }
        
        .detail-content h1, .detail-content h2, .detail-content h3, 
        .detail-content h4, .detail-content h5, .detail-content h6 {
            color: #2d3748;
            margin: 24px 0 16px 0;
        }
        
        .detail-content p {
            margin: 16px 0;
        }
        
        .detail-content ul, .detail-content ol {
            margin: 16px 0;
            padding-left: 30px;
        }
        
        .detail-content li {
            margin: 8px 0;
        }
        
        .detail-content blockquote {
            margin: 20px 0;
            padding: 20px;
            background: #f8fafc;
            border-left: 4px solid #667eea;
            border-radius: 8px;
        }
        
        .detail-content pre {
            background: #1e293b;
            color: #e2e8f0;
            padding: 20px;
            border-radius: 12px;
            overflow-x: auto;
            margin: 20px 0;
        }
        
        .detail-content code {
            background: #e0e7ff;
            color: #4c51bf;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 14px;
        }
        
        .detail-content pre code {
            background: none;
            color: inherit;
            padding: 0;
        }
        
        .detail-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .detail-content th,
        .detail-content td {
            border: 1px solid #e5e7eb;
            padding: 12px;
            text-align: left;
        }
        
        .detail-content th {
            background: #f8fafc;
            font-weight: 600;
            color: #2d3748;
        }
        
        /* 相关网站 */
        .related-websites {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .related-website-card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 20px;
            transition: all 0.3s;
            border: 1px solid transparent;
            cursor: pointer;
        }
        
        .related-website-card:hover {
            background: white;
            border-color: #e0e7ff;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .related-website-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .related-website-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
            flex-shrink: 0;
        }
        
        .related-website-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }
        
        .related-website-info {
            flex: 1;
            min-width: 0;
        }
        
        .related-website-name {
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 4px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .related-website-url {
            font-size: 12px;
            color: #64748b;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .related-website-desc {
            font-size: 14px;
            color: #64748b;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        /* 操作按钮 */
        .action-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 100;
        }
        
        .action-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .action-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        }
        
        .action-btn i {
            font-size: 24px;
        }
        
        .action-btn.secondary {
            background: linear-gradient(135deg, #10b981, #059669);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
        }
        
        .action-btn.secondary:hover {
            box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
        }
        
        /* 页脚 */
       .site-footer {
            background: #1e293b;
            color: white;
            padding: 40px 0;
            margin-top: 60px;
            width: 100%;  /* 添加这行 */
            margin-left: 0;  /* 添加这行 */
            margin-right: 0;  /* 添加这行 */
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        
        .footer-links {
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        .footer-links a:hover {
            opacity: 1;
        }
        
        .footer-copyright {
            opacity: 0.6;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            
            .header-left {
                justify-content: space-between;
                width: 100%;
            }
            
            .header-center {
                width: 100%;
                order: 2;
                margin-top: -10px;
            }
            
            .header-right {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .site-title {
                font-size: 20px;
            }
            
            .logo-section img {
                height: 40px;
            }
            
            .website-main-info {
                flex-direction: column;
                text-align: center;
            }
            
            .website-icon-large {
                margin: 0 auto;
            }
            
            .website-name {
                font-size: 28px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                padding: 20px;
            }
            
            .content-section {
                padding: 25px;
            }
            
            .info-table td:first-child {
                /*display: block;*/
                margin-bottom: 5px;
            }
            
            .info-table td:last-child {
                display: block;
                margin-bottom: 15px;
            }
            
            .action-buttons {
                bottom: 20px;
                right: 20px;
            }
            
            .action-btn {
                width: 48px;
                height: 48px;
            }
            
            .action-btn i {
                font-size: 20px;
            }
        }
        
        /* 空内容提示 */
        .empty-content {
            text-align: center;
            padding: 60px 20px;
            color: #94a3b8;
        }
        
        .empty-content i {
            font-size: 48px;
            margin-bottom: 20px;
            opacity: 0.5;
        }
        
        /* 打印样式 */
        @media print {
            .action-buttons,
            .header-actions {
                display: none;
            }
            
            .website-detail-card {
                box-shadow: none;
                border: 1px solid #e5e7eb;
            }
        }
        
        /* 加载动画 */
        .loading-skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }
        
        @keyframes loading {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }
        
        .skeleton-text {
            height: 20px;
            border-radius: 4px;
            margin-bottom: 10px;
        }
        
        .skeleton-number {
            height: 32px;
            width: 80px;
            border-radius: 4px;
            margin: 0 auto;
        }
        
        /* 详细介绍标题 */
        .detail-content-title {
            font-size: 16px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 15px;
            padding-top: 20px;
            border-top: 1px solid #f1f5f9;
        }
        
        /* Toast提示样式 */
        .toast {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 16px 24px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
            z-index: 30001;
            display: none;
            animation: toastFadeIn 0.3s ease-out;
        }
        
        @keyframes toastFadeIn {
            from {
                opacity: 0;
                transform: translate(-50%, -60%) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }
        
        /* 语言切换器容器 */
        .language-switcher-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }

        /* 语言图标触发器 */
        .language-icon-trigger {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .language-icon-trigger:hover {
            transform: translateY(-2px) scale(1.05);
            border-color: #667eea;
        }

        .language-icon-trigger svg {
            color: #8a66d0;
            width: 22px;
            height: 22px;
        }

        /* 下拉菜单样式 */
        .language-dropdown-menu {
            position: absolute;
            top: 50px;
            right: 0;
            width: 220px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 8px;
            margin: 0;
            list-style: none;
            display: none;
            max-height: 70vh;
            overflow-y: auto;
            border: 1px solid rgba(0,0,0,0.05);
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .language-dropdown-menu.show {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* 菜单项样式 */
        .language-dropdown-menu li {
            padding: 0;
            margin: 2px 0;
        }

        .language-dropdown-menu li a {
            display: block;
            padding: 10px 16px;
            color: #4a5568;
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 14px;
            border-radius: 10px;
            font-weight: 500;
        }

        .language-dropdown-menu li a:hover {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            transform: translateX(5px);
        }

        .language-dropdown-menu li a.active {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            font-weight: 600;
        }

        /* 分隔线 */
        .language-dropdown-menu li.divider {
            height: 1px;
            background: #e2e8f0;
            margin: 8px 0;
        }

        /* 更多语言部分 */
        .more-languages-toggle a {
            color: #667eea;
            font-size: 13px;
            font-weight: 600;
            text-align: center;
        }

        .more-languages-container {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .more-languages-container.show {
            max-height: none;
        }
        
        /* 模态框样式 - 复制自首页 */
        .modal {
            display: none;
            position: fixed;
            z-index: 30000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            backdrop-filter: blur(8px);
        }
        
        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 30px;
            border-radius: 20px;
            width: 90%;
            max-width: 400px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            position: relative;
            animation: modalSlideIn 0.3s ease-out;
        }
        
        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .close {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            color: #999;
            transition: color 0.3s;
        }
        
        .close:hover {
            color: #dc2626;
        }
        
        .modal h2 {
            margin-bottom: 20px;
            color: #667eea;
            text-align: center;
        }
        
        .modal .form-group {
            margin-bottom: 20px;
        }
        
        .modal .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .modal .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 12px;
            font-size: 14px;
            transition: border-color 0.3s;
        }
        
        .modal .form-group input:focus {
            border-color: #667eea;
            outline: none;
        }
        
        .modal .btn {
            width: 100%;
            padding: 12px;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .modal .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }
        
        .modal .switch-form {
            text-align: center;
            margin-top: 20px;
            color: #666;
        }
        
        .modal .switch-form a {
            color: #667eea;
            text-decoration: none;
        }
        
        .modal .switch-form a:hover {
            text-decoration: underline;
        }
        
        .message {
            padding: 10px;
            border-radius: 12px;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .message.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        /* 分类标签样式 */
        .category-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .category-badge {
            display: inline-block;
            padding: 4px 12px;
            /*background: #e0e7ff;*/
            color: #2d3748;
            border-radius: 12px;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .category-badge:hover {
            /*background: #667eea;*/
            color: #667eea;
            transform: translateY(-1px);
        }
        
        /* 举报反馈按钮样式 */
        .report-btn {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
        }
        
        .report-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
        }
        
        /* 举报类型选项样式 */
        .report-type-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 10px;
        }
        
        .radio-option {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .radio-option:hover {
            background: #e9ecef;
            border-color: #667eea;
        }
        
        .radio-option input[type="radio"] {
            margin-right: 8px;
            width: auto;
        }
        
        .radio-option input[type="radio"]:checked + span {
            color: #667eea;
            font-weight: 600;
        }
        
        .radio-option input[type="radio"]:checked ~ * {
            color: #667eea;
        }
        
        @media (max-width: 480px) {
            .report-type-options {
                grid-template-columns: 1fr;
            }
        }
        
        .mt-4 {
  margin-top: 1.5rem !important;
}
.tag_link {
  border-radius: 50rem;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
  line-height: 0.5;
  color: #3874ff;
  border: 1px solid #3874ff;
  margin-right: 6px;
   text-decoration: none;
  display: inline-flex;
}