12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* pages/cashRecord/cashRecord.wxss */
- Page {
- height: 100%;
- width: 100%;
- background-color: #f9f9fb;
- }
- .all {
- margin-left: 40rpx;
- margin-right: 40rpx;
- line-height: 100rpx;
- font-size: 28rpx;
- color: #878787;
- }
- .line, .bottom-line {
- height: 1px;
- background-color: #dddce1;
- }
- .bottom-line {
- margin-top: -1px;
- }
- .record-bg {
- background-color: white;
- height: 160rpx;
- width: 100%;
- display: flex;
- flex-direction: column;
- }
- .record-first-line, .record-second-line {
- margin-left: 40rpx;
- margin-right: 40rpx;
- display: flex;
- flex-direction: row;
- }
- .record-first-line {
- height: 50rpx;
- margin-top: auto;
- }
- .record-second-line {
- margin-top: 8rpx;
- margin-bottom: auto;
- }
- .record-to {
- font-size: 32rpx;
- color: #262626;
- text-align: left;
- margin-right: auto;
- line-height: 50rpx;
- }
- .record-memoy {
- font-size: 36rpx;
- color: #262626;
- font-weight: bold;
- text-align: right;
- margin-left: auto;
- line-height: 50rpx;
- }
- .record-time {
- font-size: 24rpx;
- color: #878787;
- text-align: left;
- margin-right: auto;
- }
- .record-status {
- font-size: 24rpx;
- text-align: right;
- margin-left: auto;
- }
- .record-line {
- margin-left: 40rpx;
- /* margin-top: auto; */
- height: 1px;
- background-color: #dddce1;
- }
|