/* 全局样式重置 */
* {
    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: #fff;
    padding: 30px;
    border: 2px solid #333;
    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 {
    font-size: 20px;
    color: #222;
    background-color: #e6e6e6;
    padding: 8px 12px;
    border-left: 5px solid #4472c4;
    margin-bottom: 15px;
}

/* 基本信息布局 */
.base-info .info-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.info-left, .info-right {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    font-size: 15px;
    line-height: 1.6;
}

.label {
    font-weight: bold;
    color: #333;
    display: inline-block;
    width: 90px;
}

.value {
    color: #555;
}

/* 照片样式 */
.photo-box {
    width: 140px;
    height: 180px;
    border: 1px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

.photo-box img {
    max-width: 130px;
    max-height: 170px;
    object-fit: cover;
}

/* 列表样式（教育/实践/校园/技能） */
.list {
    list-style: none;
    padding-left: 10px;
}

.list li {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.list li::before {
    content: "•";
    color: #4472c4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 链接样式 */
a {
    color: #4472c4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}