/* 推广明细页面样式 - 响应式设计 */

.promote-detail-page {
    background: #f0f4f8;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* 顶部导航 */
.promote-header {
    background: #4a6fa5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    position: relative;
}

.promote-header-back {
    position: absolute;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.promote-header-title {
    font-size: 18px;
    font-weight: bold;
}

/* 收益卡片 */
.profit-card {
    background: linear-gradient(135deg, #3b5998 0%, #4a6fa5 100%);
    margin: 10px;
    padding: 25px 20px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
}

.profit-label {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.profit-value {
    font-size: 36px;
    font-weight: bold;
}

@media (max-width: 375px) {
    .profit-value {
        font-size: 32px;
    }
}

/* 统计数据 */
.stats-row {
    background: #fff;
    margin: 0 10px 10px;
    padding: 20px 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.stats-item {
    text-align: center;
    min-width: 60px;
}

.stats-num {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

@media (min-width: 400px) {
    .stats-num {
        font-size: 24px;
    }
}

.stats-label {
    font-size: 12px;
    color: #666;
}

@media (min-width: 400px) {
    .stats-label {
        font-size: 13px;
    }
}

/* 经营数据 */
.data-section {
    background: #fff;
    margin: 0 10px;
    padding: 20px 15px;
    border-radius: 12px;
}

.data-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.data-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
}

@media (min-width: 400px) {
    .data-title {
        font-size: 16px;
    }
}

.data-detail-link {
    font-size: 13px;
    color: #3b82f6;
    text-decoration: none;
}

@media (min-width: 400px) {
    .data-detail-link {
        font-size: 14px;
    }
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 10px;
}

@media (max-width: 375px) {
    .data-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.data-item {
    text-align: center;
}

.data-value {
    font-size: 16px;
    font-weight: bold;
    color: #ef4444;
    margin-bottom: 5px;
}

@media (min-width: 400px) {
    .data-value {
        font-size: 18px;
    }
}

.data-label {
    font-size: 11px;
    color: #666;
}

@media (min-width: 400px) {
    .data-label {
        font-size: 12px;
    }
}
