96 lines
1.5 KiB
Plaintext
96 lines
1.5 KiB
Plaintext
/* pages/sportsGroundList/index.wxss */
|
|
|
|
.container {
|
|
min-height: calc(100vh - 300rpx);
|
|
padding-top: 270rpx;
|
|
padding-bottom: 30rpx;
|
|
}
|
|
|
|
.header {
|
|
position: fixed;
|
|
top: 120rpx;
|
|
left: 0;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 140rpx;
|
|
background: #1a191e;
|
|
border-bottom: 2rpx solid #212025;
|
|
}
|
|
|
|
.header .item-box {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
font-size: 24rpx;
|
|
line-height: 24rpx;
|
|
}
|
|
|
|
.header .item-box.isActive {
|
|
color: #ffca00;
|
|
}
|
|
|
|
.header .item-box>image {
|
|
width: 66rpx;
|
|
height: 58rpx;
|
|
margin-bottom: 16rpx;
|
|
}
|
|
|
|
.list .cell-box {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 140rpx;
|
|
margin-bottom: 30rpx;
|
|
padding: 0 26rpx 0 16rpx;
|
|
background: #1a191e;
|
|
}
|
|
|
|
.list .cell-box>image {
|
|
width: 130rpx;
|
|
height: 110rpx;
|
|
margin-right: 20rpx;
|
|
}
|
|
|
|
.list .cell-box .cell {
|
|
flex: 1;
|
|
}
|
|
|
|
.list .cell-box .cell .title {
|
|
color: #fff;
|
|
font-size: 28rpx;
|
|
line-height: 28rpx;
|
|
}
|
|
|
|
.list .cell-box .cell .address {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-top: 30rpx;
|
|
font-size: 24rpx;
|
|
line-height: 24rpx;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
}
|
|
|
|
.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;
|
|
} |