/* Qwen页面样式 */
:root {
    --qwen-primary: #ff6b35;
    --qwen-secondary: #f7931e;
    --qwen-light: #fff3e0;
    --qwen-dark: #e65100;
}

/* Qwen介绍区域样式 */
.qwen-intro {
    max-width: 1200px;
    margin: 30px auto;
    background: linear-gradient(135deg, #f9f9f9, #f3f3f3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qwen-intro:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.intro-container {
    display: flex;
    padding: 40px;
    align-items: center;
    position: relative;
}

.intro-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--qwen-primary), var(--qwen-secondary));
}

.intro-image {
    flex: 0 0 280px;
    text-align: center;
    padding-right: 40px;
}

.intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
    transition: transform 0.3s ease;
}

.qwen-intro:hover .intro-image img {
    transform: scale(1.05);
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--qwen-primary), var(--qwen-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.feature-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.15);
}

.badge-icon {
    font-size: 20px;
    margin-right: 8px;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

@media (max-width: 768px) {
    .intro-container {
        flex-direction: column;
        padding: 30px;
    }
    
    .intro-image {
        padding-right: 0;
        padding-bottom: 30px;
        flex: 0 0 auto;
        width: 180px;
    }
    
    .feature-badges {
        justify-content: center;
    }
}