
        :root {
            --bg-color: rgb(16, 18, 24);
            --card-bg: rgba(30, 33, 45, 0.6);
            --gradient-start: rgb(255, 73, 58);
            --gradient-end: rgb(223, 152, 242);
            --text-color: rgba(255, 255, 255, 0.95);
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-tertiary: rgba(255, 255, 255, 0.5);
            --border-color: rgba(255, 255, 255, 0.1);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 导航栏 */
        header {
            background-color: rgba(16, 18, 24, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 40px;
        }
        
        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--text-color);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 24px;
            cursor: pointer;
        }
        
        /* 搜索区域 */
        .search-section {
            padding: 180px 0 60px;
            text-align: center;
            background: radial-gradient(circle at 70% 30%, rgba(255, 73, 58, 0.08) 0%, var(--bg-color) 60%);
        }
        
        .search-title {
            margin-bottom: 50px;
        }
        
        .search-title h1 {
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .search-title p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* 优雅的动态浮光文字效果 */
        .elegant-glow-text {
            position: relative;
            display: inline-block;
            color: var(--text-color);
        }
        
        .elegant-glow-text::after {
            content: attr(data-text);
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent 0%, 
                var(--gradient-start) 20%, 
                var(--gradient-end) 80%, 
                transparent 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            opacity: 0;
            animation: elegantGlow 8s ease-in-out infinite;
            background-size: 200% 100%;
        }
        
        @keyframes elegantGlow {
            0% {
                opacity: 0;
                background-position: -100% 0;
            }
            20% {
                opacity: 0.8;
            }
            50% {
                opacity: 0.9;
            }
            80% {
                opacity: 0.8;
            }
            100% {
                opacity: 0;
                background-position: 100% 0;
            }
        }
        
        /* 搜索框 */
        .search-container {
            max-width: 100%;
            margin: 0 auto 60px;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 18px 25px;
            font-size: 18px;
            border-radius: 50px;
            border: 1px solid var(--border-color);
            background-color: var(--card-bg);
            color: var(--text-color);
            outline: none;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }
        
        .search-input:focus {
            border-color: var(--gradient-end);
            box-shadow: 0 5px 30px rgba(223, 152, 242, 0.3);
        }
        
        .search-btn {
            position: absolute;
            right: 6px;
            top: 6px;
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            color: #fff;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255, 73, 58, 0.3);
        }
        
        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(223, 152, 242, 0.4);
        }
        
        /* 搜索结果 */
        .results-section {
            padding: 0 0 60px;
            flex: 1;
        }
        
        .results-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .result-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(5px);
        }
        
        .result-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 73, 58, 0.2);
            border-color: rgba(223, 152, 242, 0.3);
        }
        
        .result-img {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 25px;
            background-color: rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid var(--border-color);
        }
        
        .result-img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: var(--transition);
        }
        
        .result-card:hover .result-img img {
            filter: drop-shadow(0 0 10px rgba(223, 152, 242, 0.3));
        }
        
        .result-info {
            padding: 20px;
            text-align: center;
        }
        
        .result-info h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: var(--text-color);
        }
        
        .result-info p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 15px;
        }
        
        .result-meta {
            font-size: 12px;
            color: var(--text-tertiary);
            padding-top: 12px;
            border-top: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
        }
        
        /* 无结果提示 */
        .no-results {
            text-align: center;
            padding: 60px 0;
            color: var(--text-secondary);
            grid-column: 1 / -1;
        }
        
        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 10px;
        }
        
        .page-item {
            list-style: none;
        }
        
        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background-color: var(--card-bg);
            color: var(--text-secondary);
            text-decoration: none;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        
        .page-link:hover {
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            color: #fff;
            border-color: transparent;
        }
        
        .page-link.active {
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 15px rgba(255, 73, 58, 0.3);
        }
        
        /* 页脚 */
        footer {
            background-color: rgba(16, 18, 24, 0.95);
            padding: 30px 0;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-links {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--text-color);
        }
        
        .copyright {
            color: var(--text-tertiary);
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .search-title h1 {
                font-size: 38px;
            }
        }
        
        @media (max-width: 992px) {
            .results-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .search-title h1 {
                font-size: 34px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 90px);
                background-color: var(--bg-color);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
                border-top: 1px solid var(--border-color);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 20px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .search-section {
                padding-top: 140px;
            }
            
            .search-title h1 {
                font-size: 30px;
            }
            
            .results-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .search-title h1 {
                font-size: 26px;
            }
            
            .search-input {
                padding: 15px 20px;
                font-size: 16px;
            }
            
            .search-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .results-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 10px;
            }
        }



        .loading {
        text-align: center;
        padding: 60px 0;
        color: var(--text-secondary);
        }

        .loading-icon {
            font-size: 32px;
            animation: spin 1.5s linear infinite;
            display: inline-block;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
