/* 全局样式和重置 */
:root {
    --primary-color: #4a6bfa;
    --secondary-color: #09c6ab;
    --accent-color: #ff7043;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --text-color: #333;
    --light-text: #fff;
    --gray-text: #6c757d;
    --border-color: #e0e0e0;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fdfdfd;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* 导航栏样式 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 8px;
    background-color: transparent !important;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.6;
    margin-left: 5px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.download-btn {
    background-color: var(--primary-color);
    color: var(--light-text) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: var(--transition);
}

.download-btn:hover {
    background-color: #3959d9;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px auto;
    transition: var(--transition);
}

/* 英雄区样式 */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #f5f7ff 0%, #edf1ff 100%);
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.hero-content .tagline {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-content .description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(74, 107, 250, 0.3);
}

.primary-btn:hover {
    background-color: #3959d9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 107, 250, 0.4);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: rgba(74, 107, 250, 0.1);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 300px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) rotate(1deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) rotate(0deg);
}

/* 功能区样式 */
.features {
    padding: 6rem 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* 截图展示区样式 */
.screenshots {
    padding: 6rem 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.device-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-text);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 30px;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(74, 107, 250, 0.3);
}

.tab-btn:hover:not(.active) {
    background-color: rgba(74, 107, 250, 0.1);
}

.screenshot-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.slider-container {
    position: relative;
    padding: 2rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-track {
    display: flex;
    width: 100%;
    position: relative;
    height: 520px;
}

.slide {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* 多图片容器样式 */
.multi-image-container {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    height: 100%;
    position: relative;
    perspective: 1500px;
}

/* 统一图片项样式 */
.image-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    cursor: pointer;
}

.image-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.6s ease;
}

/* 定义不同状态的样式 (这些是基础样式，主要影响 iPhone) */
.image-item.state-main {
    width: 28%; /* 从 30% 缩小到 28% */
    transform: translate(-50%, -50%) translateZ(0px) scale(0.85); /* 再次缩小 */
    opacity: 1;
    z-index: 10;
}
.image-item.state-main img {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12); /* 再次减小阴影 */
    filter: blur(0);
}

.image-item.state-right-1 {
    width: 24%; /* 从 22% 增大到 24% */
    transform: translate(-50%, -50%) translateX(70%) translateZ(-120px) scale(0.6); /* 调整 translateX, Z, 增大 scale */
    opacity: 0.65; /* 稍微增加透明度 */
    z-index: 8;
}
.image-item.state-right-1 img {
    filter: blur(1px);
}

.image-item.state-right-2 {
    width: 16%; /* 从 15% 稍微增大 */
    transform: translate(-50%, -50%) translateX(100%) translateZ(-210px) scale(0.45); /* 调整 translateX, Z */
    opacity: 0.35; /* 稍微增加透明度 */
    z-index: 6;
}
.image-item.state-right-2 img {
    filter: blur(2px);
}

.image-item.state-left-1 {
    width: 24%; /* 从 22% 增大到 24% */
    transform: translate(-50%, -50%) translateX(-70%) translateZ(-120px) scale(0.6); /* 调整 translateX, Z, 增大 scale */
    opacity: 0.65; /* 稍微增加透明度 */
    z-index: 8;
}
.image-item.state-left-1 img {
    filter: blur(1px);
}

.image-item.state-left-2 {
    width: 16%; /* 从 15% 稍微增大 */
    transform: translate(-50%, -50%) translateX(-100%) translateZ(-210px) scale(0.45); /* 调整 translateX, Z */
    opacity: 0.35; /* 稍微增加透明度 */
    z-index: 6;
}
.image-item.state-left-2 img {
    filter: blur(2px);
}

/* 隐藏状态 (保持不变或微调) */
.image-item.state-hidden {
    width: 12%; /* 微调 */
    transform: translate(-50%, -50%) translateX(100%) translateZ(-250px) scale(0.4);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}
.image-item.state-hidden.left {
    transform: translate(-50%, -50%) translateX(-100%) translateZ(-250px) scale(0.4);
}

/* 移除旧的 main-image, side-image 特定样式 */
/* .main-image { ... } */
/* .side-image { ... } */
/* .main-img { ... } */
/* .side-img { ... } */

/* iPad 视图调整 (也增大侧图) */
#ipad-screenshots .image-item.state-main { width: 40%; transform: translate(-50%, -50%) translateZ(0px) scale(1); opacity: 1; }
#ipad-screenshots .image-item.state-right-1 { width: 32%; transform: translate(-50%, -50%) translateX(80%) translateZ(-150px) scale(0.7); opacity: 0.8; } /* 增大 width, 调整 translateX, Z, 增大 scale */
#ipad-screenshots .image-item.state-left-1 { width: 32%; transform: translate(-50%, -50%) translateX(-80%) translateZ(-150px) scale(0.7); opacity: 0.8; } /* 增大 width, 调整 translateX, Z, 增大 scale */
#ipad-screenshots .image-item.state-right-2,
#ipad-screenshots .image-item.state-left-2 {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) translateX(100%) translateZ(-300px) scale(0.7);
}
#ipad-screenshots .image-item.state-hidden.left {
    transform: translate(-50%, -50%) translateX(-100%) translateZ(-300px) scale(0.7);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    position: relative;
    z-index: 20;
    width: 100%;
    text-align: center;
}

.prev-btn, .next-btn {
    background-color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.prev-btn {
    margin-right: 10px;
}

.next-btn {
    margin-left: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* 应用场景区样式 */
.scenarios {
    padding: 6rem 0;
    background-color: #fff;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.scenario-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    text-align: center;
    border: 1px solid var(--border-color);
}

.scenario-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.scenario-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #ff9a77);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.scenario-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.scenario-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.scenario-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* 下载区样式 */
.download {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4a6bfa 0%, #09c6ab 100%);
    color: #fff;
    text-align: center;
}

.download .section-title {
    color: #fff;
}

.download .section-title::after {
    background-color: #fff;
}

.download-desc {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.download-btn {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: var(--dark-color);
    padding: 1rem 2rem;
    border-radius: 10px;
    transition: var(--transition);
}

.download-btn i {
    font-size: 2rem;
    margin-right: 10px;
}

.download-btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-btn small {
    font-size: 0.7rem;
    opacity: 0.7;
}

.download-btn.apple:hover {
    background-color: #000;
    color: #fff;
}

.download-btn.google:hover {
    background-color: #ea4335;
    color: #fff;
}

/* 页脚样式 */
.footer {
    background-color: #f8f9fa;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-logo span {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-left: 5px;
}

.footer-logo p {
    color: var(--gray-text);
    margin-top: 0.5rem;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    min-width: 160px;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--gray-text);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info li i {
    min-width: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--gray-text);
}

.social-links {
    display: flex;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #fff;
    color: var(--gray-text);
    border-radius: 50%;
    margin-left: 10px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .feature-card, .scenario-card {
        text-align: center;
    }

    .feature-icon, .scenario-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        margin-bottom: 1rem;
    }
    
    /* iPhone 在中屏幕下的基础尺寸和间距 */
    .image-item.state-main { width: 32%; transform: translate(-50%, -50%) translateZ(0px) scale(0.8); }
    .image-item.state-right-1 { width: 26%; transform: translate(-50%, -50%) translateX(65%) translateZ(-100px) scale(0.55); } /* 增大 width, 调整 transform */
    .image-item.state-left-1 { width: 26%; transform: translate(-50%, -50%) translateX(-65%) translateZ(-100px) scale(0.55); } /* 增大 width, 调整 transform */

    /* iPad 在中屏幕下的覆盖尺寸和间距 */
    #ipad-screenshots .image-item.state-main { width: 40%; transform: translate(-50%, -50%) translateZ(0px) scale(1); }
    #ipad-screenshots .image-item.state-right-1 { width: 32%; transform: translate(-50%, -50%) translateX(75%) translateZ(-130px) scale(0.65); } /* 增大 width, 调整 transform */
    #ipad-screenshots .image-item.state-left-1 { width: 32%; transform: translate(-50%, -50%) translateX(-75%) translateZ(-130px) scale(0.65); } /* 增大 width, 调整 transform */

    .slider-track { height: 480px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom p {
        margin-bottom: 1rem;
    }

    .slider-track { height: 420px; }

    /* iPhone 在小屏幕下的基础尺寸和间距 */
    .image-item.state-main { width: 40%; transform: translate(-50%, -50%) translateZ(0px) scale(0.75); }
    .image-item.state-right-1 { width: 32%; transform: translate(-50%, -50%) translateX(55%) translateZ(-90px) scale(0.45); } /* 增大 width, 调整 transform */
    .image-item.state-left-1 { width: 32%; transform: translate(-50%, -50%) translateX(-55%) translateZ(-90px) scale(0.45); } /* 增大 width, 调整 transform */

    /* iPad 在小屏幕下的覆盖尺寸和间距 */
    #ipad-screenshots .image-item.state-main { width: 55%; transform: translate(-50%, -50%) translateZ(0px) scale(0.9); }
    #ipad-screenshots .image-item.state-right-1 { width: 40%; transform: translate(-50%, -50%) translateX(65%) translateZ(-110px) scale(0.65); } /* 增大 width, 调整 transform */
    #ipad-screenshots .image-item.state-left-1 { width: 40%; transform: translate(-50%, -50%) translateX(-65%) translateZ(-110px) scale(0.65); } /* 增大 width, 调整 transform */

    .image-item.state-right-2,
    .image-item.state-left-2,
    .image-item.state-hidden { display: none; }

    .header-image {
        max-width: 80px;  /* 缩小移动端显示尺寸 */
        margin-left: 10px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .tagline {
        font-size: 1.2rem;
    }

    .features-grid, .scenarios-grid {
        grid-template-columns: 1fr;
    }

    .slider-track { height: 380px; }

    /* iPhone 在超小屏幕下的基础尺寸 */
    .image-item.state-main { width: 55%; transform: translate(-50%, -50%) translateZ(0px) scale(0.7); }

    /* iPad 在超小屏幕下的覆盖尺寸 (如果需要不同于 iPhone) */
    #ipad-screenshots .image-item.state-main { width: 70%; transform: translate(-50%, -50%) translateZ(0px) scale(0.85); }

    .image-item.state-right-1,
    .image-item.state-left-1,
    .image-item.state-right-2,
    .image-item.state-left-2,
    .image-item.state-hidden { display: none; }
}

/* 移除或注释掉以下与 index.png logo 相关的规则 */
/*
.header .logo img {
    height: 40px;
    background-color: transparent !important;
    box-shadow: none !important;
    filter: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
}
*/

/*
.header .logo a {
    background-color: transparent !important;
    display: inline-block;
}
*/

/*
.header .logo img:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0.8;
}
*/

/*
.header .logo a:hover img {
    transform: scale(1.1);
}
*/

/* 注意：如果还有其他选择器指向 index.png 或其容器， */
/* 也需要找到并移除或注释掉它们。 */
/* 例如，如果直接对 .logo 类设置了影响图片的样式。 */

/* ... existing code ... */

/* 修改前 */
.features-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 修改后 */
.features-header {
    text-align: center; /* 改为居中对齐 */
    margin-bottom: 2rem;
}

/* 添加/修改以下样式 */
.features-header {
    position: relative; /* 为绝对定位图片提供参照 */
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.header-image {
    max-width: 120px;  /* 控制图片最大宽度 */
    height: auto;      /* 保持图片比例 */
    display: block;
    margin-left: 20px; /* 与标题间距 */
    /* 禁用所有交互效果 */
    box-shadow: none !important;
    filter: none !important;
    transition: none !important;
    opacity: 1 !important;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .header-image {
        max-width: 80px;  /* 缩小移动端显示尺寸 */
        margin-left: 10px;
    }
} 