mirror of
https://github.com/PlayEdu/frontend.git
synced 2025-06-28 03:50:40 +08:00
77 lines
1.4 KiB
SCSS
77 lines
1.4 KiB
SCSS
.top-cont {
|
|
width: 1200px;
|
|
height: auto;
|
|
margin: 0 auto;
|
|
margin-top: 50px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
.top-item {
|
|
width: 588px;
|
|
height: 132px;
|
|
background: #ffffff;
|
|
box-shadow: 0px 4px 16px 4px rgba(0, 0, 0, 0.04);
|
|
border-radius: 12px;
|
|
box-sizing: border-box;
|
|
padding: 24px;
|
|
|
|
.title {
|
|
width: 100%;
|
|
height: 36px;
|
|
display: flex;
|
|
align-items: center;
|
|
.icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
margin-right: 16px;
|
|
}
|
|
span {
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
color: rgba(0, 0, 0, 0.88);
|
|
line-height: 36px;
|
|
}
|
|
}
|
|
.info {
|
|
margin-top: 24px;
|
|
width: 100%;
|
|
height: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
.info-item {
|
|
width: auto;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: rgba(0, 0, 0, 0.45);
|
|
line-height: 24px;
|
|
&:last-child {
|
|
margin-left: 50px;
|
|
}
|
|
strong {
|
|
font-size: 20px;
|
|
color: rgba(0, 0, 0, 0.88);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.tabs {
|
|
width: 1200px;
|
|
height: auto;
|
|
margin: 0 auto;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.courses-list {
|
|
width: 1200px;
|
|
height: auto;
|
|
margin: 0 auto;
|
|
box-sizing: border-box;
|
|
padding-top: 14px;
|
|
display: grid;
|
|
gap: 24px;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
position: relative;
|
|
}
|