
.resume {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    color: #333;
}

.header h1 {
    font-size: 24px;
    color: #333;
}

.header p {
    font-size: 16px;
    color: #555;
}

.section {
    margin-bottom: 20px;
}

.section h2 {
    font-size: 20px;
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
}
.education-item, .work {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 创建三列，每列等宽 */
    width: 100%;
    color: #333;
    font-weight: bold;
}


.education-time, .work-company {
    justify-content: flex-start;
}

.education-school, .work-job {
    text-align: center;
}

.education-pro, .work-time {
    text-align: right;
}
