12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /* components/activity/makeGroup.wxss */
- .groupContent{
- padding: 10rpx 6rpx;
- background: #fff2f6;
- }
- .preferential {
- display: flex;
- justify-content: space-between;
- align-items: center;
- position: relative;
- }
- .preferential-text2 {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-left: 0;
- }
- .preferential > .preferential-text {
- flex-shrink: 1;
- margin: 0 40rpx 0 20rpx;
- font-size: 24rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- width: 100%;
- }
- .preferential > .preferential-after {
- flex-shrink: 0;
- margin-right: 20rpx;
- }
- .head{
- width: 25%;
- height: 54rpx;
- overflow: hidden;
- }
- .head > image:first-child{
- margin-left: 0;
- }
- .head > image {
- width: 50rpx;
- height: 50rpx;
- border-radius: 100%;
- vertical-align: middle;
- margin-left: -20rpx;
- border:4rpx solid #fff;
- }
- .red {
- color: #EE3A43;
- }
- .button.button-warn {
- background-color: #ee3a43;
- color: #fff;
- }
- .button.button-mini {
- height: 50rpx;
- line-height: 50rpx;
- font-size: 24rpx;
- }
- .button.button-radius {
- border-radius: 60rpx;
- }
|