| 123456789101112131415161718192021222324252627282930313233343536373839 | /* nova-werun/pages/send-circle/index.wxss */.all{    width: 100vw;    padding-top: 10rpx;    padding-left: 20rpx;    padding-right: 20rpx;    .send{        margin-left: auto;        width: 100rpx;        height: 50rpx;        font-size: 30rpx;        color: white;        background-color: rgb(30, 208, 30);        border-radius: 10rpx;        margin-right:20rpx ;        display: flex;        justify-content: center;        align-items: center;    }    .send2{        margin-left: auto;        width: 100rpx;        height: 50rpx;        font-size: 30rpx;        color: gray;        background-color: #e6e6e6;        border-radius: 10rpx;        margin-right:20rpx ;        display: flex;        justify-content: center;        align-items: center;    }    .textarea{        width: 100%;        font-size: 32rpx;        margin-bottom: 40rpx;        margin-top: 20rpx;    }}
 |