setup.wxss 441 B

123456789101112131415161718192021222324252627
  1. /* pages/mine/wxml/setup.wxss */
  2. .container{
  3. background: #ececec;
  4. width: 100%;
  5. box-sizing: border-box;
  6. }
  7. .header{
  8. width: 100%;
  9. line-height: 100rpx;
  10. margin-top: 20rpx;
  11. background: #fff;
  12. display: flex;
  13. justify-content: space-between;
  14. font-size: 30rpx;
  15. padding:0 30rpx;
  16. box-sizing: border-box;
  17. color: #999;
  18. }
  19. .cache{
  20. display: flex;
  21. }
  22. .btn{
  23. width: 90%;
  24. background: #fb752c;
  25. margin: 20rpx auto;
  26. color: #fff;
  27. }