   /* 独享CSS部分 - 列表页内容 */
        
        /* 页面头部 */
        .page-header {
            background: var(--gradient);
            color: white;
            padding: 150px 0 80px;
            margin-top: 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            animation: fadeInDown 1s ease;
        }

        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 列表内容区域 */
        .list-content {
            padding: 80px 0;
            background: var(--light-color);
        }

        .list-filters {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            animation: fadeIn 0.8s ease;
        }

        .filter-group {
            flex: 1;
            min-width: 200px;
        }

        .filter-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-color);
        }

        .filter-group select,
        .filter-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }

        .filter-group select:focus,
        .filter-group input:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(30, 74, 138, 0.1);
        }

        .filter-actions {
            display: flex;
            align-items: flex-end;
            gap: 15px;
        }

        /* 公司列表 */
        .company-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 35px;
            margin-bottom: 60px;
        }

        .company-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            animation: fadeInUp 0.8s ease;
            position: relative;
        }

        .company-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .company-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);

        }

        .company-header {
            background: var(--primary-color);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .company-header-content {
            flex: 1;
        }

        .company-header h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            text-decoration: none !important;
        }

        .company-header h3 a {
            text-decoration: none !important;
            transition: var(--transition);
        }

        .company-header h3 a:hover {
            color: var(--secondary-color);
        }

        .company-id {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .detail-btn {
            background: var(--secondary-color);
            color: var(--dark-color);
            border: none;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
            animation: btnPulse 2s infinite;
        }

        @keyframes btnPulse {
            0% {
                box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
            }
            50% {
                box-shadow: 0 3px 15px rgba(212, 175, 55, 0.5);
            }
            100% {
                box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
            }
        }

        .detail-btn:hover {
            transform: scale(1.05);
            background: #c19d2e;
        }

        .company-details {
            padding: 25px;
        }

        .company-field {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .company-field:hover {
            background: rgba(248, 249, 250, 0.5);
            padding-left: 10px;
            border-radius: 5px;
        }

        .company-field:last-child {
            border-bottom: none;
        }

        .field-name {
            font-weight: 600;
            color: var(--primary-color);
        }

        .company-price {
            background: var(--gradient);
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 1.8rem;
            font-weight: 700;
            position: relative;
            overflow: hidden;
        }

        .company-price::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .company-card:hover .company-price::before {
            left: 100%;
        }

        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
            gap: 10px;
        }

        .page-num {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: white;
            color: var(--primary-color);
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .page-num:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(15, 43, 91, 0.2);
        }

        .page-num-current {
            background: var(--gradient);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(15, 43, 91, 0.3);
        }

        .page-num i {
            font-size: 0.9rem;
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .list-filters {
                flex-direction: column;
            }
            
            .filter-actions {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .page-header {
                padding: 130px 0 60px;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            .company-list {
                grid-template-columns: 1fr;
            }

            .company-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .detail-btn {
                margin-top: 10px;
                align-self: flex-end;
            }

            .pagination {
                flex-wrap: wrap;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }