108 lines
1.8 KiB
Plaintext
Raw Normal View History

2024-08-21 18:36:55 +08:00
.view {
box-sizing: border-box;
line-height: 1;
margin: 0;
padding: 0;
}
.containerView.public {
background: #f8f8f8;
min-height: 100vh;
}
2024-08-21 19:36:59 +08:00
.publicView {
padding: 0 32rpx;
}
2024-08-21 18:36:55 +08:00
.topHead {
display: flex;
justify-content: flex-start;
align-items: center;
2024-08-21 19:36:59 +08:00
margin-top: 50rpx;
2024-08-21 18:36:55 +08:00
}
.topHead .logoImg {
width: 91rpx;
height: 91rpx;
}
.topHead .title {
margin-left: 20rpx;
color: #363636;
font-size: 30rpx;
}
.leftLineTitle {
margin-top: 60rpx;
}
.sceneView {
display: flex;
justify-content: flex-start;
align-items: center;
overflow: auto;
margin-top: 30rpx;
}
.sceneView .sceneItem {
border: 1rpx solid rgba(105, 105, 105, 0.1);
border-radius: 20rpx;
flex-shrink: 0;
width: 280rpx;
height: 140rpx;
margin-right: 30rpx;
background: white;
display: flex;
justify-content: center;
align-items: center;
}
.sceneView .sceneItem.activity {
background: #334D77;
}
.sceneView .sceneItem .img {
width: 54rpx;
height: 54rpx;
}
.sceneView .sceneItem .label {
font-size: 28rpx;
margin-left: 16rpx;
color: #334D77;
}
.sceneView .sceneItem .label.activity {
color: white;
}
.sceneView .sceneItem .point {
border-radius: 10rpx;
width: 10rpx;
height: 10rpx;
background: #334D77;
margin-left: 10rpx;
}
.sceneView .sceneItem .point.activity {
background: white;
2024-08-21 19:36:59 +08:00
}
.equipmentList {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
}
.equipmentList .equipmentItem {
box-shadow: rgba(214, 214, 214, 0.5) 0px 1px 0px 0px, rgb(238, 238, 238) 0px 1px 2px 0px;
border-radius: 10rpx;
position: relative;
width: 330rpx;
height: 260rpx;
margin-top: 24rpx;
background: white;
2024-08-21 18:36:55 +08:00
}