zhongshujie
2024-12-20 32986b54a0e2661f7ad6ed79f3ef12c4289eace9
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
/* packageCourse/components/teaching/index.wxss */
.teachBoxContent {
  width: 100%;
  height: 100%;
  font-size: 28rpx;
}
 
.header {
  width: 100%;
  padding: 0 20rpx;
  box-sizing: border-box;
}
 
.teachContent {
  width: 100%;
  height: calc(100% - 82px);
  padding: 20rpx;
  box-sizing: border-box;
  overflow: auto;
}
 
.teachBoxContent .count {
  width: 100%;
  padding: 20rpx;
  box-sizing: border-box;
  border-bottom: 1rpx solid #eee;
}
 
.teachContent .questionInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.teachContent .questionName {
  margin-bottom: 10rpx;
}
 
.teachContent .list {
  width: 100%;
  margin-bottom: 20rpx;
  border-bottom: 1px solid #eee;
  padding: 20rpx 0;
  box-sizing: border-box;
}
 
.demo-section__content {
  margin-top: 32rpx;
  margin-bottom: 48rpx;
}