tipdialog.wxss
1.51 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* component/tipdialog/tipdialog.wxss */
.tip-dialog-container {
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
justify-content: center;
position: fixed;
top: 0rpx;
left: 0rpx;
align-items: center;
}
.contentContainer {
background: white;
border-radius: 10rpx;
width: 540rpx;
height: wrap;
display: flex;
flex-direction: column;
align-items: center;
z-index: 1000;
}
.contentContainer .top-tip {
margin-top: 40rpx;
font-family: PingFang-SC-Medium;
font-size: 34rpx;
color: #d0021b;
letter-spacing: -0.41px;
text-align: center;
}
.contentContainer .middle-content {
width: 420rpx;
/* padding-left: 60rpx;
padding-right: 60rpx; */
text-align: center;
height: wrap;
margin-top: 16rpx;
}
.contentContainer .middle-content .content {
font-family: PingFang-SC-Regular;
font-size: 28rpx;
color: #444;
letter-spacing: -0.09px;
text-align: center;
line-height: 23px;
}
.contentContainer .bottom-container {
width: 100%;
height: 88rpx;
margin-top: 34rpx;
border-top: 1rpx solid #e0e0e0;
display: flex;
flex-direction: row;
/* justify-content: space-around; */
align-items: center;
}
.contentContainer .bottom-container .leftText {
font-family: PingFang-SC-Regular;
font-size: 17px;
color: #b0b0b0;
letter-spacing: -0.41px;
text-align: center;
flex: 1;
}
.contentContainer .bottom-container .rightText {
font-family: PingFang-SC-Medium;
font-size: 17px;
color: #d0021b;
letter-spacing: -0.41px;
text-align: center;
flex: 1;
}