/* 全局样式重置 */
* {
    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;
    border: 2px solid #333;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* 模块通用样式 */
.section {
    margin-bottom: 25px;
    border: 1px solid #999;
    padding: 20px;
    border-radius: 5px;
}

/* 模块标题 */
.section-title {
    font-size: 20px;
    color: #2c3e50;
    border-left: 5px solid #3498db;
    padding-left: 10px;
    margin-bottom: 20px;
}

/* ====================== 基本信息样式 ====================== */
.base-info-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 左侧信息两列布局 */
.base-info-left {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
}

.info-item {
    width: 50%;
    margin-bottom: 12px;
    font-size: 15px;
}

.label {
    font-weight: bold;
    color: #333;
    display: inline-block;
    width: 90px;
}

.content {
    color: #555;
}

/* 右侧照片 */
.base-info-right {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-box {
    width: 150px;
    height: 200px;
    border: 1px solid #666;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====================== 列表样式（教育/实践/校园/技能） ====================== */
.list-items {
    list-style: none;
}

.list-items li {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    padding-left: 15px;
    position: relative;
    margin-bottom: 10px;
}

/* 列表前小圆点 */
.list-items li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 链接样式 */
.link-item {
    color: #3498db;
    text-decoration: none;
    margin: 5px 0;
    display: inline-block;
}

.link-item:hover {
    text-decoration: underline;
}

/* 实践经历视频样式 */
.practice-video {
    width: 100%;
    max-width: 500px;
    margin-top: 8px;
    border: 1px solid #ddd;
}