detail.css 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. .container {
  2. font-family: -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif;
  3. }
  4. .margin-l-2 {
  5. margin-left: 2px;
  6. }
  7. .mobile_steps {
  8. font-size: 12px;
  9. }
  10. .mobile_steps > li + li:before {
  11. content: "/\00a0";
  12. padding: 0 0px;
  13. color: #ccc;
  14. }
  15. .mobile_steps > li > a{
  16. color: #333;
  17. }
  18. .mobile_steps > .after_step a{
  19. color: #99CBED;
  20. }
  21. .mobile_steps > .active a{
  22. color: #3498DB;
  23. }
  24. .steps {
  25. box-sizing: border-box;
  26. font-size: 0;
  27. }
  28. .step, .step .step_text {
  29. display: inline-block;
  30. }
  31. .step {
  32. position: relative;
  33. width: 25%;
  34. font-size: 13px;
  35. height: 30px;
  36. line-height: 30px;
  37. color: #fff;
  38. background-color: rgba(52, 152, 219, .5);
  39. z-index: 1;
  40. text-align: center;
  41. }
  42. .step .step_text {
  43. width: 90%;
  44. overflow: hidden;
  45. text-overflow: ellipsis;
  46. white-space: nowrap;
  47. }
  48. .step-after:after, .step-before:before {
  49. content: "";
  50. display: block;
  51. position: absolute;
  52. top: 0;
  53. }
  54. .step-after:after {
  55. width: 20px;
  56. height: 30px;
  57. right: 0;
  58. z-index: 9;
  59. border-top: 15px solid transparent !important;
  60. border-left: 15px solid rgba(52, 152, 219, .5);
  61. border-bottom: 15px solid transparent !important;
  62. background-color: #fff;
  63. }
  64. .step-before:before {
  65. left: -15px;
  66. z-index: 8;
  67. border-top: 15px solid rgba(52, 152, 219, .5);
  68. border-left: 15px solid transparent !important;
  69. border-bottom: 15px solid rgba(52, 152, 219, .5);
  70. }
  71. .step-active {
  72. background-color: #3498DB;
  73. }
  74. .step-active:after, .step-active:before {
  75. border-color: #3498DB;
  76. }
  77. .detail {
  78. font-size: 13px;
  79. background: #F4F6F8;
  80. padding: 12px 15px;
  81. margin: 20px 0 0 0;
  82. }
  83. .detail_item {
  84. padding: 1px 0;
  85. margin: 0;
  86. word-wrap: break-word;
  87. word-break: break-all;
  88. }
  89. .detail a {
  90. padding: 0 2px;
  91. color: #3498DB;
  92. }
  93. .detail a:hover {
  94. color: rgba(52, 152, 219, .8);
  95. }
  96. .engineer_info {
  97. display: block;
  98. background: #F4F6F8;
  99. margin-top: 20px;
  100. padding-top: 10px;
  101. }
  102. .basic_info {
  103. display: flex;
  104. align-items: center;
  105. border-bottom: 1px solid #ddd;
  106. padding: 0 0 10px 0;
  107. }
  108. .border-none{
  109. border: none;
  110. }
  111. .basic_info img {
  112. height: 70px;
  113. width: 70px;
  114. margin-right: 10px;
  115. }
  116. .basic_info_box {
  117. display: block;
  118. width: calc(100% - 80px);
  119. }
  120. .basic_info_name {
  121. margin: 0;
  122. color: #333;
  123. font-size: 15px;
  124. font-weight: bold;
  125. overflow: hidden;
  126. text-overflow: ellipsis;
  127. white-space: nowrap;
  128. }
  129. .basic_info_desc {
  130. color: #999999;
  131. margin: 0;
  132. display: block;
  133. overflow: hidden;
  134. text-overflow: ellipsis;
  135. display: -webkit-box;
  136. -webkit-box-orient: vertical;
  137. -webkit-line-clamp: 2;
  138. }
  139. .expend_info {
  140. padding: 5px 0;
  141. }
  142. .expend_info div {
  143. padding: 0 1px;
  144. }
  145. .expend_info_item {
  146. line-height: 26px;
  147. font-size: 13px;
  148. overflow: hidden;
  149. text-overflow: ellipsis;
  150. white-space: nowrap;
  151. }
  152. .detail-content {
  153. clear: both;
  154. padding-top: 20px;
  155. }
  156. .detail-content-title {
  157. padding: 11px 16px;
  158. background: #F4F6F8;
  159. border-left: 2px solid #3498DB;
  160. margin-bottom: 0;
  161. font-size: 14px;
  162. font-weight: 500;
  163. color: #333;
  164. }
  165. .detail-content-list {
  166. position: relative;
  167. border: 1px solid #F4F6F8;
  168. border-top: none;
  169. outline: none;
  170. transition: opacity .3s;
  171. }
  172. .list_items {
  173. margin: 0;
  174. padding: 0 0 10px 0;
  175. list-style: none;
  176. }
  177. .empty_record {
  178. text-align: center;
  179. padding: 10px 0;
  180. }
  181. .list_item {
  182. border-bottom: none;
  183. align-items: normal;
  184. justify-content: space-between;
  185. padding: 10px 0 0 0;
  186. }
  187. .item_meta {
  188. margin-bottom: 0;
  189. padding: 2px 10px 0;
  190. display: flex;
  191. flex: 1;
  192. align-items: flex-start;
  193. font-size: 0;
  194. }
  195. .item_meta_user {
  196. flex-direction: row-reverse;
  197. display: flex;
  198. justify-content: flex-start;
  199. align-content: center;
  200. }
  201. .item_meta_engineer {
  202. }
  203. .item_meta_avatar {
  204. }
  205. .avatar_img {
  206. box-sizing: border-box;
  207. margin: 0;
  208. padding: 0;
  209. font-variant: tabular-nums;
  210. list-style: none;
  211. font-feature-settings: "tnum";
  212. position: relative;
  213. display: inline-block;
  214. overflow: hidden;
  215. vertical-align: middle;
  216. background: transparent;
  217. width: 32px;
  218. height: 32px;
  219. cursor: pointer;
  220. }
  221. .avatar_img > img {
  222. display: block;
  223. width: 100%;
  224. height: 100%;
  225. object-fit: cover;
  226. }
  227. .item_meta_content_box {
  228. display: flex;
  229. justify-content: flex-end;
  230. flex: none;
  231. max-width: 65%;
  232. }
  233. .item_meta_content {
  234. font-size: 12px;
  235. color: #333;
  236. line-height: 20px;
  237. margin-bottom: 0;
  238. }
  239. .item_meta_user .item_meta_createtime {
  240. text-align: right;
  241. margin-right: 10px;
  242. color: #888;
  243. }
  244. .item_meta_engineer .item_meta_createtime {
  245. text-align: left;
  246. margin-left: 10px;
  247. color: #888;
  248. }
  249. .item_meta_text {
  250. padding: 12px 10px;
  251. border-radius: 4px;
  252. position: relative;
  253. width: auto;
  254. word-wrap: break-word;
  255. word-break: break-all;
  256. }
  257. .item_meta_text .img_message, .item_meta_text .rich_text img {
  258. max-width: 200px !important;
  259. height: auto !important;
  260. vertical-align: bottom;
  261. }
  262. .item_meta_text .rich_text p {
  263. margin: 0;
  264. }
  265. .file_message {
  266. height: 50px;
  267. display: flex;
  268. align-items: center;
  269. }
  270. .file_message img {
  271. width: 50px;
  272. height: 50px;
  273. padding: 4px;
  274. }
  275. .file_message div {
  276. margin: 6px 0 0 6px;
  277. line-height: 16px;
  278. }
  279. .file_message .file_name {
  280. font-size: 14px;
  281. font-weight: bold;
  282. margin: 0;
  283. color: #333;
  284. }
  285. .file_message .file_size {
  286. margin: 0;
  287. color: #999;
  288. }
  289. .down_file {
  290. font-size: 18px;
  291. padding: 0 10px;
  292. }
  293. .confidential {
  294. margin-right: 6px;
  295. vertical-align: middle;
  296. }
  297. .item_meta_user .item_meta_text {
  298. border: 1px solid rgba(52, 152, 219, .5);
  299. margin-right: 10px;
  300. }
  301. .item_meta_engineer .item_meta_text {
  302. margin-left: 10px;
  303. background: #F4F6F8;
  304. border: 1px solid #e8e8e8;
  305. }
  306. .item_meta_user .item_meta_text:after {
  307. content: "";
  308. position: absolute;
  309. top: 2px;
  310. right: -6px;
  311. z-index: 999;
  312. width: 10px;
  313. height: 14px;
  314. transform-style: inherit;
  315. transform: rotate(1deg) skewX(-35deg);
  316. background: #fff;
  317. border-top: 1px solid rgba(52, 152, 219, .5);
  318. border-right: 1px solid rgba(52, 152, 219, .5);
  319. }
  320. .item_meta_engineer .item_meta_text:after {
  321. content: "";
  322. position: absolute;
  323. top: 2px;
  324. left: -6px;
  325. z-index: 999;
  326. width: 10px;
  327. height: 14px;
  328. transform-style: inherit;
  329. transform: rotate(-1deg) skewX(35deg);
  330. background: #f7f9fa;
  331. border-top: 1px solid #e8e8e8;
  332. border-left: 1px solid #e8e8e8;
  333. }
  334. .item_meta_avatar .popover-content {
  335. padding: 10px;
  336. }
  337. .detail_editor {
  338. margin-top: 20px;
  339. border: 1px solid #F4F6F8;
  340. }
  341. .detail_editor_box {
  342. margin-top: 20px;
  343. }
  344. .detail_editor textarea {
  345. width: 100%;
  346. border-color: #ddd;
  347. padding: 6px;
  348. }
  349. .detail_editor .panel-default {
  350. padding: 0;
  351. }
  352. .transfer_form {
  353. display: none;
  354. border-top: 1px solid #99CBED;
  355. margin-top: 10px;
  356. padding-top: 10px;
  357. }
  358. .margin-bottom-10 {
  359. margin-bottom: 10px;
  360. }
  361. @media (max-width: 768px) {
  362. .item_meta_content_box {
  363. max-width: 86%;
  364. }
  365. .message_form .form-group {
  366. margin: 0 0 15px 0;
  367. }
  368. .item_meta_text .img_message, .item_meta_text .rich_text img {
  369. max-width: 150px !important;
  370. }
  371. }