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
95
96
97
98
99
100
101
102
103
104
105
| /* lawPublicityDetail.wxss */
| @import "../wxParse/wxParse.wxss";
| .detail{
| font-size: 14px;
| line-height:22px;
| padding: 20rpx;
| box-shadow: 0px 6px 6px 0 rgba(80, 119, 170, 0.06);
| }
| .file{
| display: inline-block;
| }
| .file .fileIcon{
| width: 72rpx;
| height: 54rpx;
| padding: 10rpx;
|
| }
| .red-tips{
| color: red;
| font-size: 14px;
| margin:20rpx 0 0 20rpx;
| }
|
| .content-right {
| flex: 1;
| margin-right: 50rpx;
| background: #ccc;
| width: 100%;
| height: 100%;
| }
| .headLineTitle {
| /* height: 88rpx; */
| font-size: 16px;
| line-break: 44rpx;
| color: rgba(51, 51, 51, 1);
| /* margin-bottom: 26rpx; */
| }
|
| .headLineInfo {
| display: flex;
| font-size: 12px;
| color: rgba(153, 153, 153, 1);
| }
|
| .info-source {
| margin-right: 20rpx;
| }
|
| #myVideo{
| display: block;
| width: 100%;
| }
|
| .file {
| display: flex;
| justify-content: center;
| align-items: center;
| flex-direction: column;
| }
|
| .detail-img {
| display: flex;
| flex-direction: columns;
| align-items: center;
| padding: 2vh;
| }
|
| .detail-img-top {
| width: 48px;
| height: 48px;
| }
|
| .content-left {
| width: 416rpx;
| display: flex;
| flex-direction: column;
| justify-content: space-between;
| margin:14px 0;
| }
|
| .detail-img-bottom {
| font-size: 12px;
| color: #333;
| width: 70px;
| overflow: hidden;
| white-space: nowrap;
| text-overflow: ellipsis;
| }
|
| .detail-message {
| display: flex;
| padding: 2vh;
| border-top: 1px solid #f2f2f2;
| border-bottom: 1px solid #f2f2f2;
| }
|
| .detail-message span:nth-child(1) {
| border-left: 3px solid #2195ff;
| }
|
| .detail-message span:nth-child(2) {
| padding-left: 1vh;
| font-size: 18px;
| font-weight: bold;
| }
|
|