modal.wxss
1.8 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
80
81
82
83
84
85
86
87
88
/*弹框样式*/
.modal_box {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 10;
background: rgba(0,0,0,0.3);
}
.input-box {
width: 80%;
/* height: 1100rpx; */
background: #ffffff;
display: flex;
align-items: center;
flex-direction: column;
z-index:999;
position: fixed;
top: 48%;
left: 50%;
transform: translate(-50%,-50%);
padding: 46rpx 88rpx;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-radius: 40rpx;
}
.input-box image {
width: 110rpx;
height: 110rpx;
border-radius: 50%;
margin-bottom: 34rpx;
}
.input-box .title {
color: #333333;
font-size: 36rpx;
margin-bottom: 16rpx;
}
.input-box .tips {
color: #333333;
font-size: 24rpx;
margin-bottom: 26rpx;
}
.input-box .answer-btn {
width: 100%;
height: 66rpx;
background-color: #323232;
border-radius: 6rpx;
color:#E2C8B1;
font-size: 30rpx;
text-align: center;
line-height: 66rpx;
margin-top: 16rpx;
}
.release-btn-box {
background-color: transparent;
display: flex;
align-items: center;
justify-content: center;
position: fixed;
top: 70%;
left: 50%;
transform: translate(-50%,0);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
z-index: 999;
}
.release-btn-box .left-btn, .release-btn-box .right-btn {
display: flex;
flex-direction: column;
align-items: center;
margin-right: 84rpx;
}
.release-btn-box .right-btn {
margin-right: 0;
}
.release-btn-box image {
width: 100rpx;
height: 100rpx;
border-radius: 50%;
margin-bottom: 22rpx;
}
.release-btn-box .text {
color: #ffffff;
font-size: 26rpx;
}