/* 全局基础样式 */
* {
    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-color: #fff;
    padding: 30px;
    border: 2px solid #dcdcdc;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* 通用模块样式 */
.resume-section {
    border: 1px solid #999;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
}

/* 模块标题样式 */
.section-title {
    font-size: 20px;
    color: #2c3e50;
    border-left: 5px solid #3498db;
    padding-left: 10px;
    margin-bottom: 15px;
}

/* 基本信息专属布局 */
.basic-info .info-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* 信息左右分列 */
.info-left, .info-right {
    width: 35%;
    line-height: 2.2;
    font-size: 15px;
}

/* 信息标签样式 */
.info-left span:first-child, .info-right span:first-child {
    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-color: #f9f9f9;
}

/* 照片样式 */
.photo {
    max-width: 130px;
    max-height: 170px;
    object-fit: cover;
}

/* 列表样式（教育/实践/校园/技能模块） */
.list-style {
    list-style: none;
    line-height: 2;
    font-size: 15px;
}

.list-style li {
    padding-left: 15px;
    position: relative;
    margin-bottom: 8px;
}

.list-style li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 视频模块样式 */
.video-box {
    margin-top: 15px;
    text-align: center;
}

.practice-video {
    width: 80%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* 填充内容占位符 */
.fill-content {
    color: #666;
}