xusd
7 days ago 998218675eb243d43912c203174a6b72b299c0f8
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
/* pages/course/index.wxss */
@import '../../styles/public_components.wxss';
 
.course {
    padding: 24rpx 32rpx;
    padding-bottom: 0;
    background-color: #ffffff;
    margin: 0 var(--padding-my);
    border-radius: var(--border-radius-card);
    margin-top: 24rpx;
}
 
.course .course-button {
    width: auto;
    height: 40rpx;
    font-size: 24rpx;
    line-height: 40rpx;
    border-radius: 22rpx;
    padding: 0 16rpx;
    margin-left: 16rpx;
}
 
.course-item {
    display: flex;
    position: relative;
    padding-bottom: 24rpx;
}
 
.course-item-divider {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    width: 2rpx;
    height: 100%;
  left: 17rpx;
  top: 17rpx;
}
 
.course-item-imgBg {
    position: relative;
    height: 36rpx;
    width: 36rpx;
    border-radius: 50%;
    background-color: #8c8c8c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rpx 0;
}
 
.course-item-imgBg-color {
    background-color: var(--main-color);
}
 
.course-item-imgBg-2 {
    position: relative;
    height: 36rpx;
    width: 36rpx;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rpx 0;
}
 
.course-item-imgBg-2::after {
    content: '';
    position: absolute;
    width: 20rpx;
    height: 20rpx;
    background-color: #8c8c8c;
    left: 50%;
    top: 50%;
    margin-left: -10rpx;
    margin-top: -10rpx;
    border-radius: 50%;
}
 
.course-item-img {
    width: 24rpx;
    height: 24rpx;
}
 
.course-item-content {
    flex: 1;
    padding-left: 16rpx;
}
 
.course-item-content-title {
    font-weight: 600;
}
 
.course-item-content-content {
    font-weight: 24rpx;
    line-height: 40rpx;
    color: var(--second-text-color);
}
 
.course-item-flex-box {
    flex: 1;
}
 
.course-item-flex {
    flex: 1;
    display: flex;
    padding-left: 16rpx;
}
 
.card-cell-title {
    max-width: 6.2em;
}