/* 全局样式重置 */
* {
    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: white;
    border: 2px solid #333;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* 模块标题样式 */
.title {
    font-size: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

/* 每个模块边框 */
.section {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 5px;
}

/* ====================== 基本信息样式 ====================== */
.base-info .info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 信息双列布局 */
.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;
}

/* 照片样式 */
.info-right {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border: 2px solid #ccc;
    border-radius: 3px;
}

/* ====================== 列表样式 ====================== */
.list {
    list-style: none;
}

.list li {
    font-size: 15px;
    line-height: 1.8;
    padding-left: 15px;
    position: relative;
    margin-bottom: 10px;
}

/* 列表小圆点 */
.list li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 视频容器 */
.video-box {
    margin-top: 15px;
    text-align: center;
}