Desktop.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929
  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/bgImg4.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. }
  215. /*云端首页*/
  216. .U_MD_Home {
  217. color: #000;
  218. font-size: 12px;
  219. width: 0;
  220. height: 0;
  221. overflow: hidden;
  222. }
  223. /*width:100%; height:100%; position:absolute; top:0px; left:0px; width:100%; height:100%; overflow:hidden; color:#000; overflow:hidden;*/
  224. .U_MD_Home img {}
  225. .UD_Dtop {
  226. display: none;
  227. }
  228. /*文字处理区域*/
  229. .U_MD_D_Text_Abbreviation {
  230. text-decoration: none;
  231. text-overflow: ellipsis;
  232. white-space: nowrap;
  233. overflow: hidden;
  234. }
  235. /*桌面样式*/
  236. .U_MD_D {
  237. overflow: hidden;
  238. color: #FFF;
  239. position: absolute;
  240. left: 0;
  241. bottom: 0;
  242. top: 0;
  243. right: 0;
  244. }
  245. .U_MD_D_B {
  246. position: absolute;
  247. bottom: 30px;
  248. right: 5%;
  249. }
  250. .U_MD_D_BD {
  251. padding: 5px 10px;
  252. background-color: #5a5a5a;
  253. border-radius: 5px;
  254. position: absolute;
  255. right: 5%;
  256. top: 4px;
  257. }
  258. .U_MD_D_BDA {
  259. overflow: hidden;
  260. height: 30px;
  261. line-height: 32px;
  262. float: left;
  263. }
  264. .U_MD_D_BDI {
  265. float: left;
  266. background-position: -536px -373px;
  267. width: 30px;
  268. height: 30px;
  269. cursor: pointer;
  270. }
  271. .U_MD_D_BDI img {
  272. width: 30px;
  273. height: 30px;
  274. border-radius: 50%;
  275. }
  276. .U_MD_D_BDL {
  277. float: left;
  278. color: #FFF;
  279. font-family: Arial;
  280. cursor: pointer;
  281. display: flex;
  282. align-items: center;
  283. justify-content: space-between;
  284. flex-direction: row;
  285. width: 65px;
  286. }
  287. .U_MD_D_BDL div {
  288. float: left;
  289. font-size: 14px;
  290. height: 30px;
  291. color: #d9d9d9;
  292. }
  293. .U_MD_D_BDL div:hover {
  294. color: #fff;
  295. }
  296. .U_MD_D_BD_QRcode {
  297. padding: 5px 10px;
  298. background-color: #5A5A5A;
  299. border-radius: 0px 0px 10px 10px;
  300. position: absolute;
  301. right: -53px;
  302. top: 0px;
  303. }
  304. .U_MD_D_BD_QRcodeShare {
  305. display: none;
  306. padding: 5px 10px;
  307. background-color: #5A5A5A;
  308. position: absolute;
  309. right: -55px;
  310. top: 50px;
  311. }
  312. .U_MD_D_BD_QRcodeShare img {
  313. width: 100px;
  314. height: 100px;
  315. padding: 5px 5px;
  316. }
  317. .U_MD_D_BD_QRcode:hover+.U_MD_D_BD_QRcodeShare {
  318. display: block;
  319. }
  320. .U_MD_D_BZMD {
  321. position: relative;
  322. }
  323. .U_MD_D_BZMS {
  324. height: 40px;
  325. line-height: 30px;
  326. width: 721px;
  327. margin: 10px auto 0 auto;
  328. text-align: center;
  329. }
  330. .U_MD_D_BZMSA {
  331. display: inline-block;
  332. *display: inline;
  333. *zoom: 1;
  334. margin: auto;
  335. text-align: left;
  336. height: 40px;
  337. line-height: 40px;
  338. }
  339. .U_MD_D_BZM {
  340. width: 741px;
  341. margin: 20px auto 0 auto;
  342. position: relative;
  343. height: 94px;
  344. text-align: center;
  345. }
  346. .U_MD_D_BZMN {
  347. position: absolute;
  348. top: -10px;
  349. left: -40px;
  350. height: 22px;
  351. background-color: #EEE;
  352. padding: 0 6px;
  353. border-radius: 3px
  354. }
  355. .U_MD_D_BZMNL {
  356. float: left;
  357. width: 15px;
  358. height: 15px;
  359. margin-top: 3px;
  360. }
  361. .U_MD_D_BZMNLI {
  362. background-position: -574px -372px;
  363. }
  364. .U_MD_D_BZMNLO {
  365. background-position: -614px -372px;
  366. }
  367. .U_MD_D_BZMNLT {
  368. background-position: -594px -371px;
  369. }
  370. .U_MD_D_BZMNR {
  371. float: left;
  372. color: #222;
  373. line-height: 22px;
  374. margin-left: 3px;
  375. width: 50px;
  376. }
  377. .U_MD_D_BZMA {
  378. position: relative;
  379. padding: 0 30px;
  380. overflow: hidden;
  381. margin: auto;
  382. display: inline-block;
  383. *display: inline;
  384. *zoom: 1;
  385. height: 100%;
  386. overflow: hidden;
  387. }
  388. .U_MD_D_BZMT {
  389. padding: 0px 10px;
  390. }
  391. .U_MD_D_BZMM {
  392. width: 100%;
  393. height: 100%;
  394. top: 0;
  395. left: 0;
  396. background: #444;
  397. filter: alpha(opacity=50);
  398. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  399. -moz-opacity: 0.5;
  400. -khtml-opacity: 0.5;
  401. opacity: 0.5;
  402. position: absolute;
  403. border-radius: 6px;
  404. }
  405. .U_MD_D_BZMO {
  406. margin: -1px 0 0 40px;
  407. cursor: pointer;
  408. width: 63px;
  409. height: 83px;
  410. float: left;
  411. }
  412. .U_MD_D_BZMOA {
  413. width: 51px;
  414. height: 54px;
  415. padding: 6px;
  416. /*border-radius: 3px;*/
  417. color: #FFF;
  418. cursor: pointer;
  419. }
  420. .U_MD_D_BZMOA:hover {
  421. padding: 5px;
  422. background-color: #505457;
  423. border: 1px solid #777;
  424. }
  425. .U_MD_D_BZMOI {
  426. width: 51px;
  427. height: 51px;
  428. }
  429. .U_MD_D_BZMON {
  430. width: 51px;
  431. height: 15px;
  432. line-height: 15px;
  433. margin-top: 6px;
  434. text-align: center;
  435. }
  436. .U_MD_D_B .U_MD_D_BS {
  437. margin: 30px auto 0 auto;
  438. float: none;
  439. width: 675px;
  440. height: 32px;
  441. }
  442. .U_MD_D_BCM {
  443. display: block;
  444. width: 721px;
  445. margin: 20px auto 0 auto;
  446. height: 40px;
  447. text-align: center;
  448. overflow: hidden;
  449. }
  450. .U_MD_D_BCMO {
  451. width: 125px;
  452. background-color: #666;
  453. float: left;
  454. height: 25px;
  455. line-height: 25px;
  456. padding: 3px 6px;
  457. margin: 5px 0 0 20px;
  458. text-align: left;
  459. position: relative;
  460. }
  461. .U_MD_D_BCMOL {
  462. float: left;
  463. height: 100%;
  464. text-align: center;
  465. color: #EEE;
  466. margin-left: 2px;
  467. }
  468. .U_MD_D_BCMOL div {
  469. float: none;
  470. }
  471. .U_MD_D_BCMOLS {
  472. font-size: 12px;
  473. }
  474. .U_MD_D_BCMOR {
  475. float: left;
  476. margin-left: 11px;
  477. font-size: 13px;
  478. color: #FFF;
  479. width: 85px;
  480. }
  481. .U_MD_D_BZ {
  482. color: #FFF;
  483. font-family: Arial;
  484. background-color: #676767;
  485. padding: 8px 15px;
  486. font-style: normal;
  487. cursor: pointer;
  488. display: none;
  489. }
  490. .U_MD_D_BZ div {
  491. text-align: center;
  492. }
  493. /*桌面图标使用 */
  494. .U_MD_D_K {
  495. top: 0;
  496. left: 0;
  497. height: 100%;
  498. position: absolute;
  499. }
  500. .U_MD_D_KO {
  501. cursor: pointer;
  502. width: 65px;
  503. height: 90px;
  504. position: absolute;
  505. top: 0;
  506. left: 80px;
  507. }
  508. .U_MD_D_KO:hover {
  509. background-color: #8eaad1;
  510. border-radius: 5px;
  511. box-sizing: border-box;
  512. }
  513. .U_MD_D_KOA {
  514. margin: 5px auto 0 auto;
  515. width: 57px;
  516. border-radius: 5px;
  517. display: flex;
  518. flex-direction: column;
  519. flex-wrap: nowrap;
  520. align-items: center;
  521. }
  522. .U_MD_D_KOS {
  523. width: 57px;
  524. height: 57px;
  525. }
  526. .U_Img {
  527. background-size: 100% 100%;
  528. }
  529. .U_MD_D_KOX {
  530. width: 51px;
  531. height: 15px;
  532. line-height: 15px;
  533. margin-top: 6px;
  534. text-align: center;
  535. }
  536. .U_MD_D_NewsTipsIcon {
  537. background: rgba(250, 250, 250, 0) url(/img/YSD20143.png);
  538. position: fixed;
  539. width: 51px;
  540. height: 54px;
  541. bottom: 80px;
  542. right: 90px;
  543. background-position: 85px 188px;
  544. border-radius: 38px;
  545. cursor: pointer;
  546. background-size: 1800%;
  547. visibility: visible;
  548. }
  549. .U_MD_D_T_taskbar_Bar_Operate_Button {
  550. font-size: 19px;
  551. cursor: pointer;
  552. text-align: center;
  553. }
  554. /*上传按钮*/
  555. .U_MD_D_filePrew {
  556. position: absolute;
  557. display: block;
  558. z-index: 1;
  559. border: 0;
  560. cursor: pointer;
  561. opacity: 0;
  562. filter: alpha(opacity 0);
  563. width: 100%;
  564. height: 100%;
  565. overflow: hidden;
  566. }
  567. /*上传控件*/
  568. .U_MD_D_filePrew_I {
  569. display: block;
  570. position: relative;
  571. width: 100%;
  572. height: 100%;
  573. cursor: pointer;
  574. border: 0;
  575. color: #666;
  576. background: #eee;
  577. -moz-user-select: -moz-none;
  578. -webkit-user-select: none;
  579. opacity: 0;
  580. filter: alpha(opacity=0);
  581. -moz-opacity: 0;
  582. }
  583. /*头部消息*/
  584. .U_MD_D_MG_A {
  585. position: relative;
  586. }
  587. .U_MD_D_MG_T {
  588. background-color: #60e480;
  589. color: White;
  590. text-align: center;
  591. width: 18px;
  592. height: 18px;
  593. line-height: 18px;
  594. position: absolute;
  595. top: -7px;
  596. left: 22px;
  597. font-size: 10px;
  598. border-radius: 50%;
  599. display: none;
  600. cursor: pointer;
  601. }
  602. .U_MD_D_MG_O {
  603. width: 300px;
  604. z-index: 3;
  605. position: absolute;
  606. font-family: arial, sans-serif;
  607. background-color: White;
  608. border: 1px solid #838383;
  609. cursor: default;
  610. display: none;
  611. top: 35px;
  612. right: -34px;
  613. max-height: 230px;
  614. overflow: auto;
  615. }
  616. .U_MD_D_MG_OA {
  617. width: 100%;
  618. background: rgb(237, 237, 237);
  619. height: 100%;
  620. }
  621. .U_MD_D_MG_OM {
  622. background-color: #f2f2f2;
  623. width: 100%;
  624. text-align: center;
  625. height: 20px;
  626. line-height: 20px;
  627. cursor: pointer;
  628. padding: 5px 0;
  629. color: #000;
  630. display: none;
  631. }
  632. .U_MD_D_MG_OM:hover {}
  633. .U_MD_D_MG_OMS {
  634. color: #0b7aeb;
  635. margin-left: 10px;
  636. }
  637. .U_MD_U_P_C_P_N_I {
  638. outline: none;
  639. border: 0;
  640. color: black;
  641. overflow: hidden;
  642. background-color: transparent;
  643. width: 100%;
  644. border-radius: 35px;
  645. }
  646. .form_delete-main,
  647. .form_delete-main-room {
  648. background: #fff;
  649. padding: 20px;
  650. margin: 10px auto 10px auto;
  651. width: 80%;
  652. height: 170px;
  653. }
  654. .form_delete-main-room {
  655. height: 360px !important;
  656. }
  657. #add_room,
  658. #invite_members {
  659. background: #f3f3f3 !important;
  660. }
  661. .form_delete-main_box {
  662. width: 320px;
  663. height: 40px;
  664. border: 1px solid #DCDFE6;
  665. text-indent: 10px;
  666. border-radius: 5px;
  667. margin: 18px 0 10px 0;
  668. }
  669. .remark {
  670. font-size: 14px;
  671. border-bottom: 1px solid #f1f1f1;
  672. padding: 0 0 15px 0;
  673. }
  674. .form-cencal,
  675. .form-confirm {
  676. background: #3E86FF;
  677. border: none;
  678. width: 96px;
  679. height: 38px;
  680. color: #fff;
  681. text-align: center;
  682. border-radius: 5px;
  683. line-height: 38px;
  684. cursor: pointer;
  685. }
  686. .form-btn,
  687. .copy-btn {
  688. display: flex;
  689. flex-direction: row;
  690. align-items: center;
  691. justify-content: space-evenly;
  692. margin: 20px 0;
  693. }
  694. .copy-btn {
  695. background: #DCDCDC;
  696. height: 40px;
  697. margin: 10px 0 0 0 !important;
  698. }
  699. .copy-message {
  700. background: #3085E4;
  701. color: #fff;
  702. border: none;
  703. width: 120px;
  704. height: 30px;
  705. border-radius: 20px;
  706. cursor: pointer;
  707. }
  708. .room_number {
  709. margin: 10px 0 30px 0;
  710. font-size: 14px;
  711. display: flex;
  712. flex-direction: row;
  713. justify-content: flex-start;
  714. align-items: center;
  715. }
  716. .avatar {
  717. width: 30px;
  718. margin-right: 5px;
  719. display: none;
  720. }
  721. .avatar>img {
  722. width: 100%;
  723. height: 100%;
  724. }
  725. .clickNav {
  726. margin: 10px 0;
  727. font-size: 14px;
  728. }
  729. .link,
  730. .roomNumber {
  731. margin: 10px 0 30px 0;
  732. font-size: 12px;
  733. color: #3085E4;
  734. }
  735. .roomNumber {
  736. font-size: 24px;
  737. margin-left: 10px;
  738. }
  739. .text {
  740. display: none;
  741. }
  742. .searchPerson {
  743. display: flex;
  744. position: relative;
  745. height: 25px;
  746. }
  747. .inputSearch {
  748. height: 30px;
  749. width: 100%;
  750. border: none;
  751. background: #eaeaea;
  752. border-radius: 10px;
  753. padding: 0 15px;
  754. font-size: 12px;
  755. }
  756. .checkboxPerson {
  757. margin: 20px 0;
  758. }
  759. .personAvatar {
  760. width: 55px;
  761. height: 50px;
  762. background: url("../../../img/icon/avatar.png") no-repeat;
  763. background-size: 100% 100%;
  764. margin: 0 10px;
  765. }
  766. .searchImg {
  767. width: 25px;
  768. height: 25px;
  769. position: absolute;
  770. right: 5px;
  771. top: 3px;
  772. background: url("../../../img/icon/search.png") no-repeat;
  773. background-size: 100% 100%;
  774. cursor: pointer;
  775. }
  776. .person {
  777. display: flex;
  778. flex-direction: row;
  779. justify-content: flex-start;
  780. align-items: center;
  781. }