2025-06-06 15:07:26 +08:00

143 lines
2.6 KiB
Plaintext

.income {
background-position: top center;
background-repeat: no-repeat;
background-size: 100% 325rpx;
min-height: 100vh;
padding-bottom: 100rpx;
}
.incomeList {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 55rpx;
box-sizing: border-box;
margin-top: 30rpx;
}
.incomeItem {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.incomeItem_Num {
font-weight: 500;
font-size: 40rpx;
color: #FFFFFF;
}
.incomeItem_text {
font-weight: 400;
font-size: 26rpx;
color: #FFFFFF;
margin-top: 20rpx;
}
.border {
position: relative;
padding-left: 56rpx;
padding-right: 56rpx;
}
.border::after {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
height: 71rpx;
width: 1rpx;
background-color: #fff;
}
.border::before {
content: '';
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
height: 71rpx;
width: 1rpx;
background-color: #fff;
}
.orderTab {
display: flex;
align-items: center;
margin-top: 64rpx;
padding-bottom: 30rpx;
justify-content: space-around;
}
.tabItem {
font-weight: 400;
font-size: 28rpx;
color: #555555;
}
.active {
font-weight: bold;
font-size: 32rpx;
color: #222222;
position: relative;
padding-bottom: 10rpx;
padding-top: 10rpx;
}
.active::after {
content: '';
width: 130rpx;
height: 10rpx;
background: #2583FF;
left: 50%;
transform: translateX(-50%);
bottom: 0rpx;
display: block;
position: absolute;
}
.active::before {
width: 130rpx;
height: 10rpx;
background: #FF5D73;
border-radius: 0rpx 0rpx 0rpx 0rpx;
filter: blur(6.599999904632568rpx);
left: 50%;
transform: translateX(-50%);
bottom: 0rpx;
display: block;
position: absolute;
z-index: -1;
}
.orderList{
background-color: #f9f9f9;
}
.orderItem{
background-color: #fff;
padding-top: 30rpx;
padding-bottom: 30rpx;
margin-bottom: 30rpx;
}
.orderItem_row {
display: flex;
align-items: center;
padding-left: 20rpx;
margin-bottom: 20rpx;
}
.orderItem_row_tit {
font-weight: 400;
font-size: 26rpx;
color: #999999;
margin-right: 30rpx;
min-width: 4em;
}
.orderItem_row_con {
font-weight: 400;
font-size: 26rpx;
color: #222222;
}