@charset "utf-8";
html{font-size:16px;}/*防止浏览器设置成大/小字体时，以rem为单位的变大/小*/
#root_box{position: fixed;left: 0; top:0; width: 100%; height: 100%; /*background-image: linear-gradient(125deg,#13c2c2,#fbcede);*/
    background: #ccd7fe linear-gradient(110deg, #cbd7fe, #f9e4ee, #cbd7fe);
    /*background: #ccd7fe;*/
}
#rootLoadingBox{ position:absolute; top:50%; left:50%;transform: translate(-50%,-50%);  color:#6785ef; margin:0 auto; text-align: center; font-size:0.875rem;}
#rootLoadingBox > div{ line-height:1.5rem; font-size: 1rem; margin-top: 0.5rem;}
#rootLoadingBox > div span{opacity:0.75;font-size:0.825rem; letter-spacing:2px;}

.loadingIcon{animation:rotating 1s infinite linear;width:3rem; height: auto;}
@keyframes rotating {
    0%{transform: rotate(0);}
    100%{ transform: rotate(360deg);}
}