index.wxss 412 B

1234567891011121314151617181920212223
  1. /* 开发者 */
  2. .header{
  3. position: fixed;
  4. width: 100%;
  5. display: flex;
  6. align-items: center;
  7. line-height: 60rpx;
  8. font-size: 32rpx;
  9. }
  10. .header .block{
  11. padding: 0rpx 15rpx;
  12. flex: none;
  13. }
  14. .header .body{
  15. flex: 1;
  16. box-sizing: border-box;
  17. height: 60rpx;
  18. padding-right: 15rpx;
  19. }
  20. .ios{
  21. height: calc(100rpx + constant(safe-area-inset-bottom));
  22. height:calc(100rpx + env(safe-area-inset-bottom));
  23. }