index.less
1.15 KB
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
/* 广告页面样式 */
.ad-page {
width: 100vw;
height: 100vh;
position: relative;
overflow: hidden;
}
.ad-background {
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: relative;
cursor: pointer;
}
.share-button-container {
position: absolute;
top: 30rpx;
right: 30rpx;
z-index: 10;
}
.share-button {
padding: 1rpx 24rpx;
background: rgba(0, 0, 0, 0.6);
color: white;
border: none;
border-radius: 32rpx;
font-size: 24rpx;
font-weight: 500;
backdrop-filter: blur(10rpx);
-webkit-backdrop-filter: blur(10rpx);
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.15);
transition: all 0.3s ease;
&:active {
transform: scale(0.95);
background: rgba(0, 0, 0, 0.8);
}
}
.loading-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.9);
z-index: 20;
}
.loading-text {
font-size: 32rpx;
color: #666;
font-weight: 500;
}