* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f0f4f8;
    font-family: "微软雅黑", SimHei, sans-serif;
    padding: 30px 0;
}

/* 简历外层大容器 */
.resume-box {
    width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    overflow: hidden;
}

/* 顶部头部渐变横幅 */
.resume-header {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #2c67b0, #4890e8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.head-info h1 {
    font-size: 42px;
    letter-spacing: 6px;
    margin-bottom: 8px;
    text-shadow: 1px 1px 3px #333;
}

.head-info p {
    font-size: 18px;
    text-align: center;
    opacity: 0.95;
}

.eng-level {
    display: block;
    text-align: center;
    margin-top: 12px;
    padding: 4px 16px;
    border: 1px solid #fff;
    border-radius: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
}

/* 主体左右布局 */
.resume-main {
    display: flex;
    padding: 30px;
    gap: 25px;
}

/* 左侧侧边栏 */
.resume-left {
    width: 260px;
}

.left-item {
    background-color: #f6f9fc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #4890e8;
}

.left-item h3 {
    font-size: 17px;
    color: #2c67b0;
    margin-bottom: 15px;
    padding-bottom: 6px;
    border-bottom: 1px dashed #ccd8e6;
}

.left-item p {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    margin: 5px 0;
}

/* 右侧主内容区 */
.resume-right {
    flex: 1;
}

.right-block {
    margin-bottom: 28px;
}

.block-title {
    font-size: 19px;
    color: #2c67b0;
    padding-left: 12px;
    border-left: 5px solid #4890e8;
    margin-bottom: 15px;
}

.text-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    text-indent: 2em;
    margin-bottom: 8px;
}

.text-content p:first-child {
    text-indent: 0;
}