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
110
111
112
113
114
115
116
| page {
| background-color: #f0f2f5;
| box-sizing: border-box;
| padding-bottom: calc(env(safe-area-inset-bottom) + 96rpx);
| }
|
| .background {
| position: fixed;
| top: 0;
| left: 0;
| width: 100% !important;
| height: 680rpx;
| }
|
| .content-wrapper {
| position: relative;
| padding: 30rpx;
| }
|
| .topBox {
| width: 100%;
| background-color: #fff;
| border-radius: 20rpx;
| box-shadow: 0px 0px 20rpx 2px #f1f1f1;
| }
|
| .teacherBox {
| display: flex;
| padding: 40rpx 20rpx;
| justify-content: space-around;
| text-align: center;
| font-size: 28rpx;
| }
|
| .teacherBox .title {
| margin-top: 20rpx;
| line-height: 40rpx;
| }
|
| .teacherBox .change-info {
| color: #ff6d00;
| margin-left: 20rpx;
| }
|
| .wait {
| color: #ff6d00;
| }
|
| .no {
| color: #EE1818
| }
|
| .yes {
| color: #1FBC1F
| }
|
| .domainBox {
| width: 100%;
| margin: 20rpx auto;
| background-color: #fff;
| border-radius: 20rpx;
| box-shadow: 0px 0px 20rpx 2px #f1f1f1;
| }
|
| .domainBox .title {
| font-weight: bold;
| padding: 30rpx;
| }
|
| .domainList {
| width: 100%;
| display: flex;
| flex-wrap: wrap;
| justify-content: center;
| padding-bottom: 30rpx;
| }
|
| .domainList1 {
| /* width: 100%; */
| display: flex;
| /* flex-wrap: wrap; */
| border-bottom: 2rpx solid #f1f1f1;
| margin: 0 30rpx;
| }
|
| .domainList2 {
| display: flex;
| margin: 0 30rpx;
| }
|
| .listItem {
| width: 160rpx;
| min-width: 160rpx;
| flex-shrink: 0;
| padding: 30rpx 0;
| }
|
| .listItem .icon {
| width: 46rpx;
| height: 46rpx;
| margin: 0 auto;
| }
|
| .listItem .icon .t-image {
| width: 100%;
| height: 100%;
| object-fit: contain;
| }
|
| .listItem .label {
| width: 100%;
| font-size: 28rpx;
| line-height: 40rpx;
| text-align: center;
| margin-top: 20rpx;
| }
|
|