/* 招标公告列表专用样式 */
.bidding-list-page .bidding-item {
    position: relative;
}

/* 招标信息网格优化 */
.bidding-info .info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

/* 金额和截止时间特殊样式 */
.info-value.amount {
    font-size: 1rem;
    color: #dc3545;
}

.info-value.deadline {
    font-size: 0.95rem;
    color: #fd7e14;
    font-weight: 600;
}

/* 招标单位样式 */
.meta-company {
    font-weight: 500;
    color: #495057;
}

/* 项目编号样式 */
.meta-project-number {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.meta-project-number:hover {
    background: #dee2e6;
}

/* 紧急状态指示器 */
.urgent-badge {
    animation: urgent-pulse 1.5s infinite;
}

@keyframes urgent-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 126, 20, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(253, 126, 20, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(253, 126, 20, 0);
    }
}

/* 招标单位列表 */
.companies-list .company-item {
    transition: all 0.2s;
}

.companies-list .company-item:hover {
    transform: translateX(5px);
}

.company-name {
    font-size: 0.9rem;
    color: #495057;
}

.company-count {
    background: #6c757d;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.75rem;
    min-width: 20px;
    text-align: center;
}

/* 即将截止列表 */
.deadline-list .deadline-item {
    position: relative;
    padding-left: 15px;
}

.deadline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #fd7e14;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

.deadline-time {
    font-weight: 600;
    color: #fd7e14;
}

/* 筛选表单优化 */
.bidding-list-page .filter-form {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
}

.bidding-list-page .filter-input {
    background: white;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .bidding-info .info-grid {
        grid-template-columns: 1fr;
    }
    
    .bidding-item .bidding-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-left,
    .footer-right {
        width: 100%;
        justify-content: space-between;
    }
}