/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    background-color: #f5f5f5;
    padding: 30px 0;
    display: flex;
    justify-content: center;
}

/* 简历整体容器 */
.resume-container {
    width: 900px;
    background: #fff;
    padding: 30px;
    border: 2px solid #ddd;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* 模块样式（带边框） */
.section {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

/* 标题样式 */
.section-title {
    font-size: 20px;
    color: #2c3e50;
    border-left: 5px solid #3498db;
    padding-left: 10px;
    margin-bottom: 15px;
}

/* ====================== 基本信息布局 ====================== */
.info-section {
    border: 1px solid #ccc;
}

.info-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 左右两列信息 */
.info-left, .info-right {
    width: 35%;
}

.info-item {
    font-size: 15px;
    line-height: 32px;
    color: #333;
}

.info-item span:first-child {
    font-weight: bold;
    color: #2c3e50;
}

/* 照片样式 */
.photo-box {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo {
    width: 130px;
    height: 160px;
    object-fit: cover;
    border: 2px solid #ccc;
    border-radius: 4px;
}

/* ====================== 列表样式 ====================== */
.list {
    list-style: none;
}

.list li {
    font-size: 15px;
    line-height: 28px;
    padding-left: 15px;
    position: relative;
    margin-bottom: 10px;
    color: #333;
}

.list li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 链接 + 视频区域 */
.link-video-box {
    margin-top: 8px;
}

.link-video-box a {
    color: #3498db;
    text-decoration: none;
}

.link-video-box a:hover {
    text-decoration: underline;
}

video {
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}