* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "微软雅黑", sans-serif;
}

body {
  background-color: #f3f4f6;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

/* 简历整体 */
.resume {
  width: 900px;
  background: #fff;
  padding: 35px;
  border: 2px solid #e2e8f0;
}

/* 每个模块都带边框 */
.section {
  border: 1px solid #c0c4cc;
  padding: 22px;
  margin-bottom: 24px;
  border-radius: 6px;
}

/* 模块标题 */
.section-title {
  font-size: 19px;
  color: #222;
  border-bottom: 2px solid #409eff;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

/* ==================== 基本信息布局 ==================== */
.base-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-left,
.info-right {
  width: 36%;
}

.info-left p,
.info-right p {
  font-size: 15px;
  line-height: 2.2;
  color: #333;
}

/* 照片：右侧居中 */
.photo-box {
  width: 140px;
  height: 180px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
}

.photo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

/* ==================== 列表样式（分条列点） ==================== */
.item-list {
  list-style: none;
}

.item-list li {
  font-size: 15px;
  line-height: 1.9;
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}

.item-list li::before {
  content: "●";
  color: #409eff;
  position: absolute;
  left: 0;
}

/* ==================== 视频 ==================== */
.video-box {
  margin-top: 20px;
  text-align: center;
}

video {
  width: 640px;
  border: 1px solid #ccc;
  border-radius: 4px;
}