@charset "UTF-8";
/* CSS Document */
/* style.css 文件内容 */
.t_list { 
    width: 100%; 
    border-collapse: collapse; 
    text-align: center; 
    color: #000; 
    font-size: 14px; 
}

.t_list td { 
    border: 1px solid #CCC; 
    padding: 5px;  
}

/* 表头：保持您的品牌橙色 */
.t_list tr:first-child td { 
    background: #F05020; 
    color: #FFF; 
    font-weight: bold; 
	font-size: 13px;
}

/* 鼠标经过效果：使用了您指定的 #fdc08c */
.t_list tr:not(:first-child):hover { 
    background-color: #FDC08C; 
    transition: background-color 0.1s ease; /* 建议添加：让变色过程更平滑 */
}