* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "微软雅黑", "PingFang SC", sans-serif;
}

body {
    background-color: #f4f6f9;
    padding: 40px 0;
}

/* 简历整体容器 */
.wrap {
    width: 950px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px 35px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-radius: 10px;
}

/* 大标题 */
.resume-name {
    text-align: center;
    font-size: 28px;
    color: #203152;
    letter-spacing: 4px;
    margin-bottom: 35px;
    font-weight: 600;
}

/* 每个模块盒子 优化边框+圆角+间距 */
.box {
    border: 1px solid #d8e0eb;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 28px;
    transition: 0.3s ease;
}

.box:hover {
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* 模块小标题 */
.part-title {
    font-size: 19px;
    color: #203152;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px solid #4078c0;
    margin-bottom: 20px;
}

/* 基本信息三栏布局 完全对齐 */
.info-wrap {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    align-items: flex-start;
}

.info-left p,
.info-middle p {
    font-size: 15.5px;
    line-height: 2.3;
    color: #333;
}

/* 优化后：更小更精致的证件照尺寸 */
.info-right img {
    width: 95px;
    height: 125px;
    border: 1px solid #ccc;
    border-radius: 4px;
    object-fit: cover;
}

/* 列表通用样式 行距舒适正式 */
ul {
    padding-left: 24px;
}

ul li {
    font-size: 15.5px;
    line-height: 2.1;
    color: #333;
    margin-bottom: 6px;
}

/* 链接美化 */
.resume-link {
    color: #4078c0;
    text-decoration: none;
    margin: 0 10px;
    font-size: 15px;
}

.resume-link:hover {
    text-decoration: underline;
    color: #203152;
}