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
89
90
91
92
93
94
| .content {
| width: 94%;
| display: inline-block;
| padding: 30upx 3% 120upx 3%;
| flex-grow: 1;
| }
| .sendView {
| width: 100%;
| height: 100upx;
| position: fixed;
| left: 0;
| bottom: 0;
| z-index: 99;
| display: flex;
| align-items: center;
| justify-content: center;
| background-color: #f5f5f5;
| }
| .sendView input{
| background-color: #ffffff;
| height: 70upx;
| border-radius: 30upx;
| padding: 0 30upx;
| width: 70%;
| font-size: 26upx;
| }
| .sendView view{
| width: 17%;
| display: flex;
| justify-content: center;
| align-items: center;
| font-size: 28upx;
| }
|
| .uView {
| width: 85%;
| display: flex;
| margin-bottom: 30upx;
| }
| .uView .avatar{
| width: 70upx;
| height: 70upx;
| margin-right: 30upx;
| border-radius: 50%;
| }
| .uView-c {
| position: relative;
| max-width: 77%;
| background-color: #f5f5f5;
| padding: 20upx;
| border-radius: 10upx;
| font-size: 27upx;
| line-height: 40upx;
| }
| .uView .r-icon{
| position: absolute;
| left: -24upx;
| top: 20upx;
| width: 30upx;
| height: 30upx;
| z-index: 99;
| }
|
| .cView {
| width: 85%;
| display: flex;
| float: right;
| justify-content: flex-end;
| margin-bottom: 30upx;
| }
| .cView .avatar{
| width: 70upx;
| height: 70upx;
| margin-left: 30upx;
| border-radius: 50%;
| }
| .cView-c {
| position: relative;
| max-width: 77%;
| background-color: #f5f5f5;
| padding: 20upx;
| border-radius: 10upx;
| font-size: 27upx;
| line-height: 40upx;
| }
| .cView .r-icon{
| position: absolute;
| right: -24upx;
| top: 20upx;
| width: 30upx;
| height: 30upx;
| z-index: 99;
| transform: rotate(180deg);
| }
|
|