12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- page {
- background-color: #FAFAFA;
- }
- .incomelog {
- }
- .incomelog .incomelog_cell {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-left: 38rpx;
- padding-right: 45rpx;
- height: 170rpx;
- background-color: #FFFFFF;
- border-bottom: 1px solid #FAFAFA;
- }
- .incomelog .left {
- overflow: hidden;
- display: flex;
- align-items: center;
- }
- .incomelog .right {
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- justify-content: cengter;
- }
- .incomelog .icon {
- float: left;
- width: 110rpx;
- height: 110rpx;
- border-radius: 50%;
- overflow: hidden;
- margin-right: 20rpx;
- }
- .incomelog .info {
- float: left;
- }
- .incomelog .info text {
- display: block;
- }
- .incomelog .info .info_name{
- font-size: 32rpx;
- line-height: 45rpx;
- color: #333333;
- }
- .incomelog .info .info_target{
- font-size: 26rpx;
- line-height: 37rpx;
- color: #999999;
- margin-top: 15rpx;
- }
- .incomelog .money {
- font-size: 48rpx;
- color: #FD0808;
- display: flex;
- align-items: flex-end;
- }
- .incomelog .money text{
- font-size: 30rpx;
- margin-left: 10rpx;
- color: #FD0808;
- line-height: 55rpx;
- }
- .incomelog .date {
- font-size: 26rpx;
- color: #333333;
- margin-top: 6rpx;
- text-align: right;
- }
|