/* 全局基础设置，清除浏览器默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "微软雅黑", "SimHei", sans-serif;
}

/* 页面背景样式 */
body {
    background-color: #f0f4f8;
    padding: 30px 20px;
}

/* 简历整体外框 */
.resume-container {
    width: 950px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 2px solid #2c3e50;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 基本信息板块：左右内容 + 右侧照片 */
.base-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #bdc3c7;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.info-content {
    width: 70%;
    display: flex;
    justify-content: space-between;
}

.info-left, .info-right {
    width: 48%;
}

.info-left p, .info-right p {
    font-size: 16px;
    line-height: 2.3;
}

.info-left span, .info-right span {
    font-weight: 600;
    color: #2c3e50;
}

/* 证件照样式 */
.photo-box {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.head-photo {
    width: 140px;
    height: 180px;
    border: 1px solid #7f8c8d;
    object-fit: cover;
    border-radius: 4px;
}

/* 每个板块的通用样式 */
.section {
    border: 1px solid #bdc3c7;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 22px;
}

/* 板块标题样式 */
.section-title {
    font-size: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

/* 列表条目样式 */
.list-style {
    padding-left: 25px;
    font-size: 15px;
    line-height: 2.1;
}

/* 视频居中样式 */
.video-box {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}