/* 全局样式重置 */
* {
    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: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* 模块样式 */
.section {
    border: 1px solid #ccc;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 6px;
}

/* 模块标题 */
.section-title {
    font-size: 20px;
    color: #2c3e50;
    border-left: 4px 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%;
}

.info-item {
    margin-bottom: 10px;
    font-size: 15px;
}

.label {
    font-weight: bold;
    color: #333;
    display: inline-block;
    width: 90px;
}

.value {
    color: #555;
}

/* 照片样式 */
.photo-box {
    width: 130px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.photo {
    width: 120px;
    height: 150px;
    object-fit: cover;
}

/* 列表样式（教育/实践/校园/技能） */
.list-items {
    list-style: none;
}

.list-items li {
    padding: 8px 0;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    position: relative;
    padding-left: 18px;
}

.list-items li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 视频与链接盒子 */
.link-box {
    margin: 8px 0;
}

.video {
    border: 1px solid #ddd;
    border-radius: 4px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}