/* 主要内容区域 */
.style-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 风格展示区 */
.style-showcase {
    margin-bottom: 60px;
}

.showcase-text {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-text h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.showcase-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.showcase-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-item.main {
    grid-column: 1 / -1;
    height: 400px;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

/* 表情包展示区域 */
.emotion-section {
    margin-bottom: 60px;
    text-align: center;
}

.emotion-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
}

.emotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.emotion-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.emotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.emotion-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.emotion-text {
    padding: 20px;
}

.emotion-text h3 {
    color: #333;
    margin-bottom: 10px;
}

.emotion-text p {
    color: #666;
    font-size: 14px;
}

/* 应用场景区域 */
.application-section {
    margin-bottom: 60px;
    text-align: center;
    padding: 0 20px;
}

.application-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
}

.scene-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.scene-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.scene-card:hover {
    transform: translateY(-5px);
}

.scene-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.scene-card h3 {
    padding: 15px;
    margin: 0;
    color: #333;
}

.scene-card p {
    padding: 0 15px 15px;
    margin: 0;
    color: #666;
}

/* 互动区域 */
.interactive-zone {
    background: #f8f9fa;
    padding: 60px 20px;
    margin-bottom: 60px;
    text-align: center;
}

.interactive-zone h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
}

.creator-section {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.emotion-selector h3 {
    color: #333;
    margin-bottom: 20px;
}

.emotion-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.emotion-btn {
    padding: 10px 20px;
    border: 2px solid #87CEEB;
    border-radius: 20px;
    background: none;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.emotion-btn.active,
.emotion-btn:hover {
    background: #87CEEB;
    color: white;
}

.preview-canvas {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.preview-canvas img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.create-btn {
    padding: 15px 40px;
    background: #87CEEB;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.create-btn:hover {
    background: #5F9EA0;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item.main {
        height: 300px;
    }

    .creator-section {
        grid-template-columns: 1fr;
    }

    .emotion-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .showcase-text h1 {
        font-size: 28px;
    }

    .showcase-text p {
        font-size: 16px;
    }

    .scene-slider {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .scene-slider {
        grid-template-columns: repeat(2, 1fr);
    }
} 