head.scss 913 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .head {
  2. position: relative;
  3. z-index: 9;
  4. display: flex;
  5. align-items: center;
  6. justify-content: space-around;
  7. width: 100vw;
  8. height: 100rpx;
  9. background-color: #fff;
  10. padding: 0 10rpx;
  11. box-sizing: border-box;
  12. border-top: 1px solid #ddd;
  13. box-shadow: rgba(0, 0, 0, 0.08) 0px 4rpx 12rpx;
  14. .item {
  15. width: 200rpx;
  16. height: 58rpx;
  17. line-height: 58rpx;
  18. text-align: center;
  19. background: #F6F6F6;
  20. border-radius: 8rpx;
  21. font-size: 28rpx;
  22. font-family: PingFang SC-Regular, PingFang SC;
  23. color: #999999;
  24. }
  25. .active {
  26. background-color: #3874F6 !important;
  27. color: #fff !important;
  28. transform: background-color 0.3s;
  29. }
  30. .filter {
  31. width: 58rpx;
  32. text-align: center;
  33. .iconfont {
  34. color: #999999;
  35. font-size: 28rpx;
  36. }
  37. }
  38. }