/* 短视频运营页面样式 */

.video-hero {
    background: var(--gradient-1);
    padding: 80px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.video-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.video-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.video-hero h1 i {
    font-size: 42px;
}

.video-hero p {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.video-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-item i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

/* 服务网格 */
.video-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.video-service-card {
    background: white;
    padding: 45px 35px;
    border-radius: 5px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 169, 236, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.video-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.video-service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.video-service-card:hover::before {
    transform: scaleX(1);
}

.video-service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: var(--gradient-1);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 169, 236, 0.25);
    transition: all 0.5s;
}

.video-service-card:hover .video-service-icon {
    transform: rotateY(360deg) scale(1.1);
}

.video-service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
    text-align: center;
}

.video-service-card > p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.video-service-list {
    list-style: none;
    margin-top: 20px;
}

.video-service-list li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-service-list li i {
    color: var(--primary-color);
    font-size: 12px;
}

/* 平台卡片 */
.video-platforms-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.video-platform-card {
    background: white;
    padding: 40px 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 169, 236, 0.08);
    transition: all 0.4s;
}

.video-platform-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-platform-card i {
    font-size: 56px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: block;
}

.video-platform-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.video-platform-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* 流程时间线 */
.video-process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.video-process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 0;
}

.video-process-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.video-process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 169, 236, 0.3);
    border: 3px solid white;
}

.video-process-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 169, 236, 0.1);
    transition: all 0.4s;
}

.video-process-item:hover .video-process-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.video-process-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.video-process-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* 案例网格 */
.video-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.video-case-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 169, 236, 0.06);
    transition: all 0.4s;
}

.video-case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.video-case-image {
    width: 100%;
    height: 180px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 60px;
}

.video-case-card:nth-child(2n) .video-case-image {
    background: var(--gradient-2);
}

.video-case-card:nth-child(3n) .video-case-image {
    background: var(--gradient-3);
}

.video-case-info {
    padding: 28px;
}

.video-case-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.video-case-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.video-case-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.video-case-stats span {
    font-size: 12px;
    color: var(--primary-color);
    background: rgba(0, 169, 236, 0.08);
    padding: 6px 12px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* CTA区域 */
.video-cta-section {
    background: var(--gradient-1);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.video-cta-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.video-cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* 响应式 */
@media (max-width: 1024px) {
    .video-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .video-platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .video-hero h1 {
        font-size: 32px;
    }

    .video-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-services-grid,
    .video-cases-grid,
    .video-platforms-grid {
        grid-template-columns: 1fr;
    }

    .video-process-timeline {
        grid-template-columns: 1fr;
    }

    .video-process-timeline::before {
        display: none;
    }
}

