/* 达人影响力营销生产力区块样式 */
.marketing-power-container {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* 渐变背景 */
.marketing-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f0ff 100%);
    z-index: -1;
}

/* 标题区域样式 */
.marketing-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.marketing-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.highlight-text {
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.highlight-text:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #00c2ff, #00e5a2);
    z-index: -1;
    border-radius: 4px;
}

.title-decoration {
    position: absolute;
    right: -40px;
    top: 10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00c2ff, #00e5a2);
    border-radius: 50%;
    opacity: 0.5;
}

/* 卡片容器样式 */
.marketing-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 卡片基础样式 */
.marketing-card {
    flex: 1;
    min-width: 280px;
    max-width: 300px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 25px 20px;
}

.marketing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* 卡片标题区域 */
.card-header {
    margin-bottom: 20px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    position: relative;
}

.title-highlight {
    font-size: 16px;
    font-weight: 500;
    color: #999;
    margin-left: 4px;
    position: relative;
    top: -2px;
}

.card-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* 卡片内容区域 */
.card-content {
    position: relative;
}

.card-images {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.card-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.marketing-card:hover .card-img {
    transform: scale(1.05);
}

/* 品牌推广卡片特殊样式 */
.brand-card .card-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brand-card .main-img {
    width: 80%;
    margin-right: 20px;
}

.brand-card .secondary-img {
    position: absolute;
    width: 60%;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    box-shadow: -5px 5px 15px rgba(0,0,0,0.1);
}

/* 商品推广卡片特殊样式 */
.product-card .card-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-card .main-img {
    width: 100%;
}

.product-card .secondary-img {
    position: absolute;
    width: 50%;
    right: 0;
    top: 30%;
    transform: translateY(-50%);
    border-radius: 8px;
    box-shadow: -5px 5px 15px rgba(0,0,0,0.1);
}

/* 门店推广卡片特殊样式 */
.store-card .card-images {
    text-align: center;
}

.store-card .circle-img {
    width: 85%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
}

.store-card .card-tag {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
}

/* 获客/应用推广卡片特殊样式 */
.customer-card .card-content {
    padding-top: 20px;
}

.app-icons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.customer-card:hover .app-icon {
    transform: translateY(-5px);
}

/* 为每个图标添加不同的动画延迟 */
.app-icon:nth-child(1) {
    transition-delay: 0s;
}
.app-icon:nth-child(2) {
    transition-delay: 0.1s;
}
.app-icon:nth-child(3) {
    transition-delay: 0.2s;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .marketing-cards-container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .marketing-card {
        min-width: 260px;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .marketing-power-container {
        padding: 60px 0;
    }
    
    .marketing-title {
        font-size: 28px;
    }
    
    .marketing-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .marketing-card {
        min-width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .marketing-title {
        font-size: 24px;
    }
    
    .marketing-card {
        padding: 20px 15px;
    }
    
    .card-title {
        font-size: 20px;
    }
} 