123456789101112131415161718192021222324252627282930 |
- .RoundedCornerButtonTabs {
- width: 100%;
- margin-bottom: 20rpx;
- }
- .RoundedCornerButtonTabs-item {
- display: inline-block;
- width: 152rpx;
- height: 50rpx;
- line-height: 46rpx;
- text-align: center;
- font-size: 24rpx;
- color: rgba(0, 0, 0, .36);
- border: 2rpx solid #979797;
- border-radius: 25rpx;
- margin-left: 12rpx;
- box-sizing: border-box;
- opacity: 0.6;
- }
- .RoundedCornerButtonTabs-item:first-child {
- margin-left: 6rpx !important;
- }
- .RoundedCornerButtonTabs>.active {
- background-color: #4DC2D4;
- color: #ffffff;
- border: 0;
- border: 2rpx solid #4DC2D4;
- }
|