task.wxss 934 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .container{
  2. padding: 0;
  3. margin: 0;
  4. }
  5. page{
  6. background: #f1f1f1;
  7. }
  8. /* 顶部切换标题 */
  9. .switch-view{
  10. display: flex;
  11. background: #FFF;
  12. }
  13. .switch-view view{
  14. margin: 0 auto;
  15. color: #999;
  16. height: 80rpx;
  17. line-height: 80rpx;
  18. font-size: 36rpx;
  19. }
  20. .curTitle{
  21. color: #cc6031 !important;
  22. border-bottom: 2px solid #cc6031;
  23. font-weight: 600;
  24. }
  25. /* end */
  26. /* 作业列表 */
  27. .task-box{
  28. padding: 25rpx;
  29. display: flex;
  30. flex-wrap: wrap;
  31. border-bottom: 20rpx solid #f1f1f1;
  32. background: #FFF;
  33. }
  34. .task-box view{
  35. height: 60rpx;
  36. line-height: 60rpx;
  37. width: 700rpx;
  38. }
  39. .task-title,.task-desc{
  40. width: 550rpx !important;
  41. overflow: hidden;
  42. white-space: nowrap;
  43. text-overflow: ellipsis;
  44. }
  45. .task-desc{
  46. color: #999;
  47. }
  48. .do-task,.do-time{
  49. width: 150rpx !important;
  50. font-size: 24rpx;
  51. text-align: right;
  52. }
  53. .do-task{
  54. color: #cc6031;
  55. }
  56. /* end */