/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Han Serif CN', 'Source Serif 4', serif;
    background-color: rgba(240, 240, 240, 0.94);
    color: #080808;
    width: 1280px;
    min-height: 100vh;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Font Imports */
@font-face {
    font-family: 'Source Han Serif CN';
    src: local('Source Han Serif CN'), local('Noto Serif SC');
    font-weight: 500;
}

@font-face {
    font-family: 'HGHB_CNKI';
    src: local('SimHei'), local('Microsoft YaHei');
    font-weight: 400;
}

/* Header */
.header {
    position: absolute;
    top: 20px;
    left: 147px;
    width: 988px;
    height: 50px;
}

.header-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4em;
    color: #080808;
    position: absolute;
    left: 0;
    top: 0;
    width: 197px;
    height: 45px;
}

.header-nav {
    position: absolute;
    right: 0;
    top: 17px;
    display: flex;
    align-items: center;
    gap: 21px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.nav-text-cn {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4em;
    color: #080808;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.nav-text-en {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4em;
    letter-spacing: -0.05em;
    color: #080808;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-item:hover .nav-text-cn {
    opacity: 0;
}

.nav-item:hover .nav-text-en {
    opacity: 1;
}

.header-line {
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Hero Section */
.hero {
    position: absolute;
    width: 1238px;
    height: 350px;
    left: 147px;
    top: 190px;
}

/* Frame 11 */
.hero-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* route */
.hero-route {
    width: 318px;
    height: 1px;
    flex: none;
    order: 0;
    flex-grow: 0;
    opacity: 0;
    pointer-events: none;
}

/* move */
.hero-move {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0px;
    gap: 25px;
    width: 920px;
    height: 350px;
    flex: none;
    order: 1;
    flex-grow: 0;
    transition: transform 2s ease-out;
    perspective: 1000px;
    perspective-origin: center center;
}

/* Cube Mover - 平移容器，负责向左位移 */
.cube-mover {
    margin: 0 auto;
    width: 320px;
    height: 320px;
    flex: none;
    order: 0;
    flex-grow: 0;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 2s ease-out;
}

/* Cube Rotator - 旋转容器，负责立方体自身滚动 */
.cube-rotator {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 2s ease-out;
}

/* Cube - 3D立方体容器 */
.cube {
    width: 320px;
    height: 320px;
    position: relative;
    transform-style: preserve-3d;
    transform-origin: center center;
}

/* Cube Face - 立方体的6个面 */
.cube-face {
    position: absolute;
    width: 320px;
    height: 320px;
    background: #D9D9D9;
    border: none;
    backface-visibility: hidden;
    overflow: hidden;
}

/* Cube Video - 立方体面上的视频 */
.cube-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Cube Image - 立方体面上的图片 */
.cube-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 前面 */
.cube-front {
    transform: translateZ(160px);
}

/* 后面 */
.cube-back {
    transform: translateZ(-160px) rotateY(180deg);
}

/* 右面 */
.cube-right {
    transform: translateX(160px) rotateY(90deg);
}

/* 左面 */
.cube-left {
    transform: translateX(-160px) rotateY(-90deg);
}

/* 上面 */
.cube-top {
    transform: translateY(-160px) rotateX(90deg);
}

/* 下面 */
.cube-bottom {
    transform: translateY(160px) rotateX(-90deg);
}

/* RUOYI */
.hero-ruoyi {
    margin: 0 auto;
    width: 544px;
    height: 160px;
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 200px;
    line-height: 80%;
    text-align: center;
    color: #D3D3D3;
    flex: none;
    order: 1;
    flex-grow: 0;
}

/* 简介 */
.hero-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    position: absolute;
    width: 592px;
    height: 101px;
    left: 440px;
    top: 190px;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.hero-intro.visible {
    opacity: 1;
}

/* AIGC | 创意 | 数字 | 空间 | 体验 */
.hero-tags {
    width: 592px;
    height: 56px;
    font-family: 'Source Han Serif CN', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 140%;
    color: #080808;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

/* Design with everything I can reach to. */
.hero-tagline {
    width: 592px;
    height: 45px;
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 32px;
    line-height: 140%;
    color: #707070;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* More about Me>>> Frame 11 */
.hero-link-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0px;
    position: absolute;
    width: 164px;
    height: 30px;
    left: 824px;
    top: 0px;
}

/* Rectangle 20 */
.hero-link-bg {
    margin: 0 auto;
    width: 122px;
    height: 30px;
    background: #F0F0F0;
    flex: none;
    order: 0;
    flex-grow: 0;
    display: none;
}

/* More about Me>>> */
.hero-link {
    margin: 0 auto;
    width: 164px;
    height: 28px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    display: flex;
    align-items: flex-end;
    text-align: right;
    color: #080808;
    flex: none;
    order: 1;
    flex-grow: 0;
    text-decoration: none;
}

.hero-link:hover {
    text-decoration: underline;
}

/* Selected Works Section */
.selected-works {
    position: absolute;
    top: 655px;
    left: 145px;
    width: 990px;
}

.works-title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 54px;
}

.works-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4em;
    color: #080808;
    width: 127px;
    height: 32px;
    text-align: center;
}

.works-link {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4em;
    color: #080808;
    text-decoration: none;
    width: 201px;
    height: 32px;
    text-align: right;
}

.works-link:hover {
    text-decoration: underline;
}

.works-body {
    display: flex;
    align-items: center;
    gap: 96px;
    margin-top: -20px;
}

.works-titles {
    display: flex;
    flex-direction: column;
    gap: 180px;
    width: 398px;
}

.work-item {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 398px;
}

.work-item:last-child {
    gap: 0;
}

.work-item-title {
    font-family: 'Source Serif 4', serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.4em;
    color: #080808;
    text-align: left;
    width: 398px;
}

.work-item-subtitle {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4em;
    color: #080808;
    text-align: left;
    width: 398px;
}

.work-item-description {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4em;
    color: #080808;
    text-align: justify;
    width: 398px;
}

.works-divider {
    width: 1px;
    height: 879px;
    flex-shrink: 0;
}

.works-pic {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 110px;
    align-items: center;
}

.work-image-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.work-image-container {
    position: relative;
    width: 400px;
    height: auto;
}

.work-image-base {
    width: 400px;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.work-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.work-image-link:hover .work-image-base {
    opacity: 0;
}

.work-image-link:hover .work-image-overlay {
    opacity: 1;
}

/* Other Works Section */
.other-works {
    position: absolute;
    top: 1659px;
    left: 147px;
    width: 990px;
}

.other-works-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4em;
    color: #080808;
    width: auto;
    height: auto;
    text-align: left;
    margin-bottom: 18px;
}

.other-works-grid {
    position: absolute;
    top: 50px;
    left: 0;
    width: 990px;
    display: grid;
    grid-template-columns: repeat(3, 300px);
    grid-template-rows: 250px;
    gap: 20px 45px;
}

.other-work-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.other-work-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    width: 300px;
    height: 250px;
    cursor: pointer;
}

.other-work-image {
    width: 300px;
    height: 200px;
    overflow: hidden;
    background-color: #D9D9D9;
}

.other-work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.other-work-info {
    width: 300px;
    height: 39px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.other-work-title-en {
    font-family: 'Source Serif 4', serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4em;
    color: #080808;
    text-align: center;
    width: 300px;
    height: 20px;
}

.other-work-title-cn {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4em;
    color: #080808;
    text-align: center;
    width: 300px;
    height: 21px;
    margin-top: -2px;
}

/* Works Page Sections */
.works-section {
    position: absolute;
    left: 147px;
    width: 990px;
}

.works-section-first {
    top: 150px;
}

.works-section-second {
    top: 510px;
}

/* Works page body adjustment */
body.works-page {
    min-height: 1300px;
}

/* Works Page Footer */
body.works-page .footer {
    position: absolute;
    top: 1208px;
    left: 147px;
    width: 989px;
    height: 72px;
}

.works-section-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 986px;
    margin-bottom: 20px;
}

.works-section-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4em;
    color: #080808;
    width: auto;
    height: auto;
    text-align: left;
    white-space: nowrap;
}

.works-section-link {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4em;
    color: #080808;
    text-decoration: none;
    width: 201px;
    height: 32px;
    text-align: right;
}

.works-section-link:hover {
    text-decoration: underline;
}

.works-section-second .works-section-title {
    margin-bottom: 20px;
}

.works-section-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 990px;
}

.works-section-grid-horizontal {
    gap: 20px;
}

.works-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.works-card-link .works-card {
    cursor: pointer;
}

.works-section-grid-vertical {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    grid-template-rows: 250px;
    gap: 18px 45px;
    justify-content: start;
}

.works-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 300px;
    height: 250px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.works-card:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.works-card-link:hover .works-card {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Works page other works section - make cards clickable */
.works-section-second .other-work-card-link {
    text-decoration: none;
    color: inherit;
    display: contents;
}

.works-section-second .other-work-card-link .works-card {
    cursor: pointer;
}

.works-card-image {
    width: 300px;
    height: 200px;
    overflow: hidden;
    background-color: #D9D9D9;
    transition: transform 0.3s ease;
}

.works-card:hover .works-card-image,
.works-card-link:hover .works-card-image {
    transform: scale(1.02);
}

.works-section-grid-vertical .works-card-image {
    height: 199.2px;
}

.works-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.works-card:hover .works-card-image img,
.works-card-link:hover .works-card-image img {
    transform: scale(1.05);
}

.works-card-info {
    width: 300px;
    height: 39px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.works-section-grid-vertical .works-card:nth-child(3) .works-card-info,
.works-section-grid-vertical .other-work-card-link:nth-child(3) .works-card-info {
    width: 298.01px;
}

.works-card-title-en {
    font-family: 'Source Serif 4', serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4em;
    color: #080808;
    text-align: center;
    margin: 0;
}

.works-card-title-cn {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4em;
    color: #080808;
    text-align: center;
    width: 100%;
    height: 21px;
    margin: 0;
    margin-top: -2px;
}

.works-section-grid-vertical .works-card:nth-child(3) .works-card-title-cn,
.works-section-grid-vertical .other-work-card-link:nth-child(3) .works-card-title-cn {
    width: 298.01px;
    height: 20.92px;
    margin-top: -2.08px;
}

/* Footer */
.footer {
    position: absolute;
    top: 1208px;
    left: 147px;
    width: 989px;
    height: 72px;
}

/* Index Page Styles */
body.index-page {
    min-height: 1650px;
}

/* Index Page Footer */
body.index-page .footer {
    position: absolute;
    top: 1979px;
    left: 147px;
    width: 989px;
    height: 72px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    width: 62px;
    height: 76px;
    left: 1385px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    opacity: 0.9;
}

.back-to-top-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(240, 240, 240, 0.94);
    border: 1px solid #D3D3D3;
    box-shadow: 2px 4px 7px 0px rgba(172, 172, 172, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 1px;
}

.back-to-top-arrow {
    width: 14px;
    height: 17px;
    position: absolute;
    top: 21px;
    left: 24px;
}

.back-to-top-text {
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: 350;
    font-size: 10px;
    line-height: 1.4em;
    color: #ACACAC;
    text-align: center;
    width: 62px;
    height: 14px;
    margin-top: 2px;
    letter-spacing: 0;
}

.footer-line {
    position: absolute;
    top: 0;
    left: 0;
}

.footer-content {
    position: absolute;
    top: 11px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 10px;
    line-height: 1.4em;
    color: #707070;
    width: 114px;
    height: 14px;
    margin-top: 14px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 132px;
    height: 61px;
    margin-right: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 21px;
}

.contact-item:first-child {
    margin-bottom: 0;
}

.contact-item:nth-child(2) {
    margin-top: 0;
    margin-bottom: 0;
}

.contact-item:nth-child(3) {
    margin-top: 0;
}

.contact-icon {
    width: 17px;
    height: 17px;
    opacity: 0.8;
    flex-shrink: 0;
}

.contact-text {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 12px;
    line-height: 1.4em;
    letter-spacing: -0.05em;
    color: #707070;
}

/* Page Content Styles */
.page-content {
    position: absolute;
    top: 150px;
    left: 147px;
    width: 988px;
    min-height: 500px;
}

.page-container {
    padding: 40px 0;
}

.page-title {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.4em;
    color: #080808;
    margin-bottom: 20px;
}

.page-subtitle {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4em;
    color: #080808;
    margin-bottom: 20px;
}

.page-description {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6em;
    color: #080808;
}

/* Experience Page Styles */
.experience-page {
    position: relative;
    margin-top: 120px;
    margin-left: 147px;
    width: 988px;
    min-height: 800px;
    padding-bottom: 50px;
    flex: 1;
}

.experience-top-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 988px;
    height: 200px;
    gap: 588px;
}

.experience-left-group {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
    width: 200px;
}

.experience-name-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 200px;
}

.experience-name {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.4em;
    color: #000000;
    margin: 0;
}

.experience-title {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4em;
    color: #000000;
    width: 140px;
    margin: 0;
}

.experience-download {
    width: 90px;
    height: 24px;
}

.experience-photo {
    width: 200px;
    height: 200px;
    overflow: hidden;
    background-color: #D9D9D9;
    flex-shrink: 0;
}

.photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-contact {
    position: absolute;
    left: 0;
    top: 238px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 197px;
}

.contact-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.contact-icon-small {
    width: 23px;
    height: 23px;
    opacity: 0.8;
    flex-shrink: 0;
}

.contact-text-small {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 15px;
    line-height: 1.4em;
    letter-spacing: -0.05em;
    text-align: right;
    color: #080808;
    width: 168px;
}

.contact-divider {
    width: 197px;
    height: 1px;
    flex-shrink: 0;
}

.download-btn {
    width: 90px;
    height: 24px;
    background-color: #080808;
    border-radius: 12px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
}

.download-btn:hover {
    background-color: #333333;
}

.download-text {
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: 350;
    font-size: 15px;
    line-height: 1.4em;
    color: #FFFFFF;
}

.download-icon {
    width: 8px;
    height: 11px;
}

.experience-body {
    position: absolute;
    left: 0;
    top: 238px;
    width: 990px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    flex-shrink: 0;
}

.experience-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 725px;
}

.experience-skills-footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    width: 725px;
}

.experience-skills-footer-container .footer {
    position: relative;
    top: auto;
    left: auto;
    width: 989px;
    height: 72px;
    margin: 0;
    margin-top: -470px;
}

.experience-skills-footer-container .experience-section {
    margin: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.experience-skills-footer-container .section-content {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* 技能语言部分的小标题使用 Medium */
.skill-label {
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.4em;
    color: #080808;
}

.section-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.section-title {
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4em;
    color: #080808;
    margin: 0;
}

.section-expand {
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: 350;
    font-size: 20px;
    line-height: 1em;
    color: #080808;
    width: 19px;
}

.section-divider {
    width: 100%;
    height: 1px;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.content-text {
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: 300;
    font-size: 11px;
    line-height: 1.4em;
    text-align: justify;
    color: #080808;
    margin: 0;
}

/* 个人总结部分已经通过 .content-text 设置为 300，无需额外设置 */

/* 项目经历部分的 content-text 使用 Light */
/* 项目经历是第3个 experience-section */
.experience-body > .experience-section:nth-of-type(3) .project-content .content-text {
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: 300;
    font-size: 11px;
    line-height: 1.4em;
    text-align: justify;
    color: #080808;
}

/* 其他部分的 project-content 使用 light */
.project-content .content-text {
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: 300;
    font-size: 11px;
    line-height: 1.4em;
    text-align: justify;
    color: #080808;
}

.content-text strong,
.content-text b {
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: 500;
    font-size: 11px;
}

.education-content {
    display: flex;
    flex-direction: column;
    width: 722px;
    gap: 0;
}

.education-item {
    position: relative;
    height: 29px;
    margin-bottom: 5px;
}

.education-item:last-child {
    margin-bottom: 0;
}

.education-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.education-school {
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.4em;
    color: #080808;
    position: absolute;
    left: 0;
    top: 0;
}

.education-degree {
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.4em;
    color: #080808;
    position: absolute;
    left: 320px;
    top: 0;
}

.education-time {
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.4em;
    text-align: right;
    color: #080808;
    width: 148px;
    position: absolute;
    right: 0;
    top: 0;
}

.project-item {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}

.project-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 725px;
    gap: 0;
}

.project-title {
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.4em;
    color: #080808;
    margin: 0;
}

/* 项目经历部分的 project-title 使用 Medium */
.experience-body > .experience-section:nth-of-type(3) .project-title {
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4em;
    color: #080808;
}

/* 工作经历部分的 project-title 使用 Medium */
.experience-body > .experience-section:nth-of-type(4) .project-title {
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4em;
    color: #080808;
}

.project-time {
    font-family: 'Source Han Sans CN', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.4em;
    text-align: right;
    color: #080808;
    width: 148px;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* PJ1 Page Styles */
body.pj1-page {
    min-height: 18500px;
}

.pj1-title-section {
    position: absolute;
    top: 120px;
    left: 147px;
    width: 398px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pj1-title-en {
    font-family: 'Source Serif 4', serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.4em;
    color: #080808;
    margin: 0;
    width: 398px;
}

.pj1-title-cn {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4em;
    color: #080808;
    margin: 0;
    width: 398px;
}

.pj1-description {
    position: absolute;
    top: 248px;
    left: 145px;
    width: 990px;
}

.pj1-description-text {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #080808;
    text-align: justify;
    margin: 0;
    width: 990px;
}

.pj1-images-section {
    position: absolute;
    top: 378px;
    left: 145px;
    width: 990px;
    display: flex;
    flex-direction: column;
}

.pj1-image-container {
    width: 990px;
    margin-bottom: 0;
}

.pj1-image-container:last-child {
    margin-bottom: 0;
}

.pj1-image {
    width: 100%;
    height: auto;
    display: block;
}

.pj1-video-container {
    width: 990px;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.pj1-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* PJ1 Footer */
body.pj1-page .footer {
    position: absolute;
    top: 18408px;
    left: 145px;
    width: 989px;
    height: 72px;
}

/* PJ2 Page Styles */
body.pj2-page {
    min-height: 24700px;
}

.pj2-title-section {
    position: absolute;
    top: 120px;
    left: 147px;
    width: 398px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pj2-title-en {
    font-family: 'Source Serif 4', serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.4em;
    color: #080808;
    margin: 0;
    width: 398px;
    white-space: nowrap;
}

.pj2-title-cn {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4em;
    color: #080808;
    margin: 0;
    width: 398px;
}

.pj2-description {
    position: absolute;
    top: 248px;
    left: 145px;
    width: 990px;
}

.pj2-description-text {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #080808;
    text-align: justify;
    margin: 0;
    width: 990px;
}

.pj2-images-section {
    position: absolute;
    top: 378px;
    left: 145px;
    width: 990px;
    display: flex;
    flex-direction: column;
}

.pj2-image-container {
    width: 990px;
    margin-bottom: 0;
}

.pj2-image-container:last-child {
    margin-bottom: 0;
}

.pj2-image {
    width: 100%;
    height: auto;
    display: block;
}

/* PJ2 Footer */
body.pj2-page .footer {
    position: absolute;
    top: 24608px;
    left: 145px;
    width: 989px;
    height: 72px;
}

/* PJ3 Page Styles */
body.pj3-page {
    min-height: 16000px;
}

.pj3-title-section {
    position: absolute;
    top: 120px;
    left: 147px;
    width: 398px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pj3-title-en {
    font-family: 'Source Serif 4', serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.4em;
    color: #080808;
    margin: 0;
    width: 398px;
}

.pj3-title-cn {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4em;
    color: #080808;
    margin: 0;
    width: 398px;
}

.pj3-description {
    position: absolute;
    top: 248px;
    left: 145px;
    width: 990px;
}

.pj3-description-text {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #080808;
    text-align: justify;
    margin: 0;
    width: 990px;
}

.pj3-images-section {
    position: absolute;
    top: 378px;
    left: 145px;
    width: 990px;
    display: flex;
    flex-direction: column;
}

.pj3-image-container {
    width: 990px;
    margin-bottom: 0;
}

.pj3-image-container:last-child {
    margin-bottom: 0;
}

.pj3-image {
    width: 100%;
    height: auto;
    display: block;
}

.pj3-video-container {
    width: 990px;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.pj3-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* PJ3 Footer */
body.pj3-page .footer {
    position: absolute;
    top: 15908px;
    left: 145px;
    width: 989px;
    height: 72px;
}

/* OW1 Page Styles */
body.ow1-page {
    min-height: 6800px;
}

.ow1-title-section {
    position: absolute;
    top: 120px;
    left: 147px;
    width: 398px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ow1-title-en {
    font-family: 'Source Serif 4', serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.4em;
    color: #080808;
    margin: 0;
    width: 398px;
    white-space: nowrap;
}

.ow1-title-cn {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4em;
    color: #080808;
    margin: 0;
    width: 398px;
}

.ow1-description {
    position: absolute;
    top: 248px;
    left: 145px;
    width: 990px;
}

.ow1-description-text {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #080808;
    text-align: justify;
    margin: 0;
    width: 990px;
}

.ow1-images-section {
    position: absolute;
    top: 378px;
    left: 145px;
    width: 990px;
    display: flex;
    flex-direction: column;
}

.ow1-image-container {
    width: 990px;
    margin-bottom: 0;
}

.ow1-image-container:last-child {
    margin-bottom: 0;
}

.ow1-image {
    width: 100%;
    height: auto;
    display: block;
}

/* OW1 Footer */
body.ow1-page .footer {
    position: absolute;
    top: 6708px;
    left: 145px;
    width: 989px;
    height: 72px;
}

/* OW2 Page Styles */
body.ow2-page {
    min-height: 5400px;
}

.ow2-title-section {
    position: absolute;
    top: 120px;
    left: 147px;
    width: 398px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ow2-title-en {
    font-family: 'Source Serif 4', serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.4em;
    color: #080808;
    margin: 0;
    width: 398px;
}

.ow2-title-cn {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4em;
    color: #080808;
    margin: 0;
    width: 398px;
}

.ow2-description {
    position: absolute;
    top: 248px;
    left: 145px;
    width: 990px;
}

.ow2-description-text {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #080808;
    text-align: justify;
    margin: 0;
    width: 990px;
}

.ow2-images-section {
    position: absolute;
    top: 378px;
    left: 145px;
    width: 990px;
    display: flex;
    flex-direction: column;
}

.ow2-image-container {
    width: 990px;
    margin-bottom: 0;
}

.ow2-image-container:last-child {
    margin-bottom: 0;
}

.ow2-image {
    width: 100%;
    height: auto;
    display: block;
}

/* OW2 Footer */
body.ow2-page .footer {
    position: absolute;
    top: 5308px;
    left: 145px;
    width: 989px;
    height: 72px;
}

/* OW3 Page Styles */
body.ow3-page {
    min-height: 11200px;
}

.ow3-title-section {
    position: absolute;
    top: 120px;
    left: 147px;
    width: 398px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ow3-title-en {
    font-family: 'Source Serif 4', serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.4em;
    color: #080808;
    margin: 0;
    width: 398px;
}

.ow3-title-cn {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4em;
    color: #080808;
    margin: 0;
    width: 398px;
}

.ow3-description {
    position: absolute;
    top: 248px;
    left: 145px;
    width: 990px;
}

.ow3-description-text {
    font-family: 'Source Han Serif CN', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5em;
    color: #080808;
    text-align: justify;
    margin: 0;
    width: 990px;
}

.ow3-images-section {
    position: absolute;
    top: 378px;
    left: 145px;
    width: 990px;
    display: flex;
    flex-direction: column;
}

.ow3-image-container {
    width: 990px;
    margin-bottom: 0;
}

.ow3-image-container:last-child {
    margin-bottom: 0;
}

.ow3-image {
    width: 100%;
    height: auto;
    display: block;
}

.ow3-grid-container {
    width: 990px;
    display: grid;
    grid-template-columns: repeat(2, 495px);
    grid-template-rows: repeat(3, 330px);
    gap: 0;
    margin-bottom: 0;
}

.ow3-grid-item {
    width: 495px;
    height: 330px;
    overflow: hidden;
}

.ow3-grid-item .ow3-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OW3 Footer */
body.ow3-page .footer {
    position: absolute;
    top: 11108px;
    left: 145px;
    width: 989px;
    height: 72px;
}
