Desktop.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997
  1. /*整体样式*/
  2. html {}
  3. html,
  4. body {
  5. cursor: default;
  6. height: 100%;
  7. position: absolute;
  8. top: 0;
  9. left: 0;
  10. margin: 0;
  11. padding: 0;
  12. border: 0;
  13. width: 100%;
  14. font-size: 12px;
  15. font-family: lucida, "Hiragino Sans GB", "微软雅黑", "WenQuanYi Micro Hei", sans-serif;
  16. color: #333;
  17. background-color: #FFF;
  18. }
  19. textarea,
  20. div[contentEditable='true'],
  21. input,
  22. div[class='UF_FW_Message U_MD_D_YesText'] div[class='U_MD_F_H_Z'] {
  23. outline: none;
  24. -khtml-user-select: text;
  25. -moz-user-input: enabled;
  26. -moz-user-focus: -moz-all;
  27. -webkit-user-select: text;
  28. -moz-user-select: -moz-all;
  29. -ms-user-select: text;
  30. cursor: text;
  31. }
  32. input[type="button"] {
  33. border: 0;
  34. }
  35. span {
  36. text-decoration: none;
  37. text-overflow: ellipsis;
  38. overflow: hidden;
  39. }
  40. /* 自定义滚动条样式 */
  41. body div ::-webkit-scrollbar {
  42. width: 12px;
  43. /*height: 12px 隐藏下方的滚动条*/
  44. }
  45. body div ::-webkit-scrollbar-button:vertical {
  46. display: none;
  47. }
  48. body div ::-webkit-scrollbar:vertical {
  49. background-color: #fff;
  50. }
  51. body div ::-webkit-scrollbar-track-piece {
  52. background: #fff;
  53. }
  54. body div ::-webkit-scrollbar-thumb {
  55. background-color: #8E8E8E;
  56. border-radius: 5px;
  57. }
  58. body div ::-webkit-scrollbar-thumb:hover {
  59. background-color: #3B3B3B;
  60. }
  61. body div ::-webkit-scrollbar-corner:vertical {
  62. background-color: #535353;
  63. }
  64. body div ::-webkit-scrollbar-resizer:vertical {
  65. background-color: #FF6E00;
  66. }
  67. /*主样式*/
  68. .usestudio {
  69. margin: 0;
  70. padding: 0;
  71. border: 0;
  72. width: 100%;
  73. height: 100%;
  74. position: absolute;
  75. top: 0;
  76. left: 0;
  77. background-color: White;
  78. }
  79. .usestudio_server {
  80. margin: 0;
  81. padding: 0;
  82. border: 0;
  83. width: 0;
  84. height: 0;
  85. cursor: default;
  86. -webkit-text-size-adjust: none;
  87. overflow: hidden;
  88. }
  89. .ErrorTip {
  90. display: block;
  91. font-style: normal;
  92. height: 21px;
  93. line-height: 21px;
  94. margin-top: -23px;
  95. font-size: 12px;
  96. color: #222;
  97. cursor: text;
  98. width: 250px;
  99. }
  100. /*提示区域*/
  101. /* ie */
  102. .Scrollbar {
  103. overflow: auto;
  104. scrollbar-arrow-color: #757778;
  105. scrollbar-face-color: #fff;
  106. scrollbar-darkshadow-color: #fff;
  107. scrollbar-highlight-color: #bec1c4;
  108. scrollbar-shadow-color: #bec1c4;
  109. scrollbar-track-color: #fff;
  110. scrollbar-3dlight-color: #fff;
  111. }
  112. /*云端切图*/
  113. .U_Img {
  114. background-image: url(/img/YS2017.png);
  115. _background-image: url(/img/YSD2014.gif);
  116. }
  117. .U_TaskbarImg {
  118. background-image: url(/img/taskbar.png);
  119. _background-image: url(/img/YSD2014.gif);
  120. }
  121. .U_TaskbarImg1 {
  122. background-position: -294px -20px;
  123. width: 30px;
  124. height: 30px;
  125. }
  126. .U_TaskbarImg2 {
  127. background-position: -248px -20px;
  128. width: 30px;
  129. height: 30px;
  130. }
  131. .U_TaskbarImg3 {
  132. background-position: -114px -20px;
  133. width: 30px;
  134. height: 30px;
  135. }
  136. .U_TaskbarImg4 {
  137. background-position: -339px -20px;
  138. width: 30px;
  139. height: 30px;
  140. }
  141. .U_TaskbarImg5 {
  142. background-position: -204px -20px;
  143. width: 30px;
  144. height: 30px;
  145. }
  146. .U_TaskbarImg6 {
  147. background-position: -69px -20px;
  148. width: 30px;
  149. height: 30px;
  150. }
  151. .U_TaskbarImg7 {
  152. background-position: -159px -20px;
  153. width: 30px;
  154. height: 30px;
  155. }
  156. .U_TaskbarImg8 {
  157. background-position: -384px -20px;
  158. width: 30px;
  159. height: 30px;
  160. }
  161. .U_MD_D_NotText {
  162. -webkit-text-size-adjust: none;
  163. -webkit-user-select: none;
  164. -khtml-user-select: none;
  165. -moz-user-select: -moz-none;
  166. -ms-user-select: none;
  167. -webkit-user-drag: none;
  168. -webkit-tap-highlight-color: transparent;
  169. }
  170. .U_MD_D_YesText {
  171. -webkit-user-select: text;
  172. -moz-user-select: -moz-all;
  173. -moz-user-input: enabled;
  174. -moz-user-focus: -moz-all;
  175. }
  176. /*.UD_ICON { background:url(/img/windowOE.png); _background:url(/img/windowOE.jpg); }*/
  177. /*常用圆角*/
  178. .U_MD_D_Radius_5 {
  179. -moz-border-radius: 5px;
  180. -moz-border-radius: 5px;
  181. -webkit-border-radius: 5px;
  182. -webkit-border--radius: 5px;
  183. border-radius: 5px;
  184. border-radius: 5px;
  185. }
  186. .U_MD_D_Radius_18 {
  187. -moz-border-radius: 18px;
  188. -moz-border-radius: 18px;
  189. -webkit-border-radius: 18px;
  190. -webkit-border--radius: 18px;
  191. border-radius: 18px;
  192. border-radius: 18px;
  193. }
  194. .U_MD_D_Radius_5_0 {
  195. -moz-border-radius: 5px 5px 0 0;
  196. -moz-border-radius: 5px 5px 0 0;
  197. -webkit-border-radius: 5px 5px 0 0;
  198. -webkit-border--radius: 5px 5px 0 0;
  199. border-radius: 5px 5px 0 0;
  200. border-radius: 5px 5px 0 0;
  201. }
  202. #U_MD_D_BG {
  203. position: absolute;
  204. z-index: 0;
  205. left: 0;
  206. right: 0;
  207. top: 0;
  208. bottom: 0;
  209. overflow-y: hidden;
  210. overflow-x: hidden;
  211. background: url("/img/icon/gm/bg.png") 0px 0px / 100% auto repeat rgb(240, 240, 240);
  212. /* background: url("/img/icon/mingdeBg.png") 0px 0px / 100% auto repeat rgb(240, 240, 240); */
  213. filter: progid: DXImageTransform.Microsoft.AlphaImageLoader(src="/img/icon/bgImg4.png", sizingMethod=scale);
  214. background-size: cover;
  215. }
  216. /*云端首页*/
  217. .U_MD_Home {
  218. color: #000;
  219. font-size: 12px;
  220. width: 0;
  221. height: 0;
  222. overflow: hidden;
  223. }
  224. /*width:100%; height:100%; position:absolute; top:0px; left:0px; width:100%; height:100%; overflow:hidden; color:#000; overflow:hidden;*/
  225. .U_MD_Home img {}
  226. .UD_Dtop {
  227. display: none;
  228. }
  229. /*文字处理区域*/
  230. .U_MD_D_Text_Abbreviation {
  231. text-decoration: none;
  232. text-overflow: ellipsis;
  233. white-space: nowrap;
  234. overflow: hidden;
  235. }
  236. /*桌面样式*/
  237. .U_MD_D {
  238. overflow: hidden;
  239. color: #FFF;
  240. position: absolute;
  241. left: 0;
  242. bottom: 0;
  243. top: 0;
  244. right: 0;
  245. }
  246. .U_MD_D_B {
  247. position: absolute;
  248. bottom: 30px;
  249. right: 5%;
  250. }
  251. .U_MD_D_BD {
  252. padding: 5px 10px;
  253. background-color: #5a5a5a;
  254. border-radius: 5px;
  255. position: absolute;
  256. right: 5%;
  257. top: 4px;
  258. }
  259. .U_MD_D_BDA {
  260. overflow: hidden;
  261. height: 30px;
  262. line-height: 32px;
  263. float: left;
  264. }
  265. .U_MD_D_BDI {
  266. float: left;
  267. background-position: -536px -373px;
  268. width: 30px;
  269. height: 30px;
  270. cursor: pointer;
  271. }
  272. .U_MD_D_BDI img {
  273. width: 30px;
  274. height: 30px;
  275. border-radius: 50%;
  276. }
  277. .U_MD_D_BDL {
  278. float: left;
  279. color: #FFF;
  280. font-family: Arial;
  281. cursor: pointer;
  282. display: flex;
  283. align-items: center;
  284. justify-content: space-between;
  285. flex-direction: row;
  286. width: 65px;
  287. }
  288. .U_MD_D_BDL div {
  289. float: left;
  290. font-size: 14px;
  291. height: 30px;
  292. color: #d9d9d9;
  293. }
  294. .U_MD_D_BDL div:hover {
  295. color: #fff;
  296. }
  297. .U_MD_D_BD_QRcode {
  298. padding: 5px 10px;
  299. background-color: #5A5A5A;
  300. border-radius: 0px 0px 10px 10px;
  301. position: absolute;
  302. right: -53px;
  303. top: 0px;
  304. }
  305. .U_MD_D_BD_QRcodeShare {
  306. display: none;
  307. padding: 5px 10px;
  308. background-color: #5A5A5A;
  309. position: absolute;
  310. right: -55px;
  311. top: 50px;
  312. }
  313. .U_MD_D_BD_QRcodeShare img {
  314. width: 100px;
  315. height: 100px;
  316. padding: 5px 5px;
  317. }
  318. .U_MD_D_BD_QRcode:hover+.U_MD_D_BD_QRcodeShare {
  319. display: block;
  320. }
  321. .U_MD_D_BD_notice {
  322. display: none;
  323. padding: 5px 10px;
  324. background-color: #00000085;
  325. position: absolute;
  326. right: 0;
  327. top: 50px;
  328. border-radius: 3px;
  329. width: 300px;
  330. }
  331. .U_MD_D_BD_noticeBox {
  332. padding: 5px 0;
  333. width: 100%;
  334. box-sizing: border-box;
  335. font-size: 15px;
  336. cursor: pointer;
  337. }
  338. .U_MD_D_BD_noticeBox_title {
  339. width: 100%;
  340. display: flex;
  341. }
  342. .U_MD_D_BD_noticeBox_title>span:nth-child(1) {
  343. color: #979797;
  344. }
  345. .U_MD_D_BD_noticeBox_title>span:nth-child(2) {
  346. margin-left: 8px;
  347. width: calc(100% - 68px);
  348. overflow: hidden;
  349. text-overflow: ellipsis;
  350. white-space: nowrap;
  351. word-break: break-word;
  352. }
  353. .U_MD_D_BD_noticeBox_content {
  354. margin-top: 5px;
  355. width: 100%;
  356. display: flex;
  357. }
  358. .U_MD_D_BD_noticeBox_content span{
  359. width: calc(100%);
  360. overflow: hidden;
  361. text-overflow: ellipsis;
  362. white-space: nowrap;
  363. word-break: break-word;
  364. }
  365. .U_MD_D_BZMD {
  366. position: relative;
  367. }
  368. .U_MD_D_BZMS {
  369. height: 40px;
  370. line-height: 30px;
  371. width: 721px;
  372. margin: 10px auto 0 auto;
  373. text-align: center;
  374. }
  375. .U_MD_D_BZMSA {
  376. display: inline-block;
  377. *display: inline;
  378. *zoom: 1;
  379. margin: auto;
  380. text-align: left;
  381. height: 40px;
  382. line-height: 40px;
  383. }
  384. .U_MD_D_BZM {
  385. width: 741px;
  386. margin: 20px auto 0 auto;
  387. position: relative;
  388. height: 94px;
  389. text-align: center;
  390. }
  391. .U_MD_D_BZMN {
  392. position: absolute;
  393. top: -10px;
  394. left: -40px;
  395. height: 22px;
  396. background-color: #EEE;
  397. padding: 0 6px;
  398. border-radius: 3px
  399. }
  400. .U_MD_D_BZMNL {
  401. float: left;
  402. width: 15px;
  403. height: 15px;
  404. margin-top: 3px;
  405. }
  406. .U_MD_D_BZMNLI {
  407. background-position: -574px -372px;
  408. }
  409. .U_MD_D_BZMNLO {
  410. background-position: -614px -372px;
  411. }
  412. .U_MD_D_BZMNLT {
  413. background-position: -594px -371px;
  414. }
  415. .U_MD_D_BZMNR {
  416. float: left;
  417. color: #222;
  418. line-height: 22px;
  419. margin-left: 3px;
  420. width: 50px;
  421. }
  422. .U_MD_D_BZMA {
  423. position: relative;
  424. padding: 0 30px;
  425. overflow: hidden;
  426. margin: auto;
  427. display: inline-block;
  428. *display: inline;
  429. *zoom: 1;
  430. height: 100%;
  431. overflow: hidden;
  432. }
  433. .U_MD_D_BZMT {
  434. padding: 0px 10px;
  435. }
  436. .U_MD_D_BZMM {
  437. width: 100%;
  438. height: 100%;
  439. top: 0;
  440. left: 0;
  441. background: #444;
  442. filter: alpha(opacity=50);
  443. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  444. -moz-opacity: 0.5;
  445. -khtml-opacity: 0.5;
  446. opacity: 0.5;
  447. position: absolute;
  448. border-radius: 6px;
  449. }
  450. .U_MD_D_BZMO {
  451. margin: -1px 0 0 40px;
  452. cursor: pointer;
  453. width: 63px;
  454. height: 83px;
  455. float: left;
  456. }
  457. .U_MD_D_BZMOA {
  458. width: 51px;
  459. height: 54px;
  460. padding: 6px;
  461. /*border-radius: 3px;*/
  462. color: #FFF;
  463. cursor: pointer;
  464. }
  465. .U_MD_D_BZMOA:hover {
  466. padding: 5px;
  467. background-color: #505457;
  468. border: 1px solid #777;
  469. }
  470. .U_MD_D_BZMOI {
  471. width: 51px;
  472. height: 51px;
  473. }
  474. .U_MD_D_BZMON {
  475. width: 51px;
  476. height: 15px;
  477. line-height: 15px;
  478. margin-top: 6px;
  479. text-align: center;
  480. }
  481. .U_MD_D_B .U_MD_D_BS {
  482. margin: 30px auto 0 auto;
  483. float: none;
  484. width: 675px;
  485. height: 32px;
  486. }
  487. .U_MD_D_BCM {
  488. display: block;
  489. width: 721px;
  490. margin: 20px auto 0 auto;
  491. height: 40px;
  492. text-align: center;
  493. overflow: hidden;
  494. }
  495. .U_MD_D_BCMO {
  496. width: 125px;
  497. background-color: #666;
  498. float: left;
  499. height: 25px;
  500. line-height: 25px;
  501. padding: 3px 6px;
  502. margin: 5px 0 0 20px;
  503. text-align: left;
  504. position: relative;
  505. }
  506. .U_MD_D_BCMOL {
  507. float: left;
  508. height: 100%;
  509. text-align: center;
  510. color: #EEE;
  511. margin-left: 2px;
  512. }
  513. .U_MD_D_BCMOL div {
  514. float: none;
  515. }
  516. .U_MD_D_BCMOLS {
  517. font-size: 12px;
  518. }
  519. .U_MD_D_BCMOR {
  520. float: left;
  521. margin-left: 11px;
  522. font-size: 13px;
  523. color: #FFF;
  524. width: 85px;
  525. }
  526. .U_MD_D_BZ {
  527. color: #FFF;
  528. font-family: Arial;
  529. background-color: #676767;
  530. padding: 8px 15px;
  531. font-style: normal;
  532. cursor: pointer;
  533. display: none;
  534. }
  535. .U_MD_D_BZ div {
  536. text-align: center;
  537. }
  538. /*桌面图标使用 */
  539. .U_MD_D_K {
  540. top: 0;
  541. left: 0;
  542. height: 100%;
  543. position: absolute;
  544. }
  545. /* .U_MD_D_KO {
  546. cursor: pointer;
  547. width: 65px;
  548. height: 85px;
  549. position: absolute;
  550. top: 0;
  551. left: 80px;
  552. }
  553. .U_MD_D_KO:hover {
  554. background-color: #8eaad1;
  555. border-radius: 5px;
  556. box-sizing: border-box;
  557. } */
  558. .U_MD_D_KO {
  559. cursor: pointer;
  560. width: 124px;
  561. height: 145px;
  562. position: absolute;
  563. bottom: 0;
  564. left: 80px;
  565. }
  566. .U_MD_D_KO:hover {
  567. background-color: #8eaad1;
  568. border-radius: 5px;
  569. box-sizing: border-box;
  570. }
  571. .U_MD_D_KOA {
  572. margin: 5px auto 0 auto;
  573. width: 114px;
  574. border-radius: 5px;
  575. display: flex;
  576. flex-direction: column;
  577. flex-wrap: nowrap;
  578. align-items: center;
  579. }
  580. .U_MD_D_KOS {
  581. width: 114px;
  582. height: 114px;
  583. }
  584. .U_Img {
  585. background-size: 100% 100%;
  586. }
  587. .U_MD_D_KOX {
  588. width: 114px;
  589. height: 18px;
  590. line-height: 18px;
  591. font-size: 18px;
  592. margin-top: 3px;
  593. text-align: center;
  594. }
  595. .U_MD_D_NewsTipsIcon {
  596. background: rgba(250, 250, 250, 0) url(/img/YSD20143.png);
  597. position: fixed;
  598. width: 51px;
  599. height: 54px;
  600. bottom: 80px;
  601. right: 90px;
  602. background-position: 85px 188px;
  603. border-radius: 38px;
  604. cursor: pointer;
  605. background-size: 1800%;
  606. visibility: visible;
  607. }
  608. .U_MD_D_T_taskbar_Bar_Operate_Button {
  609. font-size: 19px;
  610. cursor: pointer;
  611. text-align: center;
  612. }
  613. /*上传按钮*/
  614. .U_MD_D_filePrew {
  615. position: absolute;
  616. display: block;
  617. z-index: 1;
  618. border: 0;
  619. cursor: pointer;
  620. opacity: 0;
  621. filter: alpha(opacity 0);
  622. width: 100%;
  623. height: 100%;
  624. overflow: hidden;
  625. }
  626. /*上传控件*/
  627. .U_MD_D_filePrew_I {
  628. display: block;
  629. position: relative;
  630. width: 100%;
  631. height: 100%;
  632. cursor: pointer;
  633. border: 0;
  634. color: #666;
  635. background: #eee;
  636. -moz-user-select: -moz-none;
  637. -webkit-user-select: none;
  638. opacity: 0;
  639. filter: alpha(opacity=0);
  640. -moz-opacity: 0;
  641. }
  642. /*头部消息*/
  643. .U_MD_D_MG_A {
  644. position: relative;
  645. }
  646. .U_MD_D_MG_T {
  647. background-color: #60e480;
  648. color: White;
  649. text-align: center;
  650. width: 18px;
  651. height: 18px;
  652. line-height: 18px;
  653. position: absolute;
  654. top: -7px;
  655. left: 22px;
  656. font-size: 10px;
  657. border-radius: 50%;
  658. display: none;
  659. cursor: pointer;
  660. }
  661. .U_MD_D_MG_O {
  662. width: 300px;
  663. z-index: 3;
  664. position: absolute;
  665. font-family: arial, sans-serif;
  666. background-color: White;
  667. border: 1px solid #838383;
  668. cursor: default;
  669. display: none;
  670. top: 35px;
  671. right: -34px;
  672. max-height: 230px;
  673. overflow: auto;
  674. }
  675. .U_MD_D_MG_OA {
  676. width: 100%;
  677. background: rgb(237, 237, 237);
  678. height: 100%;
  679. }
  680. .U_MD_D_MG_OM {
  681. background-color: #f2f2f2;
  682. width: 100%;
  683. text-align: center;
  684. height: 20px;
  685. line-height: 20px;
  686. cursor: pointer;
  687. padding: 5px 0;
  688. color: #000;
  689. display: none;
  690. }
  691. .U_MD_D_MG_OM:hover {}
  692. .U_MD_D_MG_OMS {
  693. color: #0b7aeb;
  694. margin-left: 10px;
  695. }
  696. .U_MD_U_P_C_P_N_I {
  697. outline: none;
  698. border: 0;
  699. color: black;
  700. overflow: hidden;
  701. background-color: transparent;
  702. width: 100%;
  703. border-radius: 35px;
  704. }
  705. .form_delete-main,
  706. .form_delete-main-room {
  707. background: #fff;
  708. padding: 20px;
  709. margin: 10px auto 10px auto;
  710. width: 80%;
  711. height: 170px;
  712. }
  713. .form_delete-main-room {
  714. height: 360px !important;
  715. }
  716. #add_room,
  717. #invite_members {
  718. background: #f3f3f3 !important;
  719. }
  720. .form_delete-main_box {
  721. width: 320px;
  722. height: 40px;
  723. border: 1px solid #DCDFE6;
  724. text-indent: 10px;
  725. border-radius: 5px;
  726. margin: 18px 0 10px 0;
  727. }
  728. .remark {
  729. font-size: 14px;
  730. border-bottom: 1px solid #f1f1f1;
  731. padding: 0 0 15px 0;
  732. }
  733. .form-cencal,
  734. .form-confirm {
  735. background: #3E86FF;
  736. border: none;
  737. width: 96px;
  738. height: 38px;
  739. color: #fff;
  740. text-align: center;
  741. border-radius: 5px;
  742. line-height: 38px;
  743. cursor: pointer;
  744. }
  745. .form-btn,
  746. .copy-btn {
  747. display: flex;
  748. flex-direction: row;
  749. align-items: center;
  750. justify-content: space-evenly;
  751. margin: 20px 0;
  752. }
  753. .copy-btn {
  754. background: #DCDCDC;
  755. height: 40px;
  756. margin: 10px 0 0 0 !important;
  757. }
  758. .copy-message {
  759. background: #3085E4;
  760. color: #fff;
  761. border: none;
  762. width: 120px;
  763. height: 30px;
  764. border-radius: 20px;
  765. cursor: pointer;
  766. }
  767. .room_number {
  768. margin: 10px 0 30px 0;
  769. font-size: 14px;
  770. display: flex;
  771. flex-direction: row;
  772. justify-content: flex-start;
  773. align-items: center;
  774. }
  775. .avatar {
  776. width: 30px;
  777. margin-right: 5px;
  778. display: none;
  779. }
  780. .avatar>img {
  781. width: 100%;
  782. height: 100%;
  783. }
  784. .clickNav {
  785. margin: 10px 0;
  786. font-size: 14px;
  787. }
  788. .link,
  789. .roomNumber {
  790. margin: 10px 0 30px 0;
  791. font-size: 12px;
  792. color: #3085E4;
  793. }
  794. .roomNumber {
  795. font-size: 24px;
  796. margin-left: 10px;
  797. }
  798. .text {
  799. display: none;
  800. }
  801. .searchPerson {
  802. display: flex;
  803. position: relative;
  804. height: 25px;
  805. }
  806. .inputSearch {
  807. height: 30px;
  808. width: 100%;
  809. border: none;
  810. background: #eaeaea;
  811. border-radius: 10px;
  812. padding: 0 15px;
  813. font-size: 12px;
  814. }
  815. .checkboxPerson {
  816. margin: 20px 0;
  817. }
  818. .personAvatar {
  819. width: 55px;
  820. height: 50px;
  821. background: url("../../../img/icon/avatar.png") no-repeat;
  822. background-size: 100% 100%;
  823. margin: 0 10px;
  824. }
  825. .searchImg {
  826. width: 25px;
  827. height: 25px;
  828. position: absolute;
  829. right: 5px;
  830. top: 3px;
  831. background: url("../../../img/icon/search.png") no-repeat;
  832. background-size: 100% 100%;
  833. cursor: pointer;
  834. }
  835. .person {
  836. display: flex;
  837. flex-direction: row;
  838. justify-content: flex-start;
  839. align-items: center;
  840. }