.appPageGroup {
    display: flex;
    align-items: center;
    height: 100%;
}
.floatController {
    left: 10px!important;
    height: clamp(min(480px,70%),636px,70%)!important;
    top: initial!important;
    border-radius: 16px;
    display: grid!important;
    align-content: space-between!important;
    grid-template-rows: auto 1fr auto;
}
.floatController > div:first-child > div:hover {
    background: rgb(209 213 219 / .2);
    border-radius: .5rem;
}
.floatController > div:first-child {
    position: initial!important;
    padding: 10px 0px;
}
.floatController > div:nth-child(2) {
   /* position: initial!important;
    display: grid;  */
}    
.floatController > div:nth-child(3) {
    position: initial!important;
    padding-bottom: 10px;
}
.floatController > div:nth-child(3) div {
    margin-top: 0px;
}
.folderBox div {
    height: 50px!important;
}
.setting-controller {
    display: flex;
    justify-content: center!important;
    align-items: center!important;
}
.setting-controller>.el-drawer {
    right: initial!important;
    top: initial!important;
    bottom: initial!important;
    width: 40%!important;
    height: initial!important;
    min-height: 50%!important;
    max-height: 80%!important;
    border-radius: 10px;
}
.folderBox {
    top: 85px!important;
}
.folderBox div {
    margin-top: 0px!important;
}
.itemBox {
    animation: none;
    transform: translateY(0);
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
}
.itemBox:hover {
    transform: translateY(-4px);
}
.c8x4 {
    width: 100%;
    height: calc(var(--iconWidth)* 4 + 57px); 
    grid-row: span 8 / span 8;
    grid-column: span 4 / span 4;
}
.footer-component {
    bottom: 5px!important;
}
.loginCard {
    height: auto!important;
}
#addClass i {
    width: initial!important;
    height: initial!important;
    padding: 7px;
}
#addClass:hover i {
    border-radius: .5rem;
}
/*开屏加载*/
#splash-loader {
  position: fixed;
  inset: 0;
  background: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.splash-logo {
  font-size: 2rem;
  margin-bottom: 30px;
}
.splash-logo img {
    width: 96px;
    height: 96px;
}
.splash-progress-container {
  width: 200px;
  height: 6px;
  background: #333;
  border-radius: 3px;
  overflow: hidden;
}
.splash-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  transition: width 0.2s ease;
}

/*黑暗*/
/*右键菜单*/
.deskMouseMenu .mouseItem img {
    filter: drop-shadow(#ddd 999999px 0);
    transform: translateX(-999999px);
}
/*搜索框*/
.searchRecommended > ul > li > img {
    filter: drop-shadow(#ddd 999999px 0);
    transform: translateX(-999999px);
}
.componentView .addiconframe .linkscroll .el-pagination button:disabled {
    margin: 0px 1px;
}
.componentView .addiconframe .linkscroll .el-pagination button {
    margin: 0px 1px;
}
.componentView .addiconframe .linkscroll .el-pagination ul li {
    color: #ddd!important;
}
.componentView .addiconframe .linkscroll .el-pagination ul li.is-active, .componentView .addiconframe .linkscroll .el-pagination ul li:hover {
    margin: 0px 1px;
}
/*设置*/
.control-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.control-model {
    position: unset!important;
    box-shadow: unset!important;
}
.control-model[data-v-4308607c] {
    animation: setting-open 0.2s ease-in-out forwards!important;
    transform-origin: center center;
}
.control-center.closing .control-model[data-v-4308607c] {
    animation:setting-close .2s ease-in-out forwards!important;
    transform-origin: center center;
}
@media (max-width: 700px) {
    .control-center.closing .control-model[data-v-4308607c] {
        animation:setting-close .2s ease-in-out forwards!important;
        transform-origin: center center;
    }
}
@media (max-width: 700px) {
    .control-model[data-v-4308607c] {
        animation:setting-open .2s ease-in-out forwards!important;
        transform-origin: center center;
        width:100%;
        border-radius:16px 16px 0 0
    }
}
/*打开动画*/
@keyframes setting-open {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/*关闭*/
@keyframes setting-close {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}