detail.scss 3.8 KB

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