/* 为品牌打造全球影响力区块样式升级 */
.kol-intro {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to bottom, #ffffff, #f9f9ff);
}

.kol-intro::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(112, 69, 175, 0.05) 0%, rgba(112, 69, 175, 0) 70%);
    z-index: 0;
}

.kol-intro::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30%;
    height: 60%;
    background: radial-gradient(circle at 30% 70%, rgba(233, 30, 99, 0.04) 0%, rgba(233, 30, 99, 0) 70%);
    z-index: 0;
}

.kol-intro-heading {
    text-align: center;
    margin-bottom: 70px !important;
    position: relative;
    z-index: 1;
    max-width: 1200px !important;
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.kol-intro-heading .kol-section-subtitle {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
}

.kol-intro-heading .kol-h2 {
    font-size: 46px;
    margin-top: 15px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.kol-intro-heading .kol-text-accent {
    background: linear-gradient(135deg, #7045af, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.kol-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px !important;
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
}

.kol-text-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.kol-text-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.kol-text-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #7045af, #e91e63);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 10px 20px rgba(112, 69, 175, 0.2);
}

.kol-text-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.kol-text-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.kol-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

.kol-image-wrapper:hover img {
    transform: scale(1.05);
}

.kol-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.kol-image-wrapper:hover .kol-image-overlay {
    opacity: 1;
}

.kol-play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7045af, #e91e63);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.kol-play-button:hover {
    transform: scale(1.1);
}

.kol-image-caption {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.kol-image-caption .kol-badge {
    background: linear-gradient(135deg, #7045af, #e91e63);
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(112, 69, 175, 0.2);
}

.kol-image-caption p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.kol-intro-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px !important;
    width: 90% !important;
    margin: 80px auto 0 !important;
    position: relative;
    z-index: 1;
}

.kol-stat-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.kol-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.kol-stat-number {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, #7045af, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 确保数字快速显示 */
.kol-stat-number[data-value] {
    counter-reset: num attr(data-value);
}

.kol-stat-label {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.kol-intro-clients {
    max-width: 1200px !important;
    width: 90% !important;
    margin: 80px auto 0 !important;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.kol-intro-clients h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .kol-intro-content {
        grid-template-columns: 1fr;
    }
    
    .kol-intro-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kol-intro-heading .kol-h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .kol-text-block {
        padding: 20px;
    }
    
    .kol-text-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .kol-intro-stats {
        grid-template-columns: 1fr;
    }
    
    .kol-intro-heading .kol-h2 {
        font-size: 28px;
    }
}

/* KOL资源库区块宽度限制 */
.kol-categories-container,
.kol-categories-heading,
.kol-category-content,
.kol-category-grid {
    max-width: 1200px !important;
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
} 