.airport-cp-card-v2 {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: flex;
    flex-direction: column; /* 垂直布局的关键 */
    max-width: 320px; /* 限制宽度，适合网格布局 */
    margin-left: auto;
    margin-right: auto;
}

.airport-cp-card-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.airport-cp-card-v2.is-expired {
    opacity: 0.7;
    filter: grayscale(1);
}

/* 顶部图片区域 */
.airport-cp-v2-header-img {
    width: 100%;
    height: 140px;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.airport-cp-v2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.airport-cp-v2-fallback {
    font-size: 48px;
    font-weight: bold;
    color: #cbd5e1;
}

/* 内容区域 */
.airport-cp-v2-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.airport-cp-v2-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

.airport-cp-v2-desc {
    margin: 0 0 16px 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 标签行 */
.airport-cp-v2-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.airport-cp-v2-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    background: #e0f2fe;
    color: #0284c7;
}

.airport-cp-v2-timer {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    background: #fff1f2;
    color: #e11d48;
}

/* 优惠码区域 */
.airport-cp-v2-coupons {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 16px;
}

.airport-cp-v2-coupon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.airport-cp-v2-coupon-row:last-child {
    margin-bottom: 0;
}

.airport-cp-v2-code {
    font-family: monospace;
    font-weight: bold;
    color: #334155;
    font-size: 13px;
}

.airport-cp-v2-copy-btn {
    background: #fff;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 2px 8px;
    font-size: 11px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.airport-cp-v2-copy-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* 底部按钮 */
.airport-cp-v2-footer {
    margin-top: auto;
}

.airport-cp-v2-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #2563eb;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.airport-cp-v2-btn:hover {
    background: #1d4ed8;
}

/* 响应式调整：如果是网格布局，外层容器需要处理，这里只处理卡片本身 */
