Index.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788
  1. /*
  2. * 描 述:飞扬版样式
  3. */
  4. .lr-logo-title {
  5. display: block;
  6. position: absolute;
  7. top: 0;
  8. left: 10px;
  9. height: 100%;
  10. width: 320px;
  11. cursor: pointer;
  12. text-decoration: none;
  13. font-size: 18px;
  14. white-space: nowrap;
  15. line-height: 56px;
  16. }
  17. /*顶部*/
  18. .lr-frame-top {
  19. z-index:3;
  20. height: 60px;
  21. background: #3286ed;
  22. background-size: cover;
  23. background-size: cover;
  24. }
  25. /*菜单*/
  26. .lr-frame-menu-wrap {
  27. overflow:hidden;
  28. }
  29. .lr-first-menu-list {
  30. white-space: nowrap;
  31. height:60px;
  32. }
  33. .lr-frame-menu {
  34. top:0;
  35. height: 60px;
  36. width: 100%;
  37. z-index: 3;
  38. padding: 0 143px 0 360px;
  39. }
  40. .lr-frame-menu li {
  41. width:auto;
  42. white-space: nowrap;
  43. display:inline-block;
  44. }
  45. .lr-frame-menu .lr-menu-item {
  46. height: 100%;
  47. line-height: 60px;
  48. font-size: 12px;
  49. color: #fff;
  50. padding: 0 19px 0 36px;
  51. }
  52. .lr-first-menu-list > li > .lr-menu-item.active,
  53. .lr-first-menu-list > li > .lr-menu-item:hover {
  54. background-color: #156edb;
  55. }
  56. .lr-first-menu-list > li > .lr-menu-item > .lr-menu-item-icon {
  57. display: block;
  58. position: absolute;
  59. top: 23px;
  60. left: 14px;
  61. }
  62. .lr-first-menu-list > li > .lr-menu-item:before {
  63. content: '';
  64. position: absolute;
  65. top: 50%;
  66. margin-top: -18px;
  67. left: 0;
  68. height: 36px;
  69. width: 1px;
  70. background-color: #156edb;
  71. }
  72. .lr-first-menu-list > li.active + li > .lr-menu-item:before,
  73. .lr-first-menu-list > li:hover + li > .lr-menu-item:before {
  74. display: none;
  75. }
  76. .lr-second-menu-wrap {
  77. position: absolute;
  78. top: 0;
  79. left: 0;
  80. height: 100%;
  81. width: 160px;
  82. background-color: #f8f8f8;
  83. border-right: 1px solid #e1e2e2;
  84. z-index: 2;
  85. padding-top: 100px;
  86. }
  87. .lr-second-menu-wrap >div{
  88. position: relative;
  89. height:100%;
  90. width:100%;
  91. }
  92. .lr-second-menu-list .lr-menu-item {
  93. height: 40px;
  94. line-height: 40px;
  95. color: #333;
  96. padding: 0px 0px 0px 20px;
  97. font-size: 12px;
  98. }
  99. .lr-second-menu-list .lr-menu-item:hover {
  100. background-color: #ccc;
  101. }
  102. .lr-second-menu-list .lr-menu-item-arrow .fa-angle-left {
  103. position: absolute;
  104. right: 15px;
  105. top: 12px;
  106. }
  107. .lr-second-menu-list .open .lr-menu-item-arrow .fa-angle-left {
  108. -webkit-transform: rotate(-90deg);
  109. -ms-transform: rotate(-90deg);
  110. -o-transform: rotate(-90deg);
  111. transform: rotate(-90deg);
  112. }
  113. .lr-three-menu-list {
  114. display: block;
  115. }
  116. .lr-second-menu-list > li {
  117. position: relative;
  118. }
  119. .lr-second-menu-list > li:after {
  120. content: '';
  121. display: block;
  122. position: absolute;
  123. bottom: 0;
  124. left: 50%;
  125. margin-left: -70px;
  126. width: 140px;
  127. height: 1px;
  128. background-color: #ccc;
  129. }
  130. .lr-three-menu-list .lr-menu-item {
  131. padding-left: 45px;
  132. color: #666;
  133. }
  134. /*tabs条*/
  135. .lr-frame-tabs {
  136. top: 60px;
  137. padding: 0px 30px 0px 160px;
  138. background-color: #fff;
  139. z-index: 1;
  140. -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.1);
  141. box-shadow: 0 1px 3px rgba(0,0,0,.1);
  142. border-bottom: 1px solid #d2d3d4;
  143. height: 40px;
  144. }
  145. .lr-frame-tabs-wrap {
  146. height:40px;
  147. }
  148. .lr-frame-tabItem {
  149. height: 39px;
  150. line-height: 39px;
  151. background: #fff;
  152. margin-left: 0px;
  153. }
  154. .lr-frame-tabItem i {
  155. color:#666;
  156. }
  157. .lr-frame-tabItem.active:after {
  158. content: '';
  159. position: absolute;
  160. bottom: 0;
  161. bottom: 1px\9;
  162. left: 0;
  163. height: 2px;
  164. width: 100%;
  165. background-color: #156edb;
  166. }
  167. .lr-frame-tabItem.active .text {
  168. font-weight:bold;
  169. }
  170. .lr-frame-tabItem .reomve{
  171. top: 13px;
  172. right: 4px;
  173. }
  174. /*个人设置和头像*/
  175. .lr-frame-personCenter {
  176. top: 0;
  177. right: 10px;
  178. height: 60px;
  179. line-height: 60px;
  180. }
  181. .lr-frame-personCenter > a {
  182. color:#fff;
  183. }
  184. .lr-frame-personCenter >.dropdown-toggle> img {
  185. border: 2px solid #fff;
  186. margin-top:16px;
  187. }
  188. .lr_frame_fullscreen {
  189. top: 60px;
  190. color:#666;
  191. height:39px;
  192. line-height:39px;
  193. }
  194. .lr_frame_fullscreen a {
  195. color:#666;
  196. }
  197. /*功能窗口*/
  198. .lr-frame-main {
  199. padding: 100px 0px 0px 160px;
  200. background: #F0F3F4;
  201. }
  202. /*风尚版独有-菜单缩进按钮*/
  203. .lr-frame-menu-btn {
  204. position: absolute;
  205. left: 0;
  206. top: 60px;
  207. height: 40px;
  208. line-height: 40px;
  209. width: 159px;
  210. text-align: center;
  211. font-size: 18px;
  212. cursor: pointer;
  213. color: #333;
  214. opacity: .5;
  215. background: #ededed;
  216. border-bottom: 1px solid #ccc;
  217. z-index: 3;
  218. }
  219. .lr-frame-menu-btn:hover {
  220. color:#999;
  221. }
  222. /*导航缩进*/
  223. .lr-menu-closed .lr-second-menu-wrap {
  224. width:50px;
  225. }
  226. .lr-menu-closed .lr-second-menu-wrap span,
  227. .lr-menu-closed .lr-second-menu-wrap .lr-menu-item-arrow{
  228. display:none;
  229. }
  230. .lr-menu-closed .lr-second-menu-wrap a {
  231. padding:0px;
  232. text-align:center;
  233. }
  234. .lr-menu-closed .lr-second-menu-wrap .lr-menu-item-icon {
  235. margin:0px;
  236. }
  237. .lr-menu-closed .lr-frame-menu-btn{
  238. -webkit-transform: rotate(-180deg);
  239. -ms-transform: rotate(-180deg);
  240. -o-transform: rotate(-180deg);
  241. transform: rotate(-180deg);
  242. width:50px;
  243. }
  244. .lr-menu-closed .lr-frame-main {
  245. padding:100px 0px 0px 50px;
  246. }
  247. .lr-menu-closed .lr-frame-tabs {
  248. padding-left: 50px;
  249. }
  250. /*即时通讯*/
  251. .lr-im-bell {
  252. position: fixed;
  253. right: 105px;
  254. top: 12px;
  255. width: 30px;
  256. height: 40px;
  257. line-height: 40px;
  258. color: #fff;
  259. text-align: center;
  260. cursor: pointer;
  261. z-index: 51;
  262. display: none;
  263. }
  264. .lr-im-bell > i {
  265. font-size: 20px;
  266. }
  267. .lr-im-bell > .point {
  268. background: #D71012;
  269. position: absolute;
  270. right: 5px;
  271. top: 5px;
  272. width: 8px;
  273. height: 8px;
  274. border-radius: 50%;
  275. display: none;
  276. }
  277. .lr-im-body {
  278. position: fixed;
  279. right: 10px;
  280. bottom: 10px;
  281. width: 248px;
  282. height: 400px;
  283. background: #fff;
  284. z-index: 50;
  285. padding-top: 40px;
  286. box-shadow: 0 0 10px 0 rgba(0,0,0,0.50);
  287. display: none;
  288. }
  289. .lr-im-body.open {
  290. display: block;
  291. }
  292. .lr-im-title {
  293. position: absolute;
  294. top: 0;
  295. left: 0;
  296. background: #F8F8F8;
  297. border-bottom: 1px solid #F8F8F8;
  298. width: 100%;
  299. height: 40px;
  300. }
  301. .lr-im-title .title-item {
  302. position: absolute;
  303. width: 50%;
  304. height: 39px;
  305. top: 0;
  306. left: 0;
  307. cursor: pointer;
  308. color: #404040;
  309. font-size: 14px;
  310. line-height: 39px;
  311. text-align: center;
  312. }
  313. .lr-im-title .title-item.active {
  314. color: #3285ED;
  315. background: #fff;
  316. }
  317. .lr-im-title .title-item.title-item-two {
  318. left: 124px;
  319. }
  320. .lr-im-content {
  321. position: relative;
  322. width: 100%;
  323. height: 100%;
  324. display: none;
  325. border-left: 0;
  326. }
  327. .lr-im-content.active {
  328. display: block;
  329. }
  330. .lr-im-msg-list {
  331. position: relative;
  332. width: 100%;
  333. height: 100%;
  334. }
  335. .lr-im-msg-list .msg-item {
  336. position: relative;
  337. width: 100%;
  338. height: 50px;
  339. cursor: pointer;
  340. }
  341. .lr-im-msg-list .msg-item:after {
  342. content: '';
  343. display: block;
  344. position: absolute;
  345. height: 1px;
  346. width: 100%;
  347. background: #F8F8F8;
  348. bottom: 0;
  349. left: 0;
  350. }
  351. .lr-im-msg-list .msg-item .photo {
  352. position: absolute;
  353. width: 30px;
  354. height: 30px;
  355. border-radius: 50%;
  356. top: 10px;
  357. left: 10px;
  358. }
  359. .lr-im-msg-list .msg-item .icon {
  360. position: absolute;
  361. top: 10px;
  362. left: 10px;
  363. width: 30px;
  364. height: 30px;
  365. line-height: 30px;
  366. border-radius: 50%;
  367. background-color: #2B97DF;
  368. color: #fff;
  369. font-size: 18px;
  370. text-align: center;
  371. }
  372. .lr-im-msg-list .msg-item .point {
  373. width: 8px;
  374. height: 8px;
  375. background: #DB3702;
  376. border-radius: 50%;
  377. position: absolute;
  378. right: -4px;
  379. top: -2px;
  380. display:none;
  381. }
  382. .lr-im-msg-list .msg-item img {
  383. width: 100%;
  384. height: 100%;
  385. border-radius: 50%;
  386. }
  387. .lr-im-msg-list .msg-item .name {
  388. position: absolute;
  389. top: 8px;
  390. left: 50px;
  391. height: 16px;
  392. color: #333333;
  393. font-size: 12px;
  394. overflow: hidden;
  395. text-overflow: ellipsis;
  396. white-space: nowrap;
  397. }
  398. .lr-im-msg-list .msg-item .msg {
  399. position: absolute;
  400. top: 24px;
  401. left: 50px;
  402. height: 16px;
  403. width: 188px;
  404. color: #999;
  405. font-size: 12px;
  406. overflow: hidden;
  407. text-overflow: ellipsis;
  408. white-space: nowrap;
  409. }
  410. .lr-im-msg-list .msg-item .date {
  411. position: absolute;
  412. right: 10px;
  413. top: 8px;
  414. height: 16px;
  415. color: #666;
  416. font-size: 12px;
  417. text-align: right;
  418. }
  419. .lr-im-userlist {
  420. padding-top: 40px;
  421. }
  422. .lr-im-search {
  423. position: absolute;
  424. top: 0;
  425. left: 0;
  426. width: 100%;
  427. height: 40px;
  428. font-size: 0;
  429. padding: 10px;
  430. }
  431. .lr-im-search i {
  432. position: absolute;
  433. left: 15px;
  434. top: 14px;
  435. font-size: 12px;
  436. font-weight: 100;
  437. color: #999;
  438. z-index: 1;
  439. }
  440. .lr-im-search input {
  441. position: relative;
  442. text-align: left;
  443. border: 1px solid transparent;
  444. font-size: 12px;
  445. width: 100%;
  446. height: 100%;
  447. background: #F8F8F8;
  448. border-radius: 3px;
  449. box-sizing: border-box;
  450. color: #999;
  451. outline: none;
  452. text-indent: 20px;
  453. }
  454. .lr-im-search input::-webkit-input-placeholder {
  455. text-align: center;
  456. }
  457. .lr-im-search input::-moz-placeholder { /* Mozilla Firefox 19+ */
  458. text-align: center;
  459. }
  460. .lr-im-search input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  461. text-align: center;
  462. }
  463. .lr-im-search input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  464. text-align: center;
  465. }
  466. .lr-im-content-userlist {
  467. position: relative;
  468. width: 100%;
  469. height: 100%;
  470. }
  471. .lr-im-content-userlist .lr-scroll-box {
  472. padding: 0 10px;
  473. }
  474. .lr-im-item-name {
  475. position: relative;
  476. width: 100%;
  477. height: 30px;
  478. line-height: 30px;
  479. cursor: pointer;
  480. font-size: 12px;
  481. color: #666;
  482. }
  483. .lr-im-item-name > i {
  484. color: #999;
  485. font-size: 14px;
  486. margin: 3px;
  487. }
  488. .lr-im-item-name.open > i {
  489. -webkit-transform: rotate(90deg);
  490. -moz-transform: rotate(90deg);
  491. -ms-transform: rotate(90deg);
  492. -o-transform: rotate(90deg);
  493. transform: rotate(90deg);
  494. }
  495. .lr-im-user-list {
  496. position: relative;
  497. width: 100%;
  498. }
  499. .lr-im-user {
  500. position: relative;
  501. height: 43px;
  502. line-height: 43px;
  503. padding-left: 40px;
  504. }
  505. .lr-im-user > img {
  506. position: absolute;
  507. top: 6px;
  508. left: 0;
  509. width: 30px;
  510. height: 30px;
  511. border-radius: 50%;
  512. }
  513. .lr-im-black-overlay {
  514. position: fixed;
  515. left: 0;
  516. top: 0;
  517. width: 100%;
  518. height: 100%;
  519. overflow: hidden;
  520. background: rgba(51,51,51,0.4);
  521. z-index: 52;
  522. display: none;
  523. }
  524. .lr-im-black-overlay.open {
  525. display: block;
  526. }
  527. .lr-im-dialog {
  528. position: absolute;
  529. left: 50%;
  530. top: 50%;
  531. margin-left: -270px;
  532. margin-top: -240px;
  533. width: 540px;
  534. height: 480px;
  535. background: #f3f3f3;
  536. border-radius: 3px;
  537. box-shadow: 0 0 2px 0 rgba(0,0,0,0.50);
  538. padding-top: 40px;
  539. padding-bottom: 135px;
  540. }
  541. .lr-im-header {
  542. position: absolute;
  543. top: 0;
  544. left: 0;
  545. width: 100%;
  546. height: 40px;
  547. border-bottom: 1px solid #E5E5E5;
  548. line-height: 39px;
  549. padding-left: 10px;
  550. font-size: 14px;
  551. color: #333333;
  552. text-align:center;
  553. }
  554. .lr-im-header .im-close {
  555. position: absolute;
  556. top: 10px;
  557. right: 10px;
  558. width: 20px;
  559. height: 20px;
  560. line-height: 20px;
  561. text-align: center;
  562. cursor: pointer;
  563. font-size: 12px;
  564. color: #333;
  565. font-weight: 100;
  566. }
  567. .lr-im-msgcontent {
  568. position: relative;
  569. width: 100%;
  570. height: 100%;
  571. }
  572. .lr-im-msgcontent-tool {
  573. position: absolute;
  574. height: 25px;
  575. line-height: 24px;
  576. text-align: right;
  577. width: 100%;
  578. left: 0;
  579. bottom: 110px;
  580. padding-right: 10px;
  581. border-top: 1px solid #E5E5E5;
  582. background: #F8F8F8;
  583. }
  584. .lr-im-msgcontent-tool > span {
  585. cursor: pointer;
  586. }
  587. .lr-im-input {
  588. position: absolute;
  589. bottom: 0;
  590. left: 0;
  591. width: 100%;
  592. height: 110px;
  593. border-top: 1px solid #E5E5E5;
  594. }
  595. .lr-im-input .inp {
  596. width: 100%;
  597. height: 100%;
  598. resize: none;
  599. border: 0;
  600. outline: 0;
  601. padding: 5px;
  602. background: transparent;
  603. }
  604. .lr-im-msgcontent .im-time {
  605. position: relative;
  606. font-size: 12px;
  607. color: #999;
  608. width: 100%;
  609. height: 15px;
  610. line-height: 15px;
  611. text-align: left;
  612. padding: 0 50px;
  613. }
  614. .lr-im-msgcontent .me.im-time {
  615. text-align: right;
  616. }
  617. .lr-im-msgcontent .im-me,
  618. .lr-im-msgcontent .im-other {
  619. position: relative;
  620. word-break: break-all;
  621. height: auto;
  622. overflow: hidden;
  623. width: 100%;
  624. padding: 0 50px;
  625. margin-bottom: 10px;
  626. text-align: right;
  627. }
  628. .lr-im-msgcontent .im-other {
  629. text-align: left;
  630. }
  631. .lr-im-msgcontent .im-other .headimg {
  632. position: absolute;
  633. top: 0;
  634. left: 10px;
  635. width: 30px;
  636. height: 30px;
  637. border-radius: 50%;
  638. }
  639. .lr-im-msgcontent .im-me img,
  640. .lr-im-msgcontent .im-other img {
  641. width: 100%;
  642. height: 100%;
  643. border-radius: 50%;
  644. }
  645. .lr-im-msgcontent .im-me .content,
  646. .lr-im-msgcontent .im-other .content {
  647. display: inline-block;
  648. background: #FFFFFF;
  649. border: 1px solid #E5E5E5;
  650. padding: 5px 13px 6px 19px;
  651. font-size: 12px;
  652. color: #333333;
  653. box-sizing: border-box;
  654. position: relative;
  655. float: left;
  656. max-width: 100%;
  657. text-align: left;
  658. line-height: 20px;
  659. }
  660. .lr-im-msgcontent .im-me .content {
  661. float: right;
  662. }
  663. .lr-im-msgcontent .im-other .arrow {
  664. width: 8px;
  665. height: 8px;
  666. border: 1px solid #E5E5E5;
  667. -webkit-transform: rotate(-45deg);
  668. -moz-transform: rotate(-45deg);
  669. -ms-transform: rotate(-45deg);
  670. -o-transform: rotate(-45deg);
  671. transform: rotate(-45deg);
  672. background: #fff;
  673. position: absolute;
  674. top: 11px;
  675. left: 46px;
  676. z-index: 1;
  677. clip: rect(0,8px,8px,0);
  678. border-bottom: 0;
  679. border-right: 0;
  680. }
  681. .lr-im-msgcontent .im-me .headimg {
  682. position: absolute;
  683. top: 0;
  684. right: 10px;
  685. width: 30px;
  686. height: 30px;
  687. border-radius: 50%;
  688. }
  689. .lr-im-msgcontent .im-me .arrow {
  690. width: 8px;
  691. height: 8px;
  692. border: 1px solid #E5E5E5;
  693. -webkit-transform: rotate(-45deg);
  694. -moz-transform: rotate(-45deg);
  695. -ms-transform: rotate(-45deg);
  696. -o-transform: rotate(-45deg);
  697. transform: rotate(-45deg);
  698. background: #fff;
  699. position: absolute;
  700. top: 11px;
  701. right: 46px;
  702. z-index: 1;
  703. clip: rect(0,8px,8px,0);
  704. border-top: 0;
  705. border-left: 0;
  706. }
  707. .imHasMsg .point {
  708. display: block;
  709. }