/* 图片卡片容器样式 */
.image-cards-container {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 左右卡片基础样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: transparent;
    box-shadow: none;
    flex: 1;
    max-width: 580px;
    display: flex;
    flex-direction: column;
}

.image-card-right {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* 全高图片容器 */
.card-image-full {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    border-radius: 12px;
}

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

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

/* 图片遮罩层 */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    color: white;
}

.brand-logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.overlay-content {
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

.overlay-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.overlay-content p {
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    color: rgba(255,255,255,0.9);
}

/* 部分高度图片容器 */
.card-image-partial {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
}

.card-image-partial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

/* 文字内容样式 */
.content-card2 {
    padding: 16px 0;
    background: transparent;
}

.content-card2 h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card2 p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 响应式布局 */
@media (max-width: 768px) {
    .image-cards-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .image-card-left, .image-card-right {
        max-width: 100%;
    }
    
    .card-image-full {
        min-height: 250px;
    }
    
    .card-image-partial {
        height: 200px;
    }

    .overlay-content {
        padding: 15px;
    }

    .overlay-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .overlay-content p {
        font-size: 14px;
    }
}

.explore-card.main-card {
    height: 700px;
    display: flex;
    flex-direction: column;
}

.explore-card.main-card .card-image {
    height: 100%;
    width: 100%;
    flex: 1;
}

.explorer-image {
    height: 100%;
    width: 100%;
}

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

.our-work-section {
    padding: 80px 0;
    background: #fff;
}

.our-work-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.header-left {
    max-width: 600px;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.2rem;
    color: #666;
    margin: 20px 0 0;
    line-height: 1.5;
}

.section-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-count {
    font-size: 1.2rem;
    color: #333;
}

.nav-arrows {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    background: none;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: #f5f5f5;
    border-color: #333;
}

.work-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    height: 600px;
}

.work-main {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.work-thumbnails {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 30px;
    height: 100%;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    height: 100%;
}

.work-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.work-item:hover .work-image img {
    transform: scale(1.05);
}

.work-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0) 100%);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1;
}

.work-item:hover .work-content {
    opacity: 1;
    transform: translateY(0);
}

.work-content h3 {
    font-size: 1.5rem;
    margin: 0 0 10px;
    font-weight: 500;
}

.work-content p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.work-item.active {
    cursor: default;
}

.work-item.active .work-content {
    opacity: 1;
    transform: translateY(0);
}

/* 动画类 */
.fade-enter {
    opacity: 0;
    transform: translateY(20px);
}

.fade-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.fade-exit {
    opacity: 1;
    transform: translateY(0);
}

.fade-exit-active {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease;
}

@media (max-width: 1024px) {
    .work-showcase {
        grid-template-columns: 1fr;
        height: auto;
        gap: 20px;
    }

    .work-main {
        height: 400px;
    }

    .work-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .our-work-container {
        padding: 0 20px;
    }

    .section-header {
        flex-direction: column;
        gap: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-desc {
        font-size: 1rem;
    }

    .work-thumbnails {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 180px);
        height: auto;
    }

    .explore-card.main-card {
        height: 500px;
    }
    
    .explore-card.main-card .card-image {
        height: 100%;
    }
} 