.header {
    background: #1d1d1d url(https://yh.wanmei.com/images/cover240718/header.png) no-repeat right top;
    background-size: auto 125%;
    color: #aaaaaa;
    padding: 0 1.56vw 0 6.77vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.43vw;
    position: sticky;
    top: 0;
    z-index: 99;
}

.header .logo img {
    width: 4.69vw;
}

.header ul.menu {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.header ul.menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 9.38vw;
    height: 4.43vw;
    font-size: 0.94vw;
}

.header ul.menu a:hover {
    color: white;
}

.header ul.menu li.active a {
    color: var(--themeColor);
}

/* 修改：哥 2026-08-11 本地已删除 header-active.png，注释整条 active 下划线规则（铁律：仅注释不删原码）
.header ul.menu li.active a::after {
    content: "";
    position: absolute;
    top: 100%;
    width: 100%;
    height: 3.65vw;
    background-image: url(../images/header-active.png);
    background-position: bottom center;
    background-size: 100% auto;
}
*/


.header a.aki-music img {
    width: 2.71vw;
    height: 2.71vw;
}

.header a.aki-music img.open,
.header a.aki-music.active img.close {
    display: none;
}

.header a.aki-music img.close,
.header a.aki-music.active img.open {
    display: block;
}


/* 首页样式 */
.index-banner {
    position: relative;
}

.index-banner video {
    display: block;
    width: 100%;
    height: calc(100vh - 4.43vw);
    object-fit: cover;
}

/* 修改：哥要求将 indexNet.png 放大一倍并偏移；三次微调 left≈80px、bottom≈120px（2026-07-31） */
/*
.index-banner img.indexNet {
    position: absolute;
    left: 2.60vw;
    bottom: 6.25vw;
    z-index: 2;
    width: 8.96vw;
    height: auto;
}
*/
/* 新增开始 */
.index-banner img.indexNet {
    position: absolute;
    left: 4.17vw;
    /* 修改：哥要求下边距改为 120px（2026-07-31） */
    bottom: 6.25vw;
    z-index: 2;
    width: 17.92vw;
    height: auto;
}
/* 新增结束 */

.index-banner .guide {
    position: absolute;
    right: 1.56vw;
    bottom: 6.25vw;
    z-index: 2;
}

.index-banner .guide img {
    height: 3.44vw;
    width: auto;
}

.index-banner .guide:hover img {
    transform: scale(1.05);
}

.index-banner .content-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10.42vw;
    z-index: 2;
}

.index-banner .content-box a.link1 {
    display: block;
    width: 28.85vw;
    height: 7.66vw;
    background-image: url(../images/banner-link11.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.index-banner .content-box a.link1:hover {
    background-image: url(../images/banner-link12.png);
    transform: scale(1.05);
}

.index-banner .content-box a.link2 {
    position: absolute;
    /* 修改：哥要求 link2 按钮在上一版(往左8/往上8)基础上再往右5px（2026-08-01） */
    /* right: -3.65vw; */
    /* top: -3.13vw; */
    /* 新增开始 */
    right: -2.19vw;
    top: 1.13vw;
    /* 新增结束 */
    width: 7.81vw;
    height: 5.21vw;
    background-image: url(../images/banner-link21.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
}

.index-banner .content-box a.link2:hover {
    background-image: url(../images/banner-link22.png);
}

.index-banner .content-box a.link2 img {
    width: 2.50vw;
    height: 2.50vw;
    animation: aki 1s linear infinite;
    transition: none;
}

.index-banner .content-box a.link2:hover img {
    display: none;
}

@keyframes aki {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5.21vw;
    /* 修改：index 页底部需覆盖 indexNet 等 absolute 元素（哥 2026-08-05 深夜） */
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1d1d1d url(../images/footer.png) no-repeat bottom center;
    background-size: auto 100%;
    padding: 0 1.56vw 0 2.34vw;
}

.footer .app-all {
    display: flex;
    align-items: center;
}

.footer .app-all a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.60vw;
    height: 2.60vw;
    border-radius: 50%;
    border: 0.15vw solid #c1c1c1;
    margin-right: 0.78vw;
    color: #c1c1c1;
}

.footer .app-all a:hover {
    color: var(--themeColor);
    border-color: var(--themeColor);
}

.footer .app-all a .iconfont {
    font-size: 1.56vw;
}

.footer .neverness img {
    height: 3.33vw;
    width: auto;
}

.footer .neverness:hover img {
    transform: scale(1.05);
}



/* 角色介绍 */
.page-character {
    position: relative;
    height: calc(100vh - 4.43vw);
    overflow: hidden;
}

.page-character .swiper-slide {
    position: relative;
}

.page-character video {
    display: block;
    width: 100%;
    height: calc(100vh - 4.43vw);
    object-fit: cover;
}

.page-character .aki-item {
    position: absolute;
    bottom: 6.77vw;
    left: 0;
    width: 45.31vw;
    z-index: 2;
}

.page-character .aki-item .b-title {
    position: relative;
    margin-bottom: 3.65vw;
    margin-left: 11.98vw;
}

.page-character .swiper-slide-active .aki-item .b-title {
    animation: bounceInLeft 1s ease both;
}

.page-character .aki-item .b-title .img1 {
    height: 6.25vw;
    width: auto;
}

.page-character .aki-item .b-title .img2 {
    height: 2.71vw;
    width: auto;
    position: absolute;
    top: 0.10vw;
    left: 13.02vw;
}

.page-character .aki-item .name img {
    height: 9.48vw;
    width: auto;
    margin-left: 11.98vw;
}

.page-character .swiper-slide-active .aki-item .name {
    animation: bounceInLeft 1s ease 0.2s both;
}

.page-character .aki-item .lines img {
    height: 4.17vw;
    width: auto;
    margin-left: 11.77vw;
    margin-top: 1.56vw;
}

.page-character .swiper-slide-active .aki-item .lines {
    animation: bounceInLeft 1s ease 0.3s both;
}

.page-character .aki-item .content {
    position: relative;
    margin-top: 1.04vw;
    border-top: 0.05vw solid #636363;
    padding: 0.52vw 0 0.52vw 11.98vw;
    color: #afafaf;
    line-height: 1.5;
    font-size: 0.73vw;
    height: 4.38vw;
}

.page-character .swiper-slide-active .aki-item .content {
    animation: bounceInLeft 1s ease 0.4s both;
}

.page-character .aki-item .content::before {
    content: "";
    position: absolute;
    top: -0.78vw;
    left: 9.64vw;
    background-image: url(../images/roleDesSwitch.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
    width: 1.56vw;
    height: 1.56vw;
    z-index: 5;
}

.page-character .aki-item .content:hover::before {
    background-position: bottom center;
}

.page-character .aki-item .content:hover .box {
    padding: 2.60vw 1.56vw;
    -webkit-line-clamp: 10;
    background: #212121;
    border: 0.05vw solid #636363;
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 10.42vw);
}

@keyframes bounceInLeft {

    0%,
    100%,
    60%,
    75%,
    90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-156.25vw, 0, 0);
        -ms-transform: translate3d(-156.25vw, 0, 0);
        transform: translate3d(-156.25vw, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(1.30vw, 0, 0);
        -ms-transform: translate3d(1.30vw, 0, 0);
        transform: translate3d(1.30vw, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-0.52vw, 0, 0);
        -ms-transform: translate3d(-0.52vw, 0, 0);
        transform: translate3d(-0.52vw, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(0.26vw, 0, 0);
        -ms-transform: translate3d(0.26vw, 0, 0);
        transform: translate3d(0.26vw, 0, 0)
    }

    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

/* 角色介绍小图 */
.page-character .swiper_small {
    position: absolute;
    left: 11.98vw;
    bottom: 2.60vw;
    width: 26.98vw;
    z-index: 10;
}

.page-character .swiper_small .role {
    width: 100%;
    height: 3.91vw;
    background-image: url(../images/role_bullet1.png);
    background-repeat: no-repeat;
    background-size: 100% 200%;
    background-position: top center;
    cursor: pointer;
}

.page-character .swiper_small .role2 {
    background-image: url(../images/role_bullet2.png);
}

.page-character .swiper_small .role3 {
    background-image: url(../images/role_bullet3.png);
}

.page-character .swiper_small .role:hover,
.page-character .swiper_small .swiper-slide-thumb-active .role {
    background-position: bottom center;
}



/* 都市映像 */
.page-city {
    position: relative;
    height: calc(100vh - 4.43vw);
    overflow: hidden;
    background: url(../images/page_city.jpg) no-repeat center center;
    background-size: cover;
}

.page-city .tape {
    position: absolute;
    top: 1.25vw;
    left: 12.50vw;
    width: 52.81vw;
    height: 31.88vw;
    z-index: 1;
    perspective: 104.17vw;
}

.page-city .tape .tapeA,
.page-city .tape .tapeB {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/tape.png) no-repeat;
    background-size: 100% 200%;
    background-position: top center;
    transition: all 1s ease;
    backface-visibility: hidden;
}

.page-city .tape .tapeB {
    background-position: bottom center;
}

.page-city .tape .tapeB {
    transform: rotateY(180deg);
    opacity: 0;
}

.page-city .tape.active .tapeA {
    transform: rotateY(-180deg);
    opacity: 0;
}

.page-city .tape.active .tapeB {
    transform: rotateY(0deg);
    opacity: 1;
}

.page-city .tape .tapeA::before,
.page-city .tape .tapeA::after,
.page-city .tape .tapeB::before,
.page-city .tape .tapeB::after {
    content: "";
    position: absolute;
    left: 9.17vw;
    top: 10.31vw;
    width: 8.13vw;
    height: 8.13vw;
    background: url(../images/tapeAxle.png) no-repeat;
    background-size: 100% 200%;
    background-position: top center;
    animation: tapeRotate 6s linear infinite;
}

.page-city .tape .tapeA::after {
    left: unset;
    right: 8.65vw;
}

.page-city .tape .tapeB::before {
    background-position: bottom center;
}

.page-city .tape .tapeB::after {
    background-position: bottom center;
    left: unset;
    right: 8.65vw;
}

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

    to {
        transform: rotate(-360deg);
    }
}


/* 欢迎词 */
.page-city .tape .wel {
    position: absolute;
    right: -15.63vw;
    top: 2.86vw;
}

.page-city .tape .wel img {
    height: 4.17vw;
}

.page-city .tape .wel .img1,
.page-city .tape.active .wel .img2 {
    display: block;
}

.page-city .tape .wel .img2,
.page-city .tape.active .wel .img1 {
    display: none;
}

.page-city .content-box {
    position: absolute;
    top: 9.27vw;
    right: 9.38vw;
    z-index: 3;
}

.page-city .content-box .aki-lbt {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.page-city .content-box .aki-lbt::after {
    content: "";
    position: absolute;
    top: -2.71vw;
    right: -1.67vw;
    width: 18.49vw;
    height: 16.67vw;
    background-image: url(../images/tapeA_ornament2.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.page-city .content-box .aki-lbt.active::after {
    background-image: url(../images/tapeB_ornament2.png);
}

.page-city .content-box .akiswiper {
    width: 55.21vw;
    border: 0.52vw solid #585858;
    margin: 0 0.78vw;
}

.page-city .content-box .akiswiper a img.thumb {
    width: 100%;
    height: 25vw;
}

.page-city .content-box .akiswiper a img.num,
.page-city .content-box .akiswiper a img.title {
    display: none;
}

.page-city .aki-lbt .swiper-button-prev::after,
.page-city .aki-lbt .swiper-button-next::after {
    display: none;
}

.page-city .aki-lbt .swiper-button-prev,
.page-city .aki-lbt .swiper-button-next {
    margin: 0;
    border-radius: 0 !important;
    position: static;
    width: 3.65vw;
    height: 12.92vw;
    background: url(../images/citySlidePrev.png) no-repeat;
    background-size: 200% 200%;
    background-position: top left;
}

.page-city .aki-lbt .swiper-button-next {
    background-image: url(../images/citySlideNext.png);
}

.page-city .aki-lbt .swiper-button-prev:hover,
.page-city .aki-lbt .swiper-button-next:hover {
    background-position: top right;
}

.page-city .aki-lbt.active .swiper-button-prev,
.page-city .aki-lbt.active .swiper-button-next {
    background-position: bottom left;
}

.page-city .aki-lbt.active .swiper-button-prev:hover,
.page-city .aki-lbt.active .swiper-button-next:hover {
    background-position: bottom right;
}

.page-city .aki-lbt .swiper-pagination {
    position: absolute;
    top: calc(100% + 5.99vw);
    left: 0;
    right: unset;
    bottom: unset;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-city .aki-lbt .swiper-pagination span {
    margin: 0 0.42vw;
    display: block;
    width: 3.85vw;
    height: 0.63vw;
    border: 0.05vw solid white;
    opacity: 1;
    background: none;
    border-radius: 0;
    transition: all 0.2s ease;
}

.page-city .aki-lbt .swiper-pagination span.swiper-pagination-bullet-active {
    background: white;
}


.page-city .aki-lbt .aki-txt {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
}

.page-city .aki-lbt .aki-txt .num {
    position: absolute;
    top: -1.25vw;
    right: calc(100% - 2.19vw);
    width: 14.27vw;
}

.page-city .aki-lbt .aki-txt .num img {
    width: 100%;
    height: auto;
}

.page-city .aki-lbt .aki-txt .title img {
    height: 4.43vw;
    width: auto;
    margin: 0.42vw 0 0 4.43vw;
}

/* 新增开始：产品中心卡片列表（哥 2026-08-05），仅 products.html 使用 */
.page-city .ww-product-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5vw;
}
.page-city .ww-product-card {
    position: relative;
    width: 14vw;
    height: 18vw;
    background: #f5f5f5;
    border-radius: 1vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1vw;
    box-sizing: border-box;
    transition: background 0.3s;
}
.page-city .ww-product-card:hover {
    background: #ffffff;
}
.page-city .ww-product-card .ww-card-image {
    width: 100%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.page-city .ww-product-card .ww-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* 修改：文字位置调整到图标下方适中位置（哥 2026-08-05） */
.page-city .ww-product-card .ww-card-info {
    width: 100%;
    text-align: center;
    margin-top: 1.8vw;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.page-city .ww-product-card .ww-card-info .ww-card-tag {
    font-size: 0.9vw;
    color: #666666;
    margin: 0 0 0.3vw;
}
.page-city .ww-product-card .ww-card-info .ww-card-name {
    font-size: 1.05vw;
    color: #1a1a1a;
    margin: 0;
}
.page-city .ww-product-card .ww-card-btn {
    position: absolute;
    left: 50%;
    bottom: 1.5vw;
    transform: translateX(-50%) translateY(120%);
    opacity: 0;
    width: calc(100% - 2vw);
    height: 2.8vw;
    line-height: 2.8vw;
    text-align: center;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 1.4vw;
    font-size: 0.9vw;
    text-decoration: none;
    transition: all 0.3s ease;
}
.page-city .ww-product-card:hover .ww-card-info {
    transform: translateY(-2vw);
    opacity: 0;
}
.page-city .ww-product-card:hover .ww-card-btn {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.page-city .ww-product-card .ww-card-btn:hover {
    background: #7CECFC;
    color: #000000;
}

/* 产品中心分类容器（哥 2026-08-05） */
.page-city .ww-product-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    z-index: 2;
}
/* 分类 Tab */
.page-city .ww-category-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2vw;
}
.page-city .ww-category-tabs a {
    display: block;
    padding: 0.42vw 1.5vw;
    font-size: 0.95vw;
    color: #999999;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2vw;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.page-city .ww-category-tabs a:hover,
.page-city .ww-category-tabs a.active {
    color: #000000;
    background: #7CECFC;
    border-color: #7CECFC;
}
/* 修改：面板容器宽度改回按卡片内容撑开，避免 14vw×18vw 的卡片被压窄（哥 2026-08-05） */
.page-city .ww-product-panels {
    position: relative;
    width: auto;
    min-height: 18vw;
}
.page-city .ww-product-panel {
    display: none;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
}
.page-city .ww-product-panel.active {
    display: block;
}
/* 占位图（无产品图时使用） */
.page-city .ww-product-card .ww-card-image .ww-placeholder {
    width: 60%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3vw;
    color: #cccccc;
    background: #f0f0f0;
    border-radius: 0.6vw;
}
/* 新增结束 */


/* 都市映像 */
.page-intelligence {
    position: relative;
    height: calc(100vh - 4.43vw);
    overflow: hidden;
    background: url(../images/page_bg.jpg) no-repeat center center;
    background-size: cover;
    padding-left: 15.63vw;
}

.page-intelligence .intelligence-title {
    display: flex;
    align-items: center;
    margin-top: 2.34vw;
}

.page-intelligence .intelligence-title .img1,
.page-intelligence .intelligence-title .img3 {
    height: 2.92vw;
    margin-right: 1.04vw;
}

.page-intelligence .intelligence-title .img2 {
    height: 5.21vw;
    margin-right: 1.04vw;
}


.intelligence-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    height: 19.79vw;
    margin-top: 0.78vw;
    background-image: url(../images/intelPlate.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


/* 装饰图1 */
.intelligence-content img.zs1 {
    position: absolute;
    top: 0.31vw;
    left: -0.78vw;
    height: 0.94vw;
    width: auto;
}

/* 装饰图2 */
.intelligence-content img.zs2 {
    position: absolute;
    top: 0;
    left: 48.44vw;
    height: 1.67vw;
    width: auto;
}

.intelligence-content .left-sec {
    position: relative;
    left: -4.17vw;
    top: 1.82vw;
    z-index: 2;
    width: 40.63vw;
    height: 100%;
    background-image: url(../images/intelSlides.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 0.52vw 1.82vw;
}

.intelligence-content .left-sec .akiswiper {
    background: #ddd;
}

.intelligence-content .left-sec .akiswiper a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.intelligence-content .right-sec {
    width: calc(100% - 40.63vw);
    color: #313131;
    position: relative;
    padding-bottom: 0.52vw;
}

.intelligence-content .right-sec .item {
    display: none;
}

.intelligence-content .right-sec .item.active {
    display: block;
}

.intelligence-content .right-sec .title {
    margin-top: 3.65vw;
    font-size: 2.08vw;
    font-weight: bold;
}

.intelligence-content .right-sec .title span {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    padding-right: 2.60vw;
    padding-bottom: 0.52vw;
}

.intelligence-content .right-sec .title span::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% + 5.21vw);
    height: 0.10vw;
    background: #313131;
}

.intelligence-content .right-sec .desc {
    font-size: 0.73vw;
    margin-top: 0.78vw;
    line-height: 1.5;
    width: 22.66vw;
}

.intelligence-content .right-sec .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 8.59vw;
    height: 1.04vw;
    margin-top: 0.52vw;
    background: #313131;
    color: #b1b1b1;
    font-size: 0.73vw;
    padding: 0 0.52vw;
}

.intelligence-content .right-sec .btn .iconfont {
    font-size: 0.73vw;
}

.intelligence-content .right-sec .btn:hover {
    background: #e8e8e8;
    color: #313131;
}

.intelligence-content .right-sec .time {
    font-size: 1.88vw;
    margin-top: 4.17vw;
    font-weight: bold;
}

.intelligence-content .right-sec .btn-all {
    position: absolute;
    left: 15.36vw;
    bottom: 0;
    display: flex;
    align-content: center;
    gap: 0.31vw;
}

.intelligence-content .right-sec .btn-all .swiper-button-prev::after,
.intelligence-content .right-sec .btn-all .swiper-button-next::after {
    display: none;
}

.intelligence-content .right-sec .btn-all .swiper-button-prev,
.intelligence-content .right-sec .btn-all .swiper-button-next {
    margin: 0;
    position: static;
    background: #313131;
    width: 3.44vw;
    height: 2.50vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--themeColor);
    border-radius: 1.30vw 0 0 1.30vw;
    transition: all 0.2s ease;
}

.intelligence-content .right-sec .btn-all .iconfont {
    font-size: 1.15vw;
    transform: rotate(180deg);
}

.intelligence-content .right-sec .btn-all .swiper-button-next {
    transform: rotate(180deg);
}

.intelligence-content .right-sec .btn-all .swiper-button-prev:hover,
.intelligence-content .right-sec .btn-all .swiper-button-next:hover {
    color: var(--themeColor);
    background: #ff5995;
}


.intelligence-title2 {
    margin: 2.60vw 0 0 0.78vw;
}

.intelligence-title2 img {
    height: 6.51vw;
    width: auto;
}

.page-intelligence .swiper-pagination {
    position: absolute;
    left: 0;
    bottom: 4.95vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.34vw;
}

.page-intelligence .swiper-pagination span {
    margin: 0 0.42vw !important;
    display: block;
    width: 3.85vw;
    height: 0.63vw;
    border: 0.05vw solid white;
    opacity: 1;
    background: none;
    border-radius: 0;
    transition: all 0.2s ease;
}

.page-intelligence .swiper-pagination span.swiper-pagination-bullet-active {
    background: var(--themeColor);
    border-color: var(--themeColor);
}


/* 角色介绍 */
.page-join {
    position: relative;
    background-image: url(../images/articlePage.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: calc(100vh - 4.43vw);
    overflow: hidden;
}

.page-join .join-main {
    padding-top: 9.64vw;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.page-join .aki-container {
    margin: auto;
    width: 50vw;
}

.page-join .join-title {
    position: relative;
}

.page-join .join-title img.bg {
    width: 100%;
    height: auto;
}

.page-join .join-title h1 {
    position: absolute;
    left: 8.85vw;
    bottom: 3.13vw;
    font-size: 2.08vw;
}

.page-join .join-title .route {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2.60vw;
    z-index: 2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.56vw;
    font-size: 1.04vw;
}

.page-join .join-title .route .link {
    display: flex;
    align-items: center;
}

.page-join .join-title .route .iconfont {
    font-size: 0.73vw;
    margin: 0 0.52vw;
}

.page-join .join-title .route a:hover {
    color: var(--themeColor);
}

.page-join .content-box {
    margin-top: 2.08vw;
    position: relative;
}

.page-join .content-box .title {
    position: absolute;
    right: calc(100% + 1.04vw);
    top: 0;
    width: 8.23vw;
}

.page-join .content-box .title img {
    width: 100%;
    height: auto;
}

.page-join .content-box .thumb {
    padding: 0 0.78vw 4.17vw;
    color: #313131;
}

.page-join .content-box .thumb img {
    width: 100%;
    margin: auto;
}

.page-join .content-box .thumb p {
    margin-bottom: 0.78vw;
    font-size: 0.83vw;
    line-height: 1.5;
}

.page-join .content-box .thumb p:last-child {
    margin: 0;
}

.page-join .content-box .thumb a:hover {
    text-decoration: underline !important;
}

/* ============================================================
   新增开始：移动端适配（2026-08-01，A+B 方案）
   说明：以下所有规则均包裹在 max-width 媒体查询内。
   PC 端（视口宽度 >1024px）完全不触发，因此不修改任何原有规则，
   桌面排版 100% 保持原样。仅手机/平板宽度下生效。
   A 层：基础可读可点（header/footer/视频/按钮尺寸放大）
   B 层：移动端布局重构（居中重排、按钮堆叠、触控优化、隐藏横向溢出）
   ============================================================ */

/* ---------- 平板 / 横屏手机 (<=1024px) ---------- */
@media (max-width: 1024px) {
    .header {
        height: 56px;
        padding: 0 12px;
    }
    .header .logo img {
        width: 36px;
    }
    .header ul.menu a {
        width: auto;
        height: 56px;
        padding: 0 8px;
        font-size: 14px;
    }
    .header a.aki-music img {
        width: 30px;
        height: 30px;
    }
    .index-banner video {
        height: calc(100vh - 56px);
    }
    .footer {
        height: 56px;
        padding: 0 12px;
    }
    .footer .app-all a {
        width: 34px;
        height: 34px;
        margin-right: 8px;
    }
    .footer .app-all a .iconfont {
        font-size: 20px;
    }
    .footer .neverness img {
        height: 34px;
    }
}

/* ---------- 手机 (<=768px) ---------- */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .header {
        height: 50px;
        padding: 0 10px;
    }
    .header .logo img {
        width: 30px;
    }
    /* 修改：导航栏横排一行不折行，字号缩小适配手机屏幕 */
    .header ul.menu {
        flex-wrap: nowrap;
    }
    .header ul.menu a {
        display: block;
        width: auto;
        height: 50px;
        line-height: 50px;
        padding: 0 4px;
        font-size: 10px;
        white-space: nowrap;
    }
    .header a.aki-music img {
        width: 26px;
        height: 26px;
    }
    /* B层：首屏视频填满（减去 header/footer 高度） */
    .index-banner video {
        height: calc(100vh - 50px);
    }
    /* B层：左下角 logo 贴图缩小并重定位，避开底部 footer */
    .index-banner img.indexNet {
        width: 100px;
        left: 12px;
        bottom: 100px;
    }
    /* B层：右下角"角色介绍"按钮放大并重定位 */
    .index-banner .guide {
        right: 10px;
        bottom: 100px;
    }
    .index-banner .guide img {
        height: 38px;
    }
    /* B层：中部按钮组改为居中整宽布局，按钮放大到可触控尺寸 */
    /* 修改：link1 移到屏幕中下部(红框位置) + 放大 + 居中 */
    .index-banner .content-box {
        bottom: auto;
        top: 55%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }
    .index-banner .content-box a.link1 {
        width: 82vw;
        max-width: 400px;
        height: 22vw;
        max-height: 110px;
        margin: 0 auto;
        background-size: 100% 100%;
    }
    .index-banner .content-box a.link2 {
        right: auto;
        left: 50%;
        top: 50%;
        transform: translate(calc(-50% + 138px), calc(-50% + 12px));
        width: 85px;
        height: 85px;
        background-size: contain;
    }
    .index-banner .content-box a.link2 img {
        width: 42px;
        height: 42px;
    }
    /* B层：底部改为——上行 icon(左)+neverness(右)，下行 footer2 背景(各占一半高度) */
    .footer {
        height: 90px;
        padding: 0 10px;
        flex-direction: column;
        justify-content: flex-end;
        position: relative;
        /* 修改：手机版背景图改用 footer2.png，PC 版保持 footer.png 不变 */
        background-image: url(../images/footer2.png);
        background-size: 100% 50%;
        background-position: center bottom;
        background-repeat: no-repeat;
    }
    /* 🔴 红框：icon 社交图标组（左上，占上半区）*/
    .footer .app-all {
        position: absolute;
        top: 8px;
        left: 10px;
        justify-content: flex-start;
    }
    .footer .app-all a {
        width: 30px;
        height: 30px;
        margin-right: 5px;
    }
    .footer .app-all a .iconfont {
        font-size: 17px;
    }
    /* 🔵 蓝框：neverness 角色（右上，占上半区）*/
    .footer .neverness {
        position: absolute;
        top: 6px;
        right: 10px;
        display: flex;
    }
    .footer .neverness img {
        height: 32px;
    }
    /* B层：触控优化 */
    a,
    button {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}
/* 新增结束 */

/* 新增开始：index 页 footer 社交图标「个人频道（独立）」同款 hover 动画
   默认保持一排圆形图标，hover 时圆环层叠扩散 + 文字从底部浮出（哥 2026-08-05） */
.footer .app-all div.ww-social-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.60vw;
    height: 2.60vw;
    border-radius: 50%;
    border: 0.15vw solid #c1c1c1;
    margin-right: 0.78vw;
    color: #c1c1c1;
    background: transparent;
    text-decoration: none;
    box-sizing: border-box;
}
.footer .app-all div.ww-social-icon:hover {
    border-color: var(--themeColor);
    color: var(--themeColor);
}
.footer .app-all div.ww-social-icon .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 0.3s, border-color 0.3s ease, box-shadow 0.3s ease;
}
.footer .app-all div.ww-social-icon:hover .layer {
    transform: rotate(-35deg) skew(20deg);
}
.footer .app-all div.ww-social-icon .layer span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 0.15vw solid var(--themeColor);
    border-radius: 50%;
    transition: all 0.3s;
    opacity: 0;
    box-sizing: border-box;
}
.footer .app-all div.ww-social-icon .layer span.ww-icon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    border-color: #c1c1c1;
    color: #c1c1c1;
    font-size: 1.56vw;
}
.footer .app-all div.ww-social-icon:hover .layer span.ww-icon-inner {
    border-color: var(--themeColor);
    color: var(--themeColor);
}
.footer .app-all div.ww-social-icon:hover .layer span:nth-child(1) {
    opacity: 0.2;
}
.footer .app-all div.ww-social-icon:hover .layer span:nth-child(2) {
    opacity: 0.4;
    transform: translate(0.3vw, -0.3vw);
}
.footer .app-all div.ww-social-icon:hover .layer span:nth-child(3) {
    opacity: 0.6;
    transform: translate(0.6vw, -0.6vw);
}
.footer .app-all div.ww-social-icon:hover .layer span:nth-child(4) {
    opacity: 0.8;
    transform: translate(0.9vw, -0.9vw);
}
.footer .app-all div.ww-social-icon .text {
    position: absolute;
    left: 50%;
    bottom: -0.3vw;
    transform: translateX(-50%);
    opacity: 0;
    font-size: 0.7vw;
    color: var(--themeColor);
    transition: bottom 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}
.footer .app-all div.ww-social-icon:hover .text {
    bottom: -1.6vw;
    opacity: 1;
}

/* 新增开始：底部社交图标 tooltip 弹框（参考桌面「工具提示」 brutal-tooltip 样式，哥 2026-08-05）
   hover 时图标位于扩散环最顶层，tooltip 从图标上方弹出，各平台内容不同。 */
.footer .app-all div.ww-social-icon .layer span.ww-icon-inner {
    z-index: 10;
}
.footer .app-all div.ww-social-icon .ww-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #000;
    color: #fff;
    padding: 0.6vw 1vw;
    font-size: 0.85vw;
    font-weight: 600;
    line-height: 1.5;
    border: 0.18vw solid var(--themeColor);
    border-radius: 0.4vw;
    box-shadow: 0.25vw 0.25vw 0 0 rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-out;
    z-index: 30;
    white-space: normal;
/* 修改：tooltip 最大宽度放宽，避免长文案换行拥挤（哥 2026-08-05 傍晚）
   二次修改：再放宽 + box-sizing 控制，解决微信文字出格（哥 2026-08-05 晚） */
    box-sizing: border-box;
    min-width: 8vw;
    max-width: 28vw;
    text-align: center;
    pointer-events: none;
}
.footer .app-all div.ww-social-icon:hover .ww-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.footer .app-all div.ww-social-icon .ww-tooltip::after,
.footer .app-all div.ww-social-icon .ww-tooltip::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -0.5vw;
    border-width: 0.5vw;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}
.footer .app-all div.ww-social-icon .ww-tooltip::before {
    border-color: var(--themeColor) transparent transparent transparent;
    transform: translateY(0.18vw);
    z-index: -1;
}
/* 修改：B站链接强制单行，消除窄框内折行形成的白圈感（哥 2026-08-05 晚）
   二次修改：把可点击的 <a> 做成透明热区，文字用普通 span 显示，彻底解决圆框问题（哥 2026-08-05 深夜） */
.footer .app-all div.ww-social-icon .ww-tooltip .ww-tooltip-content {
    position: relative;
    display: inline-block;
}
.footer .app-all div.ww-social-icon .ww-tooltip .ww-tooltip-visible {
    color: var(--themeColor);
    text-decoration: underline;
    pointer-events: none;
    white-space: nowrap;
}
.footer .app-all div.ww-social-icon .ww-tooltip .ww-tooltip-hit {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: auto;
}
.footer .app-all div.ww-social-icon .ww-tooltip .ww-tooltip-content img {
    display: block;
    max-width: 10vw;
    max-height: 10vw;
    border-radius: 0.3vw;
}
/* 新增结束 */
/* 新增开始：导航中未完成页面的占位项（join/city/intelligence 已下线，不再跳转）（哥 2026-08-07） */
.menu li a.nav-disabled {
    cursor: default;
}
/* 新增结束 */
