/* 右侧导航栏 */
.fullSwiper>.swiper-pagination-vertical.swiper-pagination-bullets {
    right: .25rem;
}

.fullSwiper>.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: .2rem 0;
    width: .15rem;
    height: .15rem;
    border: 1px solid #cccccc;
    background: transparent;
    opacity: 1;
    position: relative;
}

.fullSwiper>.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background-color: rgb(248, 182, 45);
    border-color: rgb(248, 182, 45);
}

.fullSwiper>.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    border-radius: 50%;
    background-color: rgb(248, 182, 45);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}

.fullSwiper>.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet:hover::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.fullSwiper>.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    left: -1.45rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.35rem;
    text-align: center;
    height: .6rem;
    line-height: .6rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: .04rem;
    opacity: 0;
    visibility: hidden;
    font-size: .16rem;
}

.fullSwiper>.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet:hover::after {
    opacity: 1;
    visibility: visible;
}

.fullSwiper>.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet:nth-child(1)::after {
    content: "走进创明";
}

.fullSwiper>.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet:nth-child(2)::after {
    content: "应用领域";
}

.fullSwiper>.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet:nth-child(3)::after {
    content: "创明互联";
}

.fullSwiper>.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet:nth-child(4)::after {
    content: "最新资讯";
}

.fullSwiper>.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet:nth-child(5)::after {
    content: "责任使命";
}

@media only screen and (max-width: 920) {
    .fullSwiper>.swiper-pagination-vertical {
        display: none;
    }
}