/* 全局初始化 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    background-color: #f4f4f4;
    padding: 40px 0;
}

/* 简历整体容器 */
.resume {
    width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border: 3px solid #2d4054;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* 简历大标题 */
.resume-title {
    text-align: center;
    font-size: 28px;
    color: #2d4054;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

/* 每个模块的边框 */
.section {
    border: 2px solid #3a506b;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
}

/* 模块小标题 */
.section-head {
    background-color: #3a506b;
    color: #fff;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
}

/* ===================== 基本信息布局：两列 + 右侧照片 ===================== */
.base-info {
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: space-between;
    padding: 20px;
    gap: 30px;
}

/* 信息两列布局 */
.info-columns {
    display: flex;
    flex: 1;
    gap: 60px;
}

.info-left, .info-right {
    flex: 1;
    font-size: 16px;
    line-height: 2;
}

/* 照片区域 居中 */
.photo-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo {
    width: 140px;
    height: 180px;
    object-fit: cover;
    border: 2px solid #666;
    border-radius: 4px;
}

/* ===================== 列表样式（分条列点） ===================== */
.list {
    padding: 20px 25px;
    font-size: 16px;
    line-height: 1.9;
}

.list li {
    margin-bottom: 8px;
    color: #333;
}

/* ===================== 视频样式 ===================== */
.video-container {
    padding: 0 20px 20px 20px;
}

video {
    border: 1px solid #ccc;
    border-radius: 4px;
}