123456789101112131415161718192021222324252627282930313233343536 |
- /**app.wxss**/
- @import "/static/iconfont/iconfont.wxss";
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- padding: 200rpx 50rpx;
- box-sizing: border-box;
- }
- .appscrollarea {
- flex: 1;
- overflow-y: hidden;
- height: 100vh;
- box-sizing: border-box;
- }
- .padding_50{
- padding:50rpx;
- }
- page {
- --themeColor: #316192;
- }
- button[type=primary]{
- background-color: var(--themeColor);
- }
- .loadData{
- width: 100%;
- color: #969799;
- background-color: #f7f8fa;
- text-align: center;
- line-height:100rpx;
- }
|