index.vue 21KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965
  1. <template>
  2. <div class="main-contain">
  3. <div class="position">
  4. <bread-crumb :crumbs='crumbs'></bread-crumb>
  5. </div>
  6. <div class="app-container">
  7. <div class="customer_plate white-bg">
  8. <div class="aside">
  9. <div class="customer_search clearfix">
  10. <div class="super_searchbox">
  11. <span class="search_icon"></span>
  12. <input type="text" class="cus_search_input" v-model="searchname" placeholder="请输入客户名称">
  13. </div>
  14. </div>
  15. <div class="client_list_box">
  16. <div class="client_list">
  17. <ul class="users-list">
  18. <li v-for="(patient, key) in patientsMap" v-show="searchname == '' || (patient.name.indexOf(searchname)>=0)" :class="thisPatient && patient.user_id==thisPatient.user_id?'Active':''" :key="key" :id="'sessDiv_User_'+patient.user_id" class="item" :data-username="patient.name" @click="chooseThisUser(patient)">
  19. <span :id="'badgeDiv_User_'+patient.user_id" class="circle-count" style="" v-show="patient.unread_msg_count"><i class="count">{{patient.unread_msg_count}}</i></span>
  20. <figure :id="'faceImg_User_'+patient.user_id" class="session-pic"><img :src="patient.avatar"></figure>
  21. <h3 :id="'nameDiv_User_'+patient.user_id" class="nick">{{patient.name}}</h3>
  22. <!-- <span class="square-close" title="退出接待" :data-toid="'User_'+patient.user_id">×</span> -->
  23. </li>
  24. </ul>
  25. </div>
  26. </div>
  27. </div>
  28. <div class="left_content">
  29. <div class="conversation-admin">
  30. <span class="nickname">
  31. <span></span>
  32. </span>
  33. </div>
  34. <div class="message-list-wrap">
  35. <div class="message-list-item">
  36. <ul class="message-list">
  37. <li v-for="(messageitem, key) in messageBox" :key="key" :id="'id_'+messageitem.id" class="message-item clearfix">
  38. <div class="time"><span v-html="messageitem.time"></span></div>
  39. <div class="user " :class="messageitem.float">
  40. <figure class="bg-pic circle-bg-pic">
  41. <div class="bg-pic-content">
  42. <img :src="messageitem.avatar">
  43. </div>
  44. </figure>
  45. </div>
  46. <div class="message-body " :class="messageitem.float"><div class="inner" v-html="messageitem.message"></div></div>
  47. </li>
  48. </ul>
  49. </div>
  50. <div class="no_session">
  51. <span class="no_session_pic"></span>
  52. <p class="no_session_txt">没有选中会话哦!</p>
  53. </div>
  54. </div>
  55. <div class="send_box" v-loading="loadingbox" :element-loading-text="loadingboxtext">
  56. <div class="inputer_actions">
  57. <!-- <div class="face">
  58. <span class="face_icon" @click="showEmotionDialog"></span>
  59. </div> -->
  60. <div class="picture">
  61. <span class="picture_icon" @click="selectPicClick"></span>
  62. </div>
  63. </div>
  64. <div id="wl_faces_box" class="wl_faces_box" v-bind:style="{left:'0px', display:facesBoxDisplay}">
  65. <div class="wl_faces_content">
  66. <div class="title">
  67. <ul>
  68. <li class="title_name">常用表情</li>
  69. <li class="wl_faces_close">
  70. <span @click="facesBoxDisplay='none'">&nbsp;</span>
  71. </li>
  72. </ul>
  73. </div>
  74. <div id="wl_faces_main" class="wl_faces_main">
  75. <ul id="emotionUL">
  76. <li v-for="(emotion, key) in emotionList" :key="key" @click="chooseThisFace(emotion)">
  77. <img :src="emotion.src" :id="emotion.id" alt="" style="cursor:pointer;">
  78. </li>
  79. </ul>
  80. </div>
  81. </div>
  82. <div class="wlf_icon"></div>
  83. </div>
  84. <div class="inputer-area">
  85. <textarea
  86. maxlength="500" v-model="message"
  87. class="message-textarea transparent-txta"
  88. placeholder
  89. id="message"
  90. ></textarea>
  91. </div>
  92. <div class="send_box_btn">
  93. <button class="send_btn" id="sendMessaeg" @click="sendMessage">发送</button>
  94. </div>
  95. </div>
  96. </div>
  97. </div>
  98. </div>
  99. </div>
  100. </template>
  101. <script>
  102. import BreadCrumb from '../components/bread-crumb'
  103. export default {
  104. name: 'commentList',
  105. components:{
  106. BreadCrumb,
  107. },
  108. data(){
  109. return{
  110. crumbs: [
  111. { path: false, name: '客服管理' },
  112. { path: false, name: '咨询管理' }
  113. ],
  114. searchname:'',
  115. patientsMap:{},
  116. thisPatient:null,
  117. messageBox:[],
  118. }
  119. },
  120. methods:{},
  121. created(){
  122. }
  123. }
  124. </script>
  125. <style scoped>
  126. /*.app-container .cell.clearfix .time ul li {*/
  127. /*float: left;*/
  128. /*list-style: none;*/
  129. /*cursor: pointer;*/
  130. /*padding: 6px 20px;*/
  131. /*color: #606266;*/
  132. /*border-radius: 4px;*/
  133. /*margin: 0 8px 0 0;*/
  134. /*font-size: 14px;*/
  135. /*text-align: center;*/
  136. /*}*/
  137. .app-container{
  138. height: 750px;
  139. }
  140. .customer_plate {
  141. width: 100%;
  142. display: -webkit-box;
  143. display: -webkit-flex;
  144. display: -moz-box;
  145. display: -ms-flexbox;
  146. display: flex;
  147. -webkit-box-flex: 1;
  148. -webkit-flex: 1;
  149. -moz-box-flex: 1;
  150. -ms-flex: 1;
  151. flex: 1;
  152. height:100%;
  153. }
  154. .customer_plate .aside {
  155. width: 282px;
  156. -webkit-flex-shrink: 0;
  157. -ms-flex-negative: 0;
  158. flex-shrink: 0;
  159. position: relative;
  160. border-right: 1px solid #e5e8ea;
  161. }
  162. .customer_plate .aside .client_list_box {
  163. position: absolute;
  164. width: 100%;
  165. top: 50px;
  166. left: 0;
  167. bottom: 0;
  168. overflow-x: visible;
  169. overflow-y: auto;
  170. }
  171. .channelswitch-wrap {
  172. position: absolute;
  173. top: 0;
  174. left: 0;
  175. right: 0;
  176. bottom: 0;
  177. }
  178. .customer_plate .aside .client_list_box .client_list {
  179. height: 100%;
  180. overflow: hidden;
  181. overflow-y: auto;
  182. }
  183. .customer_plate .aside .customer_search {
  184. margin: 0 10px;
  185. height: 34px;
  186. }
  187. .customer_plate .aside .super_searchbox {
  188. padding: 0 8px;
  189. background-color: #f4f7fa;
  190. border-radius: 30px;
  191. margin-top: 15px;
  192. font-size: 12px;
  193. }
  194. .customer_plate .aside .super_searchbox .cus_search_input {
  195. border: none;
  196. background: none;
  197. width: 224px;
  198. height: 22px;
  199. line-height: 22px;
  200. }
  201. .customer_plate .aside .super_searchbox .search_icon {
  202. display: inline-block;
  203. width: 12px;
  204. height: 12px;
  205. background: url(http://jk.kuyicloud.com/static/images/ico.png) no-repeat;
  206. float: left;
  207. background-position: -460px -314px;
  208. margin: 4px 5px 0 0;
  209. }
  210. .left_content {
  211. -webkit-box-flex: 1;
  212. -webkit-flex: 1;
  213. -moz-box-flex: 1;
  214. -ms-flex: 1;
  215. flex: 1;
  216. display: -webkit-box;
  217. display: -webkit-flex;
  218. display: -moz-box;
  219. display: -ms-flexbox;
  220. display: flex;
  221. position: relative;
  222. width: 100%;
  223. justify-content: flex-start;
  224. flex-direction: column;
  225. }
  226. .left_content .message-list-wrap {
  227. position: absolute;
  228. top: 50px;
  229. overflow: hidden;
  230. left: 0;
  231. right: 0;
  232. border-bottom: 1px #e5e8ea solid;
  233. bottom: 210px;
  234. }
  235. .left_content .message-list-wrap .message-list-item {
  236. height: 100%;
  237. overflow-x: hidden;
  238. overflow-y: auto;
  239. }
  240. .left_content .message-list-wrap .message-list {
  241. padding: 0 12px 20px;
  242. }
  243. .left_content .conversation-admin {
  244. height: 48px;
  245. line-height: 48px;
  246. border-bottom: 1px #e5e8ea solid;
  247. margin-left: 2px;
  248. width: 100%;
  249. }
  250. .left_content .conversation-admin .nickname {
  251. padding-left: 22px;
  252. }
  253. .client_list ul {
  254. list-style: none;
  255. }
  256. .client_list ul .item {
  257. padding: 17px 12px 17px 62px;
  258. min-height: 36px;
  259. cursor: pointer;
  260. font-size: 12px;
  261. transition: background-color 0.2s linear;
  262. -webkit-transition: background-color 0.2s linear;
  263. -moz-transition: background-color 0.2s linear;
  264. position: relative;
  265. }
  266. .client_list ul .Active {
  267. background: #f4f7fa;
  268. }
  269. .client_list ul .item .nick {
  270. font-size: 14px;
  271. color: #485b6d;
  272. margin-bottom: 7px;
  273. }
  274. .client_list ul .item:hover {
  275. background: #dfedfb;
  276. }
  277. .client_list ul .item .time {
  278. position: absolute;
  279. top: 14px;
  280. right: 12px;
  281. color: #a8b3ba;
  282. }
  283. .client_list ul .item .circle-count {
  284. padding: 2px;
  285. background-color: #ff7979;
  286. text-align: center;
  287. left: 8px;
  288. z-index: 2;
  289. min-width: 17px;
  290. min-height: 15px;
  291. line-height: 12px;
  292. border-radius: 10px;
  293. position: absolute;
  294. top: 12px;
  295. display: inline-block;
  296. }
  297. .client_list ul .item .circle-count .count {
  298. color: #fff;
  299. display: inline-block;
  300. -webkit-transform: scale(0.83);
  301. -moz-transform: scale(0.83);
  302. -ms-transform: scale(0.83);
  303. transform: scale(0.83);
  304. }
  305. .client_list ul .item .session-pic {
  306. position: absolute;
  307. top: 17px;
  308. left: 13px;
  309. width: 40px;
  310. height: 40px;
  311. border-radius: 50%;
  312. overflow: hidden;
  313. display: inline-block;
  314. }
  315. .client_list ul .item .session-pic img {
  316. width: 40px;
  317. height: 40px;
  318. }
  319. .client_list ul .item .square-close {
  320. color: #fff;
  321. background-color: #d2d2d5;
  322. display: none;
  323. width: 14px;
  324. height: 14px;
  325. line-height: 12px;
  326. text-align: center;
  327. position: absolute;
  328. top: 0;
  329. right: 0;
  330. }
  331. .client_list ul .item:hover .square-close {
  332. display: block;
  333. }
  334. .client_list ul .item .desc {
  335. color: #a8b3ba;
  336. text-overflow: ellipsis;
  337. white-space: nowrap;
  338. overflow: hidden;
  339. width: 150px;
  340. }
  341. .service_fixed {
  342. position: fixed;
  343. }
  344. .message-list-wrap ul li {
  345. padding: 12px;
  346. }
  347. .message-list-wrap .message-item .time {
  348. text-align: center;
  349. margin: 20px 0 6px 0;
  350. }
  351. .message-list-wrap .message-item .time span {
  352. font-size: 12px;
  353. color: #a8b3ba;
  354. }
  355. .message-list .message-item .user .bg-pic {
  356. display: inline-block;
  357. margin-right: 20px;
  358. }
  359. .message-list .message-item .message-body {
  360. background: #e5e8ea;
  361. padding: 16px 12px 12px 12px;
  362. border-radius: 4px;
  363. color: #485b6d;
  364. max-width: 520px;
  365. }
  366. .message-list .message-item .user .bg-pic .bg-pic-content {
  367. border-radius: 50%;
  368. display: inline-block;
  369. width: 40px;
  370. height: 40px;
  371. }
  372. .message-list .message-item .user .bg-pic img {
  373. width: 40px;
  374. height: 40px;
  375. border-radius: 50%;
  376. display: inline-block;
  377. }
  378. .no_session {
  379. text-align: center;
  380. }
  381. .send_box {
  382. position: absolute;
  383. font-size: 13px;
  384. bottom: 0;
  385. height: 210px;
  386. left: 0;
  387. right: 0;
  388. display: -webkit-box;
  389. display: -webkit-flex;
  390. display: -moz-box;
  391. display: -ms-flexbox;
  392. display: flex;
  393. -webkit-box-orient: vertical;
  394. -webkit-box-direction: normal;
  395. -webkit-flex-direction: column;
  396. -moz-box-orient: vertical;
  397. -moz-box-direction: normal;
  398. -ms-flex-direction: column;
  399. flex-direction: column;
  400. }
  401. .send_box .inputer_actions {
  402. padding: 10px;
  403. background: #f5f5f5;
  404. }
  405. .send_box .inputer_actions .face {
  406. float: left;
  407. margin: 0;
  408. height: auto;
  409. }
  410. .send_box .inputer_actions .face_icon {
  411. width: 24px;
  412. height: 22px;
  413. background: url(http://jk.kuyicloud.com/static/images/ico.png) no-repeat -478px -314px;
  414. display: inline-block;
  415. margin-right: 22px;
  416. cursor: pointer;
  417. }
  418. .send_box .inputer_actions .picture_icon {
  419. width: 28px;
  420. height: 24px;
  421. background: url(http://jk.kuyicloud.com/static/images/ico.png) no-repeat -508px -314px;
  422. display: inline-block;
  423. margin-right: 22px;
  424. cursor: pointer;
  425. }
  426. .inputer-area {
  427. -webkit-box-flex: 1;
  428. -webkit-flex: 1;
  429. -moz-box-flex: 1;
  430. -moz-flex: 1;
  431. -ms-flex: 1;
  432. flex: 1;
  433. margin: 2px;
  434. overflow: hidden;
  435. display: -webkit-box;
  436. display: -webkit-flex;
  437. display: -moz-flex;
  438. display: -ms-flexbox;
  439. display: -moz-box;
  440. display: flex;
  441. -webkit-box-direction: normal;
  442. -webkit-box-orient: vertical;
  443. -webkit-flex-direction: column;
  444. -moz-flex-direction: column;
  445. -ms-flex-direction: column;
  446. flex-direction: column;
  447. }
  448. .inputer-area .message-textarea {
  449. display: -webkit-box;
  450. display: -webkit-flex;
  451. display: -moz-flex;
  452. display: -ms-flexbox;
  453. display: -moz-box;
  454. display: flex;
  455. -webkit-box-flex: 1;
  456. -webkit-flex: 1;
  457. -moz-box-flex: 1;
  458. -moz-flex: 1;
  459. -ms-flex: 1;
  460. flex: 1;
  461. width: auto;
  462. height: 100%;
  463. resize: none;
  464. margin: 0;
  465. padding: 9px 4px;
  466. font-size: 14px;
  467. line-height: 1.5em;
  468. border: none;
  469. overflow-x: hidden;
  470. overflow-y: auto;
  471. border-radius: 0;
  472. -webkit-box-shadow: none;
  473. box-shadow: none;
  474. padding: 0 9px 4px;
  475. }
  476. .send_box .send_box_btn {
  477. position: absolute;
  478. bottom: 26px;
  479. right: 40px;
  480. }
  481. .send_box .send_box_btn .send_btn {
  482. background: #58a2ec;
  483. color: #fff;
  484. padding: 12px 55px;
  485. border-radius: 4px;
  486. border: none;
  487. font-size: 14px;
  488. }
  489. /*
  490. To change this license header, choose License Headers in Project Properties.
  491. To change this template file, choose Tools | Templates
  492. and open the template in the editor.
  493. */
  494. /*
  495. Created on : 2015-7-6, 15:55:30
  496. Author : peakerdong
  497. */
  498. #login {
  499. display: block;
  500. margin: 150px auto;
  501. text-align: center;
  502. }
  503. .aio {
  504. display: none;
  505. width: 734px;
  506. border: 1px black solid;
  507. padding: 0px;
  508. background: white;
  509. margin: 20px auto;
  510. font: 10px/1.5 "微软雅黑";
  511. }
  512. .titlebar {
  513. height: 82px;
  514. background: #5c95b3;
  515. }
  516. .titlebar #p_my_face {
  517. position: relative;
  518. width: 60px;
  519. height: 60px;
  520. border: 1px white solid;
  521. margin: 10px;
  522. float: left;
  523. }
  524. .titlebar #t_my_name {
  525. position: relative;
  526. top: 10px;
  527. left: 10px;
  528. float: left;
  529. font-size: 20px;
  530. color: white;
  531. }
  532. .titlebar #t_my_menu {
  533. width: 150px;
  534. position: relative;
  535. top: 5px;
  536. right: 5px;
  537. float: right;
  538. }
  539. .sesspart {
  540. clear: both;
  541. float: left;
  542. width: 208px;
  543. height: 535px;
  544. background: #d7eaf3;
  545. }
  546. .accordion {
  547. margin-bottom: 18px;
  548. }
  549. .accordion-group {
  550. margin-bottom: 2px;
  551. border: 1px solid #e5e5e5;
  552. -webkit-border-radius: 4px;
  553. -moz-border-radius: 4px;
  554. border-radius: 4px;
  555. }
  556. .accordion-heading {
  557. border-bottom: 0;
  558. background-color: bisque;
  559. }
  560. .accordion-heading .accordion-toggle {
  561. display: block;
  562. padding: 8px 15px;
  563. font-size: medium;
  564. }
  565. .accordion-inner {
  566. padding: 9px 15px;
  567. border-top: 1px solid #e5e5e5;
  568. }
  569. .sesslist-recent {
  570. height: 450px;
  571. background: #f5f5f5;
  572. border-width: 0px 1px 0px 0px;
  573. border-color: #d5d6d7;
  574. border-style: solid;
  575. }
  576. .sesslist {
  577. /* height: 400px; */
  578. height: 450px;
  579. background: #f5f5f5;
  580. border-width: 0px 1px 0px 0px;
  581. border-color: #d5d6d7;
  582. border-style: solid;
  583. overflow: auto;
  584. }
  585. .sesslist-group {
  586. /* height: 400px; */
  587. height: 450px;
  588. background: #f5f5f5;
  589. border-width: 0px 1px 0px 0px;
  590. border-color: #d5d6d7;
  591. border-style: solid;
  592. overflow: auto;
  593. }
  594. .sessinfo {
  595. clear: both;
  596. height: 50px;
  597. border-width: 0px 0px 1px 0px;
  598. border-color: #d5d6d7;
  599. border-style: solid;
  600. }
  601. .sessinfo-sel {
  602. clear: both;
  603. height: 50px;
  604. border-width: 0px 0px 1px 0px;
  605. border-color: #d5d6d7;
  606. border-style: solid;
  607. background: #d7eaf3;
  608. }
  609. .face {
  610. float: left;
  611. width: 40px;
  612. height: 40px;
  613. margin: 5px 5px 5px 10px;
  614. }
  615. .name {
  616. float: left;
  617. height: 20px;
  618. text-indent: 2px;
  619. font-size: 12px;
  620. color: #1f1f1f;
  621. margin: 15px 0 0 0;
  622. }
  623. .badge {
  624. display: none;
  625. float: right;
  626. margin: 18px 0 0 0;
  627. width: 32px;
  628. height: 20px;
  629. background: #f00000;
  630. color: white;
  631. text-align: center;
  632. -webkit-border-radius: 10px;
  633. -moz-border-radius: 10px;
  634. border-radius: 10px;
  635. }
  636. .badge span {
  637. position: relative;
  638. top: 1px;
  639. font-size: 10px;
  640. }
  641. .chatpart {
  642. float: right;
  643. width: 526px;
  644. border: 0px red solid;
  645. background: #d7eaf3;
  646. margin-top: -535px;
  647. }
  648. .msgflow {
  649. width: 525px;
  650. height: 380px;
  651. border: 1px rgb(181, 178, 178) solid;
  652. padding: 20px 6px 0 6px;
  653. background: #f5f5f5;
  654. overflow: auto;
  655. }
  656. .msgflow .onemsg{position:relative;}
  657. .msgflow .onemsg .msghead {
  658. color: green;
  659. line-height: 12px;
  660. font-size: 12px;
  661. }
  662. .msgflow .onemsg .msgbody {
  663. margin: 0 0 0 18px;
  664. line-height: 13px;
  665. font-size: 14px;
  666. }
  667. .msgflow .msgbody img {
  668. max-width: 500px;
  669. }
  670. .editbar {
  671. width: 526px;
  672. height: 25px;
  673. }
  674. .chat02_title_btn {
  675. background: url('http://jk.kuyicloud.com/static/plugins/tencentim/IMSDK_V1.7/img/icon.png') no-repeat 0 0;
  676. cursor: pointer;
  677. float: left;
  678. display: block;
  679. width: 15px;
  680. height: 15px;
  681. margin: 5px 6px;
  682. }
  683. .ctb01 {
  684. background-position: 0 -90px;
  685. margin-left: 18px;
  686. _margin-left: 8px;
  687. }
  688. .ctb03 {
  689. background-position: 0 -152px;
  690. }
  691. .ctb02 {
  692. background-position: 0 -457px;
  693. }
  694. .ctb05 {
  695. background-position: 0 -217px;
  696. }
  697. .ctb04 {
  698. background-position: 0 -543px;
  699. }
  700. .wl_faces_box {
  701. background: url('http://jk.kuyicloud.com/static/plugins/tencentim/IMSDK_V1.7/img/wlf_bg.png') repeat 0 0;
  702. position: relative;
  703. /*position: absolute;*/
  704. width: 428px;
  705. height: 225px;
  706. bottom: 290px;
  707. left: -42px;
  708. display: none;
  709. }
  710. .wl_faces_content {
  711. background: #fff;
  712. border: 1px #ccc solid;
  713. width: 417px;
  714. height: 216px;
  715. margin: 3px 4px;
  716. }
  717. .wl_faces_content .title {
  718. background: url('http://jk.kuyicloud.com/static/plugins/tencentim/IMSDK_V1.7/img/wlf_title_bg.jpg') repeat-x 0 0;
  719. height: 40px;
  720. position: relative;
  721. }
  722. .wl_faces_content .title ul {
  723. }
  724. .wl_faces_content .title ul li {
  725. position: absolute;
  726. display: block;
  727. }
  728. .wl_faces_content .title ul li.title_name {
  729. background: url('http://jk.kuyicloud.com/static/plugins/tencentim/IMSDK_V1.7/img/wlf_title_btn.jpg') no-repeat 0 0;
  730. width: 82px;
  731. height: 30px;
  732. bottom: 0;
  733. _bottom: -2px;
  734. left: 15px;
  735. text-align: center;
  736. line-height: 32px;
  737. font-weight: bold;
  738. color: #333;
  739. }
  740. .wl_faces_content .title ul li.wl_faces_close {
  741. right: 8px;
  742. top: 15px;
  743. }
  744. .wl_faces_content .title ul li.wl_faces_close span {
  745. background: url('http://jk.kuyicloud.com/static/plugins/tencentim/IMSDK_V1.7/img/icon.png') repeat-x 0 0;
  746. cursor: pointer;
  747. display: block;
  748. width: 15px;
  749. height: 15px;
  750. }
  751. .wl_faces_main {
  752. }
  753. .wl_faces_main ul {
  754. margin: 12px 12px;
  755. padding: 0px;
  756. overflow: hidden;
  757. border-top: 1px #CCC solid;
  758. border-left: 1px #CCC solid;
  759. list-style: none;
  760. width: 393px;
  761. }
  762. .wl_faces_main ul li {
  763. float: left;
  764. border-right: 1px #CCC solid;
  765. border-bottom: 1px #CCC solid;
  766. height: 28px;
  767. width: 28px;
  768. margin: 0px 0px 0px 0px;
  769. padding: 4px 2px;
  770. text-align: center;
  771. }
  772. .wl_faces_main ul li img {
  773. width: 24px;
  774. height: 24px;
  775. }
  776. .wlf_icon {
  777. background: url('http://jk.kuyicloud.com/static/plugins/tencentim/IMSDK_V1.7/img/layer_arrow.png') no-repeat 0 0;
  778. position: absolute;
  779. width: 22px;
  780. height: 9px;
  781. bottom: -4px;
  782. _bottom: -11px;
  783. left: 61px;
  784. }
  785. .msgedit {
  786. width: 525px;
  787. height: 100px;
  788. border: 1px rgb(181, 178, 178) solid;
  789. background: #f5f5f5;
  790. padding: 6px 6px;
  791. line-height: 1.5;
  792. }
  793. .sendbar {
  794. width: 526px;
  795. height: 30px;
  796. }
  797. .sendbtn {
  798. float: right;
  799. width: 80px;
  800. margin-right: 10px;
  801. font: 10px/1.5 "微软雅黑";
  802. }
  803. .closebtn {
  804. float: right;
  805. width: 80px;
  806. margin-right: 10px;
  807. font: 10px/1.5 "微软雅黑";
  808. }
  809. .bottom {
  810. clear: both;
  811. height: 3px;
  812. background: #d7eaf3;
  813. }
  814. #demo_type_desc {
  815. color: red;
  816. }
  817. #myself_type_desc {
  818. display: none;
  819. color: red;
  820. }
  821. #qcloudLink {
  822. color: blue;
  823. }
  824. #sdkAppIdDiv {
  825. display: none;
  826. }
  827. #accountTypeDiv {
  828. display: none;
  829. }
  830. .pic_thumb {
  831. width: 200px;
  832. height: 200px;
  833. }
  834. .spinner {
  835. width: 60px;
  836. text-align: center;
  837. position: absolute;
  838. right: 10px;
  839. top: 32px;
  840. text-align: right;
  841. }
  842. .spinner > div {
  843. width: 6px;
  844. height: 6px;
  845. background-color: #333;
  846. border-radius: 100%;
  847. display: inline-block;
  848. -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  849. animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  850. }
  851. .spinner .bounce1 {
  852. -webkit-animation-delay: -0.32s;
  853. animation-delay: -0.32s;
  854. }
  855. .spinner .bounce2 {
  856. -webkit-animation-delay: -0.16s;
  857. animation-delay: -0.16s;
  858. }
  859. @-webkit-keyframes sk-bouncedelay {
  860. 0%, 80%, 100% { -webkit-transform: scale(0) }
  861. 40% { -webkit-transform: scale(1.0) }
  862. }
  863. @keyframes sk-bouncedelay {
  864. 0%, 80%, 100% {
  865. -webkit-transform: scale(0);
  866. transform: scale(0);
  867. } 40% {
  868. -webkit-transform: scale(1.0);
  869. transform: scale(1.0);
  870. }
  871. }
  872. .headurlClass{
  873. height: 30px;
  874. width: 30px;
  875. border-radius: 50%;
  876. }
  877. .delChat{
  878. color: red;
  879. width: 50px;
  880. padding: 16px 0;
  881. float: right;
  882. margin-right: 5px;
  883. }
  884. figure {
  885. margin: 0;
  886. }
  887. </style>