1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /**app.wxss**/
- page{
- /* padding-bottom: 80rpx; */
- }
- .container {
- box-sizing: border-box;
- background-color: #f4f4f4;
- font-family: PingFangSC-Light,helvetica,'Heiti SC';
- }
- .isIPx{
- bottom:64rpx!important;
- }
- .isIPxBottom{
- padding-bottom:64rpx!important;
- }
- .buttomPart{
- bottom: 80rpx!important;
- }
- view,text,navigator{
- box-sizing: border-box;
- padding:0;
- margin:0;
- }
- view,text{
- font-family: PingFangSC-Regular,helvetica,'Heiti SC';
- /* font-family: PingFangSC-Regular, sans-serif; */
- /* font-family: PingFangSC-Medium, PingFang SC; */
- /* font-size: 29rpx; */
- color: #131D34;
- }
- button::after {
- display: none;
- }
- .display-none {
- display: none !important;
- }
- ::-webkit-scrollbar {
- width: 5px;
- background-color: #f5f5f5;
- }
- ::-webkit-scrollbar-thumb {
- background-color: #999;
- }
- .theme-font{
- color: #ED5D18;
- }
- .theme-background{
- background-color: #ED5D18;
- }
|