123456789101112131415161718192021222324252627282930313233343536 |
- .my-course {
- margin-top: 44rpx;
- display: flex;
- /* justify-content: space-around; */
- flex-direction: row;
- flex-wrap: wrap;
- }
- .book-item{
- margin-left: 28rpx;
- margin-bottom: 20rpx;
- width: 214rpx;
- }
- .book-box{
- width: 214rpx;
- height: 290rpx;
- }
- .book-box>image{
- width:100%;
- height: 100%;
- }
- .book-item>.item-title{
- margin-top:18rpx;
- width: 100%;
- font-size: 30rpx;
- color:#373737;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- text-align: center;
- font-weight:400;
- }
|