* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    background-color: #f5f7fa;
    padding: 40px 0;
}

/* 简历整体 */
.resume-container {
    width: 860px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border: 2px solid #333;
    border-radius: 8px;
}

/* 标题 */
.resume-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #222;
}

/* 每个模块带边框 */
.section {
    border: 1px solid #666;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.section-head {
    font-size: 19px;
    color: #1a5276;
    border-left: 5px solid #1a5276;
    padding-left: 10px;
    margin-bottom: 18px;
}

/* 基本信息布局：左侧两列 + 右侧照片 */
.base-info-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-left {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
}

.info-item {
    width: 50%;
    font-size: 15px;
    line-height: 1.8;
}

.info-item label {
    font-weight: bold;
    color: #333;
    display: inline-block;
    width: 85px;
}

/* 照片：右侧居中 */
.info-right {
    width: 25%;
    text-align: center;
}

.photo {
    width: 140px;
    height: 175px;
    object-fit: cover;
    border: 1px solid #999;
}

/* 列表样式（分条列点） */
.item-list {
    list-style: none;
}

.item-list li {
    font-size: 15px;
    line-height: 1.8;
    padding: 6px 0;
    padding-left: 15px;
    position: relative;
}

.item-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5276;
    font-weight: bold;
}

/* 实践经历视频 */
.practice-video {
    width: 350px;
    height: 200px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}