You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.5 KiB
76 lines
1.5 KiB
page {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
height: auto;
|
|
overflow-y: auto;
|
|
}
|
|
.grid-manage {
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
padding: 20rpx;
|
|
background: #f7f7f7;
|
|
}
|
|
.grid-manage .list-item {
|
|
width: 100%;
|
|
height: 210rpx;
|
|
background: #fff;
|
|
border-radius: 16rpx;
|
|
box-sizing: border-box;
|
|
padding: 0 5rpx;
|
|
}
|
|
.grid-manage .list-item + .list-item {
|
|
margin-top: 20rpx;
|
|
}
|
|
.grid-manage .list-item .top {
|
|
width: 100%;
|
|
height: 90rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
border-bottom: 1rpx solid #e7eeee;
|
|
}
|
|
.grid-manage .list-item .top .location {
|
|
width: 36rpx;
|
|
height: 36rpx;
|
|
object-fit: cover;
|
|
margin: 0 10rpx 0 20rpx;
|
|
}
|
|
.grid-manage .list-item .top .gridname {
|
|
font-size: 32rpx;
|
|
color: #333;
|
|
}
|
|
.grid-manage .list-item .bottom {
|
|
width: 100%;
|
|
height: 120rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.grid-manage .list-item .bottom .invite-friend {
|
|
width: 220rpx;
|
|
height: 64rpx;
|
|
border-radius: 32rpx;
|
|
padding: 0;
|
|
background: linear-gradient(to right, #02c7b5, #00cd96);
|
|
line-height: 64rpx;
|
|
color: #fff;
|
|
font-size: 28rpx;
|
|
text-align: center;
|
|
}
|
|
.grid-manage .list-item .bottom .hover-invite {
|
|
background: #087569;
|
|
}
|
|
.grid-manage .list-item .bottom .delete-grid {
|
|
width: 220rpx;
|
|
height: 64rpx;
|
|
border-radius: 32rpx;
|
|
padding: 0;
|
|
background: linear-gradient(to right, #f51111, #fe4a4a);
|
|
line-height: 64rpx;
|
|
color: #fff;
|
|
font-size: 28rpx;
|
|
text-align: center;
|
|
}
|
|
.grid-manage .list-item .bottom .hover-delete {
|
|
background: #a90707;
|
|
}
|