12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**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-Light, helvetica, 'Heiti 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: #0075DC;
- }
- .theme-background {
- background-color: #0075DC;
- }
|