todos-detail.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. html,
  2. body {
  3. height: 100%;
  4. font-family: PingFangSC-Regular;
  5. color: #333333;
  6. }
  7. .content {
  8. width: 100%;
  9. height: 100%;
  10. display: flex;
  11. flex-direction: column;
  12. }
  13. .content > scroll-view {
  14. width: 100%;
  15. height: 100%;
  16. background-color: #ffffff;
  17. }
  18. .content .head {
  19. width: 100%;
  20. height: 200rpx;
  21. background: #738DA7;
  22. box-sizing: border-box;
  23. padding: 46rpx 0 0 52rpx;
  24. color: #ffffff;
  25. display: flex;
  26. flex-direction: column;
  27. font-size: 38rpx;
  28. }
  29. .content .head > text:last-child {
  30. font-size: 30rpx;
  31. margin-top: 20rpx;
  32. }
  33. .content .body {
  34. box-sizing: border-box;
  35. padding: 62rpx 0 0 52rpx;
  36. }
  37. .content .body > .item {
  38. display: flex;
  39. padding-bottom: 60rpx;
  40. margin-bottom: 6rpx;
  41. box-sizing: border-box;
  42. padding-left: 80rpx;
  43. position: relative;
  44. }
  45. .content .body > .item > view:first-child {
  46. display: flex;
  47. flex-direction: column;
  48. }
  49. .content .body > .item > .detail {
  50. font-size: 32rpx;
  51. color: #3296FB;
  52. margin-left: 40rpx;
  53. }
  54. .content .imgBox{
  55. position: absolute;
  56. top: 0;
  57. left: 0;
  58. width: 40rpx;
  59. height: 100%;
  60. display: flex;
  61. flex-direction: column;
  62. align-items: center;
  63. }
  64. .content .body > .item .image-current {
  65. width: 40rpx;
  66. height: 40rpx;
  67. left: 0;
  68. }
  69. .content .body > .item .image {
  70. width: 16rpx;
  71. height: 16rpx;
  72. left: 12rpx;
  73. }
  74. .content .body > .item .image-start {
  75. width: 24rpx;
  76. height: 24rpx;
  77. left: 8rpx;
  78. }
  79. .content .body > .item .imageLine {
  80. flex: 1;
  81. width: 4rpx;
  82. margin-top: 6rpx;
  83. }
  84. .content .body > .item > view:first-child > text:first-child {
  85. font-size: 32rpx;
  86. color: #808080;
  87. margin-bottom: 12rpx;
  88. }
  89. .content .body > .item > view:first-child > text:last-child {
  90. font-size: 26rpx;
  91. color: #999999;
  92. }
  93. .content > .footer {
  94. width: 100%;
  95. position: fixed;
  96. bottom: 0;
  97. z-index: 999;
  98. background: #ffffff;
  99. box-sizing: border-box;
  100. padding: 0 32rpx;
  101. }
  102. .content > .footer > .tips {
  103. width: 100%;
  104. font-size: 28rpx;
  105. color: #666666;
  106. text-align: justify;
  107. margin-bottom: 42rpx;
  108. }
  109. .content > .footer > .tips > .line {
  110. position: relative;
  111. left: -32rpx;
  112. width: 750rpx;
  113. height: 2rpx;
  114. background: #eeeeee;
  115. transform: scaleY(0.5);
  116. margin-bottom: 38rpx;
  117. }
  118. .content > .footer > .btn,.content > .footer > .btn-X {
  119. height: 90rpx;
  120. text-align: center;
  121. line-height: 90rpx;
  122. color: #ffffff;
  123. font-size: 32rpx;
  124. background: #3296FB;
  125. border-radius: 45rpx;
  126. }
  127. .btn-X{
  128. margin-bottom: 68rpx;
  129. }