| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- .tab-radio-container {
- display: grid;
- gap: 16rpx;
- align-items: center;
- background-color: #ffffff;
- border-radius: 8rpx;
- padding: 4rpx;
- margin: 10rpx 0;
- width: 100%;
- box-sizing: border-box;
- }
- .tab-item {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- transition: all 0.3s ease;
- cursor: pointer;
- background-color: #f9f9f9;
- border:1px solid transparent;
- border-radius: 40rpx;
- padding:14rpx 20rpx;
- font-size: 24rpx;
- .tab-item__text {
- color: #484848;
- font-weight: 400;
- transition: all 0.3s ease;
- }
- }
- .tab-item--active {
- border:1px solid #2563eb;
- background-color: rgba(37, 99, 235, 0.1);
- .tab-item__text {
- color: #2563eb;
- font-weight: 500;
- }
- }
|