/* Appmall AI模型商城专用样式表 */

/* 继承主站基础样式，这里只定义特殊样式 */

/* Hero区域特殊渐变背景 */
.appmall-hero-visual {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* 模型图标容器 */
.appmall-model-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

/* 单个模型图标 */
.appmall-model-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.appmall-model-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* 部署流程步骤 */
.appmall-deploy-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.appmall-step {
    text-align: center;
    padding: 32px;
    background: var(--gray-100);
    border-radius: 12px;
    transition: all 0.3s;
}

.appmall-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.appmall-step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto 24px;
    transition: all 0.3s;
}

.appmall-step:hover .appmall-step-number {
    background: var(--deep-blue);
    transform: rotate(360deg);
}

.appmall-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.appmall-step p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* 案例卡片 */
.appmall-case-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.appmall-case-card h3 {
    margin-bottom: 10px;
    color: var(--gray-900);
    font-size: 18px;
    font-weight: 700;
}

.appmall-case-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
}

/* 模型列表样式 */
.appmall-model-list {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.8;
}

/* CTA 按钮特殊样式 */
.appmall-cta-primary {
    background: white !important;
    color: var(--primary-blue) !important;
}

.appmall-cta-primary:hover {
    background: var(--gray-100) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* 热门模型卡片渐变背景 */
.appmall-yolo-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 48px;
    font-weight: 700;
}

.appmall-llama-bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 36px;
    font-weight: 700;
}

.appmall-sdxl-bg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 40px;
    font-weight: 700;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .appmall-model-icons {
        flex-direction: column;
        gap: 12px;
    }

    .appmall-model-icon {
        width: 100px;
        height: 100px;
        font-size: 28px;
    }

    .appmall-deploy-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .appmall-step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .appmall-model-icon {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }
}