/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
}

/* 主内容区域 */
.main-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-content {
        width: 100%;
    }
}

/* 主内容区域 */
.main-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

/* 导航激活时主内容区域偏移 */
.main-nav.active ~ .site-container .main-content {
    transform: translateX(40%);
}

/* 导航菜单移出效果 */
.main-nav:not(:hover) + .main-content {
    transform: translateX(0);
}

/* 内容区域 */
.content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: visible;
}

/* 网站容器 */
.site-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: visible;
}

/* 导航菜单样式 */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 40%;
    height: 100vh;
    background: #000;
    color: #fff;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.main-nav.active {
    transform: translateX(0);
}

/* 导航菜单触发器区域 */
.menu-trigger {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 100vh;
    z-index: 1001;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-trigger:hover {
    opacity: 1;
}

.menu-trigger:hover + .main-nav {
    transform: translateX(0);
}

/* 导航菜单移出效果 */
.main-nav:not(:hover) {
    transform: translateX(-100%);
    pointer-events: none;
}

/* 导航内容区域 */
.nav-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    overflow-y: auto;
}

.nav-image {
    width: 30%;
    height: 100%;
    overflow: hidden;
}

.nav-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    filter: brightness(0.9) contrast(1.1) saturate(1.2);
    transition: all 0.5s ease;
}

/* 导航列表 */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.main-nav.active .nav-list li {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    transform: translateX(10px);
}

.nav-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.Lang-links {
    display: flex;
    gap: 15px;
}

.Lang-links .footer-social-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.Lang-links .footer-social-link:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-social-link:hover::before {
    transform: scale(1.2);
}

.footer-social-link img {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.footer-social-link:hover img {
    transform: scale(1.1);
}

/* 自定义光标 */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    mix-blend-mode: difference;
}

.cursor.active {
    opacity: 1;
    transform: scale(1.5);
}

.cursor-follower {
    position: fixed;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s;
    mix-blend-mode: overlay;
}

.cursor-follower.active {
    opacity: 1;
}

.menu-icon {
    width: 20px;
    height: 14px;
    position: relative;
}

.menu-icon span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
}

.menu-icon span:first-child {
    top: 0;
}

.menu-icon span:last-child {
    bottom: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-nav {
        width: 100%;
    }

    .nav-content {
        padding: 20px;
    }

    .nav-image {
        width: 100%;
        height: 200px;
    }

    .nav-list a {
        font-size: 6vw;
    }

    .nav-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-social-link {
        width: 32px;
        height: 32px;
    }

    .footer-social-link img {
        width: 16px;
        height: 16px;
    }
}

/* Loader 样式 */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #e9ecef 0%,
        #ced4da 50%,
        #adb5bd 100%
    );
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
    overflow: hidden;
}

.loader.hidden {
    visibility: hidden;
    opacity: 0;
}

/* 装饰元素样式 */
.decoration-circle-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    top: -10%;
    left: -10%;
    animation: rotate 40s linear infinite;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0) 70%
    );
}

.decoration-circle-1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0) 70%
    );
}

.decoration-circle-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    bottom: -10%;
    right: -10%;
    animation: rotate 35s linear infinite reverse;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0) 70%
    );
}

.decoration-circle-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0) 70%
    );
}

.decoration-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 0, 0, 0.08) 2px, transparent 2px);
    background-size: 40px 40px, 100px 100px;
    background-position: 0 0, 20px 20px;
    opacity: 0.9;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loader-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-left: 20%;
}

.text-container {
    text-align: left;
    position: relative;
    z-index: 3;
    margin-left: 80px;
    max-width: 90%;
}

.main-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: flex-start;
    width: 100%;
}

.main-text {
    font-size: 12rem;
    font-weight: 900;
    color: #212529;
    display: inline-block;
    margin: 0;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.03em;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
}

.words {
    position: relative;
    display: flex;
    align-items: center;
    height: 12rem;
    flex-shrink: 0;
    margin-left: 0;
}

.animated-word {
    font-size: 5rem;
    font-weight: 800;
    color: #495057;
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    letter-spacing: -0.02em;
    line-height: 1;
}

/* 移动端响应式样式 */
@media (max-width: 768px) {
    .text-container {
        margin-left: 0;
        padding: 0 20px;
        width: 100%;
    }

    .main-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .main-text {
        font-size: 6rem;
        margin-bottom: 0;
    }

    .words {
        height: auto;
        min-height: 4rem;
        margin-top: 20px;
    }

    .animated-word {
        font-size: 2.5rem;
    }

    .decoration-circle-1 {
        width: 300px;
        height: 300px;
        top: -20%;
        left: -20%;
    }

    .decoration-circle-2 {
        width: 250px;
        height: 250px;
        bottom: -20%;
        right: -20%;
    }

    .decoration-dots {
        background-size: 20px 20px, 50px 50px;
    }
}

/* 介绍区域 */
.intro-section {
    position: relative;
    min-height: 60vh;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

.intro-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.1) 49%, rgba(255,255,255,0.1) 51%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}

.intro-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-text {
    flex: 1;
}

.intro-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.intro-image {
    flex: 1;
    position: relative;
    max-height: 500px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* 服务区域样式 */
.services-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    color: #fff;
}

.service-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-item:hover .service-content {
    transform: translateY(0);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 1rem;
    opacity: 0.8;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .intro-section {
        min-height: 50vh;
        padding: 40px 0;
    }

    .intro-content {
        flex-direction: column;
        padding: 0 20px;
    }

    .intro-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .service-content {
        transform: translateY(0);
        background: rgba(0,0,0,0.7);
    }
}

/* Hero区域 */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* 探索区域 */
.explore-section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 60px 0;
    background-color: #f5f5f5;
    box-sizing: border-box;
    display: block;
    overflow: hidden;
    left: 0;
    right: 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-section.show {
    opacity: 1;
    transform: translateY(0);
}

/* 容器类 */
.explore-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.explore-header {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 40px;
    box-sizing: border-box;
    width: 100%;
}

.explore-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.explore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.explore-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.5s ease, translateY 0.5s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.explore-card .card-content {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.explore-card .card-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

/* 主卡片样式 */
.explore-card.main-card {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    min-height: 500px;
    position: relative;
}

.explore-card.main-card .card-content {
    background: rgba(255, 255, 255, 0.95);
    flex: 1;
    z-index: 3;
    position: relative;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.explore-card.main-card .card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    display: block;
}

.explore-card.main-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.explore-card.main-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.explore-card.main-card.show .card-content h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.explore-card.main-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.explore-card.main-card.show .card-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.explore-card.main-card .card-content .read-more {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.explore-card.main-card.show .card-content .read-more {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.6rem;
    }
    
    .explore-left .card-content p {
        font-size: 1rem;
    }
    
    .card-content1 h3 {
        font-size: 1.3rem;
    }
    
    .card-content1 p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: auto auto auto auto;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .explore-right {
        grid-template-rows: auto auto auto auto;
    }
    
    .explore-card1, 
    .explore-card2, 
    .explore-card3 {
        width: 100%;
    }
    
    .explore-card1 {
        margin-bottom: 15px;
    }
    
    .image-card .card-image {
        height: 200px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card h3 {
        font-size: 1.3rem;
    }
    
    .content-card p {
        font-size: 0.9rem;
    }
    
    .explore-card2, 
    .explore-card3 {
        width: 100%;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
}

/* 主内容区域 */
.main-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-content {
        width: 100%;
    }
}

/* 主内容区域 */
.main-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

/* 导航激活时主内容区域偏移 */
.main-nav.active ~ .site-container .main-content {
    transform: translateX(40%);
}

/* 导航菜单移出效果 */
.main-nav:not(:hover) + .main-content {
    transform: translateX(0);
}

/* 内容区域 */
.content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: visible;
}

/* 网站容器 */
.site-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: visible;
}

/* 导航菜单样式 */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 40%;
    height: 100vh;
    background: #000;
    color: #fff;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.main-nav.active {
    transform: translateX(0);
}

/* 导航菜单触发器区域 */
.menu-trigger {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 100vh;
    z-index: 1001;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-trigger:hover {
    opacity: 1;
}

.menu-trigger:hover + .main-nav {
    transform: translateX(0);
}

/* 导航菜单移出效果 */
.main-nav:not(:hover) {
    transform: translateX(-100%);
    pointer-events: none;
}

/* 导航内容区域 */
.nav-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    overflow-y: auto;
}

.nav-image {
    width: 30%;
    height: 100%;
    overflow: hidden;
}

.nav-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    filter: brightness(0.9) contrast(1.1) saturate(1.2);
    transition: all 0.5s ease;
}

/* 导航列表 */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.main-nav.active .nav-list li {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    transform: translateX(10px);
}

.nav-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.Lang-links {
    display: flex;
    gap: 15px;
}

.Lang-links .footer-social-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.Lang-links .footer-social-link:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-social-link:hover::before {
    transform: scale(1.2);
}

.footer-social-link img {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.footer-social-link:hover img {
    transform: scale(1.1);
}

/* 自定义光标 */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    mix-blend-mode: difference;
}

.cursor.active {
    opacity: 1;
    transform: scale(1.5);
}

.cursor-follower {
    position: fixed;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s;
    mix-blend-mode: overlay;
}

.cursor-follower.active {
    opacity: 1;
}

.menu-icon {
    width: 20px;
    height: 14px;
    position: relative;
}

.menu-icon span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
}

.menu-icon span:first-child {
    top: 0;
}

.menu-icon span:last-child {
    bottom: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-nav {
        width: 100%;
    }

    .nav-content {
        padding: 20px;
    }

    .nav-image {
        width: 100%;
        height: 200px;
    }

    .nav-list a {
        font-size: 6vw;
    }

    .nav-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-social-link {
        width: 32px;
        height: 32px;
    }

    .footer-social-link img {
        width: 16px;
        height: 16px;
    }
}

/* Loader 样式 */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #e9ecef 0%,
        #ced4da 50%,
        #adb5bd 100%
    );
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
    overflow: hidden;
}

.loader.hidden {
    visibility: hidden;
    opacity: 0;
}

/* 装饰元素样式 */
.decoration-circle-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    top: -10%;
    left: -10%;
    animation: rotate 40s linear infinite;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0) 70%
    );
}

.decoration-circle-1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0) 70%
    );
}

.decoration-circle-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    bottom: -10%;
    right: -10%;
    animation: rotate 35s linear infinite reverse;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0) 70%
    );
}

.decoration-circle-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0) 70%
    );
}

.decoration-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 0, 0, 0.08) 2px, transparent 2px);
    background-size: 40px 40px, 100px 100px;
    background-position: 0 0, 20px 20px;
    opacity: 0.9;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loader-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-left: 20%;
}

.text-container {
    text-align: left;
    position: relative;
    z-index: 3;
    margin-left: 80px;
    max-width: 90%;
}

.main-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: flex-start;
    width: 100%;
}

.main-text {
    font-size: 12rem;
    font-weight: 900;
    color: #212529;
    display: inline-block;
    margin: 0;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.03em;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
}

.words {
    position: relative;
    display: flex;
    align-items: center;
    height: 12rem;
    flex-shrink: 0;
    margin-left: 0;
}

.animated-word {
    font-size: 5rem;
    font-weight: 800;
    color: #495057;
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    letter-spacing: -0.02em;
    line-height: 1;
}

/* 移动端响应式样式 */
@media (max-width: 768px) {
    .text-container {
        margin-left: 0;
        padding: 0 20px;
        width: 100%;
    }

    .main-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .main-text {
        font-size: 6rem;
        margin-bottom: 0;
    }

    .words {
        height: auto;
        min-height: 4rem;
        margin-top: 20px;
    }

    .animated-word {
        font-size: 2.5rem;
    }

    .decoration-circle-1 {
        width: 300px;
        height: 300px;
        top: -20%;
        left: -20%;
    }

    .decoration-circle-2 {
        width: 250px;
        height: 250px;
        bottom: -20%;
        right: -20%;
    }

    .decoration-dots {
        background-size: 20px 20px, 50px 50px;
    }
}

/* 介绍区域 */
.intro-section {
    position: relative;
    min-height: 60vh;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

.intro-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.1) 49%, rgba(255,255,255,0.1) 51%, transparent 52%);
    background-size: 20px 20px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}

.intro-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-text {
    flex: 1;
}

.intro-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.intro-image {
    flex: 1;
    position: relative;
    max-height: 500px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* 服务区域样式 */
.services-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    color: #fff;
}

.service-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-item:hover .service-content {
    transform: translateY(0);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 1rem;
    opacity: 0.8;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .intro-section {
        min-height: 50vh;
        padding: 40px 0;
    }

    .intro-content {
        flex-direction: column;
        padding: 0 20px;
    }

    .intro-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .service-content {
        transform: translateY(0);
        background: rgba(0,0,0,0.7);
    }
}

/* Hero区域 */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* 探索区域 */
.explore-section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 60px 0;
    background-color: #f5f5f5;
    box-sizing: border-box;
    display: block;
    overflow: hidden;
    left: 0;
    right: 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-section.show {
    opacity: 1;
    transform: translateY(0);
}

/* 容器类 */
.explore-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.explore-header {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 40px;
    box-sizing: border-box;
    width: 100%;
}

.explore-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.explore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.explore-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.5s ease, translateY 0.5s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.explore-card .card-content {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.explore-card .card-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

/* 主卡片样式 */
.explore-card.main-card {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    min-height: 500px;
    position: relative;
}

.explore-card.main-card .card-content {
    background: rgba(255, 255, 255, 0.95);
    flex: 1;
    z-index: 3;
    position: relative;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.explore-card.main-card .card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    display: block;
}

.explore-card.main-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.explore-card.main-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.explore-card.main-card.show .card-content h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.explore-card.main-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.explore-card.main-card.show .card-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.explore-card.main-card .card-content .read-more {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.explore-card.main-card.show .card-content .read-more {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.6rem;
    }
    
    .explore-left .card-content p {
        font-size: 1rem;
    }
    
    .card-content1 h3 {
        font-size: 1.3rem;
    }
    
    .card-content1 p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: auto auto auto auto;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .explore-right {
        grid-template-rows: auto auto auto auto;
    }
    
    .explore-card1, 
    .explore-card2, 
    .explore-card3 {
        width: 100%;
    }
    
    .explore-card1 {
        margin-bottom: 15px;
    }
    
    .image-card .card-image {
        height: 200px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card h3 {
        font-size: 1.3rem;
    }
    
    .content-card p {
        font-size: 0.9rem;
    }
    
    .explore-card2, 
    .explore-card3 {
        width: 100%;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card-left .card-image, .image-card-right .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.image-card-left .card-image img, .image-card-right .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card-left .card-image, .image-card-right .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.image-card-left .card-image img, .image-card-right .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card-left .card-image, .image-card-right .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.image-card-left .card-image img, .image-card-right .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card-left .card-image, .image-card-right .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.image-card-left .card-image img, .image-card-right .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card-left .card-image, .image-card-right .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.image-card-left .card-image img, .image-card-right .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card-left .card-image, .image-card-right .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.image-card-left .card-image img, .image-card-right .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card-left .card-image, .image-card-right .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.image-card-left .card-image img, .image-card-right .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card-left .card-image, .image-card-right .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.image-card-left .card-image img, .image-card-right .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card-left .card-image, .image-card-right .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.image-card-left .card-image img, .image-card-right .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card-left .card-image, .image-card-right .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.image-card-left .card-image img, .image-card-right .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-left.show, .image-card-right.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card-left:hover, .image-card-right:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card-left .card-image, .image-card-right .card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.image-card-left .card-image img, .image-card-right .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.content-card2 {
    padding: 16px;
    background: #fff;
    opacity: 1;
    transform: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.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: 1024px) {
    .explore-grid {
        padding: 0 20px;
    }

    .image-card .card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .explore-left .explore-card {
        min-height: 300px;
    }
    
    .explore-right {
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .explore-left {
        transform: translateX(0);
        margin-bottom: 20px;
    }
    
    .explore-right {
        transform: translateX(0);
    }
    
    .explore-left.show,
    .explore-right.show {
        transform: translateY(0);
    }
    
    .explore-left .card-content {
        padding: 20px;
    }
    
    .explore-left .card-content h3 {
        font-size: 1.4rem;
    }
    
    .image-card .card-image {
        height: 180px;
    }
    
    .content-card {
        padding: 15px;
    }
    
    .content-card:first-child h3 {
        font-size: 1.3rem;
    }
    
    .content-card:first-child p {
        font-size: 0.9rem;
    }
    
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card-left, .image-card-right {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* 特殊处理探索页左侧图片 */
.explorer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    visibility: visible;
    overflow: hidden;
}

.explorer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
}

/* 确保电脑端图片正确显示 */
@media (min-width: 769px) {
    .explorer-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: none; /* 电脑端隐藏图片元素，改用背景图 */
    }
    
    .explore-card.main-card {
        background-image: url('../images/explorer-left.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* 提高图片清晰度 */
    }
}

/* 移动端特殊处理 */
@media (max-width: 768px) {
    .explorer-image {
        position: relative;
        height: 250px;
    }
}

/* 主卡片渐变背景 */
.explore-card.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.explore-card.main-card.show .card-image {
    opacity: 1;
}

/* 左侧区域样式 */
.explore-left {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-left.show {
    opacity: 1;
    transform: translateX(0);
}

.explore-left .card-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explore-left .card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #333;
}

.explore-left .card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.explore-left .explore-card {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

/* 右侧区域样式 */
.explore-right {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.explore-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* 调整所有内容卡片的样式 */
.content-card {
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.content-card:nth-child(2) {
    margin-bottom: 5px;
}

.content-card:nth-child(4), 
.content-card:nth-child(6) {
    padding: 15px;
}

.content-card:nth-child(4) h4, 
.content-card:nth-child(6) h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.content-card:nth-child(4) p, 
.content-card:nth-child(6) p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

/* 右侧卡片样式 */
.explore-card1, .explore-card2, .explore-card3 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.explore-card1.show, .explore-card2.show, .explore-card3.show {
    opacity: 1;
    transform: translateY(0);
}

.explore-card1:hover, .explore-card2:hover, .explore-card3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* 第一个卡片样式 */
.explore-card1 {
    display: flex;
    flex-direction: column;
}

.explore-card1 .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.card-content1 {
    padding: 20px;
    background: #fff;
}

.card-content1 h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card-content1 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 第二个和第三个卡片样式 */
.explore-card2, .explore-card3 {
    display: flex;
    flex-direction: column;
}

.explore-card2 .card-image, .explore-card3 .card-image {
    height: 180px;
    overflow: hidden;
}

.explore-card2 .card-image img, .explore-card3 .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card2 .card-content, .explore-card3 .card-content {
    padding: 15px;
    background: #fff;
}

.explore-card2:hover .card-image img, .explore-card3:hover .card-image img {
    transform: scale(1.05);
}

/* 图片卡片样式 */
.image-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.image-card.show {
    opacity: 1;
    transform: translateY(0);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.image-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

/* 内容卡片单独样式 */
.content-card.show {
    opacity: 1;
    transform: translateY(0);
}

.content-card:first-child h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.content-card:first-child p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* 左右卡片布局容器 */
.image-cards-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* 左右卡片共同样式 */
.image-card-left, .image-card-right {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.image-card-/ *   nxO(Wl o a d e r [bMRQ[:SWυ  * / . c o n t e n t   { d i s p l a y :   n o n e ; o p a c i t y :   0 ; t r a n s i t i o n :   o p a c i t y   0 . 5 s   e a s e ; }  
 