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
106
107
108
109
| /* packageCourse/components/baseClass/index.wxss */
| .baseContent {
| width: 100%;
| height: 100%;
| font-size: 28rpx;
| overflow: auto;
| }
|
| .title {
| font-size: 28rpx;
| font-weight: 700;
| padding: 20rpx;
| box-sizing: border-box;
| background-color: #f8f8f8;
| margin-bottom: 10rpx;
| }
|
| .statics {
| width: 100%;
| display: flex;
| justify-content: space-around;
| align-items: center;
| padding: 20rpx;
| box-sizing: border-box;
| }
|
| .statics .classCout {
| width: 100px;
| height: 60px;
| display: flex;
| flex-direction: column;
| align-items: center;
| justify-content: space-around;
| border: 1rpx solid #999;
| border-radius: 10rpx;
| }
|
| .pubCss {
| width: 100%;
| padding: 20rpx 0;
| box-sizing: border-box;
| }
|
| .roleInfo {
| display: flex;
| justify-content: flex-start;
| align-items: center;
| background-color: #f8f8f8;
| }
|
| .userInfo {
| display: flex;
| justify-content: flex-start;
| align-items: center;
| padding: 20rpx 30rpx;
| box-sizing: border-box;
| }
|
| .user {
| margin-left: 20rpx;
| }
|
| .bookInfo {
| width: 100%;
| padding: 20rpx;
| box-sizing: border-box;
| }
|
| .bookData {
| width: 100%;
| height: 200rpx;
| display: flex;
| justify-content: space-between;
| align-items: center;
| padding: 0 30rpx;
| box-sizing: border-box;
| }
|
| .bookText {
| flex: 1;
| height: 100%;
| display: flex;
| flex-direction: column;
| justify-content: space-around;
| align-items: flex-start;
| font-size: 26rpx;
| overflow: hidden;
| }
|
| .bookIcon {
| width: 180rpx;
| height: 230rpx;
| }
|
| .courseTime {
| padding: 20rpx 30rpx;
| box-sizing: border-box;
| }
|
| .notice {
| padding: 20rpx 30rpx;
| box-sizing: border-box;
| font-size: 26rpx;
| }
|
| .noData {
| display: flex;
| justify-content: center;
| }
|
|