consulting.css 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. .consulting-panel{
  2. height: calc(100% - 150px);
  3. }
  4. .input-panel{
  5. height: 150px;
  6. position: relative;
  7. }
  8. .mtb6{
  9. margin-top: 6px;
  10. margin-bottom: 6px;
  11. }
  12. p{
  13. margin-top: 6px;
  14. margin-bottom: 6px;
  15. }
  16. /* css3-Grid
  17. -----------------------------------------------------------------------------*/
  18. .ui-grid { display: -webkit-box; display: box; }
  19. .ui-grid-middle { -webkit-box-pack: center; -webkit-box-align: center; box-pack: center; box-align: center; }
  20. .ui-grid-vertical { -webkit-box-orient: vertical; box-orient: vertical; }
  21. .ui-grid-label { -webkit-box-flex: 0; box-flex: 0; width: 100px; font-weight: 600; }
  22. .ui-col-0 { -webkit-box-flex: 0; box-flex: 0; }
  23. .ui-col-1 { -webkit-box-flex: 1; box-flex: 1; }
  24. .ui-col-2 { -webkit-box-flex: 2; box-flex: 2; }
  25. .ui-col-3 { -webkit-box-flex: 3; box-flex: 3; }
  26. .ui-col-4 { -webkit-box-flex: 4; box-flex: 3; }
  27. .ui-col-5 { -webkit-box-flex: 5; box-flex: 5; }
  28. .ui-col-6 { -webkit-box-flex: 6; box-flex: 6; }
  29. .c-chat-box {
  30. border: none;
  31. padding-left: 2%;
  32. padding-right: 2%;
  33. }
  34. .time-tips {
  35. margin: 10px 0 0 0;
  36. text-align: center;
  37. clear: both;
  38. }
  39. .time-tips span {
  40. position: relative;
  41. display: inline-block;
  42. padding: 0 60px;
  43. color: #aeaeae;
  44. font-size: 15px;
  45. }
  46. .time-tips span:before,
  47. .time-tips span:after {
  48. position: absolute;
  49. content: "";
  50. display: block;
  51. width: 50px;
  52. height: 1px;
  53. background: #e6e4e1;
  54. top: 50%;
  55. }
  56. .time-tips span:before {
  57. left: 0;
  58. }
  59. .time-tips span:after {
  60. right: 0;
  61. }
  62. .chat-left,
  63. .chat-right {
  64. clear: both;
  65. overflow: hidden;
  66. padding: 10px 0;
  67. }
  68. .chat-left > dt,
  69. .chat-right > dt {
  70. width: 40px;
  71. height: 40px;
  72. }
  73. .chat-left > dt {
  74. float: left;
  75. margin-right: 15px;
  76. }
  77. .chat-right > dt {
  78. float: right;
  79. margin-left: 15px;
  80. }
  81. .chat-left > dt img,
  82. .chat-right > dt img {
  83. width: 40px;
  84. height: 40px;
  85. border-radius: 50%;
  86. }
  87. .chat-left > dd,
  88. .chat-right > dd {
  89. position: relative;
  90. min-height: 18px;
  91. font-size: 15px;
  92. display: inline-block;
  93. max-width: 80%;
  94. background: #fff;
  95. border: 1px solid #e1e1e1;
  96. border-radius: 6px;
  97. padding: 8px 10px;
  98. box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
  99. }
  100. .chat-left > dd {
  101. float: left;
  102. /* white-space: pre-wrap; */
  103. word-wrap: break-word;
  104. }
  105. .chat-right > dd {
  106. float: right;
  107. background: #bce0ff;
  108. border: 1px solid #81bdf7;
  109. /* white-space: pre-wrap; */
  110. word-wrap: break-word;
  111. }
  112. .chat-left > dd:after {
  113. content: "";
  114. position: absolute;
  115. top: 14px;
  116. left: -6px;
  117. display: block;
  118. width: 8px;
  119. height: 8px;
  120. background: #fff;
  121. border-color: #e1e1e1;
  122. border-style: solid;
  123. border-width: 1px 0 0 1px;
  124. -webkit-transform: rotate(-45deg);
  125. -moz-transform: rotate(-45deg);
  126. transform: rotate(-45deg);
  127. }
  128. .chat-right > dd:after {
  129. content: "";
  130. position: absolute;
  131. top: 14px;
  132. right: -6px;
  133. display: block;
  134. width: 8px;
  135. height: 8px;
  136. background: #bce0ff;
  137. border-color: #81bdf7;
  138. border-style: solid;
  139. border-width: 1px 0 0 1px;
  140. -webkit-transform: rotate(135deg);
  141. -moz-transform: rotate(135deg);
  142. transform: rotate(135deg);
  143. }
  144. .chat-left > dd p img,
  145. .chat-right > dd p img {
  146. max-width: 150px;
  147. max-height: 150px;
  148. margin: 5px 0;
  149. }
  150. .chat-msg-box {
  151. bottom: 0;
  152. left: 0
  153. }
  154. .chat-msg-box .input-group .form-control {
  155. height: 32px;
  156. }
  157. .pull-more {
  158. text-align: center;
  159. color: #5b5b5b;
  160. font-size: 14px;
  161. padding: 14px 0;
  162. }
  163. .chat-right .word-bread.sys-msg{
  164. background-color: #fff;
  165. }
  166. .chat-right .word-bread.sys-msg:after{
  167. background-color: #fff;
  168. border-color: #17b3ec;
  169. }
  170. .chat-left .word-bread.sys-msg{
  171. background-color: #fff;
  172. border-color: #17b3ec;
  173. }
  174. .chat-left .word-bread.sys-msg:after{
  175. background-color: #fff;
  176. border-color: #17b3ec;
  177. }
  178. .sys-header{
  179. display: inline-block;
  180. background-color: #17b3ec;
  181. height: 28px;
  182. line-height: 28px;
  183. padding: 0 10px;
  184. border-radius: 14px;
  185. color: #fff
  186. }
  187. .sys-header img{
  188. vertical-align: middle;
  189. margin-right: 5px;
  190. }
  191. .time-tips span{
  192. padding: 2px 10px;
  193. border-radius: 15px;
  194. color: #aaa;
  195. /*background-color: #E1E1E1;*/
  196. font-size: 12px;
  197. }
  198. .time-tips .xt-xiaoxi{
  199. background-color: #e1e1e1;
  200. }
  201. .chat-left, .chat-right {
  202. display: -webkit-box;
  203. clear: both;
  204. overflow: hidden;
  205. padding: 10px 0;
  206. }
  207. .chat-right{
  208. -webkit-box-direction: reverse;
  209. }
  210. .chat-left > dt{
  211. float: none;
  212. }
  213. .chat-right > dt {
  214. float: none;
  215. }
  216. .chat-right .word-bread{
  217. text-align: left;
  218. /*float: right;*/
  219. background: #17b3ec;
  220. border: 1px solid #17b3ec;
  221. /* white-space: pre-wrap; */
  222. word-wrap: break-word;
  223. position: relative;
  224. min-height: 18px;
  225. font-size: 15px;
  226. display: inline-block;
  227. max-width: 80%;
  228. border-radius: 6px;
  229. padding: 8px 10px;
  230. box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
  231. }
  232. .chat-right > div.c-content{
  233. -webkit-box-flex: 1;
  234. text-align: right;
  235. }
  236. .chat-right .word-bread:after{
  237. content: "";
  238. position: absolute;
  239. top: 5px;
  240. right: -5px;
  241. display: block;
  242. width: 8px;
  243. height: 8px;
  244. background: #17b3ec;
  245. border-color: #17b3ec;
  246. border-style: solid;
  247. border-width: 1px 0 0 1px;
  248. -webkit-transform: rotate(135deg);
  249. -moz-transform: rotate(135deg);
  250. transform: rotate(135deg);
  251. }
  252. .chat-left .word-bread{
  253. /*float: left;*/
  254. /* white-space: pre-wrap; */
  255. word-wrap: break-word;
  256. position: relative;
  257. min-height: 18px;
  258. font-size: 15px;
  259. display: inline-block;
  260. max-width: 80%;
  261. background: #fff;
  262. border: 1px solid #e1e1e1;
  263. border-radius: 6px;
  264. padding: 8px 10px;
  265. box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
  266. }
  267. .chat-left > div.c-content{
  268. -webkit-box-flex: 1;
  269. text-align: left;
  270. }
  271. .chat-left .word-bread:after{
  272. content: "";
  273. position: absolute;
  274. top: 5px;
  275. left: -5px;
  276. display: block;
  277. width: 8px;
  278. height: 8px;
  279. background: #fff;
  280. border-color: #e1e1e1;
  281. border-style: solid;
  282. border-width: 1px 0 0 1px;
  283. -webkit-transform: rotate(-45deg);
  284. -moz-transform: rotate(-45deg);
  285. transform: rotate(-45deg);
  286. }
  287. .chat-left span.name, .chat-right span.name{
  288. display: block;
  289. height: 24px;
  290. }
  291. .time-tips span:before, .time-tips span:after{
  292. height: 0!important;
  293. }
  294. .action-panel{
  295. background-color: #F5F5FA;
  296. height: 30px;
  297. line-height: 30px;
  298. padding-left: 20px;
  299. padding-right: 20px;
  300. }
  301. .action-panel i{
  302. font-size: 18px;
  303. }
  304. .send-btn{
  305. background-color: #12b7f5;
  306. color: #fff;
  307. border: 1px solid #12b7f5;
  308. position: absolute;
  309. right: 10px;
  310. bottom: 10px;
  311. padding: 4px 10px;
  312. }
  313. .send-btn.disabled,
  314. .send-btn.disabled:hover
  315. {
  316. border: 1px solid #e7eaec;
  317. background-color: #f2f4f6;
  318. color: #ccc;
  319. }
  320. .input-msg{
  321. width: 100%;
  322. line-height: 22px;
  323. overflow-x: hidden;
  324. overflow-y: auto;
  325. height: 76px;
  326. padding: 5px 10px;
  327. font-size: 14px;
  328. -webkit-user-select: auto;
  329. user-modify: read-write-plaintext-only;
  330. -webkit-user-modify: read-write-plaintext-only
  331. }
  332. .info-panel{
  333. height: 26px;
  334. line-height: 26px;
  335. font-size: 12px;
  336. color: #666;
  337. text-align: center;
  338. background-color: #fafaeb;
  339. }
  340. .info-panel a{
  341. color: #12b7f5;
  342. }
  343. .diseaseInfo{
  344. font-size: 12px;
  345. color: #999;
  346. background-color: #f5f5fa;
  347. display: inline-block;
  348. padding: 5px 12px;
  349. border-radius: 14px;
  350. margin-top: 10px;
  351. margin-bottom: 10px;
  352. }
  353. .status-btn{
  354. display: inline-block;
  355. height: 30px;
  356. border: 1px solid #12b7f5;
  357. line-height: 30px;
  358. padding: 0 12px;
  359. border-radius: 2px;
  360. color: #12b7f5;
  361. margin-top: 10px;
  362. }