/* 默认隐藏汉堡菜单图标 */
.hamburger-menu {
    display: none;
}

/* 移动端样式 */
@media screen and (max-width: 768px) {
    /* 防止页面水平滚动 */
    html, 
    body {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .page-wrapper {
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    /* 删除这段隐藏内容的代码，改为添加移动端的布局调整 */
    .content-section,
    .features-section,
    .about-section,
    .contact-section,
    .second-page,
    .third-page,
    .forth-page,
    footer {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        min-width: 393px;
    }

    /* main不需要padding */
    main {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    /* hero组件不需要padding */
    .hero-section {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        margin-bottom: 60px;
    }

    /* 调整各个区块在移动端的间距 */
    .hero-section,
    .features-section,
    .about-section,
    .contact-section {
        margin-bottom: 60px;
    }

    /* 移动端 h1 样式调整 */
    h1 {
        width: 350px;
        height: 120px;
        position: absolute;
        top: 0px;
        left: 14px;
        /* 添加排版样式 */
        font-family: 'Azeret Mono', monospace;
        font-size: 32px;
        font-weight: 300;
        line-height: 32px;
        text-align: left;
        margin: 0;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
    }

    /* 移动端 h2 样式调整 */
    h2 {
        transform: scale(0.67);
        transform-origin: left top;
        top: 151px;
        left: 14px;
    }

    /* 调整 launch container 在移动端的位置 */
    .launch-container {
        position: absolute;
        top: 187px;
        left: 14px;
        height: 20px;
    }

    /* 调整 hero 区域高度 */
    main.hero {
        height: 700px;
        width: 393px;
        position: relative;
        min-width: 393px;
        padding: 0;  /* 确保没有padding */
        margin: 0;   /* 确保没有margin */
        box-sizing: border-box;
    }

    /* 确保内容在新的高度内正确布局 */
    .hero-content {
        top: 110px;
        height: 100%;
        position: relative;
        padding: 0;  /* 确保没有padding */
        margin: 0;   /* 确保没有margin */
        width: 100%;
    }

    /* 调整 dots-decoration 在新高度下的位置 */
    .dots-decoration {
        position: absolute;
        top: 386px;
        left: 14px;
        transform: scale(0.45625);
        transform-origin: left top;
        overflow: hidden;
        z-index: 1;
        opacity: 1;  /* 提高整体不透明度 */
    }
    
    /* 调整视频的样式使其更亮更显眼 */
    .dots-decoration video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(1.2) contrast(1.1);  /* 增加亮度和对比度 */
        opacity: 0.95;  /* 略微调整不透明度 */
        mix-blend-mode: screen;  /* 使用混合模式让亮部更突出 */
    }

    /* 导航栏移动端样式 */
    .navbar {
        padding: 0;
        width: 100vw;
        height: 60px;
        max-width: 100vw;
        box-sizing: border-box;
        border-radius: 0;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--bg-color);
        z-index: 1001;
    }

    /* 隐藏桌面端导航链接 */
    .nav-links {
        display: none;
    }

    /* 移动端导航栏右侧容器 */
    .mobile-nav-right {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-right: 20px;
    }

    /* 移动端显示汉堡菜单图标 */
    .hamburger-menu {
        width: 32px;
        height: 32px;
        display: block;  /* 移动端显示 */
        cursor: pointer;
    }

    /* 调整 launch container 样式 */
    .nav-launch-container {
        display: flex;
        align-items: center;
        margin-right: 0;
        width: 148px;
        height: 36px;
        left: 0px;
        position: relative;  /* 添加相对定位 */
    }

    .nav-launch-text {
        position: absolute;
        top: 10px;          /* 修改定位，使文字垂直居中 */
        left: 40px;         /* 调整左边距 */
        color: #000000;
        font-family: 'Azeret Mono', monospace;
        font-size: 14px;    /* 调整字体大小 */
        font-weight: 400;
        text-transform: uppercase;
        white-space: nowrap;
    }
    
    .nav-launch-icon {
        position: absolute;
        width: 28px;        /* 调整图标大小 */
        height: 28px;
        left: 6px;          /* 调整左边距 */
        top: 4px;          /* 调整顶部边距使图标垂直居中 */
    }

    /* 保持logo可见并调整大小和位置 */
    .logo {
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 36px;
        width: auto;
    }

    /* 调整单个图片的样式和位置 */
    .group-image {
        width: 180px;
        height: 240px;
        object-fit: contain;
        position: static;  /* 移除绝对定位 */
        left: auto;  /* 清除原有的 left 值 */
    }

    .group-image-2 {
        width: 180px;
        height: 240px;
        object-fit: contain;
        position: static;  /* 移除绝对定位 */
        left: auto;  /* 清除原有的 left 值 */
    }

    /* 调整图片组的布局 */
    .group-images {
        display: flex;
        justify-content: flex-start;
        gap: 5px;
        width: 100%;
        left: 14px;
        margin-bottom: 30px;
        top: 30px;
        box-sizing: border-box;
        position: relative;  /* 添加相对定位 */
    }

    /* 调整 second-page 的位置和内边距 */
    .second-page {
        position: absolute;
        width: 100vw;
        height: 1033px;
        left: 0;
        transform: none;
        top: 700px;
        overflow: hidden;
        z-index: 1;
        padding: 0;
    }

    .background-image {
        min-width: 393px;
    }

    /* 确保内容正确显示，移除左右内边距 */
    .second-page-content {
        width: 393px;
        margin-top: 0;
        padding: 0;  /* 移除所有内边距 */
        box-sizing: border-box;
        margin: 0;
    }

    /* 调整 groupa 的布局 */
    .groupa {
        width: 365px;
        position: relative;
        top: 30px;
        left: 14px;  /* 与 group-images 保持相同的左侧距离 */
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* 调整 frame34 的位置和尺寸 */
    .frame34 {
        position: relative;
        width: 365px;  /* 修改宽度为365px */
        height: 137px; /* 修改高度为137px */
        top: 80px;    /* 保持原有位置 */
        left: 0;
        gap: 20px;
        display: flex;
        flex-direction: column;
    }

    .rectangle-240 {
        left: 87px;
        top: 40px;
    }

    .rectangle-240-2 {
        left: 298px;
        top: 54px;
    }
    /* 调整 frame34 内部元素的宽度 */
    .group-1000003329,
    .mission-text-container,
    .mission-text,
    .group-1000003330,
    .vision-text-container,
    .vision-text {
        width: 365px;  /* 修改为新的宽度 */
    }

    /* 确保 frame35 的高度正确 */
    .frame35 {
        height: 64px;
        width: 365px;
        position: relative;
    }

    .group-1000003330 {
        height: 78px;
    }

    .vision-text-container {
        height: 78px;
    }

    .vision-text {
        height: 78px;
    }

    /* 调整 divider 的位置和样式 */
    .divider {
        position: relative;
        width: 365px;  /* 与 groupa 相同宽度 */
        height: 1px;
        left: 14px;  /* 与 groupa 保持相同的左侧距离 */
        top: 621px;
        background-color: #000000;
        opacity: 0.2;
        margin: 0;
        padding: 0;
    }

    /* 调整 group-1000003328 的位置和尺寸 */
    .group-1000003328 {
        position: relative;
        width: 393px;
        height: 323px;  /* 等比例缩放后的高度 */
        top: 662px;  /* divider的top(621px) + divider高度(1px) + 间距(40px) */
        left: 0;
        transform: none;  /* 移除原有的transform */
        overflow: hidden;
        z-index: 2;
        padding: 0;
        box-sizing: border-box;
    }

    /* 调整 group-1000003328 内容的布局 */
    .group-1000003328-content {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0 14px;  /* 保持与其他内容相同的左侧间距 */
        box-sizing: border-box;
        position: relative;
    }

    /* 调整 products-title 的位置 */
    .products-title {
        position: absolute;
        width: 365px;  /* 与其他内容保持一致的宽度 */
        height: 24px;
        top: 10px;
        left: 14px;  /* 与其他内容保持一致的左侧间距 */
        font-family: 'Azeret Mono', monospace;
        font-size: 24px;
        font-weight: 300;
        line-height: 24px;
        text-align: left;
        margin: 0;
        padding: 0;
    }

    /* 调整 frame-1000003332 的位置 */
    .frame-1000003332 {
        position: absolute;
        width: auto;  /* 让宽度由内容决定 */
        height: 20px;
        top: 44px;
        left: 14px;  /* 与其他内容保持一致的左侧间距 */
        display: flex;
        gap: 6px;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    /* 调整 icon-3336 circle-button 的位置 */
    .icon-3336 {
        position: absolute;
        width: 48px;
        height: 48px;
        top: 16px;
        left: 275px;
        z-index: 2;
        cursor: pointer;
        transition: opacity 0.3s ease;
        background: #151515;
        opacity: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    /* 调整 icon-3335 circle-button 的位置 */
    .icon-3335 {
        position: absolute;
        width: 48px;
        height: 48px;
        top: 16px;
        left: 331px;
        z-index: 2;
        cursor: pointer;
        transition: opacity 0.3s ease;
        background: #151515;
        opacity: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    /* 调整 group-1000003334 的位置 */
    .group-1000003334 {
        position: absolute;
        width: 365px;  /* 与其他内容保持一致的宽度 */
        height: auto;
        top: 94px;
        left: 14px;  /* 与其他内容保持一致的左侧间距 */
        border-radius: 8px 0px 0px 0px;
        border-top: 1px solid rgba(0, 0, 0, 0);
        z-index: 2;
        display: flex;
        gap: 10px;
        transition: transform 0.5s ease;
        margin: 0;
        padding: 0;
    }

    /* 调整 group-1000003331 的尺寸 */
    .group-1000003331,
    .group-1000003332,
    .group-1000003333 {
        position: relative;
        width: 242px;
        height: 227px;
        border-radius: 8px 0px 0px 0px;
        border-top: 1px solid rgba(0, 0, 0, 0);
        z-index: 2;
        flex-shrink: 0;
    }

    /* 调整内部图片的尺寸 */
    .resources1-image,
    .resources2-image,
    .resources3-image,
    .resources3-container {
        width: 242px;
        height: 185px;
    }

    .resources1-image,
    .resources3-image {
        border: 1px solid #15151540;
    }

    /* 调整 vlog-title 的排版样式 */
    .vlog-title {
        position: absolute;
        width: 209px;
        height: 16px;
        top: 205px;
        left: 0;
        font-family: 'Azeret Mono', monospace;
        font-size: 16px;
        font-weight: 300;
        line-height: 16px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        margin: 0;
        color: #151515;
    }

    /* 调整 mocap-title 的排版样式 */
    .mocap-title {
        position: absolute;
        width: 177px;
        height: 16px;
        top: 205px;  /* 与 vlog-title 保持一致 */
        left: 0;
        font-family: 'Azeret Mono', monospace;
        font-size: 16px;
        font-weight: 300;
        line-height: 16px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        margin: 0;
        color: #151515;
    }

    /* 调整 vr-description 的排版样式 */
    .vr-description {
        position: absolute;
        width: 242px;  /* 与父容器宽度一致 */
        height: 12px;
        top: 191px;  /* 与其他 description 保持一致 */
        left: 0;
        font-family: 'Azeret Mono', monospace;
        font-size: 12px;
        font-weight: 300;
        line-height: 12px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #151515;
        opacity: 0.6;
        margin: 0;
    }

    /* 调整 resources4-image 的尺寸和位置 */
    .resources4-image {
        position: absolute;
        width: 213.06px;
        height: 106.11px;
        top: 20px;  /* 调整位置以在容器中居中 */
        left: 14px;  /* 与其他内容保持一致的左侧间距 */
        border-radius: 8px 0px 0px 0px;
        z-index: 2;
    }

    /* 调整 resources3-container 的样式以适应新的图片尺寸 */
    .resources3-container {
        position: relative;
        width: 242px;
        height: 145px;
        border-radius: 8px;
        border: 1px solid #15151566;
        overflow: hidden;
    }

    /* 调整 vr-title 的排版样式 */
    .vr-title {
        position: absolute;
        width: 167px;
        height: 16px;
        top: 205px;  /* 与其他 title 保持一致 */
        left: 0;
        font-family: 'Azeret Mono', monospace;
        font-size: 16px;
        font-weight: 300;
        line-height: 16px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        margin: 0;
        color: #151515;
    }

    /* 调整移动端按钮禁用状态的样式 */
    .icon-3336.icon-disabled,
    .icon-3335.icon-disabled {
        opacity: 0.3;
        cursor: default;
        background: rgba(21, 21, 21, 0.3);  /* 使用半透明背景 */
    }

    .key-numbers-title {
        top: 40px;
        left:14px;
    }

    /* 调整 third-page 的位置和样式 */
    .third-page {
        position: absolute;
        width: 393px;
        height: 4027px;
        top: 1733px;  /* 700px(hero) + 1033px(second-page) */
        overflow: hidden;
        z-index: 1;
        padding: 0;
    }

    /* 调整 third-page 内容的布局 */
    .third-page-content {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        position: relative;
    }

    /* 调整 approach-title 的位置和样式 */
    .approach-title {
        position: absolute;
        width: 365px;
        height: 24px;
        top: 40px;
        left: 14px;
        font-family: 'Azeret Mono', monospace;
        font-size: 24px;
        font-weight: 300;
        line-height: 24px;
        text-align: left;
        margin: 0;
        padding: 0;
    }

    /* 调整 rectangle-48 的布局 */
    .rectangle-48 {
        position: absolute;
        width: 180px;
        height: 110px;
        top: 84px;
        left: 14px;
        gap: 0;
        background-color: #141414;
        border-radius: 12px 12px 12px 12px;
        z-index: 2;
    }

    /* 调整 rectangle-48-second 的布局 */
    .rectangle-48-second {
        position: absolute;
        width: 180px;
        height: 110px;
        top: 204px;  /* 从84px改为204px，使其位于rectangle-48下方 */
        left: 14px;  /* 从199px改为14px，与rectangle-48对齐 */
        gap: 0;
        background-color: #141414;
        border-radius: 12px 12px 12px 12px;
        z-index: 2;
    }

    .rectangle-48-second .group-12-second {
        width: 122px;
        height: 20px;
        top: 12px;
        left: 12px;
        border-radius: 2px 0px 0px 0px;
        background-color: #FFFFFF29;
        z-index: 2;
        white-space: normal;
        overflow: visible;
        display: flex;
        box-sizing: border-box;
    }

    .rectangle-48-second .creators-text-second {
        display: inline-block;
        width: 141px;
        height: 24px;
        font-family: 'Azeret Mono', monospace;
        font-size: 12px;
        font-weight: 400;
        line-height: 12px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #F3F5F2;
        opacity: 0.6;
        margin: 0;
        padding: 4px 6px 4px 6px;
    }

    .rectangle-48-second-right .group-12-second {
        left: 12px;
        top: 12px;
    }

    .rectangle-48-second-right .creators-number-second {
        left: 12px;
        top: 62px;
    }

    .rectangle-48-second .creators-number-second {
        position: absolute;
        width: 125px;
        height: 32px;
        top: 62px;
        left: 12px;
        font-family: 'Azeret Mono', monospace;
        font-size: 32px;
        font-weight: 400;
        line-height: 32px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #F3F5F2;
        margin: 0;
        white-space: nowrap;
    }

    /* 调整 rectangle-49 的布局 */
    .rectangle-49 {
        position: absolute;
        width: 365px;
        height: 300px;
        top: 324px;  /* 从193px改为324px，放在rectangle-48-second(204px + 110px)的下方 */
        left: 14px;
        background-color: #141414;  /* 保持原有背景色 */
        border-radius: 12px 12px 0px 0px;  /* 保持原有圆角 */
        z-index: 2;
    }

    .group-12-third {
        left: 12px;
        top: 12px;
    }

    .users-number {
        left: 12px;
        top: 52px;
    }

    /* 移动端隐藏桌面版图表 */
    .chart-container {
        display: none;
    }

    /* 移动端图表容器样式 */
    .mobile-chart-container {
        position: absolute;
        width: 305px;  /* 调整宽度以适应内边距 */
        height: 132px;
        bottom: 30px;
        left: 30px;
        overflow: hidden;
        display: block !important;  /* 强制显示移动端图表 */
    }

    .desktop-launch-bg {
        display: none;
    }
    
    .mobile-launch-bg {
        display: block !important;
    }

    .rectangle-48-right {
        position: absolute;
        width: 180px;
        height: 110px;
        top: 84px;
        left: 199px;  /* 放在rectangle-48的右侧 */
        gap: 0;
        background-color: #141414;
        border-radius: 12px 12px 12px 12px;
        z-index: 2;
    }

    .rectangle-48-second-right {
        position: absolute;
        width: 180px;
        height: 110px;
        top: 204px;
        left: 199px;  /* 放在rectangle-48-second的右侧 */
        gap: 0;
        background-color: #141414;
        border-radius: 12px 12px 12px 12px;
        z-index: 2;
    }
}

/* 默认隐藏移动端图表 */
.mobile-chart-container {
    display: none;
}

/* 其他移动端相关样式 */
@media screen and (max-width: 768px) {
    /* 移动端图表样式 */
    .mobile-chart {
        width: 100%;
        height: 100%;
    }

    /* 移动端图表线条样式 */
    .mobile-chart-line {
        fill: none;
        stroke: #3EADE1;
        stroke-width: 2;
    }

    /* 移动端图表区域样式 */
    .mobile-chart-area {
        fill: url(#mobile-blue-gradient);
        opacity: 0.2;
    }

    /* 移动端提示框文本样式 */
    .mobile-tooltip-date,
    .mobile-tooltip-value {
        font-family: 'Azeret Mono', monospace;
        font-size: 10px;
    }

    /* 移动端垂直线样式 */
    .mobile-vertical-line {
        opacity: 1;
        stroke-width: 1;
        stroke-dasharray: 2,2;
    }

    /* 移动端提示框容器样式 */
    .mobile-tooltip-container {
        background-color: #1E1E1E;
        border-radius: 4px;
        padding: 8px;
    }
}

/* 移动菜单样式更新 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 14px;
    width: 333px;
    background-color: #000000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    gap: 40px;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    z-index: 1000;
}

/* Community 包装器的样式 */
.mobile-menu > .mobile-community-wrapper {
    margin-top: 0; /* 移除顶部边距 */
}

/* Community 下拉菜单样式 */
.mobile-community-dropdown {
    display: none;
    padding-left: 12px;  /* 从20px改为12px */
    margin-top: 30px;
}

.mobile-community-dropdown a:last-child {
    margin-bottom: 0;
}

/* 这个是关键的显示规则 */
.mobile-community-wrapper.show .mobile-community-dropdown {
    display: block;
}

/* 移除最后一个项目的底部边距 */
.mobile-menu > a:last-child,
.mobile-community-dropdown a:last-child {
    margin-bottom: 0;
}

.mobile-menu a {
    display: block;
    font-family: 'Azeret Mono', monospace;
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
    text-align: left;
    text-decoration: none;
    color: #F3F5F2; /* 浅色文字 */
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.mobile-community-dropdown a {
    font-family: 'Azeret Mono', monospace;
    font-size: 20px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 30px;
    color: #F3F5F2;
}

.mobile-menu a:last-child {
    margin-bottom: 0; /* 移除最后一个链接的底部边距 */
}

/* 显示菜单时的样式 */
.mobile-menu.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

/* 链接悬停效果 */
.mobile-menu a:hover {
    text-decoration: underline;
}

/* Community 链接的特殊样式 */
.mobile-menu a.community-link {
    display: flex;
    align-items: center;
    gap: 8px; /* 文字和图标之间的间距 */
}

/* Community 图标样式 */
.mobile-menu .community-link img.community-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease; /* 添加过渡动画 */
}

/* 当下拉菜单展开时，箭头翻转 */
.mobile-community-wrapper.show .community-link img.community-icon {
    transform: rotate(180deg);
}

/* 确保只显示深色图标 */
.mobile-menu .community-link img.light-icon {
    display: none;
}

.mobile-menu .community-link img.dark-icon {
    display: block;
}

/* Community 下拉菜单样式 */
.mobile-community-wrapper {
    position: relative;
    transition: height 0.3s ease; /* 添加高度过渡动画 */
    height: auto;
}

.mobile-community-wrapper.show {
    height: 174px; /* 设置展开时的固定高度 */
}

/* 调整原有的 community-link 样式 */
.mobile-menu .mobile-community-wrapper > .community-link {
    margin-bottom: 0; /* 移除底部边距，因为下拉菜单会显示在下方 */
}

/* 当菜单栏显示时隐藏 nav-launch-container */
.mobile-menu.show ~ .mobile-nav-right .nav-launch-container {
    display: none;
}

/* 或者可以使用这种选择器 */
.navbar:has(.mobile-menu.show) .nav-launch-container {
    display: none;
}

/* 当菜单打开时隐藏主要内容 */
.mobile-menu.show ~ main,
.mobile-menu.show ~ .second-page,
.mobile-menu.show ~ .third-page,
.mobile-menu.show ~ .forth-page,
.mobile-menu.show ~ footer,
.mobile-menu.show ~ .content-section,
.mobile-menu.show ~ .hero-section,
.mobile-menu.show ~ .features-section,
.mobile-menu.show ~ .about-section,
.mobile-menu.show ~ .contact-section,
.mobile-menu.show ~ .group-1000003328,
.mobile-menu.show ~ .academic-content {
    display: none;
}

/* 或者使用更现代的选择器 */
.navbar:has(.mobile-menu.show) ~ main,
.navbar:has(.mobile-menu.show) ~ .second-page,
.navbar:has(.mobile-menu.show) ~ .third-page,
.navbar:has(.mobile-menu.show) ~ .forth-page,
.navbar:has(.mobile-menu.show) ~ footer,
.navbar:has(.mobile-menu.show) ~ .content-section,
.navbar:has(.mobile-menu.show) ~ .hero-section,
.navbar:has(.mobile-menu.show) ~ .features-section,
.navbar:has(.mobile-menu.show) ~ .about-section,
.navbar:has(.mobile-menu.show) ~ .contact-section,
.navbar:has(.mobile-menu.show) ~ .group-1000003328,
.navbar:has(.mobile-menu.show) ~ .academic-content {
    display: none;
}

/* Product 下拉菜单样式 */
.mobile-product-wrapper {
    position: relative;
    width: 100%;
}

.mobile-product-wrapper .product-link {
    display: flex;
    align-items: center;
    width: 100%;
    color: #F3F5F2;
    text-decoration: none;
    font-family: 'Azeret Mono', monospace;
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
    cursor: pointer;
}

.mobile-product-wrapper .product-icon {
    width: 20px;
    height:20px;
    transition: transform 0.3s ease;
}

.mobile-product-wrapper.show .product-icon {
    transform: rotate(180deg);
}

.mobile-product-dropdown {
    display: none;
    padding-left: 12px;  /* 添加左侧缩进 */
}

.mobile-product-wrapper.show .mobile-product-dropdown {
    display: block;
}

.mobile-product-dropdown a {
    display: block;
    color: #F3F5F2;
    text-decoration: none;
    font-family: 'Azeret Mono', monospace;
    font-size: 20px;
    font-weight: 300;
    line-height: 20px;
    transition: background-color 0.3s;
    margin-bottom: 30px;
    margin-top: 30px;
}

.mobile-product-dropdown a:last-child {
    margin-bottom: 0;
}

/* 当导航栏在 second-page 时的样式 */
.navbar.in-second-page .mobile-product-wrapper .product-link {
    color: #151515;
}

.navbar.in-second-page .mobile-product-dropdown {
    background: rgba(0, 0, 0, 0.05);
}

.navbar.in-second-page .mobile-product-dropdown a {
    color: #151515;
}

.navbar.in-second-page .mobile-product-dropdown a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* 图标切换 */
.mobile-product-wrapper .product-icon.light-icon {
    display: none;
}

.navbar.in-second-page .mobile-product-wrapper .product-icon.dark-icon {
    display: none;
}

.navbar.in-second-page .mobile-product-wrapper .product-icon.light-icon {
    display: inline-block;
}

/* Doc 下拉菜单样式 */
.mobile-doc-wrapper {
    position: relative;
    width: 100%;
}

.mobile-doc-wrapper .doc-link {
    display: flex;
    align-items: center;
    width: 100%;
    color: #F3F5F2;
    text-decoration: none;
    font-family: 'Azeret Mono', monospace;
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
    cursor: pointer;
}

.mobile-doc-wrapper .doc-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.mobile-doc-wrapper.show .doc-icon {
    transform: rotate(180deg);
}

.mobile-doc-dropdown {
    display: none;
    padding-left: 12px;
}

.mobile-doc-wrapper.show .mobile-doc-dropdown {
    display: block;
}

.mobile-doc-dropdown a {
    display: block;
    color: #F3F5F2;
    text-decoration: none;
    font-family: 'Azeret Mono', monospace;
    font-size: 20px;
    font-weight: 300;
    line-height: 20px;
    transition: background-color 0.3s;
    margin-bottom: 30px;
    margin-top: 30px;
}

.mobile-doc-dropdown a:last-child {
    margin-bottom: 0;
}

/* 当导航栏在 second-page 时的样式 */
.navbar.in-second-page .mobile-doc-wrapper .doc-link {
    color: #151515;
}

.navbar.in-second-page .mobile-doc-dropdown {
    background: rgba(0, 0, 0, 0.05);
}

.navbar.in-second-page .mobile-doc-dropdown a {
    color: #151515;
}

.navbar.in-second-page .mobile-doc-dropdown a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* 图标切换 */
.mobile-doc-wrapper .doc-icon.light-icon {
    display: none;
}

.navbar.in-second-page .mobile-doc-wrapper .doc-icon.dark-icon {
    display: none;
}

.navbar.in-second-page .mobile-doc-wrapper .doc-icon.light-icon {
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .group-12 {
        position: absolute;
        width: 107px;
        height: 32px;
        top: 12px;
        left: 12px;
        border-radius: 2px 0px 0px 0px;
        background-color: #FFFFFF29;
        z-index: 2;
        white-space: normal;
        overflow: visible;
        display: flex;
        box-sizing: border-box;
    }

    .rectangle-48-right .group-12 {
        height: 20px;
    }

    .creators-text {
        display: inline-block;
        width: 141px;
        height: 24px;
        font-family: 'Azeret Mono', monospace;
        font-size: 12px;
        font-weight: 400;
        line-height: 12px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #F3F5F2;
        opacity: 0.6;
        margin: 0;
        padding: 4px 6px 4px 6px;
    }

    .creators-number {
        position: absolute;
        width: 125px;
        height: 32px;
        top: 62px;
        left: 12px;
        font-family: 'Azeret Mono', monospace;
        font-size: 32px;
        font-weight: 400;
        line-height: 32px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #F3F5F2;
        margin: 0;
        letter-spacing: 0;
        white-space: nowrap;
    }

    /* 弹窗遮罩层 */
    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        z-index: 2000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .modal-overlay.show {
        display: flex;
        opacity: 1;
        justify-content: center;
        align-items: center;
    }

    /* 弹窗内容 */
    .modal-content {
        width: 393px;
        height: 580px;
        background: url('Web%20Assets/back.png') no-repeat center center;
        background-size: cover;
        border-radius: 12px;
        position: relative;
        transform: translateY(20px);
        transition: transform 0.3s ease;
        overflow: hidden;
    }

    .modal-overlay.show .modal-content {
        transform: translateY(0);
    }

    /* 弹窗头部 */
    .modal-header {
        padding: 24px;
        top: 112px;
        width: 328px;
        position: absolute;
        font-family: 'Azeret Mono', monospace;
        font-size: 24px;
        font-weight: 300;
        line-height: 24px;
        color: #151515;
        white-space: nowrap;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }

    .modal-close {
        position: absolute;
        top: 24px;
        right: 24px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1;
    }

    .modal-close img {
        width: 32px;
        height: 32px;
        display: block;
    }

    /* 滑动容器 */
    .modal-slider {
        position: absolute;
        top: 216px;
        left: 0;
        width: 100%;
        height: 275px;
        display: flex;
        overflow: hidden;
    }

    .modal-slider .modal-body {
        position: absolute;
        width: 300px;
        height: 100%;
        left: 52px;
        top: 0;
        display: none;
        transition: transform 0.3s ease-in-out;
    }

    .modal-slider .modal-body.active {
        display: block;
        transform: translateX(0);
    }

    .modal-slider .modal-body.next {
        transform: translateX(100%);
    }

    .modal-slider .modal-body.prev {
        transform: translateX(-100%);
    }

    .modal-body .modal-image {
        position: absolute;
        top: 0;
        width: 300px;
        height: 180px;
    }

    .modal-body .resources3-container {
        position: absolute;
        top: 0;
        width: 298px;
        height: 180px;
        border-radius: 8px;
        border: 1px solid #15151566;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-body .resources3-container .resources4-image {
        width: 213.06px;
        height: 106.11px;
        object-fit: contain;
        margin-top: 20px;
        left: 45px;
    }

    .modal-title {
        font-family: 'Azeret Mono', monospace;
        font-size: 24px;
        font-weight: 300;
        line-height: 24px;
        color: #F3F5F2;
        margin-bottom: 16px;
    }

    .modal-sub-title {
        font-family: 'Azeret Mono', monospace;
        font-size: 16px;
        line-height: 16px;
        font-weight: 300;
        color: #151515;
        position: absolute;
        top: 192px;
        margin: 0;
    }

    .modal-description {
        font-family: 'Azeret Mono', monospace;
        font-size: 12px;
        line-height: 12px;
        font-weight: 300;
        color: #151515;
        opacity: 0.6;
        margin: 0;
        top: 232px;
        position: absolute;
    }

    /* 指示器小圆点 */
    .modal-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #15151540;
        cursor: pointer;
    }

    .dot.active {
        background: #151515;
    }

    /* 当弹窗显示时禁止页面滚动 */
    body.modal-open {
        overflow: hidden;
    }
}