/* 简历页面样式 */

/* 简历容器 */
.resume-container {
    max-width: 900px;
    margin: 120px auto 50px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
    backdrop-filter: blur(10px);
}

/* 简历头部 */
.resume-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.resume-title h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.resume-title p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.resume-contact {
    text-align: right;
}

.resume-contact p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.resume-contact span {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.resume-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.resume-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

/* 简历部分 */
.resume-section {
    margin-bottom: 40px;
}

.resume-section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.resume-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
}

.resume-content {
    padding-left: 20px;
}

/* 技能部分 */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
}

.skill-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.skill-bar {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
}

/* 工作经历 */
.experience-item {
    margin-bottom: 30px;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.experience-header h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

.experience-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.experience-company {
    font-size: 1rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.experience-duties {
    padding-left: 20px;
}

.experience-duties li {
    margin-bottom: 8px;
    position: relative;
    list-style-type: none;
}

.experience-duties li::before {
    content: '•';
    position: absolute;
    left: -20px;
    color: rgba(255, 255, 255, 0.7);
}

/* 教育背景 */
.education-item {
    margin-bottom: 25px;
}

.education-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.education-header h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

.education-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.education-school {
    font-size: 1rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.education-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* 项目经历 */
.project-item {
    margin-bottom: 25px;
}

.project-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.project-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 证书列表 */
.certificates-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 15px;
    padding-left: 20px;
}

.certificates-list li {
    position: relative;
    list-style-type: none;
}

.certificates-list li::before {
    content: '•';
    position: absolute;
    left: -20px;
    color: rgba(255, 255, 255, 0.7);
}

/* 下载按钮 */
.resume-download {
    text-align: center;
    margin: 40px 0;
}

.btn-download {
    display: inline-block;
    padding: 12px 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-download:hover {
    background-color: #fff;
    color: #000;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .resume-container {
        padding: 30px;
        margin-top: 100px;
    }
    
    .resume-header {
        flex-direction: column;
    }
    
    .resume-contact {
        text-align: left;
        margin-top: 20px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-header,
    .education-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .experience-date,
    .education-date {
        margin-top: 5px;
    }
    
    .certificates-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .resume-container {
        padding: 20px;
        margin-top: 80px;
    }
    
    .resume-title h1 {
        font-size: 2rem;
    }
} 