/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    background-color: #f5f5f5;
    padding: 30px 0;
    line-height: 1.6;
}

/* 简历整体容器 */
.resume-container {
    width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border: 2px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* 模块通用样式 */
.section {
    border: 1px solid #ccc;
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: 5px;
}

/* 模块标题 */
.section-title {
    font-size: 20px;
    color: #333;
    border-bottom: 2px solid #4472c4;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

/* 基本信息布局 */
.base-info .info-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 信息两列布局 */
.info-left, .info-right {
    width: 35%;
}

.info-item {
    margin-bottom: 10px;
    font-size: 15px;
}

.label {
    font-weight: bold;
    color: #333;
    display: inline-block;
    width: 90px;
}

.value {
    color: #555;
}

/* 照片样式 */
.photo-box {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo {
    width: 140px;
    height: 180px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* 列表样式（2-5部分） */
.list {
    list-style: none;
    padding-left: 0;
}

.list li {
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
    font-size: 15px;
    color: #333;
}

/* 列表前小圆点 */
.list li::before {
    content: "•";
    color: #4472c4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 链接样式 */
a {
    color: #4472c4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 视频样式 */
.practice-video {
    margin-top: 5px;
    border: 1px solid #ccc;
}