/* 职业规划页面样式 */
.career-banner {
    background: linear-gradient(rgba(0, 164, 255, 0.9), rgba(0, 132, 255, 0.8));
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.career-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.career-banner p {
    font-size: 20px;
    opacity: 0.9;
}

/* 职业方向卡片 */
.path-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.path-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.path-card:hover {
    transform: translateY(-5px);
}

.path-icon {
    font-size: 40px;
    color: #00a4ff;
    margin-bottom: 20px;
}

.path-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
    color: #666;
}

.path-detail-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00a4ff;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.path-detail-btn:hover {
    background: #0088cc;
}

/* 技能树样式 */
.skill-tree {
    padding: 80px 0;
    background: #f5f5f5;
}

.skill-tree .path-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skill-tree .path-icon {
    width: 60px;
    height: 60px;
    background: #e6f3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.skill-tree .path-icon i {
    font-size: 30px;
    color: #00a4ff;
}

/* 技能标签样式 */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

.skill-tag {
    background: #f0f7ff;
    color: #00a4ff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
}

/* 就业数据样式 */
.data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.data-card {
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.data-card h3 {
    font-size: 36px;
    color: #00a4ff;
    margin-bottom: 10px;
}

/* 学习路径时间线 */
.path-timeline {
    position: relative;
    margin-top: 40px;
    padding: 20px 0;
}

.timeline-item {
    position: relative;
    padding: 20px 0;
    padding-left: 50px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #00a4ff;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 30px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00a4ff;
}

/* 成功案例样式 */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.student-info {
    text-align: center;
    margin-bottom: 20px;
}

.student-info img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.story-content {
    font-style: italic;
    color: #666;
    line-height: 1.6;
} 