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
|
| .diy-notice {
| margin: 20rpx;
| display: flex;
| justify-content: flex-start;
| align-items: center;
| border-radius: 6rpx;
| /* box-shadow: 0 0 8rpx rgba(0, 0, 0, 0.1); */
| }
| .diy-notice .notice-icon {
| width: 64rpx;
| height: 64rpx;
| margin-right: 20rpx;
| }
| .diy-notice .notice-icon image {
| width: 100%;
| height: 100%;
| }
| .diy-notice .notice-text {
| overflow: hidden;
| white-space: nowrap;
| position: relative;
| height: 64rpx;
| }
| .transtext {
| position: absolute;
| top: 0;
| bottom: 0;
| margin: auto;
| left: 0;
| line-height: 64rpx;
| /* display: inline-block; */
| }
|
|