55 lines
766 B
Plaintext
55 lines
766 B
Plaintext
.container {
|
|
padding: 20rpx;
|
|
}
|
|
|
|
.subscribe-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 30rpx 20rpx;
|
|
border-bottom: 1rpx solid #f5f5f5;
|
|
}
|
|
|
|
.status-container {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.status-text {
|
|
font-size: 26rpx;
|
|
margin-right: 15rpx;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.status-text.subscribed {
|
|
color: #07c160;
|
|
}
|
|
|
|
.status-text.rejected {
|
|
color: #ee0a24;
|
|
}
|
|
|
|
.status-text.unsubscribed {
|
|
color: #576b95;
|
|
}
|
|
|
|
.action-text {
|
|
font-size: 26rpx;
|
|
/* color: #576b95; */
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
.item-name {
|
|
font-size: 32rpx;
|
|
color: #333;
|
|
}
|
|
|
|
.item-action {
|
|
font-size: 28rpx;
|
|
color: #576b95;
|
|
}
|
|
|
|
.item-switch {
|
|
transform: scale(0.8);
|
|
} |