index.scss 747 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .Yl_nav_box {
  2. display: flex;
  3. width: 100vw;
  4. height: 90rpx;
  5. background-color: #fff;
  6. position: sticky;
  7. top: 0;
  8. .mian {
  9. flex: 1;
  10. display: flex;
  11. justify-content: space-around;
  12. .item {
  13. width: 216rpx;
  14. height: 90rpx;
  15. line-height: 90rpx;
  16. text-align: center;
  17. font-size: 28rpx;
  18. font-family: PingFang SC-Regular, PingFang SC;
  19. color: #666666;
  20. .iconfont{
  21. font-size: 28rpx;
  22. margin-right: 4rpx;
  23. }
  24. }
  25. }
  26. .search {
  27. width: 90rpx;
  28. height: 90rpx;
  29. line-height: 90rpx;
  30. text-align: center;
  31. flex-shrink: 0;
  32. }
  33. }