      /* 独享CSS - 列表页特有样式 */
        main {
            margin-top: 80px;
            padding: 40px 0;
        }

        .page-header {
            margin-bottom: 40px;
            text-align: center;
        }

        .page-title {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .page-title::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
            bottom: -5px;
            left: 0;
            animation: linePulse 2s infinite;
        }

        @keyframes linePulse {
            0% { opacity: 0.3; }
            50% { opacity: 1; }
            100% { opacity: 0.3; }
        }

        .page-description {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-color);
        }

        /* 公司列表样式 */
        .company-list {
            margin-bottom: 50px;
        }

        .company-item {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .company-item.animate {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .company-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .company-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #EEEEEE;
        }

        .company-id {
            font-size: 14px;
            color: #888888;
        }

        .company-name {
            font-size: 22px;
            font-weight: 600;
            color: var(--primary-color);
            margin: 5px 0;
        }

        .company-name a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .company-name a:hover {
            color: var(--accent-color);
        }

        .company-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-color);
        }

        .company-details {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }

        .detail-item {
            display: flex;
            justify-content: space-between;
            padding-bottom: 10px;
            border-bottom: 1px dashed #EEEEEE;
        }

        .detail-label {
            font-weight: 600;
            color: var(--dark-color);
        }

        .company-actions {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 14px;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: var(--secondary-color);
            color: white;
            animation: pulseBtn 2s infinite;
        }

        @keyframes pulseBtn {
            0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
            70% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
            100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
        }

        .btn-secondary:hover {
            background-color: #e6b800;
            transform: translateY(-2px);
        }

        /* 分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
        }

        .page-num {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            background-color: white;
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .page-num:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

        .page-num-current {
            background-color: var(--primary-color);
            color: white;
        }

        .page-num i {
            font-size: 14px;
        }

        /* 动画延迟类 */
        .delay-1 { transition-delay: 0.1s !important; }
        .delay-2 { transition-delay: 0.2s !important; }
        .delay-3 { transition-delay: 0.3s !important; }
        .delay-4 { transition-delay: 0.4s !important; }
        .delay-5 { transition-delay: 0.5s !important; }
		.delay-6 { transition-delay: 0.6s !important; }
		.delay-7 { transition-delay: 0.7s !important; }
		.delay-8 { transition-delay: 0.8s !important; }
		.delay-9 { transition-delay: 0.9s !important; }
		.delay-10 { transition-delay: 0.10s !important; }
		.delay-11 { transition-delay: 0.11s !important; }
		.delay-12 { transition-delay: 0.12s !important; }