12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- .new1Radio {
- border: 1px solid #E2E5EA;
- border-radius: 999px;
- padding: 3px;
- display: inline-flex;
- gap: 4px;
- >div {
- height: 28px;
- padding: 0 20px;
- box-sizing: border-box;
- border-radius: 999px;
- align-items: center;
- position: relative;
- line-height: 28px;
- color: rgba(0, 0, 0, 0.95);
- font-weight: 500;
- cursor: pointer;
- user-select: none;
- >span {
- display: block;
- transition-property: opacity, transform, right, left;
- transition-duration: .2s;
- }
- >div {
- position: absolute;
- left: 12px;
- content: '';
- width: 16px;
- height: 16px;
- color: #1890ff;
- opacity: 0;
- }
- &.newRadioActive {
- background: #f2f4fa;
- >div {
- opacity: 1;
- }
- >span {
- transform: translateX(8px);
- font-weight: 600;
- }
- }
- &.disabled {
- color: rgb(196, 199, 204);
- cursor: not-allowed;
- }
- }
- }
|