camera.scss
904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
.camera-page {
min-height: 100vh;
background-color: #f0f2f5;
}
.camera-item {
height: 200rpx;
border: 0.1px solid gray;
}
.camera-container {
.container-item {
width: 750rpx;
display: flex;
justify-content: space-between;
flex-direction: row;
flex-wrap: wrap;
margin-top: -50rpx;
.item {
margin-top: 80rpx;
width: 330rpx;
height: 200rpx;
background-color: #fff;
border-radius: 10px;
margin-left: 25rpx;
margin-right: 21rpx;
.video {
border-radius: 10px;
width: 330rpx;
height: 200rpx;
}
.bottom-text {
position: relative;
top: 8rpx;
text-align: center;
.text {
color: #333333;
font-size: 13px;
}
}
.avatar-cover {
position: relative;
top: -250rpx;
border: 0.1rpx splid #fff;
height: 200rpx;
.image {
width: 330rpx;
height: 200rpx;
border-radius: 10px;
}
}
}
}
}