header.wxss 947 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /* templates/header/header.wxss */
  2. .header-container {
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 88rpx;
  8. background: #F1F3FA;
  9. box-shadow: 0 0 8rpx 0 rgba(0,0,0,0.1);
  10. z-index:10000;
  11. }
  12. .header-wrapper {
  13. width: 100%;
  14. margin: 0;
  15. border-bottom: 1rpx #D0D5E6 solid;
  16. border-top: 1rpx #D0D5E6 solid;
  17. }
  18. .header-items {
  19. display: flex;
  20. justify-content: space-around;
  21. align-items: center;
  22. text-align: center;
  23. margin: 0;
  24. font-weight:600;
  25. }
  26. .header-item {
  27. /* padding: 10rpx 22rpx 6rpx 22rpx; */
  28. display: flex;
  29. flex-direction: column;
  30. align-items: center;
  31. text-align: center;
  32. height: 88rpx;
  33. }
  34. .header-item-text {
  35. text-align: center;
  36. font-size: 24rpx;
  37. color: #7C819D;
  38. background: #DADCE7;
  39. border-radius:50rpx;
  40. padding: 12rpx 50rpx;
  41. margin-top: 18rpx;
  42. }
  43. .header-item-text-active {
  44. color: #FF6465;
  45. background:rgba(255,100,101,0.2);
  46. }
  47. .header-item-specific-text-active {
  48. color: #fff;
  49. }