getTask.acss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. .header {
  2. background: #fff;
  3. position: sticky;
  4. top: 0;
  5. }
  6. .selectItems {
  7. text-align: center;
  8. }
  9. .selectItems .selectImg {
  10. border-left: 1px solid #f1f1f1;
  11. padding: 0 20rpx;
  12. }
  13. .selectImg image {
  14. width: 30rpx;
  15. height: 30rpx;
  16. }
  17. .selectItems .flex-1 {
  18. padding: 24rpx 0;
  19. text-align: center;
  20. font-size: 32rpx;
  21. position: relative;
  22. }
  23. .selectItems .active::before {
  24. position: absolute;
  25. content: " ";
  26. height: 4rpx;
  27. width: 100rpx;
  28. background: #26A2FF;
  29. bottom: 0rpx;
  30. left: 50%;
  31. margin-left: -50rpx;
  32. }
  33. .name{
  34. font-size: 36rpx;
  35. }
  36. .main {
  37. background: #fff;
  38. }
  39. .scroll {
  40. height: calc(100vh - 115rpx);
  41. }
  42. .defBtn {
  43. border-radius: 6rpx;
  44. height: 50rpx;
  45. text-align: center;
  46. line-height: 50rpx;
  47. width: 120rpx;
  48. font-size: .24rem;
  49. }
  50. .li-top {
  51. margin-bottom: 14rpx;
  52. }
  53. .li-top .flex-1 {
  54. padding-right: 50rpx;
  55. }
  56. .li-top text {
  57. font-size: 36rpx;
  58. font-weight: 600
  59. }
  60. .task {
  61. background: #f5f7fa;
  62. color: #909399;
  63. font-size: .28rem;
  64. padding: .05rem .32rem .15rem;
  65. }
  66. .li {
  67. padding: 24rpx 28rpx;
  68. }
  69. .li-bottom text {
  70. position: relative;
  71. top: 10rpx;
  72. font-size: 28rpx;
  73. }
  74. .main-right {
  75. margin-left: 10rpx;
  76. }
  77. .date{
  78. font-size: 28rpx;
  79. }
  80. .context {
  81. font-size: .32rem;
  82. color: #323233;
  83. display: -webkit-box;
  84. text-overflow: ellipsis;
  85. overflow: hidden;
  86. -webkit-line-clamp: 2;
  87. -webkit-box-orient: vertical;
  88. padding: 12rpx 0;
  89. }