/* 全局初始化 */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei",SimSun,sans-serif;
}
body{
    background: #f3f5f8;
    padding:30px 15px;
}

/* ========== 新增：顶部简历标题 ========== */
.resume-top-title {
    text-align: center;
    font-size: 28px;
    color: #2c4d80;
    font-weight: bold;
    margin-bottom: 20px;
    /* 限制宽度，防止超出外层容器 */
    width: 100%;
}

/* 简历最外层大边框容器 */
.resume-container{
    width:980px;
    margin:0 auto;
    background:#ffffff;
    border:2px solid #365899;
    padding:32px;
    border-radius:10px;
}
/* 每个模块边框样式 */
.resume-block{
    border:1px solid #b9c9e2;
    padding:22px;
    margin-bottom:24px;
    border-radius:7px;
}
/* 模块标题 */
.block-title{
    color:#2c4d80;
    font-size:20px;
    padding-bottom:8px;
    border-bottom:2px solid #6892d0;
    margin-bottom:18px;
}

/* 基本信息左右布局 */
.info-content{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}
.info-left{
    width:74%;
}
/* 信息两列排布 */
.info-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:12px 16px;
}
.info-row{
    font-size:15px;
}
.label{
    font-weight:bold;
    color:#333333;
}
.val{
    color:#444;
}
/* 右侧照片居中，严格35mm*49mm实体一寸尺寸 */
.info-right{
    width:22%;
    text-align:center;
}
.photo-box{
    border:1px solid #888;
    padding:4px;
    max-width:100%;
    display:inline-block;
}
/* 35mm×49mm 换算72DPI网页：宽99px，高139px */
.avatar{
    width:99px;
    height:139px;
    object-fit:cover;
    display:block;
    margin:0 auto 6px;
}

/* 列表核心：li超长自动换行 */
.content-list{
    padding-left:22px;
}
.content-list li{
    font-size:15px;
    line-height:1.7;
    color:#333;
    margin-bottom:10px;
    /* 自动换行关键属性 */
    word-wrap:break-word;
    word-break:break-all;
}
/* 链接样式 */
.content-list a{
    color:#0056cc;
    text-decoration:none;
}
.content-list a:hover{
    text-decoration:underline;
}