/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", "PingFang SC", sans-serif;
}

body {
    /* 浅柔米黄底色，温馨可爱 */
    background-color: #fbf9f1;
    padding: 30px;
    line-height: 1.7;
}

/* 简历外层容器：圆润圆角+轻柔阴影 */
.resume-container {
    width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 3px 10px rgba(180, 200, 160, 0.18);
}

/* 顶部主标题：醒目活泼，暖绿色调 */
.main-title {
    text-align: center;
    font-size: 38px;
    font-weight: 600;
    color: #67b99a;
    border: none;
    padding: 8px 0;
    margin: 0 auto 32px;
    letter-spacing: 3px;
    transition: transform 0.2s ease;
}
.main-title:hover {
    transform: translateY(-2px);
}

/* 每个板块：浅黄绿底色 + 大圆角，软萌可爱 */
.section {
    padding: 18px 22px;
    margin-bottom: 22px;
    background-color: #f4f9f0;
    border-radius: 14px;
    transition: all 0.2s ease;
}
.section:hover {
    background-color: #edf6e8;
    transform: translateY(-1px);
}

/* 板块小标题：清新绿色系，柔和线条 */
.section-title {
    font-size: 22px;
    color: #57a886;
    border-bottom: 2px solid #cde8d8;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

/* ========== 基本信息布局 ========== */
.base-info .info-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 左侧信息列 */
.info-left {
    width: 70%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 22px;
}

.info-item {
    font-size: 15px;
    color: #444;
}

.info-item span {
    display: inline-block;
    width: 80px;
    color: #67b99a;
    font-weight: 500;
}

.info-item input {
    border: none;
    border-bottom: 1px solid #d2e4da;
    outline: none;
    padding: 3px 6px;
    font-size: 15px;
    width: calc(100% - 85px);
    background: transparent;
    transition: border-color 0.2s ease;
}
.info-item input:focus {
    border-color: #67b99a;
}

/* 照片区域：基本信息右侧，居中不溢出 */
.info-right {
    width: 22%;
    display: flex;
    justify-content: center;
}

.avatar {
    width: 140px;
    height: 180px;
    border: 2px solid #cde8d8;
    border-radius: 12px;
    object-fit: cover;
    transition: border-color 0.2s ease;
}
.avatar:hover {
    border-color: #67b99a;
}

/* ========== 列表样式 + 自动换行 ========== */
.content-list {
    list-style-position: inside;
    padding-left: 10px;
}

.content-list li {
    font-size: 15px;
    color: #333;
    margin-bottom: 14px;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal;
    /* 小圆点样式，软萌可爱 */
    list-style-type: "✦ ";
    padding-left: 5px;
}

/* MP4视频：大圆角，简约可爱 */
.video-box {
    display: block;
    margin: 10px 0;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* 最后一个板块取消底部外边距 */
.section:last-child {
    margin-bottom: 0;
}