/* 全局样式 */
* {
    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 #333;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* 模块标题 */
.title {
    font-size: 20px;
    color: #222;
    background-color: #f0f0f0;
    border-left: 5px solid #444;
    padding: 8px 12px;
    margin-bottom: 15px;
}

/* 每个模块边框 */
.section {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* 基本信息布局：两列 + 右侧照片 */
.base-info .info-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.info-left, .info-right {
    width: 35%;
}

.info-left p, .info-right p {
    font-size: 15px;
    line-height: 2;
    color: #333;
}

.info-left span, .info-right span {
    font-weight: bold;
    color: #222;
}

/* 照片样式 */
.photo-box {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border: 1px solid #ccc;
}

/* 列表样式（教育/实践/校园/技能） */
.list {
    list-style: none;
}

.list li {
    font-size: 15px;
    line-height: 2;
    padding-left: 15px;
    position: relative;
    margin-bottom: 8px;
    color: #333;
}

.list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #444;
    font-weight: bold;
}

/* 链接样式 */
.link {
    color: #0066cc;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* 视频样式 */
.media {
    margin-top: 5px;
    border: 1px solid #ddd;
}