134 lines
2.1 KiB
Plaintext
134 lines
2.1 KiB
Plaintext
/* pages/myBookingsList/index.wxss */
|
|
|
|
.container {
|
|
min-height: calc(100vh - 260rpx);
|
|
padding: 250rpx 30rpx 30rpx 30rpx;
|
|
}
|
|
|
|
.header {
|
|
position: fixed;
|
|
top: 120rpx;
|
|
left: 0;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
height: 90rpx;
|
|
background: #1a191e;
|
|
}
|
|
|
|
.header .btn-box {
|
|
flex: 1;
|
|
height: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.header .btn-box .item-btn {
|
|
width: 90rpx;
|
|
height: 84rpx;
|
|
margin: 0 auto;
|
|
font-size: 28rpx;
|
|
line-height: 90rpx;
|
|
border-bottom: 6rpx solid #1a191e;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
}
|
|
|
|
.header .btn-box .item-btn.isActive {
|
|
color: #ffda2e;
|
|
border-bottom: 6rpx solid #ffda2e;
|
|
}
|
|
|
|
.cell {
|
|
margin-bottom: 30rpx;
|
|
border-radius: 20rpx;
|
|
background: #1a191e;
|
|
}
|
|
|
|
.cell .top {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 80rpx;
|
|
padding: 0 26rpx;
|
|
border: 2rpx solid #212025;
|
|
}
|
|
|
|
.cell .top>text:first-child {
|
|
font-size: 24rpx;
|
|
color: #fff;
|
|
}
|
|
|
|
.cell .top>text:last-child {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
.cell .top>text:last-child.isActive {
|
|
color: #ffda2e;
|
|
}
|
|
|
|
.cell .bottom {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 20rpx 24rpx;
|
|
}
|
|
|
|
.cell .bottom>image {
|
|
width: 130rpx;
|
|
height: 110rpx;
|
|
}
|
|
|
|
.cell .bottom .goods-box {
|
|
flex: 1;
|
|
margin-left: 20rpx;
|
|
}
|
|
|
|
.cell .bottom .goods-box .title-box {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.cell .bottom .goods-box .title-box .title-left {
|
|
flex: 1;
|
|
height: 26rpx;
|
|
color: #fff;
|
|
font-size: 24rpx;
|
|
line-height: 26rpx;
|
|
}
|
|
|
|
.cell .bottom .goods-box .title-box .title-left>text:first-child {
|
|
font-size: 26rpx;
|
|
color: #ffda2e;
|
|
}
|
|
|
|
.cell .bottom .goods-box .title-box .title-right {
|
|
font-size: 24rpx;
|
|
color: #FFF;
|
|
}
|
|
|
|
.cell .bottom .goods-box .message {
|
|
font-size: 22rpx;
|
|
color: #FFF;
|
|
line-height: 22rpx;
|
|
margin-top: 16rpx;
|
|
}
|
|
|
|
.newplot {
|
|
position: fixed;
|
|
top: 260rpx;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #FFF;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.newplot>image {
|
|
width: 200rpx;
|
|
height: 200rpx;
|
|
margin-top: -200rpx;
|
|
} |