/* 全局样式重置 */
* {
    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: 1px solid #ddd;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

/* 模块样式（带边框） */
.section {
    border: 1px solid #bcc3ce;
    margin-bottom: 22px;
    padding: 20px;
    border-radius: 6px;
    background: #fdfdfd;
}

/* 模块标题 */
.section-title {
    font-size: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* 基本信息外层容器 - 左右对半布局 */
.base-info-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

/* 左侧文字区域 占50%宽度 */
.base-info-left {
    width: 50%;
}

.info-item {
    margin-bottom: 12px;
    font-size: 15px;
}

.label {
    font-weight: bold;
    color: #34495e;
    display: inline-block;
    width: 90px;
}

/* 右侧照片区域 占50%宽度 */
.base-info-photo {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.base-info-photo img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 列表样式 自动换行防溢出 */
.list {
    list-style: disc inside;
    font-size: 15px;
}

.list li {
    margin-bottom: 10px;
    word-break: break-all;
    white-space: normal;
    line-height: 1.7;
}

/* 链接样式 */
a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}