/* 全局样式重置 */
* {
    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;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* 模块样式（带边框） */
.section {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

/* 标题样式 */
.title {
    font-size: 20px;
    color: #2c3e50;
    border-left: 5px solid #3498db;
    padding-left: 10px;
    margin-bottom: 15px;
}

/* 基本信息布局 */
.base-info .info-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 信息左右两列 */
.info-left, .info-right {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    font-size: 15px;
    display: flex;
}

.label {
    font-weight: bold;
    color: #34495e;
    width: 90px;
}

.text {
    color: #2c3e50;
}

/* 照片区域 */
.photo-box {
    width: 22%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo {
    width: 130px;
    height: 160px;
    object-fit: cover;
    border: 1px solid #ccc;
}

/* 列表样式（2-5部分） */
.list {
    list-style: none;
    padding-left: 10px;
}

.list li {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

/* 列表小圆点 */
.list li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 链接样式 */
a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 视频样式 */
video {
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}