Desktop.css 16 KB

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