/* 全局样式 */
* {
    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: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* 模块标题 */
.title {
    font-size: 20px;
    color: #222;
    border-left: 5px solid #3366cc;
    padding-left: 10px;
    margin-bottom: 15px;
}

/* 每个模块边框 */
.section {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* ====================== 基本信息布局 ====================== */
.base-info .info-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.info-left, .info-middle {
    width: 35%;
}

.info-left p, .info-middle p {
    font-size: 15px;
    line-height: 2;
    color: #333;
}

.info-left span, .info-middle span {
    font-weight: bold;
    color: #222;
}

/* 照片样式 */
.photo-box {
    width: 22%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo {
    width: 140px;
    height: 180px;
    object-fit: cover;
    border: 1px solid #ccc;
}

/* ====================== 列表样式 ====================== */
.list {
    list-style: none;
}

.list li {
    font-size: 15px;
    line-height: 2;
    padding-left: 15px;
    position: relative;
    margin-bottom: 6px;
}

.list li::before {
    content: "•";
    color: #3366cc;
    position: absolute;
    left: 0;
}

/* ====================== 链接区域 ====================== */
.links-box {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.links-box a {
    color: #3366cc;
    text-decoration: none;
}

.links-box a:hover {
    text-decoration: underline;
}