/* 全局初始化 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    background: #f5f7fa;
    padding: 40px 0;
}

/* 简历整体 */
.resume {
    width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
}

/* 每个模块带边框 */
.section {
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
}

/* 模块标题 */
.title {
    font-size: 19px;
    color: #2c3e50;
    border-left: 5px solid #3498db;
    padding-left: 12px;
    margin-bottom: 20px;
}

/* ==================== 基本信息布局 ==================== */
.base-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 左侧信息：双列 */
.info-left {
    width: 73%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 14px;
}

.info-item {
    width: 50%;
    font-size: 15px;
    display: flex;
}

.label {
    font-weight: bold;
    width: 90px;
    color: #333;
}

.text {
    color: #555;
}

/* 右侧照片：居中 */
.info-right {
    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: 1.8;
    padding-left: 18px;
    position: relative;
    margin-bottom: 8px;
    color: #333;
}

.list li::before {
    content: "●";
    color: #3498db;
    position: absolute;
    left: 0;
    font-size: 14px;
}

/* ==================== 视频样式 ==================== */
.video-box {
    margin-top: 20px;
    text-align: center;
}

video {
    border: 1px solid #ddd;
    border-radius: 6px;
}