/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: default;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    padding: 2.5rem;
}

.resume-container {
    margin: 3rem 0;
    border: 1px solid #dee2e6;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
}

/* 标题样式 */
.section-title {
    border-bottom: 3px solid #0d6efd;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
}

/* 左侧栏样式 */
.left-column {
    background-color: #f1f5f9;
    padding: 30px 20px;
}

/* 头像样式 */
.profile-pic {
    display: block;
    margin: 0 auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.05);
}

/* 技能标签样式 */
.skill-tag {
    display: inline-block;
    background-color: #e1edff;
    color: #0d6efd;
    padding: 5px 12px;
    border-radius: 20px;
    margin: 0 5px 8px 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background-color: #0d6efd;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

/* 经历项样式 */
.experience-item {
    margin: 12px 0;
    padding: 0 15px;
    border-left: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.experience-item:hover {
    border-left-color: #0d6efd;
    transform: translateX(5px);
}

.experience-item:last-child {
    margin-bottom: 20px;
}

.experience-title {
    font-weight: 600;
    color: #212529;
    margin-bottom: 5px;
}

.experience-meta {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0 0 8px 3px;
}

.experience-description {
    color: #4e545a;
}

/* 学习经历样式 */
.education-school {
    font-weight: 600;
}

.education-period {
    font-size: 0.85rem;
    color: #6c757d;
}

/* 右侧栏样式 */
.right-column {
    padding: 30px 30px;
}

/* 名字标题样式 */
.name-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.name-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0d6efd;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.name-title:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* 联系方式图标样式 */
.contact-icon {
    color: #0d6efd;
    width: 24px;
    text-align: center;
}

.contact-item {
    transition: all 0.2s ease;
    word-break: break-all;
}

.contact-item:hover {
    color: #0d6efd;
    transform: translateX(5px);
}

/* 链接样式 */
.contact-link {
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-link:hover {
    color: #0d6efd;
    text-decoration: underline;
    cursor: pointer;
}

/* 奖项样式 */
.award-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.award-item::before {
    content: '\f091';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #ffc107;
}

.award-item:hover {
    transform: translateX(5px);
}
        
/* 底部信息 */
.footer-info {
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    color: #868e96;
    font-size: 0.9rem;
    text-align: center;
}

.footer-info p {
    margin: 0.3rem 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .left-column, .right-column {
        padding: 20px 15px;
    }
    
    .name-title {
        font-size: 2rem;
    }
    
    .profile-pic {
        width: 150px;
        height: 150px;
    }
}