You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
783 B
41 lines
783 B
page {
|
|
height: 100vh;
|
|
background-color: #eeeeee;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
// 课程展示部分
|
|
.course {
|
|
width: 650rpx !important; /* 根据需要调整宽度 */
|
|
height: 120rpx; /* 根据需要调整高度 */
|
|
border: 1px solid #bbbbbb; /* 边框颜色 */
|
|
border-radius: 15rpx; /* 圆角半径 */
|
|
background-color: #ffffff; /* 背景颜色 */
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center; /* 组件垂直居中 */
|
|
position: relative;
|
|
margin-top: 35rpx; /* 组件上外边距 */
|
|
}
|
|
|
|
.icon1 {
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
position: absolute;
|
|
left: 3%;
|
|
}
|
|
|
|
.name {
|
|
font-size: 40;
|
|
position: absolute;
|
|
left: 15%;
|
|
}
|
|
|
|
.icon2 {
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
position: absolute;
|
|
right: 0%;
|
|
} |