/* 全局初始化 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
}

body {
    background-color: #f5f7fa;
    padding: 40px 0;
}

/* 简历整体容器 */
.resume-wrapper {
    width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

/* 每个模块都带边框 */
.resume-module {
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    padding: 22px;
    margin-bottom: 28px;
}

/* 模块标题 */
.resume-module h2 {
    font-size: 19px;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

/* 基本信息：两列 + 右侧1寸照片 */
.base-info-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.info-left, .info-right {
    width: 35%;
}

.info-left p, .info-right p {
    font-size: 15px;
    line-height: 2.1;
    color: #333;
}

/* 1寸证件照尺寸 25mm×35mm */
.photo-one-inch {
    width: 25%;
    display: flex;
    justify-content: center;
}

.photo-one-inch img {
    width: 120px;
    height: 165px;
    object-fit: cover;
    border: 1px solid #ccc;
}

/* 列表样式（分条列点） */
.list-content p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 10px;
    color: #333;
}

/* 链接样式 */
a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 视频样式 */
video {
    border: 1px solid #eee;
    margin-top: 5px;
}