12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- @import '/static/unread.wxss';
- @import '../../components/My_card/index.scss';
- @import '/static/dropdown-switch.wxss';
- page{
- padding: 0 !important;
- overflow: hidden;
- }
- /* 课程 */
- .course {
- display: flex;
- height: 180rpx;
- padding: 30rpx;
- .cover-img {
- border-radius: 8rpx;
- overflow: hidden;
- }
- .explian {
- width: 370rpx;
- height: 100%;
- margin-left: 30rpx;
- .title {
- height: 40rpx;
- line-height: 40rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .details {
- height: 34rpx;
- line-height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- margin-top: 10rpx;
- }
- .read {
- height: 28rpx;
- font-size: 20rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin-top: 8rpx;
- }
- }
- }
|