detail.scss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. page {
  2. height: 100%;
  3. }
  4. .hc-app-task-detail {
  5. .task-name {
  6. position: relative;
  7. border-top: 2rpx solid #eee;
  8. font-size: 26rpx;
  9. padding: 20rpx;
  10. }
  11. .task-report-info {
  12. position: relative;
  13. display: flex;
  14. justify-content: space-between;
  15. box-sizing: border-box;
  16. flex-direction: row;
  17. padding: 20rpx;
  18. font-size: 24rpx;
  19. border-top: 2rpx solid #eee;
  20. }
  21. .task-file-name {
  22. position: relative;
  23. border-top: 2rpx solid #eee;
  24. font-size: 26rpx;
  25. padding: 20rpx;
  26. color: #EE5B20;
  27. }
  28. .action-bar-btn {
  29. background: #EE5B20;
  30. border-radius: 100rpx;
  31. }
  32. .task-popup-content {
  33. position: relative;
  34. padding: 0 24rpx;
  35. .title {
  36. color: #8E8E93;
  37. font-size: 28rpx;
  38. margin-bottom: 38rpx;
  39. text-align: center;
  40. }
  41. .popup-btn::after {
  42. display: none;
  43. }
  44. .popup-code-bar {
  45. position: relative;
  46. margin-bottom: 24rpx;
  47. .btn-tel-code-bar {
  48. position: relative;
  49. display: flex;
  50. align-items: center;
  51. justify-content: space-between;
  52. flex-direction: row;
  53. margin-bottom: 20rpx;
  54. .btn-tel {
  55. font-size: 30rpx;
  56. font-weight: bold;
  57. }
  58. .btn-code {
  59. position: relative;
  60. display: flex;
  61. align-items: center;
  62. }
  63. }
  64. .code-input-bar {
  65. position: relative;
  66. .code-input {
  67. border: 2rpx solid #cbcbcb;
  68. border-radius: 8rpx;
  69. height: 70rpx;
  70. line-height: initial;
  71. min-height: initial;
  72. font-size: 28rpx;
  73. padding: 0 20rpx;
  74. }
  75. }
  76. }
  77. .popup-argument-bar {
  78. position: relative;
  79. margin-bottom: 24rpx;
  80. .argument-input {
  81. border: 2rpx solid #cbcbcb;
  82. border-radius: 8rpx;
  83. line-height: initial;
  84. font-size: 26rpx;
  85. padding: 20rpx;
  86. width: 100%;
  87. }
  88. }
  89. .popup-btn-bar {
  90. position: relative;
  91. .c1 {
  92. background-color: #554D84;
  93. }
  94. .c2 {
  95. background-color: #EE5B20;
  96. }
  97. .c3 {
  98. background-color: #BFBFBF;
  99. }
  100. .c4 {
  101. background-color: #81B337;
  102. }
  103. }
  104. .popup-btn-bar + .popup-btn-bar {
  105. margin-top: 24rpx;
  106. }
  107. }
  108. }
  109. .hc-app-task-view {
  110. height: calc(100% - 40px);
  111. overflow: auto;
  112. line-height: initial;
  113. }