12345678910111213141516171819202122232425262728293031323334 |
- button {
- padding: 0;
- border-radius: 0;
- color: #fff;
- margin: 0;
- }
- button::after {
- border: 0;
- }
- .btn-text {
- display: inline;
- font-size: 28rpx;
- background: rgba(0,0,0,0);
- }
- .btn {
- width: 124rpx;
- height: 62rpx;
- font-size: 26rpx;
- font-weight: 700;
- border-radius: 100px;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- letter-spacing: 0.56rpx;
- }
- .btn-primary {
- background: #557cff;
- box-shadow: 0 0px 18px 0 rgba(85, 124, 255, 0.5);
- }
- .btn-cancel {
- background: #adb5cd;
- box-shadow: 0 0px 18px 0 rgba(173, 181, 205, 0.5);
- }
|