/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    background-color: #f5f5f5;
    padding: 30px 0;
    display: flex;
    justify-content: center;
}

/* 简历整体容器 */
.resume-container {
    width: 900px;
    background: #fff;
    padding: 30px;
    border: 2px solid #ddd;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* 模块通用样式 */
.section {
    border: 1px solid #ccc;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 6px;
}

.section-title {
    font-size: 20px;
    color: #2c3e50;
    border-left: 5px solid #3498db;
    padding-left: 10px;
    margin-bottom: 15px;
}

/* 基本信息布局 */
.base-info .info-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.info-left, .info-right {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    font-size: 15px;
    line-height: 1.6;
}

.label {
    font-weight: bold;
    color: #34495e;
    display: inline-block;
    width: 90px;
}

/* 照片样式 */
.photo-box {
    width: 140px;
    height: 180px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

.photo {
    max-width: 130px;
    max-height: 170px;
    object-fit: cover;
}

/* 列表样式（教育/实践/校园/技能） */
.list-items {
    padding-left: 20px;
}

.list-items li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    text-align: justify;
}

/* 视频区域 */
.video-box {
    margin-top: 15px;
    text-align: center;
}