12345678910111213141516171819202122232425262728 |
- /* components/menberCard/index.wxss */
- .small{
- font-size: 26rpx;
- line-height: 25px;
- }
- .colorError{
- color:#e34d59 !important;
- }
- .label{
- color:#999;
- margin-right: 5px;
- font-size: 24rpx;
- }
- .flex{
- display: flex;
- align-items: center;
- }
- .deleteBtn {
- height: 25px;
- width: 25px;
- border-radius: 100%;
- font-size: 15rpx;
- color:#fff;
- background-color: #e34d59;
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
|