/* 视频制作页面横幅样式 */
.create-banner {
    height: 600px;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.create-banner .banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.banner-text {
    flex: 1;
    color: #fff;
    padding-right: 60px;
}

.banner-text h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #fff;
}

.banner-desc {
    font-size: 24px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.banner-image {
    flex: 1;
    position: relative;
}

.banner-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* 对比模块样式 */
.create-compare {
    padding: 80px 0;
    background: #fff;
}

.create-compare .section-title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 60px;
}

.compare-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.compare-item {
    flex: 1;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.compare-item.traditional {
    background: #fff;
}

.compare-item.digital {
    background: #00BFA6;
    color: #fff;
}

.compare-item h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.digital h3 {
    color: #fff;
}

.compare-list {
    list-style: none;
    padding: 0;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.compare-list .icon {
    font-size: 18px;
    font-weight: bold;
}

.negative .icon {
    color: #ff4d4f;
}

.digital .icon {
    color: #fff;
}

.compare-list p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.vs-icon {
    font-size: 36px;
    font-weight: bold;
    color: #00BFA6;
}

/* 制作步骤模块 */
.create-steps {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.step-preview {
    flex: 1;
}

.step-preview img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.steps-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    flex: 1;
}

.step-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-number {
    font-size: 36px;
    font-weight: bold;
    color: #00BFA6;
    line-height: 1;
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1);
    color: #008c7a;
}

.step-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 应用场景模块 */
.create-scenarios {
    padding: 80px 0;
    background: #fff;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.scenario-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.scenario-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.scenario-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #00BFA6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scenario-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.scenario-item h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
} 