xusd
7 days ago 998218675eb243d43912c203174a6b72b299c0f8
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
/* components/tooltip/index.wxss */
.tooltip {
    position: absolute;
    bottom: 100%;
    margin-bottom: 24rpx;
    align-content: center;
    z-index: 999;
}
 
.tooltip-content {
    position: relative;
    padding: 8rpx 0;
    color: #fff;
    text-align: center;
    text-decoration: none;
    word-wrap: break-word;
    background-color: #3c3d3f;
    border-radius: 4rpx;
    box-shadow: 0 6rpx 12rpx -8rpx #0000001f, 0 12rpx 32rpx #00000014, 0 18rpx 56rpx 16rpx #0000000d;
    font-size: 28rpx;
    line-height: 1.5;
}
 
.tooltip-arrow {
    position: absolute;
    width: 32rpx;
    height: 32rpx;
    overflow: hidden;
    border-radius: 4rpx;
    transform: rotate(45deg);
    bottom: -14rpx;
}
 
.tooltip-arrow::before {
    position: absolute;
    width: 32rpx;
    height: 32rpx;
    background-color: #3c3d3f;
    content: '';
}