/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    background-color: #f5f5f5;
    padding: 30px 0;
    line-height: 1.6;
}

/* 简历整体容器 */
.resume-container {
    width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* 模块样式（带边框） */
.section {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
}

/* 模块标题 */
.section-title {
    font-size: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

/* ====================== 基本信息样式 ====================== */
#basic-info .info-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 左侧信息两列布局 */
.info-left {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
}

.info-item {
    width: 50%;
    margin-bottom: 12px;
    font-size: 15px;
}

.label {
    font-weight: bold;
    color: #34495e;
    display: inline-block;
    width: 90px;
}

/* 右侧照片 */
.info-right {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-box {
    width: 150px;
    height: 200px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
}

.photo {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* ====================== 列表内容样式 ====================== */
.list-content {
    list-style: none;
    padding-left: 10px;
}

.list-content li {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
}

/* 列表前小圆点 */
.list-content li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 链接样式 */
.link-box {
    margin: 8px 0;
}

.link-box a {
    color: #3498db;
    text-decoration: none;
}

.link-box a:hover {
    text-decoration: underline;
}

/* 视频盒子 */
.video-box {
    margin: 10px 0;
}