#app {
    width:100%;
    height:100%;
}

#app::-webkit-scrollbar {
    width:0;
    height:0;
}

#app .addHeight {
    height:28px;
}

#app .my-app-margin {
    /* margin: 0 4.44vw; */
    margin: 0;
    position: relative;
    overflow: auto;
}

#app .appMargin {
    /* margin: 0 4.44vw; */
    margin: 0;
    position: relative;
}

.app {
    background: #f7f7f7;
    overflow: auto;
    position: relative;
}

.backgroundColor {
    display: none;
    width:100%;
    height:100%;
    position: fixed;
    z-index: 99;
    left: 0;
    top:0;
    background-color: rgba(0,0,0,0.2);
    box-sizing: border-box;
}



/* --------------设备+logo --------------------*/
.devImg {
    /* margin-top: 4.44vw; */
    width:100%;
    display: flex;
    flex-direction: column;
}



/*------------------ 功能列表区域-------------- */



.checkedBg {
    background:lightpink;
    background: rgba(0,125,255, 0.1);
}

.appear {
    animation: appear 300ms ease-in-out 0ms;
}

@keyframes appear {
    0% {
        height: 0;
    }
    to {
        height: 240px;
    }
}

#app {
    background: var(--background-1);
    color: var(--text-color-1);
    overflow: auto;
    position: relative;
}

