/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

/* 页面背景 */
body {
    background-color: #f5f5f5;
    padding: 30px 0;
}

/* 简历整体容器 */
.resume-container {
    width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border: 2px solid #333;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* 简历大标题 */
.resume-title {
    text-align: center;
    font-size: 32px;
    color: #222;
    margin-bottom: 30px;
    letter-spacing: 5px;
}

/* 每个模块的外边框 */
.resume-section {
    border: 1px solid #666;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 5px;
}

/* 模块小标题 */
.section-title {
    font-size: 20px;
    color: #fff;
    background-color: #4472c4;
    padding: 8px 15px;
    margin-bottom: 15px;
    border-radius: 3px;
}

/* 基本信息布局 强制左右并排 */
.base-info-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 30px;
}

.base-info-text {
    flex: 1;
    min-width: 0;
    line-height: 2.2;
    font-size: 16px;
}

.base-info-text p span {
    font-weight: bold;
    color: #333;
    display: inline-block;
    width: 120px;
}

/* 放大证件照尺寸 */
.photo-box {
    width: 200px;
    height: 250px;
    flex-shrink: 0;
    border: 1px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    color: #888;
    font-size: 14px;
}

/* 模块内容通用样式 */
.section-content {
    line-height: 2;
    font-size: 16px;
    color: #333;
}

/* 双视频并排布局 */
.video-two-box{
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: flex-start;
}
.video-item{
    border: 1px solid #ddd;
    padding: 8px;
    background-color: #fafafa;
}
.video-item video{
    width: 280px;
    height: 160px;
}