/* 工作展示页面样式 */
.work-container {
    padding: 120px 6rem 4rem;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    color: var(--text-color);
}

/* 每个部分的样式 */
.work-section {
    margin-bottom: 6rem;
    position: relative;
}

.section-title {
    font-size: 2.2rem;
    color: var(--title-color);
    margin-bottom: 2.5rem;
    font-family: var(--font-english);
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.section-title span {
    font-size: 1.1rem;
    color: var(--accent-color);
    opacity: 0.8;
}

/* 项目网格布局 */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* 项目卡片样式 */
.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 1.2rem;
}

.project-info h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--title-color);
    line-height: 1.4;
}

.project-details {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 1rem;
    line-height: 1.2;
    color: var(--accent-color);
    opacity: 0.8;
}

.project-details span {
    display: flex;
    align-items: center;
    height: 1.5em;
    font-size: 1rem;
}

.project-details span:not(:last-child)::after {
    content: '·';
    color: var(--accent-color);
    position: static;
    font-size: 1rem;
}

/* 响应式布局 */
@media (max-width: 1600px) {
    .work-container {
        padding: 100px 4rem 3rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .work-container {
        padding: 100px 3rem 3rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .work-container {
        padding: 100px 2rem 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* 添加更多样式... */

/* 移除平滑滚动效果 */
html {
    scroll-padding-top: 40vh;
}

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

.project-link:hover {
    transform: translateY(-5px);
} 