/* 简历页面样式 */
.resume-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* 个人资料部分 */
.profile {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.profile-image {
    width: 200px;
    height: 200px;
    margin-right: 2rem;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-info h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1e88e5;
}

.profile-info .title {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #1e88e5;
}

/* 时间线样式 */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #1e88e5;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: #1e88e5;
    border-radius: 50%;
}

.time {
    font-weight: bold;
    color: #1e88e5;
    margin-bottom: 0.5rem;
}

/* 技能部分 */
.skill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.skill-item {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 4px;
}

.skill-name {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.skill-level {
    height: 0.5rem;
    background-color: #ddd;
    border-radius: 0.25rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #1e88e5;
    border-radius: 0.25rem;
    transition: width 0.3s ease;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .profile {
        flex-direction: column;
        text-align: center;
    }

    .profile-image {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .contact-info {
        justify-content: center;
    }
} 