88 lines
1.4 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 {
padding: 20rpx 32rpx;
background: #f8f8f8;
min-height: 100vh;
}
.topHead {
display: flex;
justify-content: flex-start;
align-items: center;
margin-top: 20rpx;
}
.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;
}