/* No-click class for non-clickable menu items */
.no-click {
    cursor: auto !important;
    pointer-events: none;
}

.no-click:hover {
    text-decoration: none !important;
}

@keyframes svgAnimate {
    0% {
        transform: translate(0)
    }
    50% {
        transform: translate(0, -5px)
    }
    100% {
        transform: translate(0)
    }
}

body [aos] {
    -webkit-transition-duration: 2.5s;
    transition-duration: 2.5s;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

html.lenis,
html.lenis body {
    height: auto
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain
}

.lenis.lenis-stopped {
    overflow: unset !important
}

.lenis.lenis-scrolling iframe {
    pointer-events: none
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: opacity 0.15s ease;
    padding: 3.125vw 2.1875vw 1.25vw 2.1875vw;
    color: #fff;
    mix-blend-mode: exclusion;
    pointer-events: none;
}

.header.nav-hidden {
    pointer-events: none;
}

.header.open {
    mix-blend-mode: normal;
}

.header .box {
    position: relative;
    padding-bottom: 1.25vw;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header .box .logo {
    cursor: pointer;
    mix-blend-mode: exclusion;
    position: relative;
    z-index: 10;
    pointer-events: visible;
}

/* ===== Logo - 根据背景自动变色 ===== */
.header .box .logo img {
    width: 7.4688vw;
    display: block;
    transition: filter 0.3s ease;
    /* 默认白色（在深色背景上） */
    filter: brightness(0) invert(1);
}

/* 当 header 隐藏时（滚动到浅色背景区域），logo 变为黑色 */
.header.nav-hidden .box .logo img {
    /*filter: brightness(0) invert(0);*/
}

/* 菜单打开时 logo 恢复白色（在深色遮罩上） */
.navopen .header .box .logo img {
    filter: brightness(0) invert(1);
}

/* ===== 当页面滚动出 banner 区域，通过 JS 添加 nav-hidden 控制 ===== */
/* 如果不想用 nav-hidden，也可以用 intersection-observer 或滚动监听 */

.header_bg>.nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: rgba(254, 252, 250, 0.81);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: all ease .3s;
    padding: 0 0 50px;
}

.navopen .nav {
    opacity: 1;
    pointer-events: visible;
}

.header_bg>.nav .menu>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.header_bg>.nav .menu ul li:not(:last-child) {
    margin-bottom: .41667vw
}

.header_bg>.nav .menu ul li a {
    display: block;
    color: #000;
    letter-spacing: 1px;
    font-family: 'Tinos';
    cursor: pointer;
    padding-bottom: 30px;
    letter-spacing: 2.16px;
    font-size: 1.0416666667vw;
}

.header_bg>.nav .menu>ul>li>a {
    line-height: 1.66667vw;
    min-width: 214px;
    font-size: 1.875vw;
}

.header_bg>.nav .menu ul li .pList {
    /* display: none */
}

.header_bg>.nav .menu ul li .pList a {
    line-height: 1.25vw;
    letter-spacing: 0.5px;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.header_bg>.nav .menu ul li.on .a1 {
    text-decoration: underline
}

.header_bg>.nav .lan {
    /* margin-top: 1.25vw; */
    display: flex;
    flex-wrap: wrap;
    color: #000;
    height: 20px;
}

.header_bg>.nav .lan a {
    display: flex;
    align-items: center;
    font-family: 'Tinos';
    font-family: Tinos;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 0%;
    letter-spacing: 2.4px;
    height: 20px;
}

.header_bg>.nav .lan a p {
    font-family: 'Tinos';
    font-size: 22px;
    line-height: 20px;
    height: 20px;
}

.header_bg>.nav .lan a:not(:last-child)::after {
    content: '|';
    margin: 0 12px;
}

.nav-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 82px 47px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.navbar-toggle {
    display: none;
}

.page-join .inline-nav {
    display: none;
}

.page-join .navbar-toggle {
    display: inline-block;
    padding: 0 0;
    margin-left: 20px;
    z-index: 55;
    position: relative;
    mix-blend-mode: exclusion;
    cursor: pointer;
    pointer-events: visible;
}

/* Inline navigation (desktop) */
.inline-nav {
    display: flex;
    align-items: center;
    gap: 7vw;
    pointer-events: visible;
    flex: 1;
    justify-content: flex-end;
    margin-right: 2vw;
}

.inline-nav .nav-item {
    position: relative;
}

.inline-nav .nav-link {
    color: #fff;
    font-family: 'Tinos';
    font-size: 14px;
    letter-spacing: 2.16px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: block;
    padding: 0.5vw 0;
    transition: opacity 0.3s ease;
}

.inline-nav .nav-link:hover {
    opacity: 0.7;
}

.inline-nav .has-sub .nav-link {
    cursor: pointer;
}

.inline-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 160px;
    padding: 1vw 0 0.5vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    text-align: center;
}

.inline-nav .has-sub:hover .sub-menu,
.inline-nav .nav-item.sub-open .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    transform: translateX(-50%) translateY(0);
}

.inline-nav .sub-menu a {
    display: block;
    color: #fff;
    font-family: 'Tinos';
    font-size: 12px;
    letter-spacing: 1px;
    padding: 0.4vw 1.2vw;
    white-space: nowrap;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.inline-nav .sub-menu a:hover {
    opacity: 0.7;
}

/* ===== Floating menu button - 根据背景自动变色 ===== */
.floating-menu {
    position: fixed;
    right: 2.1875vw;
    top: 3.125vw;
    z-index: 105;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, mix-blend-mode 0.3s ease;
    pointer-events: none;
    mix-blend-mode: exclusion;
}

.floating-menu.visible {
    pointer-events: visible;
}

.floating-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    margin: 14px 0;
    transition: background-color 0.3s ease, transform 0.4s;
}

/* 滚动出 banner 后变为黑色（在浅色背景上） */
.floating-menu.visible {
    mix-blend-mode: normal;
}

.floating-menu.visible span {
    background-color: #000;
}

/* 菜单打开时恢复白色（在深色遮罩上） */
.navopen .floating-menu {
    mix-blend-mode: exclusion !important;
}

.navopen .floating-menu span {
    background-color: #fff !important;
}

/* 菜单打开时的汉堡动画 */
.navopen .floating-menu .line-top {
    -webkit-transform: rotate(45deg) translate(4px, 7px);
    transform: rotate(45deg) translate(4px, 7px);
}

.navopen .floating-menu .line-bottom {
    -webkit-transform: rotate(-45deg) translate(4px, -7px);
    transform: rotate(-45deg) translate(4px, -7px);
}

/* ===== navbar-toggle 保留原有样式 ===== */
.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    margin: 14px 0;
    transition: 0.4s;
}

.navopen .line-top {
    -webkit-transform: rotate(45deg) translate(4px, 7px);
    transform: rotate(45deg) translate(4px, 7px);
}

.navopen .line-bottom {
    -webkit-transform: rotate(-45deg) translate(4px, -7px);
    transform: rotate(-45deg) translate(4px, -7px);
}

.fixed_links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 42px;
    transition: .6s ease
}

.fixed_links.on {
    opacity: 0
}

.fixed_links .icon {
    width: 20px;
    height: 20px
}

.fixed_links .icon svg {
    max-width: 100%;
    max-height: 100%
}

.fixed_links .icon svg path {
    fill: #000;
}

.fixed_links .icon img {
    max-width: 100%;
    max-height: 100%;
}

.header .back {
    position: fixed;
    right: .88542vw;
    top: 3.22917vw;
    display: flex;
    align-items: center;
    color: #fff;
    letter-spacing: 1px
}

.header .back svg {
    width: 1.04167vw;
    display: block;
    margin-right: .52083vw;
    transition: all 600ms
}

.header .back:hover svg {
    transform: translateX(-.52083vw)
}

.pheader {
    display: none;
    position: fixed;
    top: 0;
    height: 60px;
    width: 100%;
    left: 0;
    z-index: 100;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1)
}

.pheader .menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #fff
}

.pheader .menu .l {
    display: flex;
    align-items: center
}

.pheader .menu .l a {
    margin-left: 20px;
    display: flex;
    align-items: center
}

.pheader .menu .l a img {
    height: 30px;
    object-fit: contain
}

.pheader .menu .l a p {
    margin-left: 10px;
    font-size: 14px
}

.pheader .menu .navbox {
    margin-right: 20px;
    transition: all 600ms
}

.pheader .menu .navbox .line {
    width: 30px;
    height: 1px;
    background-color: #000;
    margin: 8px 0;
    -webkit-transition: all .6s;
    transition: all .6s
}

.pheader .menu .activeBox {
    transform: translateX(10px)
}

.pheader .menu .activeBox .line:nth-child(1) {
    transform: rotate(45deg) translateY(12px)
}

.pheader .menu .activeBox .line:nth-child(2) {
    transform: translateX(30px);
    opacity: 0
}

.pheader .menu .activeBox .line:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px)
}

.menuList {
    position: fixed;
    left: 0;
    top: 59px;
    width: 100%;
    z-index: 1001;
    background: #ececec;
    display: none;
    height: calc(100vh - 59px)
}

.menuList .lan {
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.menuList .lan a {
    color: #646464;
    margin-left: 10px
}

.menuList .lan .active {
    font-weight: bolder;
    color: #000000
}

.menuList .item {
    padding: 1rem;
    background: #ececec;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05)
}

.menuList .item a {
    color: #000;
    display: block;
    position: relative;
    /*font-family: 'VELISTA'*/
    font-family: "Tinos";
}

.menuList .item .types_top a {
    font-family: "The Erupha Scale Slant";
}

.menuList .item a img {
    position: absolute;
    right: 0;
    width: 20px;
    transition: all 600ms;
    top: 5px
}

.menuList .item a .icon2 {
    position: static;
    width: auto;
    margin-right: 10px
}

.menuList .item a .rotate {
    transform: rotate(90deg)
}

.menuList .item .tb {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.menuList .item .tb a {
    display: block
}

.menuList .item .tb img {
    width: 30px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: all 600ms
}

.menuList .item .tb .rotate {
    transform: translateY(-50%) rotate(90deg)
}

.menuList .item .types_top {
    display: none
}

.menuList .item .types_top a {
    font-size: 14px;
    margin-top: 15px
}

.activeList {
    transform: translateY(0)
}

.foot {
    border-top: 1px solid #272727;
    padding: 73px 48px 57px;
}

.foot .dom1 {
    display: flex;
    justify-content: space-between
}

.foot .dom1 .links {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
}

.foot .dom1 .links .a1 {
    font-weight: 700;
    font-family: 'Tinos';
}

.foot .dom1 .links a {
    color: #272727;
    letter-spacing: 1px;
    width: fit-content;
    font-family: 'Tinos';
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 5.5%;
    text-underline-offset: 16%;
    text-underline-position: from-font;
    display: block;
    line-height: 1.14;
    margin: 0 auto;
    min-width: 7.031vw;
}

.foot .dom1 .links a:not(:last-child) {
    margin-bottom: 10px;
}

.foot .dom1 .r .media {
    display: flex
}

.foot .dom1 .r .media a:not(:last-child) {
    margin-right: 1.14583vw
}

.foot .dom1 .r .media a img {
    width: 1.04167vw;
    opacity: .5;
    transition: all 600ms
}

.foot .dom1 .r .media a:hover img {
    opacity: 1
}

.foot .follow {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Tinos';
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    display: none;
}

.footer01_r  .sharelist {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 35px;
}

.footer01_r  .sharelist .ev {
    width: 30px;
    height: 30px;
}

.footer01_r  .sharelist .ev img {
    width: 100%;
    ;
}

.foot .copyright {
    width: 100%;
    margin-top: 60px;
    text-align: right;
}

.foot .copyright a {
    text-decoration: underline;
}

.home {
    position: relative;
}

.goTop {
    position: absolute;
    right: 50px;
    bottom: 284px;
    z-index: 10;
    cursor: pointer;
    transition: all 600ms;
    opacity: 0;
    transform: translateY(4.16667vw);
    /* mix-blend-mode: exclusion; */
}

.goTop svg {
    width: 38px
}

.goTop.show {
    opacity: 1;
    transform: translateY(0)
}

@media screen and (max-width: 1024px) {
    .header {
        display: none
    }
    .inline-nav {
        display: none;
    }
    .floating-menu {
        display: none;
    }
    .pheader {
        display: flex;
        background: #fff;
    }
    .goTop {
        right: 5%;
        bottom: 10%
    }
    .goTop svg {
        width: 15px
    }
    .foot {
        padding: 15px 5%
    }
    .foot .dom1 {
        flex-direction: column
    }
    .foot .dom1 .links {
        display: none
    }
    .foot .dom1 .r .media {
        justify-content: center
    }
    .foot .dom1 .r .media a:not(:last-child) {
        margin-right: 11px
    }
    .foot .dom1 .r .media a img {
        width: 20px
    }
    .footer01_r  .sharelist {
        gap: 25px;
        justify-content: center;
    }
    .foot .follow {
        display: block;
        margin-top: 10px;
        letter-spacing: 0.5px;
    }
    .footer01_r  .sharelist .ev {
        width: 18.55px;
        height: 18.55px;
    }
    .foot .copyright {
        width: 100%;
        margin-top: 25px;
        font-size: 10px;
        text-align: center;
        color: #949494;
        padding-bottom: 15px;
    }
    .foot .copyright a {
        font-size: 9px;
        text-decoration: underline;
        display: flex;
        justify-content: center;
        color: #949494 !important;
        margin-top: 4px;
    }
}