 @charset "utf-8";
/* CSS Document */

.table_list{
    background-color:#cecece;
    font-size:15px;
    text-align:center;
    line-height:30px;}
.table_list tr{
     background-color: #ffffff; 
    font-size:12px;}

.table_list tr th{
    background-color:#dae8fc;
    color:#000000;
    font-size:13px;}
.table_list tr td{
    font-size:13px;
     height:35px;}

.table_list tr:nth-child(odd) {background-color: #f2f7fe;}  /* 奇数行（从标题行起算，下同）设为红色 */
.table_list tr:nth-child(even) {background-color: #ffffff;}  /*偶数行设为蓝色*/
.table_list tr:nth-child(1) {background-color:#dae8fc;color:black;}   /*第一行（标题行）设为黑色*/



