consulting.css 6.4 KB

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