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%; } .add_icon{ position: fixed; width: 100rpx; height: 100rpx; bottom: 50rpx; right: 45rpx; }