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
| .cl-share {
| position: relative;
|
| &__title {
| font-size: 32rpx;
| text-align: center;
| padding-top: 30rpx;
| }
|
| &__container {
| display: flex;
|
| .item {
| flex: 1;
| display: flex;
| flex-direction: column;
| align-items: center;
| justify-content: center;
| background-color: transparent;
| padding: 0;
| margin: 0;
| border: 0;
| height: 200rpx;
| line-height: normal;
|
| &::after {
| border: 0;
| }
|
| image {
| height: 100rpx;
| width: 100rpx;
| }
|
| text {
| font-size: 26rpx;
| margin-top: 20rpx;
| }
|
| &:active {
| opacity: 0.8;
| }
| }
| }
| }
|
| .cl-share-popup {
| .cl-share {
| border-radius: 0;
|
| .item {
| height: 300rpx;
| }
| }
| }
|
|