.swiper-left {
    animation: move_left 1s;
}

.swiper-right {
    animation: move_right 1s;
}

@keyframes move_left {
    from {
        right: 0;
    }
    to {
        right: 100%;
    }
}

@keyframes move_right {
    from {
        left: -100%;
    }
    to {
        left: 0;
    }
}

.navbar-item {
    position: relative;
}

.navbar-item-child {
    position: absolute;
    background-color: #fff;
    display: none;
}

.navbar-item-child a {
    border: 1px solid #ddd;
}

.inner-tag {
    font-weight: bold;
}

.hidden-content {
    display: none !important;
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background-color: var(--theme-color);
    mix-blend-mode: normal;
    opacity: 0.9;
    z-index: 9999;
}

.fixed-footer-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-footer-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10000;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    cursor: pointer;
}

.fixed-footer-close:hover {
    color: #007aff;
}

.use-text {
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    line-height: 1;
    letter-spacing: 1.9px;
    transition: 0.3s;
}

.use-text:hover {
    color: #007aff;
}

h2,h3 {
    margin-top: 24px;
}