/* 个人简历页面样式：简体中文, 桌面端 */

/* 桌面端响应式样式 */
@media (min-width: 769px) {

/* 📱 页面整体布局 */
.main-content {
    /* 正常文档流 */
    display: block;
}

/* 📋 A4纸张容器样式 - 桌面端适配 */
.a4-container {
    width: 80%;
    max-width: 1200px;
    aspect-ratio: 210 / 297;
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    padding: 2.5cm;
    box-sizing: border-box;
    
    /* 简单的正常文档流布局 */
    display: block;
    
    /* 简体中文版字体样式（默认） */
    font-family: KaiTi, serif;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* 顶部区域 - 个人信息和头像的容器 */
.header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 30px;
}

/* 👤 个人信息区块样式 */
.personal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.personal-info h1 {
    margin: 0;
    text-align: left;
    font-size: 72px;
    font-weight: bold;
}

/* 📞 联系信息样式 */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.contact-info p {
    margin: 0;
    font-size: 24px;
    line-height: 1.4;
}

/* 🖼️ 头像样式 */
.avatar {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
}

/* 分隔线样式 - 横跨整行 */
.divider {
    height: 3px;
    background: #933613;
    width: 100%;
    margin: 25px 0;
    border: none;
}

/* 🎓 教育经历样式 */
.education-section {
    margin-bottom: 35px;
}

.education-section h2 {
    margin: 0 0 18px 0;
    font-size: 48px;
    text-align: left;
    font-weight: bold;
    color: #000000;
}

/* 📝 教育信息 */
.education-info {
    display: flex;
    flex-direction: row;        /* 桌面端改为水平排列 */
    justify-content: space-between;  /* 三个元素分布在两端和中间 */
    align-items: baseline;      /* 基线对齐 */
    gap: 20px;                  /* 元素间距 */
}

.education-info p {
    margin: 0;
    font-weight: bold;
    flex: 1;                    /* 每个元素占据相等空间 */
}

.education-info .school {
    font-size: 24px;
    color: #000000;
}

.education-info .major {
    font-size: 24px;
    color: #000000;
    text-align: center;
}

.education-info .edu-date {
    font-size: 24px;
    color: #000000;
    text-align: right;
}

/* 💼 工作经历样式 */
.work-section {
    margin-bottom: 35px;
}

.work-section h2 {
    margin: 0 0 22px 0;
    font-size: 48px;
    text-align: left;
    font-weight: bold;
    color: #000000;
}

/* 📋 工作经历条目 */ 

.work-experience {     
    display: flex;     
    flex-direction: column;     
    gap: 18px;     
    margin-bottom: 30px; 
    }

/* 📊 工作头部信息 */
.work-header {
    display: flex;
    flex-direction: row;           /* 桌面端水平排列 */
    justify-content: space-between; /* 均匀分布 */
    align-items: baseline;         /* 基线对齐 */
    gap: 20px;                     /* 元素间距 */
    flex-wrap: wrap;               /* 允许换行以防内容过长 */
}

.work-header p {
    margin: 0;
    font-weight: bold;
}

.work-time {
    font-size: 24px;
    color: #000000;
    flex-shrink: 0;                /* 时间不缩小 */
    text-align: left;
}

.work-company {
    font-size: 24px;
    color: #000000;
    font-weight: bold;
    flex: 1;                       /* 公司名占据中间空间 */
    text-align: center;            /* 居中对齐 */
}

.work-position {
    font-size: 24px;
    color: #000000;
    flex-shrink: 0;                /* 职位不缩小 */
    text-align: right;             /* 右对齐 */
}

.project-name {
    font-size: 72px;
    font-weight: bold;
    color: #000000;
    margin-top: 8px;
}

.project-background {
    font-size: 48px;
    color: #000000;
    line-height: 1.5;
    font-style: bold;
}

.project-background-title {
    font-size: 48px;
    font-weight: bold;
    color: #000000;
    margin-top: 10px;
}

.work-measures-title {
    font-size: 48px;
    font-weight: bold;
    color: #000000;
    margin-top: 10px;
}

.project-results-title {
    font-size: 17px;
    font-weight: bold;
    color: #000000;
    margin-top: 10px;
}



/* 📄 工作详情 */
.work-details {
    display: block;
    margin-top: 12px;
}

.work-details p {
    margin: 10px 0;
    font-size: 24px;
    line-height: 1.6;
    padding-left: 0px;
}

/* ⭐ 其他部分样式 */
.others-section {
    margin-bottom: 25px;
}

.others-section h2 {
    margin: 0 0 18px 0;
    font-size: 48px;
    text-align: left;
    font-weight: bold;
    color: #000000;
}

/* 📝 其他内容 */
.others-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.others-content p {
    margin: 0;
    font-size: 24px;
    line-height: 1.6;
}

/* 桌面端特定优化 - 合并到主媒体查询中 */
    /* A4容器桌面端优化 */
    .a4-container {
        width: 70%;
        max-width: 1000px;
        font-size: 20px;
        margin: 60px auto;
    }

    /* 个人信息区域 */
    .personal-info h1 {
        font-size: 80px;
    }

    .contact-info p {
        font-size: 26px;
    }

    /* 头像大小 */
    .avatar {
        width: 300px;
        height: 300px;
    }

    /* 主要标题 */
    .education-section h2,
    .work-section h2,
    .others-section h2 {
        font-size: 52px;
    }

    /* 教育信息 */
    .education-info .school,
    .education-info .major,
    .education-info .edu-date {
        font-size: 26px;
    }

    /* 工作经历头部 */
    .work-time,
    .work-company,
    .work-position {
        font-size: 26px;
    }

    /* 项目相关 */
    .project-name {
        font-size: 80px;
    }

    .project-background-title,
    .work-measures-title {
        font-size: 52px;
    }

    .project-background {
        font-size: 52px;
    }

    /* 工作详情 */
    .work-details p {
        font-size: 26px;
    }

    /* 其他部分 */
    .others-content p {
        font-size: 26px;
    }

    /* 语言相关字体样式 - 桌面端 */
    /* 繁体中文版字体样式 */
    body.lang-zh-tw .a4-container {
        font-family: Noto_Serif_TC, serif;
        font-size: 18px;
        line-height: 1.6;
        letter-spacing: 0.5px;
    }

    /* 英文版字体样式 */
    body.lang-en .a4-container {
        font-family: Georgia, "Times New Roman", "Noto Serif", "Droid Serif", serif;
        font-size: 18px;
        line-height: 1.6;
        letter-spacing: 0.5px;
    }

} /* 结束桌面端媒体查询 */