*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: #666;
}

.result_container{
    width: 1100px;
    margin: 0 auto;
}
.bread{
    margin-left: 2%;
    padding: 25px 0;
    font-size: 16px;
    color: #666;
}

.content{
    background-color: #fff;
    width: 96%;
    min-height: 500px;
  
    margin:0 auto;

    padding: 0px 2% 20px;
     
    box-shadow: 1px 1px 8px 1px #888;
}

.content .title{
    font-size: 18px;
    font-weight: 600;
    font-family: 'YaHei';
    padding: 20px 0px 10px;
    border-bottom: #046bbd solid 2px;
}

.content .table{
    padding-bottom: 20px;
    margin-top: 20px;
    text-align: center;
    border-collapse: collapse;
}


.content .table tr th,td{
    text-align: center;
    border: 1px solid #e2e2e2;
    padding: 5px 10px;
}
.content .table tr td a{
    text-decoration: solid;
    color: #046bbd;
}
.content .table tr th{
    background-color: #efefef;
}

.content .nodata{
    display: none;
    position: relative;
    background:  url(../image/empty.png)  no-repeat;

    background-size: cover;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.content .nodata>div{
    position: absolute;
    bottom: -10px;

    width: 400px;
    text-align: center;

    font-size: 20px;
}



