/*全局初始化*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", SimSun, sans-serif;
}
body {
    background-color: #f5f7fa;
    padding: 30px;
}
/*简历外层大容器*/
.resume-wrap {
    width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border: 1px solid #ccd6e0;
    border-radius: 8px;
    box-shadow: 0 0 12px #e8edf3;
}
/*每个板块独立边框*/
.resume-item {
    border: 1px solid #b8c8dd;
    border-radius: 6px;
    padding: 18px 22px;
    margin-bottom: 20px;
}
/*板块标题样式*/
.title {
    font-size: 19px;
    color: #2d4059;
    border-bottom: 2px solid #4278bd;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

/*基本信息弹性布局：左信息，右照片*/
.base-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}
.base-left {
    flex: 1;
}
.info-row {
    display: flex;
    margin-bottom: 12px;
}
.info-col {
    width: 50%;
    font-size: 15px;
}
.info-col span {
    font-weight: 600;
    color: #333;
}
/*右侧照片固定宽度，锁定在最右边*/
.base-right {
    width: 150px;
    flex-shrink: 0;
}
.avatar-box {
    width: 100%;
    display: flex;
    justify-content: center;
}
.avatar {
    width: 130px;
    height: 170px;
    border: 1px solid #999;
    object-fit: cover;
}

/*列表li自动换行核心配置*/
.content-list {
    padding-left: 22px;
}
.content-list li {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-all;
}

/*链接盒子*/
.link-box {
    margin-top: 6px;
    padding: 8px 10px;
    background: #f4f8fd;
    border-radius: 4px;
}
.link-box a {
    color: #0066cc;
    text-decoration: none;
}
.link-box a:hover {
    text-decoration: underline;
}
/*视频间距样式*/
.video-wrap{
    margin-top:8px;
}
.video-wrap p{
    margin-bottom:6px;
}
video{
    max-width:100%;
}