body{
    font-family: "Microsoft YaHei",sans-serif;
}

.container{

    position: fixed;
    width: 100%;
    height: 100%;
    background: #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
}

#console-panel{
    width: 100%;
    display: flex;
    justify-content: center;
}

#console-panel div{
    border-radius: 4px;
    background-color: white;
    width: 70%;
    height: 350px;
    border: 2px solid grey;
    overflow: auto;
    padding: 8px;
}

#console-panel div::-webkit-scrollbar{
    width: 16px;
    height: 16px;
    background-color: white;
}

#console-panel div::-webkit-scrollbar-track{
    border-radius: 10px;
    background-color: white'white;
}

#console-panel div::-webkit-scrollbar-thumb{
    height: 20px;
    border-radius: 10px;
    background-color: rgba(170, 170, 170, 0.5);
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

#console-panel div::-webkit-scrollbar-thumb:hover{
    background-color: #aaa;
}

.console-input{
    width: 100%;
    text-align: center;
}

.console-input input{
    border-radius: 4px;
    outline: none;
    width: 350px;
    height: 40px;
    font-size: 24px;
    border: 2px grey solid;
    transition: border 0.3s;
}

.console-input input:hover{
    border: 2px dodgerblue solid;
}

.console-input input:focus{
    border: 2px dodgerblue solid;
}

.console-input button{
    border-radius: 4px;
    outline: none;
    border: 2px grey solid;
    font-size: 24px;
    padding: 8px;
    transition: border 0.3s, background-color 0.3s;
}

.console-input button:hover{
    border: 2px dodgerblue solid;
}

.console-input button:active{
    border: 2px grey solid;
    background-color: grey;
}