* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "微软雅黑", sans-serif;
}

body {
    background-color: #f0f4f8;
    padding: 40px 0;
}

/* 整体简历外框 */
.resume-box {
    width: 850px;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid #6096ba;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

/* 简历大标题 */
.resume-head {
    text-align: center;
    font-size: 30px;
    color: #223344;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

/* 每个板块边框样式 */
.resume-item {
    border: 1px solid #b8c8d8;
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 20px;
}

/* 板块小标题 */
.item-title {
    font-size: 19px;
    color: #2b5886;
    border-left: 5px solid #407cb8;
    padding-left: 12px;
    margin-bottom: 15px;
}

/* 基本信息两列布局 */
.info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 15px;
    font-size: 16px;
    color: #333;
}

.info-row span {
    font-weight: 600;
    color: #222;
}

/* 正文内容样式 */
.text-content {
    font-size: 15.5px;
    line-height: 1.8;
    color: #444;
}

.text-content p {
    margin-bottom: 10px;
}/* 基本信息整体左右布局 */
.info-wrap .info-container{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
/* 照片盒子样式 */
.resume-photo{
    width: 130px;
    height: 170px;
    border: 2px solid #407cb8;
    border-radius: 4px;
    overflow: hidden;
}
/* 照片自适应 */
.resume-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}