.data_query_con{
    margin: 24px 0 40px 0;
}
.data_query_con .query{
    height: 34px;
    margin-bottom: 24px;
}
.sel1{
    /* 用div的样式代替select的样式 */
    width: 180px;
    height: 34px;
    float: left;
    /* 盒子阴影修饰作用,自己随意 */
    /* box-shadow: 0 0 2px #ccc; */
    position: relative;
    background:rgba(255,255,255,1);
    border:1px solid rgba(0,0,0,0.24);
    margin-bottom: 8px;
    margin-right: 24px;
}
select{
    cursor: pointer;
    /* 清除select的边框样式 */
    border: none;
    /* 清除select聚焦时候的边框颜色 */
    outline: none;
    /* 将select的宽高等于div的宽高 */
    width: 100%;
    height: 32px;
    line-height: 32px;
    /* 隐藏select的下拉图标
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; */
    /* 通过padding-left的值让文字居中 */
    padding-left: 8px;
    color: rgba(0,0,0,0.85);
}
select::-ms-expand { display: none; }
/* 使用伪类给select添加自己想用的图标 */
.sel1:after{
    content: "";
    width: 14px;
    height: 8px;
    background: url(../images/icon_arrow_down.png) no-repeat center;
    /* 通过定位将图标放在合适的位置 */
    position: absolute;
    right: 5px;
    top: 36%;
    /* 给自定义的图标实现点击下来功能 */
    pointer-events: none;
}
option{
    height: 40px;
}
.data_query_con .btn2{
    width: 64px;
    height: 32px;
    border: 0;
    outline: 0;
    color: #fff;
    background:rgba(5,132,201,1);
    font-size:16px;
    font-family:sans-serif;
}
.list table{
    width: 100%;
}
.list tr{
    border-bottom: 1px solid rgba(232,232,232,1);
}
.list tr th{
    height: 54px;
    font-size:14px;
    font-family:sans-serif;
    font-weight:500;
    color:rgba(0,0,0,0.85);
    line-height:22px;
}
.list tr td{
    height: 54px;
    font-size:14px;
    font-family:sans-serif;
    font-weight:400;
    color:rgba(0,0,0,0.65);
    line-height:22px;
}
.list tr th:first-child,.list tr td:first-child{
    padding-left: 27px;
}
.list tr th:last-child,.list tr td:last-child{
    padding-right: 27px;
}


.data_query_con p{
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-family:sans-serif;
    color:rgba(0,0,0,0.65);  
}

.data_query_con .list>div{
    display: block;
    height: 36px;
    position: relative;
    margin: 24px 0 40px 0;
}
.data_query_con div ol{
    position: absolute;
    right: 0;
    list-style: none;
}
.list>div ol li{
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size:14px;
    font-family:sans-serif;
    color:rgba(0,0,0,0.65);
    text-align: center;
    float: left;
    margin-left: 8px;
    border:1px solid rgba(0,0,0,0.24);
}
.list>div ol .pages:hover{
    color: #0584C9;
    border:1px solid rgba(5,132,201,1);
}
.list>div ol .on{
    background:#0584C9;
    color: #FFF;
}
.list>div ol .on:hover{
    background:#0584C9;
    color: #FFF;
    border:1px solid rgba(0,0,0,0.24);
}
.data_query_con .page_total{
    border: 0;
    width: 74px;    
}
.data_query_con .page_change{
    width: 74px;
    border:1px solid rgba(0,0,0,0.24);
    color:rgba(0,0,0,0.65);
}
.data_query_con .list .prohibit{
    color:rgba(0,0,0,0.38);
}
