228 lines
3.6 KiB
Plaintext
228 lines
3.6 KiB
Plaintext
/* packageF/storeManagement/withdrawalDetail/withdrawalDetail.wxss */
|
|
page {
|
|
text-align: center;
|
|
}
|
|
|
|
view,
|
|
text {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.top-box {
|
|
padding: 64rpx 0;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.top-box .amount {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.top-box .amount .num {
|
|
font-size: 60rpx;
|
|
color: #323232;
|
|
}
|
|
|
|
.top-box .status {
|
|
display: inline-block;
|
|
margin-top: 38rpx;
|
|
color: #fff;
|
|
font-size: 22rpx;
|
|
padding: 6rpx 16rpx;
|
|
border-radius: 4rpx;
|
|
background-color: #f15353;
|
|
}
|
|
|
|
.top-box .red {
|
|
background-color: #f15353;
|
|
}
|
|
|
|
.top-box .yellow {
|
|
background-color: #f7c124;
|
|
}
|
|
|
|
.top-box .blue {
|
|
background-color: #28b2fa;
|
|
}
|
|
|
|
.top-box .green {
|
|
background-color: #74b23d;
|
|
}
|
|
|
|
.top-box .orange {
|
|
background-color: #f2852e;
|
|
}
|
|
|
|
.top-box .grey {
|
|
background-color: #a6a6a6;
|
|
}
|
|
|
|
.ul {
|
|
margin-top: 20rpx;
|
|
padding: 0 31rpx;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.ul .li {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 20rpx 0;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.ul .li .title {
|
|
white-space: nowrap;
|
|
color: #6b6b6b;
|
|
}
|
|
|
|
.ul .li .text {
|
|
padding-left: 32rpx;
|
|
white-space: pre-wrap;
|
|
word-break: break-all;
|
|
color: #303030;
|
|
}
|
|
|
|
.income {
|
|
margin-top: 20rpx;
|
|
text-align: left;
|
|
}
|
|
|
|
.bottom-btns {
|
|
position: absolute;
|
|
bottom: 64rpx;
|
|
left: 30rpx;
|
|
right: 30rpx;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.bottom-btns .btn {
|
|
flex: 1;
|
|
margin-right: 16rpx;
|
|
color: #fff;
|
|
border-radius: 96rpx;
|
|
background-color: #f15353;
|
|
padding: 26rpx;
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
}
|
|
|
|
.bottom-btns .btn:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.bottom-btns .weChat-pay {
|
|
background-color: #f2852e;
|
|
}
|
|
|
|
.bottom-btns .reject-pay {
|
|
color: #f15353;
|
|
border: solid 2rpx #f15353;
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.bottom-btns .re-pay {
|
|
color: #f2852e;
|
|
border: solid 2rpx #f2852e;
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.record-detail-popup {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 48rpx 6rpx;
|
|
font-size: 27rpx;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.record-detail-popup .th {
|
|
color: #646464;
|
|
margin-bottom: 32rpx;
|
|
}
|
|
|
|
.record-detail-popup .tr {
|
|
position: relative;
|
|
white-space: nowrap;
|
|
height: 80rpx;
|
|
line-height: 80rpx;
|
|
}
|
|
|
|
.record-detail-popup .tr::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 0;
|
|
height: 1px;
|
|
width: 100%;
|
|
transform: translateX(-50%);
|
|
background-color: #ececec;
|
|
}
|
|
|
|
.record-detail-popup .srcoll-box {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
/* .record-detail-popup .empty-placeholder {
|
|
width: 100%;
|
|
height: calc(100rpx + env(safe-area-inset-bottom));
|
|
} */
|
|
.record-detail-popup .all-handler {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
height: 100rpx;
|
|
padding: 0 21rpx;
|
|
background: #fff;
|
|
border-top: 2rpx solid #e1e1e1;
|
|
}
|
|
|
|
.record-detail-popup .all-handler .check-all {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.record-detail-popup .all-handler .check-all text {
|
|
margin-left: 5rpx;
|
|
}
|
|
|
|
.record-detail-popup .icon-all_select_active {
|
|
font-size: 32rpx;
|
|
color: #c4c4c4;
|
|
}
|
|
|
|
.record-detail-popup .activeIcon {
|
|
color: #f15353;
|
|
}
|
|
|
|
.record-detail-popup .all-handler .btns {
|
|
flex: 1;
|
|
display: flex;
|
|
font-size: 26rpx;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.record-detail-popup .all-handler .btns .btn {
|
|
color: #f15353;
|
|
padding: 6rpx 26rpx;
|
|
border: 1px solid #f15353;
|
|
border-radius: 26rpx;
|
|
}
|
|
|
|
.record-detail-popup .all-handler .btn-active {
|
|
color: #fff !important;
|
|
background-color: #f15353;
|
|
}
|
|
|
|
.record-detail-popup .all-handler .complete {
|
|
margin-right: 32rpx;
|
|
color: #f15353;
|
|
}
|
|
|
|
.record-detail-popup .close-icon {
|
|
font-size: 32rpx;
|
|
}
|