/* 全局样式重置 */
* {
    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-color: #fff;
    border: 2px solid #333;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* 每个模块通用样式 */
.section {
    border: 1px solid #666;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
}

/* 模块标题样式 */
.section-title {
    background-color: #e6e6e6;
    padding: 8px 12px;
    border-left: 5px solid #2c7be5;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

/* 基本信息布局 */
.base-info .info-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* 信息左列 + 右列 */
.info-left, .info-right {
    width: 35%;
    line-height: 2.2;
    font-size: 15px;
}

/* 信息文字样式 */
.info-left p, .info-right p {
    color: #333;
}

/* 标签加粗 */
.info-left span, .info-right span {
    font-weight: bold;
    color: #2c7be5;
}

/* 照片容器 */
.photo-box {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 照片样式 */
.photo-box img {
    width: 130px;
    height: 160px;
    object-fit: cover;
    border: 1px solid #999;
    border-radius: 3px;
}

/* 分条列点内容样式 */
.list-content {
    line-height: 2;
    font-size: 15px;
    padding-left: 10px;
}

/* 链接样式 */
.list-content a {
    color: #2c7be5;
    text-decoration: none;
}

.list-content a:hover {
    text-decoration: underline;
}

/* 视频间距 */
video {
    margin: 10px 0;
    border: 1px solid #ccc;
}