| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 | 
/* ================================================================ * 外框 * ================================================================ */QWidget#widget{    background: transparent;    border-radius: 4px 4px 4px 4px;    border: 1px solid #E6E9F4}QWidget#widget[Selected = "true"]{    border-radius: 4px 4px 4px 4px;    border: 1px solid #4458FE;}/* 标题 */QLabel#label_title{    font-weight: 500;    font-size: 16px;    color: #3A3F63;    line-height: 22px;    text-align: left;    font-style: normal;    text-transform: none;    padding-left: 12px;}/* ================================================================ * TableView * ================================================================ *//* 表格标题 */QWidget#widget_tableHeader{    background-color: #E6E9F4;    /* background: green; */    border-radius: 0px 0px 0px 0px;     border: none;}QLabel#label_onTime, #label_offTime{    font-weight: 500;    font-size: 14px;    color: #3A3F63;    line-height: 22px;    text-align: left;    font-style: normal;    text-transform: none;    padding-left: 12px;}QTableView{    background: transparent;    font-weight: 400;    font-size: 14px;    color: #3A3F63;    line-height: 22px;    text-align: left;    font-style: normal;    text-transform: none;    /* background: #4458FE; */    border: 0px solid rgba(255, 255, 255, 0.1);    outline: none;}QTableView::item{    font-weight: 400;    font-size: 14px;    color: #3A3F63;    background: transparent;    border: none;    padding-left: 12px;    outline: none;}QTableView::item:selected{    color: #FFFFFF;    background: #4458FE;    border-radius: 0px 0px 0px 0px;    outline: none;}
 |