1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- page {
- background-color: #FAFAFA;
- }
- .mems {
- margin-top: 20rpx;
- }
- .mems .mems_cell {
- padding-left: 38rpx;
- padding-right: 45rpx;
- height: 170rpx;
- background-color: #FFFFFF;
- border-bottom: 1px solid #FAFAFA;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .mems .left {
- flex: 1;
- display: flex;
- align-items: center;
- }
- .mems .right {
- display: flex;
- align-items: flex-end;
- flex-direction: column;
- justify-content: space-between;
- overflow: hidden;
- }
- .mems .right .time {
- font-size: 26rpx;
- color: #333;
- }
- .mems .mems_icon {
- width: 110rpx;
- height: 110rpx;
- border-radius: 50%;
- overflow: hidden;
- margin-right: 20rpx;
- }
- .mems .mems_info {
- flex: 1;
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- flex-direction: column;
- }
- .mems .mems_name {
- font-size: 32rpx;
- color: #333333;
- }
- .mems .mems_desc {
- margin-top: 15rpx;
- display: block;
- font-size: 26rpx;
- color: #999999;
- }
- .mems .mems_money {
- float:left;
- font-size:42rpx;
- line-height:63rpx;
- display:flex;
- align-items:flex-end;
- color:#FD0808;
- }
- .mems .mems_money text {
- font-size: 30rpx;
- color: #FD0808;
- margin-left: 11rpx;
- line-height: 60rpx;
- }
- .mems .mems_ang {
- float: left;
- width: 30rpx;
- margin-left: 22rpx;
- height: 30rpx;
- }
|