/* 我的推广页样式 */

/* 推广数据 */
.promotion-stats {
    display: flex;
    background-color: #fff;
    margin-bottom: 10px;
    padding: 30px 0;
}

.stat-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid #eee;
    padding: 0 15px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.stat-value {
    font-size: 28px;
    font-weight: 600;
    color: #1890FF;
    margin-bottom: 4px;
    line-height: 1.2;
}

.stat-unit {
    font-size: 12px;
    color: #999;
}

/* 推广链接 */
.promotion-link-box {
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.link-text {
    flex: 1;
    font-size: 13px;
    color: #333;
    word-break: break-all;
    padding: 10px 12px;
    background-color: #fff;
    border-radius: 8px;
    line-height: 1.5;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
    height: 40px;
    border-radius: 8px;
}

/* 推广海报 */
.promotion-poster {
    padding: 15px 0;
}

.poster-preview {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f5f5f5;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.poster-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.poster-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.placeholder-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    opacity: 0.3;
}

.placeholder-text {
    font-size: 14px;
    color: #999;
}

