header.wxss 777 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* templates/header/header.wxss */
  2. .header-container {
  3. width: 100%;
  4. height: 88rpx;
  5. z-index:10000;
  6. }
  7. .header-wrapper {
  8. width: 100%;
  9. margin: 0;
  10. }
  11. .header-items {
  12. display: flex;
  13. justify-content: space-around;
  14. align-items: center;
  15. text-align: center;
  16. margin:5% 20%;
  17. font-weight:600;
  18. }
  19. .header-item {
  20. /* padding: 10rpx 22rpx 6rpx 22rpx; */
  21. display: flex;
  22. flex-direction: column;
  23. align-items: center;
  24. text-align: center;
  25. height: 88rpx;
  26. }
  27. .header-item-text {
  28. text-align: center;
  29. font-size: 36rpx;
  30. color: #7C819D;
  31. /* background: #DADCE7;
  32. border-radius:50rpx; */
  33. padding: 6rpx 0;
  34. margin-top: 18rpx;
  35. }
  36. .header-item-text-active {
  37. color: #393939;
  38. border-bottom: 8rpx #FF6465 solid;
  39. }
  40. .header-item-specific-text-active {
  41. color: #fff;
  42. }