.warp table { 
    width: 100% !important; 
    border-collapse: collapse; 
}
.nowarpTable{
    width:100%;
	overflow:auto;
}
@media 
only screen and (max-width: 735px),
(min-device-width: 738px) and (max-device-width: 1024px)  {

    /* Force table to not be like tables anymore */
    .warp table, .warp thead, .warp tbody, .warp th, .warp td, .warp tr { 
        display: block; 
    }
    
    /* Hide table headers (but not display: none;, for accessibility) */
    .warp thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .warp tr { border-bottom: 5px solid #fff; }

    
    .warp td { 
        /* Behave  like a "row" */
        
        border: 1px solid rgb(184, 184, 184); 
        border-bottom: none;
        position: relative;
        padding-left: 50% !important; 
    }
    .warp tr td:last-child{
        border: 1px solid rgb(184, 184, 184); 
    }
    .warp td:before { 
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        left: 0px;
        width: 45%; 
        height:100%;
        padding-right: 10px; 
        white-space: nowrap;
        background:rgb(242, 242, 242);
        text-align:center;
        bottom:0;
/*         line-height:100%; */
        border-right: 1px solid rgb(184, 184, 184); 
    }
    .nowarpTable{
        width:100%;
        overflow-x:scroll;
    }
    
    
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (max-width: 1024px) {
    .nowarpTable{
        overflow-x:scroll;
    }
    .nowarpTable:before {
       background-image: url(images/swipe.svg);
        content: "可拖移表格";
        display: none;
        width: 200px;
        height: 35px;
        background-repeat: no-repeat;
        background-position: left center;
        background-size: auto 100%;
        margin-top: 1em;
        padding: 7px 0 0 65px;
        margin-bottom: .5em;
    }

}
