| 123456789101112131415161718192021222324252627282930 |
- .table-title {
- line-height: 50px;
- text-align: center;
- }
- .table-title span {
- font-size: 22px;
- color: #333;
- }
- .table-head th{
- border: 1px solid #d9d9d9;
- text-align: center;
- height: 30px;
- background:#ebf3fd;
- }
- .table-tbody td{
- border: 1px solid #d9d9d9;
- height: 38px;
- }
- td.b-grey{
- background:grey;
- }
- .table-tbody tr:nth-child(2n){
- background: #efefef;
- }
|