12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /* pages/teachCollectionStu/teachCollectionStu.wxss */
- /* 学生列表区 */
- .stuListContainer{
- margin-left: 20rpx;
- font-size: 28rpx;
- position: relative;
- }
- .stuDetail{
- position: relative;
- }
- /* 间隔线 */
- .stuListInterval{
- height: 10rpx;
- margin-left: -20rpx;
- background-color: #F1F1F1;
- }
- .stuListDetail{
- display: flex;
- }
- /* 左侧部分 */
- .stuLeft{
- display: flex;
- flex-direction: column;
- width: 60%;
- margin-top: 10rpx;
- margin-bottom: 60rpx;
- }
- /* 科目 */
- .stuTitle{
- font-weight: bold;
- color: yellowgreen;
- }
- /* 描述 */
- .stuDesc{
- margin: 20rpx 0;
- }
- /* 右侧部分 */
- .stuRight{
- display: flex;
- flex-direction: column;
- position: absolute;
- right: 20rpx;
- color: #979797;
- margin-top: 10rpx;
- }
- /* 家教费 */
- .salary{
- color: #FF970F;
- }
- /* 取消收藏 */
- .canceCollect{
- position: absolute;
- display: flex;
- justify-content: flex-end;
- right: 30rpx;
- bottom: 10rpx;
- border: 1rpx solid skyblue;
- border-radius: 12rpx;
- padding: 4rpx 6rpx;
- background-color: skyblue;
- }
|