123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- .my-card {
- width: 690rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- margin: 0 auto;
- margin-top: 20rpx;
- box-sizing: border-box;
- overflow: hidden;
- .mtitle {
- display: flex;
- align-items: center;
- justify-content: space-between;
- width: 100%;
- height: 90rpx;
- padding: 0 20rpx 0 30rpx;
- border-bottom: 1px solid #EEEEEE;
- box-sizing: border-box;
- .title-l {
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- }
- }
- .hover:hover {
- opacity: .95;
- // background: #f4f5f7;
- }
- 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;
- }
- }
- }
- /* 未读 */
- .unread {
- width: 750rpx;
- height: 34rpx;
- text-align: center;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin: 12rpx 0 -5rpx 0;
- }
- .switch {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- width: 500rpx;
- padding-right: 30rpx;
- }
- .main-active {
- color: var(--assist) !important;
- }
- .content-active {
- color: var(--assist) !important;
- }
- page {
- padding: 0 !important;
- }
|