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
| @charset "UTF-8";
| /* 页面左右间距 */
| /* 文字尺寸 */
| /*文字颜色*/
| /* 边框颜色 */
| /* 图片加载中颜色 */
| /* 行为相关颜色 */
| page {
| background-color: #f7f7f7;
| padding-bottom: 30rpx;
| }
| .notice-item {
| display: flex;
| flex-direction: column;
| align-items: center;
| }
| .time {
| display: flex;
| align-items: center;
| justify-content: center;
| height: 80rpx;
| padding-top: 10rpx;
| font-size: 26rpx;
| color: #7d7d7d;
| }
| .content {
| width: 710rpx;
| padding: 0 24rpx;
| background-color: #fff;
| border-radius: 4rpx;
| }
| .title {
| display: flex;
| align-items: center;
| height: 90rpx;
| font-size: 32rpx;
| color: #303133;
| }
| .img-wrapper {
| width: 100%;
| height: 260rpx;
| position: relative;
| }
| .pic {
| display: block;
| width: 100%;
| height: 100%;
| border-radius: 6rpx;
| }
| .cover {
| display: flex;
| justify-content: center;
| align-items: center;
| position: absolute;
| left: 0;
| top: 0;
| width: 100%;
| height: 100%;
| background-color: rgba(0, 0, 0, 0.5);
| font-size: 36rpx;
| color: #fff;
| }
| .introduce {
| display: inline-block;
| padding: 16rpx 0;
| font-size: 28rpx;
| color: #606266;
| line-height: 38rpx;
| }
| .bot {
| display: flex;
| align-items: center;
| justify-content: space-between;
| height: 80rpx;
| font-size: 24rpx;
| color: #707070;
| position: relative;
| }
| .more-icon {
| font-size: 32rpx;
| }
|
|