1.半透明+圆角
QLabel{
font: 25 10pt "Microsoft YaHei"; //字体形状大小
border-radius: 4px; //圆角设置
background-color: argb(60, 60, 60, 130); //标签颜色
color: rgb(255, 255, 255); //字体颜色}
2.颜色
ui->shidutitle->setStyleSheet("background-color: rgba(0, 102, 116, 240);");
3.透明
ui->shidutitle->setStyleSheet("background:transparent");