.tabs-content .wrapper {
    display: none;
}

.tabs-content .wrapper.active {
    display: block;
}

.marquee-bar {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #F3F3F3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.625vw;
}

.marquee-container {
    flex: 1;
    display: flex;
    align-items: center;
    height: 100%;
    min-width: 0;
    margin-left: 1.75vw;
    margin-right: 346px;
    background: #E5E5E5;
    border-radius: 14px;
    padding: 0 0.313vw 0 0;
}

.marquee-scroll-area {
    flex: 1;
    overflow: hidden;
    position: relative;
    margin: 0 10px;
}

.marquee-content {
    white-space: nowrap;
    display: inline-block;
    color: #999;
    animation: marquee 30s linear infinite;
    padding-left: 100%;
}

.marquee-wrapper {
    display: flex;
    height: 100%;
    padding: 6px 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.notification-icon {
    display: flex;
    align-items: center;
    margin-left: 10px;
    flex-shrink: 0;
}

.notification-icon img {
    width: 18px;
    height: 15px;
}

.mobile-link-group {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.phone-icon {
    width: 12px;
    height: 20px;
}

.close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.close-btn:hover {
    opacity: 1;
}

.fo-link {
    font-size: 0.729vw;
    color: #9C9C9C;
    text-decoration: none;
    padding: 0 6px;
    border-radius: 4px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: background 0.2s, color 0.2s;
    position: relative;
    z-index: 1;
    margin-right: 1vw;
}

.mobile-link {
    font-size: 0.729vw;
    color: #9C9C9C;
    text-decoration: none;
    padding: 0 6px;
    border-radius: 4px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: background 0.2s, color 0.2s;
    position: relative;
    z-index: 1;
}

.mobile-link:hover {
    background: #eee;
    color: #1976d2;
}

.qrcode-popup {
    position: absolute;
    top: 38px;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 10px 14px 6px 14px;
    display: none;
    flex-direction: column;
    min-width: 110px;
    animation: fadein 0.3s;
    z-index: 9999;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.qrcode-popup img {
    width: 80px;
    height: 80px;
}

.qrcode-tip {
    font-size: 11px;
    color: #888;
    margin-top: 4px;
    text-align: center;
}

.mobile-link-group:hover .qrcode-popup,
.mobile-link:focus+.qrcode-popup {
    display: flex;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 关闭动画 */
@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.marquee-bar.closing {
    animation: slideUp 0.3s ease-out forwards;
}

.styles_nav__3zu4a .container {
    height: 65px;
    padding: 20px 0;
}

.logo-mobile {
    display: none !important;
}

#navigation{
    height: 80px;
}

@media (max-width: 1080px) {
    #navigation{
        height: unset;
        padding: 3.796vw 0;
    }

    .marquee-bar {
        display: none;
    }
    
    .logo-desktop {
        display: none  !important;
    }
    
    .logo-mobile {
        display: block !important;
        margin-left: 5vw;
    }
}