/*未选择*/
.query-tools {
}
/*弹出样式*/
.pop-query-tools {
    position: fixed;
    top: 0;
    z-index: 10001;
    width: 100%;
    background: #fff;
    max-width: 750px;
}
/*遮罩层*/
.query-mask {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    transform-origin: 0px 0px 0px;
    opacity: 1;
    transform: scale(1, 1);
    display: block;
}
.query-row {
    height: .9rem;
    background: #fff;
    border-bottom:.01rem #eee solid;
}
/*查询元素列表*/
.query-list {
    position: relative;
    float: left;
    text-align: center;
    padding: 0.25rem;
    height: .9rem;
    width: 25%;
}
.query-list:after {
    position: absolute;
    right: 0;
    top: .148rem;
    width: 1px;
    height: .62rem;
    content: '';
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    background-color: #ededed;

}
/*查询单元*/
.query-cell {
    display: inline-block;
    position: relative;
    margin-left: -.42rem;
}

.query-cell-text {
    max-width: 1.2rem;
}
.query-cell:before {
    content: ' ';
    position: absolute;
    top: .1rem;
    right: -.42rem;
    display: inline-block;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    width: .25rem;
    height: .25rem;
    background-image: url(../../Images/Mobile/67.png);
    background-repeat: no-repeat;
    background-size: .25rem;
}
/*查询条件*/
.query-body {
    position: fixed;
    top: .9rem;
    width: 100%;
    z-index: 1001;
    background: #fff;
    max-width: 750px;
    overflow:hidden;
    display: none;
}
.query-body-list {
    display: none;
    padding: 0rem 0.25rem;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.query-body-list li {
    padding: 0px;
    margin: 0px;
    line-height: .87rem;
    list-style-type: none;
    height: .87rem;
    border-bottom: 1px solid rgba(188,187,187,0.28);
}
.curSelect {
    color: #017bc4;
}