task.wxss 635 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .container{
  2. padding: 0;
  3. margin: 0;
  4. }
  5. page{
  6. background: #f1f1f1;
  7. }
  8. /* 作业列表 */
  9. .task-box{
  10. padding: 25rpx;
  11. display: flex;
  12. flex-wrap: wrap;
  13. border-bottom: 20rpx solid #f1f1f1;
  14. background: #FFF;
  15. }
  16. .task-box view{
  17. height: 60rpx;
  18. line-height: 60rpx;
  19. width: 700rpx;
  20. }
  21. .task-title,.task-desc{
  22. width: 550rpx !important;
  23. overflow: hidden;
  24. white-space: nowrap;
  25. text-overflow: ellipsis;
  26. }
  27. .task-desc{
  28. color: #999;
  29. }
  30. .do-task,.do-time{
  31. width: 150rpx !important;
  32. font-size: 24rpx;
  33. text-align: right;
  34. }
  35. .do-task{
  36. color: #cc6031;
  37. }
  38. /* end */