detail.scss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. page {
  2. height: 100%;
  3. }
  4. .hc-app-task-detail {
  5. .task-detail-content {
  6. position: relative;
  7. background: white;
  8. border-top: 2rpx solid #eee;
  9. .task-name-box {
  10. position: relative;
  11. display: flex;
  12. align-items: center;
  13. padding: 20rpx;
  14. .name-bar {
  15. flex: 1;
  16. }
  17. .arrow-bar {
  18. margin-left: 22rpx;
  19. .task-item {
  20. font-size: 26rpx;
  21. }
  22. .task-item + .task-item {
  23. margin-top: 18rpx;
  24. }
  25. }
  26. }
  27. .task-report-info {
  28. position: relative;
  29. display: flex;
  30. justify-content: space-between;
  31. box-sizing: border-box;
  32. flex-direction: row;
  33. padding: 20rpx;
  34. padding-top: 0;
  35. font-size: 24rpx;
  36. }
  37. .task-pdf-list-bar {
  38. position: relative;
  39. font-size: 24rpx;
  40. border-top: 2rpx solid #eee;
  41. .task-pdf-info {
  42. position: relative;
  43. display: flex;
  44. box-sizing: border-box;
  45. color: #EE5B20;
  46. align-items: center;
  47. width: 100vw;
  48. padding: 20rpx;
  49. box-sizing: border-box;
  50. .file-name {
  51. position: relative;
  52. flex: 1;
  53. }
  54. .file-num {
  55. margin-left: 26rpx;
  56. }
  57. }
  58. .task-item {
  59. font-size: 26rpx;
  60. }
  61. .task-item + .task-item {
  62. margin-top: 18rpx;
  63. }
  64. }
  65. }
  66. .action-bar-btn {
  67. background: #EE5B20;
  68. border-radius: 100rpx;
  69. }
  70. .task-popup-content {
  71. position: relative;
  72. padding: 0 24rpx;
  73. .title {
  74. color: #8E8E93;
  75. font-size: 28rpx;
  76. margin-bottom: 38rpx;
  77. text-align: center;
  78. }
  79. .popup-btn::after {
  80. display: none;
  81. }
  82. .popup-code-bar {
  83. position: relative;
  84. margin-bottom: 24rpx;
  85. .btn-tel-code-bar {
  86. position: relative;
  87. display: flex;
  88. align-items: center;
  89. justify-content: space-between;
  90. flex-direction: row;
  91. margin-bottom: 20rpx;
  92. .btn-tel {
  93. font-size: 30rpx;
  94. font-weight: bold;
  95. }
  96. .btn-code {
  97. position: relative;
  98. display: flex;
  99. align-items: center;
  100. }
  101. }
  102. .code-input-bar {
  103. position: relative;
  104. .code-input {
  105. border: 2rpx solid #cbcbcb;
  106. border-radius: 8rpx;
  107. height: 70rpx;
  108. line-height: initial;
  109. min-height: initial;
  110. font-size: 28rpx;
  111. padding: 0 20rpx;
  112. }
  113. }
  114. }
  115. .popup-argument-bar {
  116. position: relative;
  117. margin-bottom: 24rpx;
  118. .argument-input {
  119. border: 2rpx solid #cbcbcb;
  120. border-radius: 8rpx;
  121. line-height: initial;
  122. font-size: 26rpx;
  123. padding: 20rpx;
  124. width: 100%;
  125. }
  126. }
  127. .popup-btn-bar {
  128. position: relative;
  129. .c1 {
  130. background-color: #554D84;
  131. }
  132. .c2 {
  133. background-color: #EE5B20;
  134. }
  135. .c3 {
  136. background-color: #BFBFBF;
  137. }
  138. .c4 {
  139. background-color: #81B337;
  140. }
  141. }
  142. .popup-btn-bar + .popup-btn-bar {
  143. margin-top: 24rpx;
  144. }
  145. }
  146. }