/* 全局样式重置 */
* {
    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 10px rgba(0, 0, 0, 0.1);
}

/* 模块通用样式 */
.section {
    border: 1px solid #666;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
}

.section-title {
    font-size: 20px;
    color: #222;
    border-bottom: 2px solid #444;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

/* 基本信息布局：两列 + 右侧照片 */
.base-info .info-content {
    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: 10px;
    font-size: 16px;
}

.label {
    font-weight: bold;
    color: #333;
    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 #999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    background: #f9f9f9;
}

.photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 列表样式（教育/实践/校园/技能） */
.list-content {
    padding-left: 20px;
}

.list-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #333;
}

/* 实践经历 - 链接与视频样式 */
.link-item {
    margin: 5px 0;
    color: #0066cc;
}

.link-item a {
    color: #0066cc;
    text-decoration: none;
}

.link-item a:hover {
    text-decoration: underline;
}

.video-item {
    margin: 8px 0;
}