12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /* pages/user/team.wxss */
- .team_overview {
- background-color: #fff;
- height: 96rpx;
- line-height: 96rpx;
- padding: 0 60rpx 0 38rpx;
- }
- .team_count {
- color: #666;
- font-size: 32rpx;
- }
- .team_new {
- color: #FD0808;
- float: right;
- font-size: 28rpx;
- }
- .team_list {
- margin-top: 20rpx;
- }
- .team_item {
- align-items: center;
- background-color: #fff;
- border-bottom: 2rpx solid #fafafa;
- display: flex;
- height: 170rpx;
- padding: 0 45rpx 0 38rpx;
- }
- .team_avatar {
- border-radius: 50%;
- height: 110rpx;
- margin-right: 20rpx;
- width: 110rpx;
- }
- .team_nickname {
- color: #333;
- flex: 1;
- font-size: 32rpx;
- }
- .team_price {
- color: #FD0808;
- font-size: 48rpx;
- }
- .team_price-unit {
- font-size: 30rpx;
- }
|