﻿/*记得在table中添加样式table-striped、table-hover*/
.table{
    margin-top:20px;
}
table thead {
    background-color:#efd1d1;
    color: #333;
}
table th {
    text-align: center;
    padding: 10px 0;
    /*max-width:30%;*/
}
table td{
    height:40px;
    text-align: center;
}
table tr{
    cursor:pointer;
}
table td a{
    color:#3499ff;
}
/*table tr:nth-child(2n){*/
    /*background-color:#ece9e6;*/
/*}*/
.table_row th{
    vertical-align: middle!important;
    text-align: right!important;
    padding:5px;
}
.table_row td{
    vertical-align: middle!important;
    text-align: left!important;
    word-wrap:break-word;
    padding:5px;
    white-space: normal;
}
table input[type='text'],table select{
    padding:5px;
}
.table_col th{
    vertical-align: middle!important;
    text-align: center!important;
}
.table_col td{
    vertical-align: middle!important;
    text-align: left!important;
    word-break: break-all;
}
.tab-mobile{
    font-size:10vw;
}
.tab-mobile th{
    width:40%;
    text-align: right;
    font-weight: bold;
}
.tab-mobile td{
    width:60%;
    text-align: left;
}
.table_default th,.table_default td{
    cursor:default!important;
}
.table-overflow td{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}