Header.wxss 634 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .header {
  2. height: 176rpx;
  3. position: relative;
  4. }
  5. .header-bg{
  6. width: 100%;
  7. height: 100%;
  8. position: absolute;
  9. top: 0;
  10. left: 0;
  11. right: 0;
  12. }
  13. .header-item{
  14. display: flex;
  15. align-items: center;
  16. position: absolute;
  17. bottom: 24rpx;
  18. margin: 0 40rpx;
  19. left: 0;
  20. right: 0;
  21. }
  22. .header-icon-left,.header-icon-right{
  23. width:40rpx;
  24. height: 48rpx;
  25. text-align: center;
  26. }
  27. .header-icon{
  28. width: 16rpx;
  29. height: 48rpx;
  30. flex-shrink: 0;
  31. color: #000;
  32. }
  33. .header-text{
  34. font-family: PingFangSC, PingFang SC;
  35. font-weight: 500;
  36. font-size: 34rpx;
  37. color: #000000;
  38. line-height: 48rpx;
  39. flex: 1;
  40. text-align: center;
  41. }