index.wxss 508 B

12345678910111213141516171819202122232425
  1. .RoundedCornerButtonTabs {
  2. width: 100%;
  3. margin-bottom: 20rpx;
  4. }
  5. .RoundedCornerButtonTabs-item {
  6. display: inline-block;
  7. width: 120rpx;
  8. height: 40rpx;
  9. line-height: 40rpx;
  10. text-align: center;
  11. border-radius: 40rpx;
  12. border: 2rpx solid #979797;
  13. opacity: 0.6;
  14. font-size: 20rpx;
  15. color: rgba(0, 0, 0, .36);
  16. margin-left: 12rpx;
  17. }
  18. .RoundedCornerButtonTabs>.active {
  19. background-color: #4DC2D4;
  20. color: #ffffff;
  21. border: 0;
  22. border: 2rpx solid #4DC2D4;
  23. }