* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "微软雅黑", sans-serif;
}
body {
    background-color: #f5f7fa;
    padding: 40px;
}
.resume-wrap {
    width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 12px #eee;
}
/* 整体板块样式 带边框 */
.resume-box {
    border: 1px solid #c8d8e8;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
}
/* 板块标题 */
.resume-title {
    font-size: 18px;
    color: #222;
    border-bottom: 1px solid #999;
    padding-bottom: 8px;
    margin-bottom: 15px;
}
/* 基本信息左右两列+右侧图片 */
.info-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.info-left, .info-right {
    line-height: 2.2;
    font-size: 15px;
}
.info-img {
    text-align: center;
}
.info-img img {
    width: 130px;
    height: 160px;
    object-fit: cover;
    border: 1px solid #ccc;
}
/* 列表通用样式 */
.resume-list {
    padding-left: 25px;
    line-height: 1.9;
    font-size: 15px;
}
/* 链接样式 */
.resume-list a {
    color: #0066cc;
    text-decoration: none;
}
/* 视频样式 */
.video-box {
    width: 320px;
    margin-top: 8px;
    border-radius: 4px;
}