taskSList.acss 1.2 KB

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