appealExamine.less 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. @import "./reset.less";
  2. .container {
  3. width: 100%;
  4. height: 100%;
  5. overflow: auto;
  6. background: #fff;
  7. border-bottom: 10px @disColor solid;
  8. box-sizing: border-box;
  9. }
  10. ul,
  11. li {
  12. list-style: none;
  13. }
  14. h2 {
  15. .h2;
  16. border-bottom: 10px @disColor solid;
  17. position: fixed;
  18. top: 0;
  19. }
  20. .main-body {
  21. .main-body-com;
  22. border: none;
  23. border-left: 10px @disColor solid;
  24. margin: 54px 0 0;
  25. min-width: 1090px;
  26. min-height: calc(100% - 84px);
  27. /*width: 100%;*/
  28. }
  29. .appeal-info,
  30. .appeal-content,
  31. .appeal-history {
  32. margin-top: 20px;
  33. .title {
  34. font-size: 16px;
  35. font-weight: bold;
  36. position: relative;
  37. padding-left: 15px;
  38. }
  39. .title::after {
  40. content: "";
  41. width: 4px;
  42. height: 13px;
  43. background: #267fd7;
  44. position: absolute;
  45. left: 0;
  46. top: 3px;
  47. border-radius: 2px;
  48. }
  49. .info {
  50. margin: 10px 0;
  51. display: flex;
  52. justify-content: space-between;
  53. flex-flow: wrap;
  54. padding: 0 12px;
  55. .info-title {
  56. margin-right: 10px;
  57. }
  58. }
  59. .content {
  60. margin: 10px 0;
  61. padding: 0 12px;
  62. .con-title {
  63. margin-top: 10px;
  64. }
  65. .goDetail {
  66. padding: 5px 15px;
  67. background: #00a1ff;
  68. color: #fff;
  69. text-align: center;
  70. border-radius: 4px;
  71. }
  72. }
  73. .history {
  74. overflow: hidden;
  75. .box {
  76. margin: 0 12px;
  77. margin-top: 15px;
  78. & span {
  79. padding-right: 15px;
  80. }
  81. }
  82. .box:first-child{
  83. border-top: none!important;
  84. }
  85. }
  86. }
  87. .goback {
  88. display: inline-block;
  89. width: 85px;
  90. height: 32px;
  91. background: #00a1ff;
  92. border-radius: 4px;
  93. color: #fff;
  94. text-align: center;
  95. line-height: 32px;
  96. cursor: pointer;
  97. margin-right: 15px;
  98. float: right;
  99. & span {
  100. color: #fff;
  101. pointer-events: none;
  102. }
  103. }
  104. .bot {
  105. text-align: center;
  106. display: flex;
  107. justify-content: center;
  108. margin-top: 20px;
  109. .btn-sure {
  110. display: inline-block;
  111. width: 90px;
  112. height: 32px;
  113. background: #00a1ff;
  114. border-radius: 4px;
  115. color: #fff;
  116. text-align: center;
  117. line-height: 32px;
  118. cursor: pointer;
  119. margin-right: 15px;
  120. & span {
  121. color: #fff;
  122. pointer-events: none;
  123. }
  124. }
  125. & ul {
  126. position: absolute;
  127. background: #fff;
  128. display: none;
  129. }
  130. .btn-cancel {
  131. width: 90px;
  132. height: 30px;
  133. background: #fff;
  134. border-radius: 4px;
  135. color: #777;
  136. border: 1px solid #777;
  137. text-align: center;
  138. line-height: 30px;
  139. cursor: pointer;
  140. }
  141. }
  142. .appeal-box {
  143. .item {
  144. padding: 5px 0;
  145. position: relative;
  146. .radio {
  147. margin: 0 5px;
  148. }
  149. .title {
  150. width: 80px;
  151. text-align: right;
  152. display: inline-block;
  153. }
  154. .inp {
  155. border: 1px solid #e2e5ef;
  156. height: 24px;
  157. padding: 0 5px;
  158. }
  159. .textarea,
  160. .textarea2 {
  161. width: 300px;
  162. height: 100px;
  163. overflow-y: auto;
  164. border: 1px solid #e2e5ef;
  165. resize:none;
  166. vertical-align: top;
  167. }
  168. }
  169. }
  170. .required {
  171. color: #e3505b;
  172. }
  173. .warning {
  174. display: none;
  175. }
  176. .con-title{
  177. word-wrap: break-word;
  178. }