/* 页面基础结构 */
html, body {
    font-size: 16px;
}

body, button, input, select, textarea {
    font: 1rem/1.5 "Helvetica Neue", Helvetica Neue, Helvetica, Arial, Hiragino Sans GB, Microsoft Yahei, sans-serif;
}

body {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    min-width: 75rem;
    overflow: auto;
    overflow-y: hidden;
}

.qy-view {
    width: 100%;
    height: 100%;
}

.qy-container {
    display: flex;
    flex-direction: row;
    flex: 1;
    flex-basis: auto;
    box-sizing: border-box;
    min-width: 0;
}

.is-vertical {
    flex-direction: column;
}

.qy-aside {
    display: block;
    overflow: hidden;
    position: relative;
}

.qy-header {
    height: 60px;
    -ms-flex-preferred-size: 56px;
    flex-basis: 56px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    z-index: 1023;
}

.qy-aside, .qy-header {
    box-sizing: border-box;
    flex-shrink: 0;
}

.qy-main {
    display: block;
    flex: 1;
    flex-basis: auto;
    padding: 20px;
    overflow-y: auto;
}

.qy-footer, .qy-main {
    box-sizing: border-box;
}
/* 页面基础结构 */

/* 右边主内容基础结构 */
.interface {
    min-width: 1200px;
}
.qy-container .right {
    padding-left: 2rem;
    width: 100%;
}

.qy-container .right .command {
    padding: 1rem;
}

.qy-container .right .common input {
    width: 12rem;
}

.qy-container .right .data-dom {
    position: relative;
    margin-top: 0.75rem;
    min-height: 456px;
}

.qy-container .right .data-dom .table-dom {
    min-height: 322px;
}
/* 右边主内容基础结构 */

/* 右边主内容表格 */
.qy-container .right .data-dom table tbody tr {
    cursor: pointer;
}

.qy-container .right .data-dom .multi-div {
    padding: 0.5rem;
}
/* 右边主内容表格 */

/*设置滚动条样式 http://blog.csdn.net/messicr7/article/details/70211820*/
/*定义滚动条宽高及背景，宽高分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar
{
    width: 0.5rem;
    height: 0.5rem;
    background-color: rgba(134, 134, 134, 0.068);
}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 1rem;
    background-color: rgba(134, 134, 134, 0.068);
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb
{
    border-radius: 0.5rem;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #4d4d4d63;
}
/*滑块效果*/
::-webkit-scrollbar-thumb:hover
{
    border-radius: 0.3rem;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: rgba(0,0,0,0.4);
}
/*设置滚动条样式*/