123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /* pages/income-details/income-details.wxss */
- page {
- background: #fff;
- }
- /* 底色白色 */
- /* .income-detail {
- padding-bottom: 20rpx;
- border-top: 1rpx solid #e1e1e1;
- background: #fff;
- box-shadow: 0 4px 10px 0 rgba(83, 83, 83, 0.288);
- } */
- /* 卡片 */
- .income-detail {
- padding-bottom:20rpx;
- border-top:1rpx solid #e1e1e1;
- /* background:#3a86b9; */
- /* background:#e43130; */
- box-shadow:0 4px 10px 0 rgba(83, 83, 83, 0.288);
- border-radius:30rpx;
- width:96%;
- margin: 10rpx auto 0;
- color: #ffffff;
- background-image: linear-gradient(#323444 20%, #565969 80%);
- }
- .gather-income {
- padding: 20rpx 0;
- text-align: center;
- }
- .gather-income .title {
- font-size: 28rpx;
- margin-bottom: 20rpx;
- }
- .number {
- display: inline-block;
- margin: auto;
- text-align: center;
- background: #fff;
- /* color: #3a86b9; */
- color: #bea379;
- padding: 10rpx 30rpx;
- padding-top: 14rpx;
- border-radius: 50rpx;
- line-height: 1em;
- /* border: 1rpx solid #fff; */
- }
- .income-item {
- display: flex;
- justify-content: space-around;
- margin-top: 30rpx;
- margin-bottom: 30rpx;
- }
- .items {
- width: 50%;
- text-align: center;
- font-size: 28rpx;
- border-right: 1rpx solid #bea379;
- }
- .items > view {
- line-height: 2em;
- }
- .items:last-child {
- border: none;
- }
- .block-title {
- display: flex;
- justify-content: space-between;
- padding: 0 30rpx;
- font-size: 28rpx;
- height: 70rpx;
- line-height: 70rpx;
- margin-top: 30rpx;
- background: rgb(247, 247, 247);
- border-top: 1rpx solid #f0f0f0;
- border-bottom: 1rpx solid #f0f0f0;
- }
- .block-lists .list-item {
- padding: 10rpx 0;
- }
- .block-lists .list-item:nth-child(2n) {
- background: #f4f4f4;
- }
- .block-lists .list-item .tit {
- display: flex;
- padding: 10rpx 30rpx;
- font-size: 28rpx;
- justify-content: space-between;
- }
- .block-lists .list-item .tit .origin {
- flex: 1;
- }
- .block-lists .list-item .tit .income-num {
- text-align: right;
- color: #eb2444;
- display: flex;
- flex-direction: column;
- justify-content: space-between
- }
- .income-fail{
- color: #666;
- }
- .block-lists .list-item .tit .income-num .invalid-num {
- color: #999;
- }
- .block-lists .list-item .date {
- font-size: 22rpx;
- color: #999;
- padding-top: 10rpx;
- }
- .loading, .empty {
- text-align: center;
- font-size: 28rpx;
- width: 100%;
- height: 80rpx;
- line-height: 80rpx;
- color: #666;
- }
- .origin-status{
- font-size: 22rpx;
- }
|