
        /* ֻ������Ҫ����ʽ������������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;
        }

