自定义样式
QPushButton{
background-color: rgb(255, 0, 255);
color:#e2ffde;
border-style:outset;/*边框样式*/
border-width:4px; /*边框宽度*/
border-radius:15px;/*边框圆角半径*/
}
QPushButton:hover{
color:pick;
background-color: rgb(0, 227, 110);
}
QPushButton:pressed{
border-style:inset;
color:rgb(20,40,60);
border-color:rgb(234,123,23);
background-color:rgb(100,255,100);
}