consulting.css 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551
  1. .consulting-panel{
  2. position: relative;
  3. height: calc(100% - 10px);
  4. }
  5. .c-12b7f5{
  6. color: #12b7f5;
  7. }
  8. .input-panel{
  9. height: 150px;
  10. position: relative;
  11. }
  12. .mtb6{
  13. margin-top: 6px;
  14. margin-bottom: 6px;
  15. }
  16. #talkBox:after {
  17. visibility: hidden;
  18. display: block;
  19. font-size: 0;
  20. content: " ";
  21. clear: both;
  22. height: 0;
  23. padding-bottom: 15px;
  24. }
  25. p{
  26. margin-top: 6px;
  27. margin-bottom: 6px;
  28. }
  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. }
  363. .consult-icon{
  364. width: 16px;
  365. height: 16px;
  366. margin-right: 10px;
  367. }
  368. .icon-image:before{
  369. content: url(../img/img_icon.png);
  370. }
  371. .icon-image:hover:before{
  372. content: url(../img/img_icon_pre.png);
  373. }
  374. .icon-reply:before{
  375. content: url(../img/huifu_icon.png);
  376. }
  377. .icon-reply:hover:before{
  378. content: url(../img/huifu_icon_pre.png);
  379. }
  380. .quick-reply-panel{
  381. position: absolute;
  382. bottom: 0;
  383. left: 50px;
  384. background-color: #fff;
  385. border: 1px solid #e1e1e1;
  386. display: none;
  387. max-width: 50%;
  388. }
  389. .reply-list{
  390. margin: 0;
  391. padding: 0;
  392. list-style: none;
  393. }
  394. .reply-list li{
  395. border-top: 1px solid #e1e1e1;
  396. padding: 10px;
  397. text-align: center;
  398. word-wrap: break-word;
  399. }
  400. .reply-list li:first-child{
  401. border-top: 0;
  402. }
  403. .reply-list li:hover{
  404. color: #12b7f5;
  405. }
  406. .chat-right .word-bread.msg-fv{
  407. background-color: #f5f5fa;
  408. padding: 10px;
  409. border: none;
  410. }
  411. .chat-right .word-bread.msg-fv:after{
  412. background-color: #f5f5fa;
  413. border-color: #f5f5fa;
  414. }
  415. .msg-fv .fv-content{
  416. background-color: #fff;
  417. padding: 8px 10px;
  418. border-radius: 6px;
  419. }
  420. .fv-remind{
  421. text-align: center;
  422. display: inline-block;
  423. background-color: #f5f5fa;
  424. padding: 8px 20px;
  425. border-radius: 18px;
  426. color: #666;
  427. margin-bottom: 15px;
  428. }
  429. .mb10-i{
  430. margin-bottom: 10px !important;
  431. }
  432. .layer-info-content{
  433. width: 80%;
  434. margin: auto;
  435. }
  436. body .alert-info .layui-layer-title{
  437. background-color: #fff;
  438. border-bottom: 0;
  439. }
  440. body .alert-info .layui-layer-content{
  441. padding: 0px 20px 10px;
  442. text-align: center;
  443. color: #333;
  444. }
  445. body .alert-info .layui-layer-btn{
  446. text-align: center;
  447. border-top: 0;
  448. background-color: #fff;
  449. padding: 20px;
  450. }
  451. body .alert-info .layui-layer-btn a{
  452. background-color: #fff;
  453. border: 1px solid #d7dce6;
  454. color: #666;
  455. }
  456. .flex-box-li{
  457. display: -webkit-box;
  458. display: box;
  459. -webkit-box-pack: center;
  460. -webkit-box-align: center;
  461. }
  462. .col-0{
  463. -webkit-box-flex: 0;
  464. box-flex: 0;
  465. }
  466. .col-1{
  467. -webkit-box-flex: 1;
  468. box-flex: 1;
  469. }
  470. body .quick-reply-setting .layui-layer-title{
  471. height: 40px;
  472. background-color: #fff;
  473. line-height: 40px;
  474. font-size: 14px;
  475. font-weight: normal;
  476. padding: 0 80px 0 10px;
  477. }
  478. body .quick-reply-setting .layui-layer-content{
  479. padding: 10px;
  480. color: #333;
  481. }
  482. body .quick-reply-setting .layui-layer-btn{
  483. background-color: #fff;
  484. border-top: 0;
  485. padding: 10px;
  486. }
  487. body .quick-reply-setting .layui-layer-btn a{
  488. background-color: #fafafa;
  489. border: 1px solid #d7dce6;
  490. color: #666;
  491. }
  492. body .quick-reply-setting .layui-layer-btn .layui-layer-btn0{
  493. border-color: #12b7f5;
  494. }
  495. body .quick-reply-setting .layui-layer-btn .layui-layer-btn1{
  496. }
  497. ul{
  498. margin: 0;
  499. list-style: none;
  500. padding: 0;
  501. }
  502. .reply-list2 li{
  503. padding: 10px 10px;
  504. }
  505. .link-blue,
  506. .link-blue:hover,
  507. .link-blue:focus
  508. {
  509. color: #12b7f5;
  510. text-decoration: underline;
  511. }
  512. .work-break{
  513. word-wrap: break-word;
  514. }