/* 技能详情页样式 */
.skill-detail {
    padding: 20px 0;
}

.detail-header {
    margin-bottom: 40px;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.skill-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.skill-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    background-color: #007bff;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 10px;
}

.detail-content {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.tech-stack {
    margin-bottom: 30px;
}

.tech-category {
    margin-bottom: 20px;
}

.tech-category h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #34495e;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 15px;
    background-color: #007bff;
    color: white;
}

.application-scenarios {
    margin-bottom: 30px;
}

.scenario-item {
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.scenario-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.scenario-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.application-types {
    margin-bottom: 30px;
}

.type-item {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    height: 100%;
}

.type-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.type-item i {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #007bff;
}

.type-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.solutions {
    margin-bottom: 30px;
}

.solution-item {
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
}

.solution-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.advantages {
    margin-bottom: 30px;
}

.advantage-item {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    height: 100%;
}

.advantage-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.advantage-item i {
    font-size: 1.25rem;
    color: #28a745;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.advantage-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.back-btn {
    margin-top: 40px;
    text-align: center;
}

.back-btn .btn {
    font-size: 1rem;
    padding: 10px 25px;
    border-radius: 8px;
    border: 1px solid #007bff;
    color: #007bff;
    transition: all 0.3s ease;
}

.back-btn .btn:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .detail-content {
        padding: 15px;
    }
    
    .section-title {
        font-size: 1.125rem;
    }
    
    .tech-tag {
        font-size: 0.8125rem;
        padding: 4px 10px;
    }
    
    .scenario-item {
        padding: 15px;
    }
    
    .type-item {
        padding: 15px;
    }
    
    .solution-item {
        padding: 15px;
    }
    
    .advantage-item {
        padding: 15px;
    }
}