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 5px 0px 0px;
}

#header button {
    border: none !important;
}

#main {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    bottom: 0px;
}

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

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

.menu-item {
    padding: 5px;
}

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

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-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: 100%;
        position: absolute;
        top: 0px;
        bottom: 0px;
    }

}

@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 {
        margin: 0px;
        padding: 0px 0px 5px 0px;
        width: 46%;
        height: 100%;
        left: 50%;
        margin-left: -23%;
        position: absolute;
        background-color: #fff;
        border-radius: 5px;
        /*box-shadow: grey 10px 10px 30px 5px;*/
    }
}
