@charset "utf-8";
*{
    margin:0;
    padding:0;
    list-style: none;
}

*,
::before,
::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a,
img {
    -webkit-touch-callout: none;
}
a {
    color: #000;
    text-decoration: none;
    outline: none;
}

a:active {
    outline: none;
    color: #000
}
i{font-style:normal;}

img {
    display: block;
}

body{
    font-size: 14px;
    line-height: 1.5;
    font-family: PingFang SC, Helvetica Neue, Helvetica, Microsoft YaHei, STHeiTi, sans-serif;
    -webkit-font-smoothing: antialiased;
}

ul , li{max-height:1000000px;}

#app {
    width: 100%;
    height: 100%;
    cursor: default;
}

#app .app-body {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dialog {
    position: absolute;
    width: 900px;
    height: calc(100% - 46px);
    right: 0;
    top: 46px;
    z-index: 2;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    max-height: 100%; 
    display: flex;
    flex-direction: column;
    background: #fff;
}

.dialog .header {
    border-bottom: 1px solid #E0E0E0;
    margin: 0;
    padding-bottom: 5px;
    margin-bottom: 5px;
    font-size: 14px;
}

.dialog header {
    width: 100%;
    height: 30px;
    background: #eee;
    line-height: 21px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

.dialog header .close {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    margin: 0 5px;
    cursor: pointer;
}

.dialog header .tab {
    text-align: center;
    width: 80px;
    border-right: 1px solid #ccc;
    height: 30px;
    line-height: 30px;
}

.dialog header .active {
    background: #FFFFFF;
}

.dialog .body {
    padding: 15px;
    font-size: 13px;
    flex: 1;
    overflow: auto;
}

.dialog .code, .dialog .content {
    padding: 15px;
    height: calc(100% - 30px);
    box-sizing: border-box;
    width: 100%;
    overflow: auto;
    border: none;
    margin: 0;
    font-size: 13px;
    /* white-space: pre-line; */
}

.dialog .content img {
    max-width: 100%;
}

.dialog ul.list {
    margin-left: 15px;
}

.req-table {
    flex: 1;
    overflow: hidden;
}

.ant-table {
    color: #000000!important;
    font-size: 13px!important;
}

.ant-table-tbody .request-row {
    padding: 0!important;
    height: 50px;
    box-sizing: border-box;
}

.ant-table-tbody .request-row.active td {
    background: #e6f7ff;
}

.ant-table-tbody > tr:nth-child(even) {
    background: rgba(0,0,0,0.03);
}

.ant-table-tbody > tr > td {
    padding: 5px 5px!important;
}

.ant-table-thead > tr > th {
    padding: 10px 5px!important;
}

/* 表格中请求文件的路径信息 */
.req-path {
    vertical-align: top!important;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.req-path img {
    width: 35px;
    height: 35px;
    margin-left: -2px;
    margin-right: 3px;
}


.req-path p {
    margin: 0;
}


.req-path .name {
    font-weight: 400;
    /* white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 400px;
    overflow: hidden; */
}

.req-path .path {
    color: #838383;
    /* white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 400px;
    overflow: hidden; */
}

.ant-menu-item .anticon {
    margin-right: 4px!important;
}

#spliter {
    width: 1px;
    height: 100%;
    left: -5px;
    top: 0;
    position: absolute;
    z-index: 2222;
    padding: 0 3px;
    cursor: ew-resize;
}

.bars {
    background: #f5f5f5;
}

.bars .content {
    display: flex;
    align-items: center;
    margin:0;
}
.bars .content .item{
    display: block;
    margin: 0 6px;
}
.bars .content .item.checked {
    background: #b5b3b3;
    color: #fff;
    padding: 0 2px;
    border-radius: 6px;
}
.bars .content .item .filter {
    margin: 6px 2px;
    padding: 0 2px;
    outline: none;
}

.qrcode {
    max-width: 585px;
    padding: 15px;
    position: absolute;
    top: 46px;
    z-index: 99;
    left: 414px;
    display: flex;
    flex-direction: row;
    background: #f1f1f1;
    box-shadow: 0 3px 15px rgba(0,0,0,.3);
}

.qrcode p {
    margin-bottom: .55em;
}

.qrcode .tips {
    color: orange;
}

.qrcode img {
    width: 140px;
    height: 140px;
    margin-right: 10px;
}