html {
    font-family: "Arial","Microsoft YaHei","华文细黑","黑体","宋体","sans-serif";
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: "Arial","Microsoft YaHei","华文细黑","黑体","宋体","sans-serif";
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

div {
    word-break: break-all;
}

button {
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    outline: none !important;
    background-color: white;
}

button:focus {
    outline: none;
}

a {
    text-decoration: none
}

#header {
    border: 1px solid #E2E2E2;
    border-radius: 5px;
}

#header button {
    border: none !important;
}

#main {
    height: calc(100% - 51px);
    overflow-y: auto;
    overflow-x: hidden;
}

#input-box button {
    border: none !important;
}

.menu {
    display: none;
    position: fixed;
}

.menu-item {
    padding: 5px;
}

.menu-item:hover {
    background-color: #f1f1f1;
}

/* 头部容器样式 */
.header-center {
    line-height: 45px;
    height: 45px;
}

.header-center > * {
    vertical-align: middle;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar
{
    width: 4px;
    /*height: 16px;*/
    background-color: #F5F5F5;
    display: none;
}
 
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}
 
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
}

@media screen and (min-width: 320px) and (max-width: 480px){
    #main {
        margin: 0px;
        padding: 0px;
        width: 100%;
        height: calc(100% - 51px);
        overflow-y: auto;
        overflow-x: hidden;
    }

}

@media only screen and (min-width: 1029px){
    body {
        background-color: #F6F6F6;
        /* background-image: url(/static/images/bg-img-6.jpg); */
        /* background-repeat: no-repeat; */
        /* background-size: cover; */
    }

    #main {
        height: calc(100% - 51px);
        background-color: #fff;
        /* border-radius: 5px; */
        margin-bottom: 0px;
        margin-top: 0px !important;
        padding-top: 0px !important;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .sidebar {
        font-size: 1.2em;
    }

}
