/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", sans-serif;
}

body {
  background-color: #f5f7fa;
  padding: 30px 0;
}

/* 简历整体容器 */
.resume-container {
  width: 850px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* 每个模块都带边框！ */
.section {
  border: 2px solid #444;     /* 边框粗细、颜色 */
  border-radius: 8px;        /* 圆角 */
  padding: 22px;             /* 内边距 */
  margin-bottom: 25px;       /* 模块之间间距 */
}

/* 模块标题 */
.section-title {
  font-size: 20px;
  color: #2c3e50;
  border-left: 5px solid #2980b9;
  padding-left: 10px;
  margin-bottom: 18px;
}

/* 基本信息布局（左右 + 照片） */
.info-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.info-left, .info-right {
  width: 35%;
}

.info-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 6px;
}

.info-content span {
  font-weight: bold;
  color: #222;
}

/* 照片盒子 */
.photo-box {
  width: 120px;
  height: 160px;
  border: 1px solid #999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 列表样式 */
.list {
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.8;
}

.list li {
  margin-bottom: 10px;
}

.sub-list {
  padding-left: 20px;
  margin-top: 5px;
}

/* 视频大小 */
.project-video {
  width: 100%;
  max-width: 400px;
  margin-top: 8px;
}