/**
 * TV Send Card - Order Received Page Styles
 */

.tv-send-card-order-received {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 20px;
}



/* 卡密信息样式 */
.tv-send-card-cards {
    margin-top: 16px;
}

.tv-send-card-item {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 8px;
}

.tv-send-card-item-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tv-send-card-type {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    min-width: 120px;
}

.tv-send-card-key {
    color: #333;
    font-size: 15px;
    font-weight: 400;
    word-break: break-all;
    flex: 1;
}

/* 平板和PC端 - 一行两列显示 */
@media (min-width: 768px) {
    .tv-send-card-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .tv-send-card-item {
        margin-bottom: 0;
    }
}

/* 移动端 - 两行显示 */
@media (max-width: 767px) {
    .tv-send-card-item-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .tv-send-card-type {
        min-width: auto;
        font-weight: 600;
    }
    
    .tv-send-card-key {
        font-size: 12px;
    }
}

/* 推广信息样式 */
.tv-send-card-promotion {
    background: #f8f9fa;
    border: 2px solid #007cba;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tv-send-card-promotion-title {
    color: #007cba;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #007cba;
}

.tv-send-card-promotion-content {
    color: #333;
    line-height: 1.6;
}

.tv-send-card-promotion-content p {
    margin: 0 0 10px 0;
}

.tv-send-card-promotion-content p:last-child {
    margin-bottom: 0;
}

/* 响应式推广信息 */
@media (max-width: 767px) {
    .tv-send-card-promotion {
        padding: 15px;
        margin-top: 15px;
    }
    
    .tv-send-card-promotion-title {
        font-size: 16px;
    }
} 