.resume-bg .personal-profile::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 106px;
    background: url("../images/resume/fir-bg.jpg") no-repeat center bottom;
    background-size: cover;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.sec-box {
    background: url("../images/resume/sec-bg.jpg") no-repeat center top;
    background-size: cover;
    padding-bottom: 100px;
    padding-top: 50px;
}

.thd-box {
    margin-top: -50px;
    border-radius: var(--box-border-radius) var(--box-border-radius) 0 0;
    background-color: #fff;
}

.edu-bg {
    height: 30%;
    display: flex;
    align-items: center;
    position: relative;
    /* height: 40px; */
}

.edu-bg::after {
    content: '';
    display: block;
    position: absolute;
    width: 55%;
    height: 40px;
    background: url("../images/resume/edu-bg.png") no-repeat center center;
    background-size: contain;
    top: 50%;
    transform: translateY(-20px);
    right: 0px;
}

.timeline {
    display: flex;
    flex-direction: column;
}

.timeline-event {
    display: flex;
    flex-direction: row;
    height: 73px;
}

.timeline-date {
    font-size: var(--font-32);
    line-height: var(--font-32);
    color: var(--font-sec-color);
    width: 170px;
    margin-right: 16px;
}

.timeline-title {
    font-size: var(--font-24);
    line-height: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 56px;
}

.timeline-content {
    width: calc(100% - 170px);
    font-size: var(--font-18);
    line-height: var(--font-24);
    padding-left: 22px;
    position: relative;
    display: flex;
}

.timeline-content span {
    width: 100%;
    max-height: 48px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.timeline-content::before {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--atc-color);
    position: absolute;
    left: 0;
    top: 8px;
}

.timeline-event+.timeline-event .timeline-content::after {
    content: '';
    display: block;
    width: 1px;
    height: 48px;
    background-color: #DCDDE0;
    position: absolute;
    left: 3px;
    top: -48px;
}

/****************个人荣誉*********************/
.honor-detail-left {
    padding-top: 64px;
}

.honor-detail-left h3 {
    font-size: var(--font-36);
    line-height: 49px;
    height: 147px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}


.honor-detail-left p {
    height: 72px;
    line-height: 24px;
    margin: 32px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.honor-detail-right {
    margin-left: 30px;
}

.honor-detail-right {
    width: 100%;
    height: 455px;
    border-radius: var(--box-border-radius);
    overflow: hidden;
    position: relative;
}

.honor-detail-right img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.honor-detail-right .info {
    width: 90%;
    height: 138px;
    position: absolute;
    left: 5%;
    bottom: 10%;
    z-index: 9;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    backdrop-filter: blur(10px);
}

.honor-detail-right .info div {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.honor-detail-right .info .num {
    font-size: 40px;
    font-weight: 700
}

.honor-detail-right .info .txt {
    font-size: 18px;
    /* margin-top: 10px; */
}

.out-box {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
}

.honor-list {
    display: flex;
    margin: 0;
    padding: 0;

}

.honor-list li {
    list-style: none;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 273.5px;
    padding-left: 48px;
    height: 344px;
    flex-shrink: 0;
}

.honor-list li::before {
    content: '';
    display: block;
    width: 1px;
    height: 344px;
    background-color: #D9D9D9;
    position: absolute;
    left: 0;
    top: 0px;
}

.honor-list li em {
    font-size: 64px;
    font-style: normal;
    color: var(--atc-color);
    height: 77px;
    line-height: 77px;
    margin-bottom: 48px;
}

.honor-list li .time {
    font-size: var(--font-32);
    height: 32px;
    line-height: 32px;
}

.honor-list li p {
    font-size: var(--font-20);
    margin-top: 16px;
    line-height: 28px;
    width: 180px;
    height: 56px;
    overflow: hidden;
}

/* 滚动条整体样式 */
::-webkit-scrollbar {
    width: 6px;
    /* 滚动条的宽度 */
    height: 6px;
    /* 水平滚动条时的高度，垂直滚动条时的宽度会被上面的 width 覆盖 */
}

/* 滚动条轨道样式 */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* 滚动条轨道的背景色 */
    border-radius: 6px;
    /* 滚动条轨道的圆角 */
}

/* 滚动条滑块样式 */
::-webkit-scrollbar-thumb {
    background: #888;
    /* 滚动条滑块的背景色 */
    border-radius: 5px;
    /* 滚动条滑块的圆角 */
}

/* 滚动条滑块在被悬停时的样式 */
::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* 悬停时滚动条滑块的背景色 */
}

/****************项目展示*********************/
.project-list-item,
.project-list-item a {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.project-list-item img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 1.67/1;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.project-list-item .title {
    font-size: var(--font-18);
    line-height: 24px;
    height: 48px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 16px;
    transition: all 0.3s;
}

.project-list-item:hover .title {
    color: var(--atc-color);
}

.project-list-item:hover img {
    border: 1px solid var(--atc-color);
}

.project-list-item .time {
    color: var(--font-sec-color);
    font-size: var(--font-18);
}


/* 媒体查询 */

@media (max-width: 1200px) {
    .honor-detail-left {
        margin-bottom: 4rem;
    }

    .honor-detail-right {
        margin-left: 0px;
    }

    .timeline-date {
        font-size: var(--font-24);
        width: 150px;
    }

    .timeline-content {
        font-size: var(--font-16);
    }

    .sec-col-timeline-event .timeline-content::after {
        content: '';
        display: block;
        width: 1px;
        height: 48px;
        background-color: #DCDDE0;
        position: absolute;
        left: 3px;
        top: -48px;
    }

    .honor-list li p {
        font-size: var(--font-20);
        margin-top: 16px;
        line-height: 28px;
    }

}

@media (max-width: 800px) {
    .timeline-date {
        font-size: var(--font-18);
        width: 100px;
    }

    .timeline-content {
        width: calc(100% - 90px);
        font-size: var(--font-14);
    }



}