index.wxss 354 B

123456789101112131415161718
  1. /* pages/custom-tab-bar/index.wxss */
  2. /* tabbar大图标 */
  3. .avtion{
  4. position: relative;
  5. }
  6. .avtion::after{
  7. position: absolute;
  8. display: inline-block;
  9. content: '';
  10. width: 80rpx;
  11. height: 80rpx;
  12. background-color: #FBA81E;
  13. border-radius: 50%;
  14. top: 0%;
  15. left: 50%;
  16. transform: translate(-50%,-50%);
  17. z-index: 99;
  18. }