/* ========================================================== * QTabWidget * ========================================================== */ QWidget#widget_bottom { background: #FFFFFF; border-top: 1px solid #E9E9E9; } QTabWidget#tabWidget { background: #FFFFFF; } QTabWidget::tab-bar { background: #FFFFFF; } QTabBar::tab { border: none; width: 70px; height:48px; background: #FFFFFF; font-weight: 400; font-size: 14px; color: #3A3F63; } QTabBar::tab:selected, QTabBar::tab:hover { font-weight: 400; font-size: 14px; color: #4458FE; border-bottom: 2px solid #4458FE; } QTabWidget::pane { border-top: 1px solid #E9E9E9; background-color: #FFFFFF; } QTabBar QToolButton::right-arrow { } QTabBar QToolButton::left-arrow { } /* ========================================================== * QPushButton * ========================================================== */ QPushButton { font-weight: 500; font-size: 14px; text-align: center; } /********* 普通椭圆按钮三种状态效果 *********/ /* QPushButton#pBtn_Cancel { background: transparent; color: #3A3F63; border: 1px solid #E6E9F4; border-radius: 16px; } QPushButton#pBtn_Cancel:hover { background: transparent; color: #4458FE; border: 1px solid #4458FE; border-radius: 16px; } */ /********* 带有底色椭圆按钮三种状态效果 *********/ /* QPushButton#pBtn_OK { color:white; background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:1 #4F8AFF,stop:0 #4B5EFF); border-radius: 16px; } QPushButton#pBtn_OK:hover { color:white; background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:0 #5D73FF,stop:1 #6092FF); border-radius: 16px; } */ /* ------------------------------------------------------- */ /********* 普通方框按钮三种状态效果 *********/ QPushButton#pBtn_cancel { background: transparent; color: #3A3F63; border: 1px solid #E6E9F4; border-radius: 4px; } QPushButton#pBtn_cancel:hover { background: transparent; color: #4458FE; border: 1px solid #4458FE; border-radius: 4px; } /********* 带有底色方框按钮三种状态效果 *********/ QPushButton#pBtn_save { color:white; background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:1 #4F8AFF,stop:0 #4B5EFF); border-radius: 4px; } QPushButton#pBtn_save:hover { color:white; background: qlineargradient( x0:1,x1:1,y1:0,y2:0,stop:0 #5D73FF,stop:1 #6092FF); border-radius: 4px; }