tarbar.wxss 574 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* compontents/tarbar/tarbar.wxss */
  2. /*菜单*/
  3. .menu{
  4. position: fixed;
  5. top: 0;
  6. left: 0;
  7. width: 100%;
  8. z-index: 99;
  9. background: #FAF8FB;
  10. }
  11. .top-nav{
  12. white-space: nowrap;
  13. }
  14. .top-btn{
  15. position: relative;
  16. display: inline-block;
  17. padding: 12rpx 20rpx;
  18. font-size: 36rpx;
  19. color: #878787;
  20. }
  21. .top-hoverd-btn {
  22. color: #000;
  23. }
  24. .striping {
  25. position: absolute;
  26. left: 50%;
  27. bottom: 0;
  28. transform: translateX(-50%);
  29. width: 26rpx;
  30. border-bottom: #000 solid 6rpx;
  31. display: none;
  32. }
  33. .top-hoverd-striping {
  34. display: block;
  35. }