/* 创作过程页面样式 */
.process-page {
    padding: 0;
}

/* 英雄区域样式 */
.hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.7);
}

.hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 2rem;
    background-color: rgba(0,0,0,0.5);
    border-radius: 8px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* 工具展示区域 */
.tools {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
}

.tools h2 {
    text-align: center;
    color: #e62129;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.tools-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tool-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tool-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.tool-item h3 {
    color: #e62129;
    margin-bottom: 1rem;
}

/* 步骤展示区域 */
.steps {
    padding: 4rem 2rem;
}

.steps h2 {
    text-align: center;
    color: #e62129;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.step-container {
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #e62129;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2rem;
}

.step-content {
    flex: 1;
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-content img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.step-info {
    flex: 1;
}

.step-info h3 {
    color: #e62129;
    margin-bottom: 1rem;
}

/* 视频教程区域 */
.video-tutorial {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
}

.video-tutorial h2 {
    text-align: center;
    color: #e62129;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-cover {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.video-info {
    padding: 2rem;
    text-align: center;
}

.video-info h3 {
    color: #e62129;
    margin-bottom: 1rem;
}

.play-btn {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background-color: #e62129;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.play-btn:hover {
    background-color: #d41920;
}

/* 创作要点区域 */
.tips {
    padding: 4rem 2rem;
}

.tips h2 {
    text-align: center;
    color: #e62129;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.tips-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tip-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tip-item h3 {
    color: #e62129;
    margin-bottom: 1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .step-content {
        flex-direction: column;
    }

    .step-content img {
        width: 100%;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }
} 