@import 'color.css';

@font-face {
    font-family: 'PageFont';
    src: url('fonts/lxgwwenkaigbscreen.woff') format('truetype');
}

body{
    font-family: 'PageFont', sans-serif;
    background-color: #fff;
}

.app{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--app-bk);
    /* border: 1px solid; */
    overflow: hidden;
}

.left-bar{
    width: 60px;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    background-color: var(--side-bar);
    /* border: 1px solid; */
}

.left-bar-item-0{
    width: 60px;
    height: 60px;
    position: relative;
    border: 1px solid;
    background-color: var(--side-bar);
    border: none;
}

.left-bar-item-0:hover{
    background-color: var(--side-bar-hover);
}

.left-bar-item-1{
    width: 60px;
    height: 60px;
    position: relative;
    border: 1px solid;
    background-color: var(--side-bar-hover);
    border: none;
}

.left-bar-item-1:hover{
    background-color: var(--side-bar-hover);
}

.left-bar-text{
    width: 60px;
    text-align: center;
    position: relative;
    border: 1px solid;
    background-color: var(--side-bar);
    border: none;
}

.left-bar-line{
    width: 0px;
    height: 100%;
    position: relative;
    top: -100%;
    left: 60px;
    border: 1px solid var(--line);
}

i{
    font-size: 25px;
}

.content{
    width: calc(100% - 60px);
    height: 100%;
    position: relative;
    left: 60px;
}

.content-frame{
    width: 100%;
    height: 100%;
    border: none;
}