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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
| .cl-guide {
| position: relative;
| height: 100%;
|
| &__mask {
| background-color: rgba(0, 0, 0, 0.5);
| position: fixed;
| top: 0;
| left: 0;
| height: 100%;
| width: 100%;
| z-index: 9999;
| }
|
| &__display {
| opacity: 1;
| }
|
| &__content {
| display: inline-block;
| background-color: #fff;
| border-radius: 6rpx;
| margin: 20rpx;
| padding: 20rpx;
| color: #000;
| font-size: 28rpx;
| }
|
| &__op {
| margin: 0 20rpx;
|
| button {
| display: inline-block;
| font-size: 26rpx;
| font-weight: 500;
| margin-right: 20rpx;
| height: 60rpx;
| line-height: 60rpx;
| padding: 0 20rpx;
| border-radius: 6rpx;
|
| &:last-child {
| margin-right: 0;
| }
| }
| }
|
| &__image {
| margin: 20rpx;
| }
|
| &__tools {
| display: flex;
| flex-direction: column;
| align-items: flex-start;
| position: absolute;
| width: 100%;
| transition: all 0.3s;
|
| &.start {
| align-items: flex-start;
| }
|
| &.center {
| align-items: center;
| }
|
| &.end {
| align-items: flex-end;
| }
| }
| }
|
|