YZProjectCloud/yanzhu-ui-app/miniprogram/pages/components/select-btn/index.wxss

37 lines
413 B
Plaintext

/* pages/components/select-btn/index.wxss */
.select_btn{
display: flex;
align-items: center;
font-size: 26rpx;
color:#737478;
}
.select_btn view{
background: #262d4a;
padding: 12rpx 30rpx;
}
.select_btn view:first-child{
border-radius: 50rpx 0 0 50rpx;
}
.select_btn view:last-child{
border-radius:0 50rpx 50rpx 0;
}
.select_btn .active{
color: #88a3ea;
background: #2e355f;
}