.about-container {
    padding-top: 80px;
    width: 100%;
    color: var(--text-color);
}

.about-hero {
    padding: 6rem 4rem;
    max-width: 1800px;
    margin: 0 auto;
}

.about-content h1 {
    font-size: 4.5rem;
    color: var(--title-color);
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: var(--font-english);
    line-height: 1.2;
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.8;
    max-width: 1000px;
    opacity: 0.9;
}

.profile-section {
    padding: 0 4rem;
    background: var(--background-color);
}

.profile-container {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 0;
    align-items: start;
}

.profile-image-wrapper {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-details {
    padding: 4rem 0;
    max-width: 800px;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.location-info h2,
.education-info h2,
.work-info h2 {
    font-family: var(--font-english);
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.location-info p,
.education-info p {
    font-family: var(--font-english);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.work-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: var(--font-english);
    display: flex;
    justify-content: space-between;
}

.position {
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.work-detail {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.work-detail h4 {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(231, 84, 128, 0.1);
    border-radius: 4px;
    margin-bottom: 0.3rem;
}

.work-detail ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
}

.work-detail li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    opacity: 0.9;
    padding-left: 1.5rem;
}

.work-detail ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* 响应式设计 */
@media (max-width: 1400px) {
    .about-hero,
    .profile-section {
        padding: 4rem 3rem;
    }

    .profile-container {
        grid-template-columns: 1fr 0.7fr;
    }
}

@media (max-width: 1200px) {
    .about-hero,
    .profile-section {
        padding: 4rem 2rem;
    }

    .profile-container {
        grid-template-columns: 1fr;
    }

    .profile-image-wrapper {
        height: 60vh;
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero,
    .profile-section {
        padding: 3rem 1.5rem;
    }

    .profile-image-wrapper {
        height: 50vh;
    }
}

.profile-info {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.profile-text {
    flex: 1;
}

.intro {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.description {
    font-size: 1.2rem;
    line-height: 1.8;
}

.experience, .skills {
    padding: 4rem 2rem;
}

.experience h2, .skills h2 {
    font-size: 2.5rem;
    color: var(--title-color);
    margin-bottom: 2rem;
    font-family: var(--font-english);
}

/* 添加几何背景 */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    top: 15%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(80px);
}

.shape-2 {
    top: 40%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    transform: rotate(45deg);
    filter: blur(100px);
}

.shape-3 {
    bottom: 10%;
    left: 20%;
    width: 250px;
    height: 250px;
    background: var(--accent-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(60px);
}

/* 更新标题样式 */
.title-block {
    position: relative;
    margin-bottom: 3rem;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.accent-line {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--accent-color);
}

/* 更新图片区域样式 */
.profile-image-wrapper:hover .profile-image {
    transform: translate(-10px, -10px);
}

/* 更新信息卡片样式 */
.location-info,
.education-info,
.work-info {
    padding: 1.8rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.location-info:hover,
.education-info:hover,
.work-info:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

/* 调整教育经历的样式 */
.education-info p:first-of-type {
    margin-bottom: 0.8rem;
}

.education-info p:last-of-type {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .shape {
        transform: scale(0.7);
    }
}

@media (max-width: 768px) {
    .geometric-bg {
        display: none;
    }
}

/* 添加更多样式... */

/* 技能区域样式 */
.skills-section {
    padding: 0;
    margin: 0;
    width: 100%;
}

.skills-container {
    width: 100%;
}

.skills-container h2,
.work-info h2 {
    font-family: var(--font-english);
    font-size: 2.5rem;
    color: var(--title-color);
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.skills-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.skill-name {
    font-family: var(--font-english);
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.9;
    white-space: nowrap;
}

.skill-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(231, 84, 128, 0.1);
    transition: all 0.3s ease;
}

.dot.filled {
    background: var(--accent-color);
}

.skill-item:hover .dot.filled {
    transform: scale(1.2);
}

/* Tips 样式 */
.skills-tips {
    background: none;
    border: none;
    padding: 1rem 0;
    margin-top: 2rem;
}

.skills-tips h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.skills-tips ul {
    list-style: none;
    padding: 0;
}

.skills-tips li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    opacity: 0.7;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-container h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .skills-tips {
        padding: 1rem 0;
    }
}

.work-info {
    background: none;
    border: none;
    padding: 0;
    margin-top: 4rem;
}

.work-info h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.work-detail {
    max-width: 100%;
}

.work-detail h4 {
    font-size: 1.1rem;
    background: none;
    padding: 0;
    color: var(--accent-color);
}

.work-detail ul {
    margin-bottom: 2rem;
}

.work-detail li {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* 创建一个新的容器来并排显示前两个板块 */
.info-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.location-info,
.education-info {
    flex: 1;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* 调整前两个板块的字体大小 */
.location-info h2,
.education-info h2 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.location-info p,
.education-info p {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

/* 调整 SKILLS 标题大小 */
.skills-container h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

/* 调整 Tips 样式 */
.skills-tips {
    background: none;
    border: none;
    padding: 1rem 0;
    margin-top: 2rem;
}

.skills-tips h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.skills-tips ul li {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    opacity: 0.7;
}

/* 调整 Work Experience 样式 */
.work-info {
    background: none;
    border: none;
    padding: 0;
    margin-top: 4rem;
}

.work-info h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.work-detail {
    max-width: 100%;
}

.work-detail h4 {
    font-size: 1.1rem;
    background: none;
    padding: 0;
    color: var(--accent-color);
}

.work-detail ul {
    margin-bottom: 2rem;
}

.work-detail li {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* 添加标题图标的通用样式 */
.section-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-title i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* 调整各个标题的图标大小和对齐 */
.location-info h2,
.education-info h2,
.skills-container h2,
.work-info h2 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.location-info h2 i,
.education-info h2 i {
    font-size: 1rem;
}

.skills-container h2 i,
.work-info h2 i {
    font-size: 1.8rem;
}

/* 图标悬停效果 */
.location-info h2 i,
.education-info h2 i,
.skills-container h2 i,
.work-info h2 i {
    transition: transform 0.3s ease;
}

.location-info:hover h2 i,
.education-info:hover h2 i,
.skills-container h2:hover i,
.work-info h2:hover i {
    transform: scale(1.2);
}

/* Tips 样式调整 */
.skills-tips h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* 重置基础样式 */
.about-container {
    padding-top: 80px;
    width: 100%;
    color: var(--text-color);
}

/* 顶部英雄区域样式 */
.hero-section {
    width: 100%;
    min-height: auto;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
    padding: 6rem 6rem 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 10%;
    width: 34%;
    z-index: 1;
    aspect-ratio: 3/4;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.12;
    filter: grayscale(30%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 650px;
    padding-right: 0;
    margin-bottom: 4rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--title-color);
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: var(--font-english);
    line-height: 1.2;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    position: relative;
}

.intro-text-en {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.5;
    font-family: var(--font-english);
    font-weight: 300;
    color: #999;
}

.hero-image-wrapper {
    width: 100%;
    height: 45vh;
    overflow: hidden;
    border-radius: 10px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* 响应式调整 */
@media (max-width: 1400px) {
    .hero-section {
        padding: 5rem 4rem 2rem;
    }
    
    .details-section {
        padding: 0 4rem 3rem;
    }
    
    .hero-background {
        right: 8%;
        width: 38%;
    }
}

@media (max-width: 1200px) {
    .hero-section {
        padding: 4rem 3rem 2rem;
    }
    
    .details-section {
        padding: 0 3rem 2rem;
    }
    
    .hero-background {
        right: 5%;
        width: 40%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 2rem 1.5rem;
    }
    
    .details-section {
        padding: 0 2rem 1.5rem;
    }
    
    .hero-background {
        width: 90%;
        right: 5%;
    }
}

/* 添加一些微妙的动画效果 */
.background-image {
    transition: opacity 0.3s ease, transform 20s ease;
}

.hero-section:hover .background-image {
    transform: scale(1.1);
}

/* 详细信息区域样式 */
.details-section {
    position: relative;
    z-index: 2;
    padding: 0 6rem 4rem;
    background: transparent;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 调整信息卡片样式 */
.info-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.location-info,
.education-info {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

/* 调整技能区域样式 */
.skills-section {
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 2rem;
}

/* 调整工作经验区域样式 */
.work-info {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 2rem;
}

/* 调整前两个板块的字体大小 */
.location-info h2,
.education-info h2 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.location-info p,
.education-info p {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

/* 调整 SKILLS 标题大小 */
.skills-container h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

/* 调整 Tips 样式 */
.skills-tips {
    background: none;
    border: none;
    padding: 1rem 0;
    margin-top: 2rem;
}

.skills-tips h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.skills-tips ul li {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    opacity: 0.7;
}

/* 调整 Work Experience 样式 */
.work-info {
    background: none;
    border: none;
    padding: 0;
    margin-top: 4rem;
}

.work-info h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.work-detail {
    max-width: 100%;
}

.work-detail h4 {
    font-size: 1.1rem;
    background: none;
    padding: 0;
    color: var(--accent-color);
}

.work-detail ul {
    margin-bottom: 2rem;
}

.work-detail li {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* 添加标题图标的通用样式 */
.section-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-title i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* 调整各个标题的图标大小和对齐 */
.location-info h2,
.education-info h2,
.skills-container h2,
.work-info h2 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.location-info h2 i,
.education-info h2 i {
    font-size: 1rem;
}

.skills-container h2 i,
.work-info h2 i {
    font-size: 1.8rem;
}

/* 图标悬停效果 */
.location-info h2 i,
.education-info h2 i,
.skills-container h2 i,
.work-info h2 i {
    transition: transform 0.3s ease;
}

.location-info:hover h2 i,
.education-info:hover h2 i,
.skills-container h2:hover i,
.work-info h2:hover i {
    transform: scale(1.2);
}

/* Tips 样式调整 */
.skills-tips h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* 重置基础样式 */
.about-container {
    padding-top: 80px;
    width: 100%;
    color: var(--text-color);
} 