
        /* 只包含必要的样式，避免与其他CSS冲突 */
        .link-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            font-family: Arial, sans-serif;
        }
        
        /* 搜索框样式 */
        .search-container {
            margin-bottom: 30px;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #4a6ee0;
            border-radius: 8px;
            font-size: 16px;
            box-sizing: border-box;
            transition: all 0.3s ease;
            background-color: #f8f9ff;
        }
        
        .search-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(74, 110, 224, 0.2);
        }
        
        .search-input::placeholder {
            color: #888;
        }
        
        .search-results {
            text-align: center;
            margin-top: 10px;
            color: #666;
            font-size: 14px;
            min-height: 20px;
        }
        
        .no-results {
            color: #e74c3c;
            font-weight: bold;
            padding: 10px;
            background-color: #ffeaea;
            border-radius: 5px;
            margin-top: 15px;
            display: none;
        }
        
        .links-grid {
            display: grid;
            gap: 15px;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        
        /* 移动端默认样式（3个一行） */
        .links-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        
        /* 平板端样式（4个一行） */
        @media (min-width: 600px) and (max-width: 767px) {
            .links-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        /* PC端样式（5个一行） */
        @media (min-width: 768px) {
            .links-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }
        
        /* 大屏幕PC端样式（6个一行） */
        @media (min-width: 1024px) {
            .links-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }
        
        /* 边框样式链接 - 扁平化设计 */
        .border-link {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #333;
            border: 2px solid #4a6ee0;
            border-radius: 8px;
            padding: 15px 5px;
            text-align: center;
            font-weight: 500;
            background-color: #f8f9ff;
            transition: all 0.3s ease;
            min-height: 70px;
            box-sizing: border-box;
            font-size: 14px;
            line-height: 1.3;
        }
        
        /* 手机端调整字体大小 */
        @media (max-width: 480px) {
            .border-link {
                font-size: 13px;
                padding: 12px 4px;
                min-height: 65px;
            }
        }
        
        .border-link:hover {
            background-color: #4a6ee0;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(74, 110, 224, 0.2);
        }
        
        .border-link:active {
            transform: translateY(0);
        }
        
        /* 隐藏状态 */
        .hidden {
            display: none !important;
        }
        
        /* 标题样式 */
        .section-title {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
            font-size: 24px;
        }
        
        /* 搜索结果高亮 */
        .highlight {
            background-color: #fffacd;
            font-weight: bold;
        }
        
        /* 搜索提示 */
        .search-tips {
            margin-top: 10px;
            font-size: 13px;
            color: #666;
            text-align: center;
            padding: 8px;
            background-color: #f8f9ff;
            border-radius: 5px;
        }
        
        /* 清除搜索按钮 */
        .clear-search {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            font-size: 18px;
            color: #999;
            cursor: pointer;
            padding: 5px;
            display: none;
        }
        
        .clear-search:hover {
            color: #e74c3c;
        }

