/* 从左向右滑动出现 */
        @keyframes slideIn {
            from {
                transform: translateX(-100%);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* 从右向左滑动消失 */
        @keyframes slideOut {
            from {
                transform: translateX(0);
                opacity: 1;
            }

            to {
                transform: translateX(-100%);
                opacity: 0;
            }
        }

        .slide-in {
            animation: slideIn 0.5s ease-out forwards;
        }

        .slide-out {
            animation: slideOut 0.5s ease-out forwards;
        }

        /* 从上滑入动画 */
        @keyframes slideInFromTop {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* 向上滑出动画 */
        @keyframes slideOutToTop {
            from {
                transform: translateY(0);
                opacity: 1;
            }

            to {
                transform: translateY(-100%);
                opacity: 0;
            }
        }

        /* 进入时的类 */
        .slide-inY {
            animation: slideInFromTop 0.5s ease-out forwards;
        }

        /* 离开时的类 */
        .slide-outY {
            animation: slideOutToTop 0.5s ease-out forwards;
        }

        .active {
            color: #1B7DF6 !important;
            background-color: #132242;
            max-width: 100%;
        }

        .pcNav {
            color: #ffffff;
            font-size: 15px;
        }

        .active-pc {
            color: #069EFF !important;
        }

        .active-bg {
            background-color: #069EFF;
        }

        .mobileMenuList {
            color: #ffffff;
        }

        .systemSchemeNavPc {
            color: #ffffff;
        }

        a {
            color: inherit;
            /* 继承父元素文字颜色 */
            text-decoration: none;
            /* 去除下划线 */
        }

        .getScale:hover {
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }

        .solutionPop>div {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            overflow: hidden;
        }

        .solutionPop {
            display: none;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s ease, visibility 0.6s ease;

            position: absolute;
            top: 0;
            left: 0;
            background: white;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
        }

        .solutionPop.show {
            display: block;
            opacity: 1;
            visibility: visible;
        }

        @media (min-width: 769px) {
          /* 悬停系统方案时显示下拉菜单（仅PC端） */
          .pcNav a:hover .systemSchemeNavPc {
            display: flex !important;
          }
        }
