课程详情页

This commit is contained in:
禺狨
2023-06-29 18:59:24 +08:00
parent 3dbf1c081f
commit 58ba3577a8
5 changed files with 272 additions and 3 deletions

View File

@@ -27,6 +27,7 @@
display: flex;
flex-direction: row;
align-items: center;
margin-bottom: 20px;
.info {
flex: 1;
display: flex;
@@ -67,3 +68,68 @@
}
}
}
.other-content {
width: 100%;
float: left;
height: auto;
border-radius: 16px 16px 0px 0px;
background-color: #ffffff;
box-sizing: border-box;
padding: 20px;
margin-top: -20px;
z-index: 10;
.desc {
width: 100%;
max-height: 72px;
font-size: 12px;
font-weight: 400;
color: rgba(0, 0, 0, 0.45);
line-height: 18px;
text-align: left;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
}
.line {
width: 100%;
height: 1px;
background: rgba(0, 0, 0, 0.05);
margin-top: 20px;
}
.chapters-hours-cont {
width: 100%;
height: auto;
.hours-list-box {
width: 100%;
height: auto;
display: flex;
flex-direction: column;
.chapter-it {
width: 100%;
height: auto;
margin-top: 20px;
.chapter-name {
width: 100%;
height: 15px;
font-size: 15px;
font-weight: 500;
color: rgba(0, 0, 0, 0.88);
line-height: 15px;
text-align: left;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
.hours-it {
width: 100%;
height: auto;
margin-top: 20px;
}
}
}
}