
        /* 小导航 */
        .hideMenu {
            position: fixed;
            display: flex;
            flex-direction: column;
            align-items: center;
            left: -10%;
            top: 33%;
            font-size: 0;
            width: 24px;
            background: #0069EA;
            padding: 22px 24px !important;
            box-shadow: 0 0 10px 0 rgba(89,110,251,.15);
           transition: left 0.5s ease;
            border-radius: 22px;
            padding: 14px 8px 10px;
            text-align: center;
            cursor: pointer;
            transition: left .45s ease-in-out;
            z-index: 99;
        }
        .menuTitle {
            display: inline-block;
            width: 100%;
            text-align: center;
            margin-bottom: 12px;
            font-size: 14px;
            font-family: PingFangSC-Medium, PingFang SC;
            font-weight: 500;
            color: #333333;
            line-height: 20px;
        }
        
        .hideMenu h3 {
            font-size: 14px;
            color: #FFFFFF;
        }

        .hideMenu span {
            position: relative;
            top: 16px;
            display: inline-block;
            font-size: 12px;
            color: #FFFFFF;
            width: 22px;
        }
       
        .linkMenu {
            /*  display: none; */
            position: fixed;
            /* display: flex; */
            flex-direction: column;
            align-items: center;
           
            left: 1%;
            top: 33%;
            width: 144px;
            height: 250px;
            padding: 12px 16px;
            background: #F4F7FF;
            box-shadow: 0px 0px 14px 0px rgba(204,213,222,0.5);
           transition: left 0.5s ease;
            border-radius: 4px;
            border: 1px solid #E8E8E9;
            z-index: 99;
        }
        .linkMenu h3 {
            text-align: center;
            margin-bottom: 12px;
            font-size: 14px;
            font-family: PingFangSC-Medium, PingFang SC;
            font-weight: 500;
            color: #333333;
            line-height: 20px;
        }
        .linkMenu .linkMenuItem span {
            font-size: 12px;
            font-family: PingFangSC-Regular, PingFang SC;
            font-weight: 400;
            color: #333333;
            line-height: 17px;
        }
        .linkMenu .linkMenuItem {
            margin-bottom: 4px;
            padding: 8px 17px;
            border-radius: 2px;
            cursor: pointer;
        }
        .linkMenuTrigger {
            margin: 0 auto;
            width: 66px;
            height: 20px;
            margin-top: 13px;
            border-radius: 10px;
            border: 1px solid #0069EA;
            box-sizing: content-box;
        }
        .linkMenu .active {
            background-color: #0069EA !important;
        }
        .linkMenu .active span{
            color: #FFFFFF !important;
        }
       .linkMenuTrigger span {
           display: inline-block;
           width: 100%;
           text-align: center;
           font-size: 12px;
           font-family: PingFangSC-Regular, PingFang SC;
           font-weight: 400;
           color: #0069EA;
           line-height: 20px;
           cursor: pointer;
       }
       @media (max-width: 750px) {
         .hideMenu{
             display: none;
         }
         .linkMenu{
             display: none;
         }
       }