home.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854
  1. @import "system.css";
  2. body {
  3. background-color: #FFF;
  4. }
  5. * {
  6. letter-spacing: 1px;
  7. }
  8. #homeBox {
  9. width: calc(100% - 40px);
  10. height: 100vh;
  11. background: -webkit-linear-gradient(top, #FFF0,#FFF0, #FFF, #FFF);
  12. margin-left: 20px;
  13. display: flex;
  14. flex-direction: column;
  15. flex-wrap: nowrap;
  16. justify-content: center;
  17. align-items: center;
  18. }
  19. #homeBox::after {
  20. position: absolute;
  21. top: 0;
  22. content: "";
  23. width: 100vw;
  24. height: 100vh;
  25. background-image: url(../images/loginBackGround2.png);
  26. background-repeat: no-repeat;
  27. background-position: top;
  28. background-attachment: fixed;
  29. /* background-size: cover; */
  30. z-index: -1;
  31. }
  32. #loginFormBox {
  33. padding: 1rem;
  34. border-radius: 5px;
  35. background-color: #FFF;
  36. box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.02);
  37. }
  38. #loginForm2Box{
  39. display: none;
  40. padding: 1rem;
  41. border-radius: 5px;
  42. background-color: #FFF;
  43. box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.02);
  44. }
  45. #homeBox p {
  46. width: 100%;
  47. align-items: center;
  48. text-align: center;
  49. font-weight: 600;
  50. font-size: 24px;
  51. color: #2EA8E6;
  52. margin-bottom: 10px;
  53. letter-spacing: 0.3rem;
  54. }
  55. #homeBox p:nth-child(2) {
  56. margin-top: 2rem;
  57. letter-spacing: 5px;
  58. font-size: 32px;
  59. color: #2EA8E6;
  60. }
  61. #form_box {
  62. margin-top: 3rem;
  63. display: flex;
  64. flex-direction: column;
  65. flex-wrap: nowrap;
  66. justify-content: center;
  67. align-items: flex-start;
  68. width: calc(100% - 60px);
  69. min-width: 300px;
  70. }
  71. .home_auto_login {
  72. background-color: #00000000;
  73. margin-top: 10px;
  74. width: calc(100% - 60px);
  75. min-width: 300px;
  76. }
  77. /* 登录按钮样式 */
  78. #homeBox #loginButton {
  79. font-size: 1rem;
  80. margin: 20px 0;
  81. width: 100%;
  82. min-width: 100px;
  83. padding: 5px 0 !important;
  84. border-radius: 2rem;
  85. background-color: #2EA8E6;
  86. border-color: transparent;
  87. }
  88. .phoneTip{
  89. margin: 2rem auto;
  90. font-size: 30px;
  91. font-family: PingFang SC;
  92. font-weight: 400;
  93. text-align: center;
  94. color: #000000;
  95. }
  96. /* 使用其他号码登录按钮 */
  97. #homeBox #loginButtonOrherPhone{
  98. font-size: 1rem;
  99. margin: 20px 0;
  100. width: 100%;
  101. min-width: 100px;
  102. padding: 5px 0 !important;
  103. border-radius: 2rem;
  104. background-color: #FFFFFF;
  105. color: #9B9B9B;
  106. border-color: #E6E6E6;
  107. }
  108. #changeLoginType{
  109. position: absolute;
  110. right: 0;
  111. top: 20%;
  112. background-color: #2EA8E6;
  113. color: #FFF;
  114. padding: 5px 10px 5px 15px;
  115. font-size: 0.75rem;
  116. border-top-left-radius: 20px;
  117. border-bottom-left-radius: 20px;
  118. }
  119. /* 用户名和密码和输入框宽度样式 */
  120. #form_box ::before {
  121. height: 0px !important;
  122. }
  123. .mui-input-row {
  124. width: 100%;
  125. overflow: auto;
  126. }
  127. .mui-input-row input {
  128. width: 100%;
  129. background-color: #F5F5F5;
  130. border-radius: 2rem;
  131. border-color: transparent;
  132. }
  133. .mui-main-box {
  134. padding: 10px;
  135. }
  136. .flex-auto {
  137. width: 100%;
  138. padding-bottom: 30px;
  139. display: flex;
  140. align-items: center;
  141. align-content: center;
  142. justify-content: space-around;
  143. }
  144. .flex-auto>div {
  145. width: 60px;
  146. height: 60px;
  147. padding: 0 10px;
  148. margin: 10px;
  149. border-radius: 50%;
  150. display: flex;
  151. justify-content: center;
  152. align-items: center;
  153. position: relative;
  154. background-repeat: no-repeat;
  155. background-size: 100% 100%;
  156. }
  157. .flex-auto>div:nth-child(1) {
  158. background-image: url("../images/myTasks2.png");
  159. /* background-image: linear-gradient(-45deg, #409EFF, #409EFF64); */
  160. }
  161. .flex-auto>div:nth-child(2) {
  162. background-image: url("../images/customMarking2.png");
  163. /* background-image: linear-gradient(-45deg, #67C23A, #67C23A64); */
  164. }
  165. .flex-auto>div:nth-child(3) {
  166. background-image: url("../images/knowledgeRetrieval2.png");
  167. /* background-image: linear-gradient(-45deg, #E6A23C, #E6A23C64); */
  168. }
  169. .flex-auto>div:nth-child(4) {
  170. background-image: url("../images/myMarks2.png");
  171. /* background-image: linear-gradient(-45deg, #F56C6C, #F56C6C64); */
  172. }
  173. .flex-auto>div>div {
  174. font-size: 30px;
  175. color: aliceblue;
  176. }
  177. .flex-auto .mui-icon::before {
  178. font-weight: bold;
  179. text-shadow: 2px 2px 5px #303133;
  180. }
  181. .flex-auto .tag_title {
  182. position: absolute;
  183. bottom: -30px;
  184. color: #909399;
  185. letter-spacing: 2px;
  186. font-size: 12px;
  187. }
  188. .mui-search input {
  189. box-shadow: 1px 1px 5px 0px #cccccc64;
  190. }
  191. .mui-search input[type=search] {
  192. border-radius: 2rem;
  193. background-color: #FFF;
  194. }
  195. .data-list-box {
  196. padding: 20px 0px;
  197. border-radius: 10px;
  198. }
  199. .data-list-box>div:nth-child(1) {
  200. color: #303133;
  201. font-weight: bold;
  202. }
  203. /* 主色 */
  204. @BrandColor #409EFF;
  205. @SuccessColor #67C23A;
  206. @WarningColor #E6A23C;
  207. @DangerColor #F56C6C;
  208. @InfoColor #909399;
  209. /* 字体或背景 */
  210. @TextColor1 #303133;
  211. @TextColor2 #606266;
  212. @TextColor3 #909399;
  213. @TextColor4 #C0C4CC;
  214. @BorderColor1 #DCDFE6;
  215. @BorderColor2 #E4E7ED;
  216. @BorderColor3 #EBEEF5;
  217. @BorderColor4 #F2F6FC;
  218. .list-time {
  219. float: right;
  220. color: #C0C4CC;
  221. font-size: 14px;
  222. margin-right: 10px;
  223. }
  224. /* 数据列表右上角的tag公共样式 */
  225. .list-tag {
  226. position: absolute;
  227. top: 10px;
  228. right: 0px;
  229. text-align: center;
  230. text-indent: 0px;
  231. margin: 10px;
  232. font-size: 10px;
  233. padding: 5px 10px;
  234. border-radius: 4px;
  235. border: none;
  236. background-image: none;
  237. }
  238. .BrandTag {
  239. color: #303133;
  240. font-size: 14px;
  241. padding-left: 10px;
  242. padding: 5px 0;
  243. text-indent: 10px;
  244. font-weight: 400;
  245. border-left: 5px solid #409EFF;
  246. background-image: linear-gradient(90deg, #409EFF64, #00000000);
  247. }
  248. .BrandTag .list-tag {
  249. background-color: #409EFF32;
  250. color: #409EFF;
  251. }
  252. .SuccessTag {
  253. color: #303133;
  254. font-size: 14px;
  255. padding-left: 10px;
  256. padding: 5px 0;
  257. text-indent: 10px;
  258. font-weight: 400;
  259. border-left: 5px solid #67C23A;
  260. background-image: linear-gradient(90deg, #67C23A64, #00000000);
  261. }
  262. .SuccessTag .list-tag {
  263. background-color: #67C23A32;
  264. color: #67C23A;
  265. }
  266. .WarningTag {
  267. color: #303133;
  268. font-size: 14px;
  269. padding-left: 10px;
  270. padding: 5px 0;
  271. text-indent: 10px;
  272. font-weight: 400;
  273. border-left: 5px solid #E6A23C;
  274. background-image: linear-gradient(90deg, #E6A23C64, #00000000);
  275. }
  276. .WarningTag .list-tag {
  277. background-color: #E6A23C32;
  278. color: #E6A23C;
  279. }
  280. .DangerTag {
  281. color: #303133;
  282. font-size: 14px;
  283. padding-left: 10px;
  284. padding: 5px 0;
  285. text-indent: 10px;
  286. font-weight: 400;
  287. border-left: 5px solid #F56C6C;
  288. background-image: linear-gradient(90deg, #F56C6C64, #00000000);
  289. }
  290. .DangerTag .list-tag {
  291. background-color: #F56C6C32;
  292. color: #F56C6C;
  293. }
  294. .InfoTag {
  295. font-size: 14px;
  296. color: #303133;
  297. padding-left: 10px;
  298. padding: 5px 0;
  299. text-indent: 10px;
  300. font-weight: 400;
  301. border-left: 5px solid #303133;
  302. background-image: linear-gradient(90deg, #C0C4CC64, #00000000);
  303. }
  304. .InfoTag .list-tag {
  305. background-color: #30313332;
  306. color: #303133;
  307. }
  308. .data-list-title {
  309. height: 30px;
  310. display: flex;
  311. justify-content: space-between;
  312. color: #303133;
  313. padding: 0 10px;
  314. align-items: center;
  315. }
  316. .data-list {
  317. padding: 0 10px;
  318. overflow-x: hidden;
  319. max-height: calc(100vh - 320px);
  320. }
  321. .data-list p:not(.nonePadding) {
  322. padding: 0 10px;
  323. margin-bottom: 0px;
  324. }
  325. /* 时间样式 */
  326. .data-list p span {
  327. color: #999999;
  328. }
  329. .data-list p:nth-child(2) {
  330. color: #CCCCCC;
  331. text-overflow: ellipsis;
  332. display: -webkit-box;
  333. -webkit-line-clamp: 2;
  334. -webkit-box-orient: vertical;
  335. display: -moz-box;
  336. -moz-line-clamp: 2;
  337. -moz-box-orient: vertical;
  338. overflow-wrap: break-word;
  339. word-break: break-all;
  340. white-space: normal;
  341. overflow: hidden;
  342. }
  343. .data-list .content {
  344. padding: 10px 0 5px 0;
  345. text-indent: 2rem;
  346. }
  347. .dataListHr p:nth-child(1) {
  348. color: #409EFF;
  349. }
  350. .dataListHr p:nth-child(2) {
  351. color: #909399;
  352. }
  353. .data-list h4 {
  354. width: calc(100% - 60px);
  355. text-overflow: ellipsis;
  356. display: -webkit-box;
  357. -webkit-line-clamp: 2;
  358. -webkit-box-orient: vertical;
  359. display: -moz-box;
  360. -moz-line-clamp: 2;
  361. -moz-box-orient: vertical;
  362. overflow-wrap: break-word;
  363. word-break: break-all;
  364. white-space: normal;
  365. overflow: hidden;
  366. text-shadow: 0px 0px 0px;
  367. }
  368. .displayFlex {
  369. position: relative;
  370. display: flex;
  371. margin: 10px 0px;
  372. padding: 15px;
  373. background-color: #FFFFFF;
  374. flex-direction: column;
  375. border-radius: 5px;
  376. box-shadow: 1px 1px 3px #CCC;
  377. }
  378. .displayFlex2 {
  379. position: relative;
  380. display: flex;
  381. margin: 20px 0px;
  382. align-items: center;
  383. }
  384. .displayFlex3 {
  385. position: relative;
  386. display: flex;
  387. align-items: center;
  388. }
  389. .displayFlex2 input {
  390. font-size: 16px;
  391. margin-left: 10px;
  392. }
  393. .bottom-bar {
  394. position: fixed;
  395. width: 100%;
  396. bottom: 0;
  397. height: 2em;
  398. display: flex;
  399. justify-content: center;
  400. align-items: center;
  401. color: #CCC;
  402. font-size: 0.75em;
  403. /* background-color: #409EFF; */
  404. }
  405. .loginOut {
  406. padding: 10px;
  407. float: right;
  408. }
  409. #upTitle {
  410. font-size: 14px;
  411. color: #C0C4CC;
  412. width: 100%;
  413. display: flex;
  414. align-items: center;
  415. justify-content: center;
  416. align-content: center;
  417. flex-wrap: nowrap;
  418. flex-direction: column;
  419. }
  420. #reSearch {
  421. align-items: center;
  422. color: #409EFF;
  423. padding: 10px 0 20px 10px;
  424. }
  425. .pageParam {
  426. display: none;
  427. }
  428. .dataListHr {
  429. border-radius: 3px;
  430. padding: 10px;
  431. background-image: linear-gradient(90deg, #F3F6FA, #00000000);
  432. }
  433. #searchState {
  434. position: relative;
  435. bottom: 5px;
  436. padding: 10px 10px 10px 0;
  437. }
  438. #autoLogin {
  439. width: 1.5rem;
  440. }
  441. #autoLoginText {
  442. color: #909399;
  443. font-size: 14px;
  444. }
  445. .changeType {
  446. position: fixed;
  447. bottom: 36px;
  448. right: 10px;
  449. /* background-color: #409EFF; */
  450. background-image: linear-gradient(-45deg, #409EFF, #409EFFaa);
  451. font-size: 14px;
  452. width: 3rem;
  453. height: 3rem;
  454. border-radius: 3rem;
  455. display: flex;
  456. flex-direction: column;
  457. flex-wrap: nowrap;
  458. align-content: center;
  459. justify-content: center;
  460. align-items: center;
  461. box-shadow: 3px 3px 5px #00000064;
  462. text-shadow: 1px 1px 2px #00000064;
  463. font-weight: bold;
  464. color: #FFFFFF;
  465. z-index: 999;
  466. }
  467. .mui-bar .mui-title {
  468. font-weight: bold;
  469. }
  470. #taskName {
  471. position: fixed;
  472. top: 50px;
  473. font-weight: bold;
  474. color: #409EFF;
  475. right: 5px;
  476. z-index: 999;
  477. background-color: #FFFFFF;
  478. padding: 3px 5px;
  479. border-radius: 3px;
  480. display: none;
  481. }
  482. .fileTitle {
  483. font-size: 20px;
  484. font-weight: bold;
  485. color: #000000;
  486. padding: 10px 0;
  487. text-overflow: ellipsis;
  488. display: -webkit-box;
  489. -webkit-line-clamp: 2;
  490. -webkit-box-orient: vertical;
  491. display: -moz-box;
  492. -moz-line-clamp: 2;
  493. -moz-box-orient: vertical;
  494. overflow-wrap: break-word;
  495. word-break: break-all;
  496. white-space: normal;
  497. overflow: hidden;
  498. }
  499. .fileBox .dataListHr {
  500. padding: 10px 0;
  501. background-image: none;
  502. }
  503. #mapBottomBox {
  504. position: absolute;
  505. transition: linear 0.3s;
  506. padding: 20px;
  507. bottom: -100%;
  508. z-index: 9997;
  509. width: 100%;
  510. background-color: #FFFFFF;
  511. border-top-left-radius: 1rem;
  512. border-top-right-radius: 1rem;
  513. box-shadow: 0 0 3px 5px #000;
  514. }
  515. #mapBottomBox .title {
  516. position: relative;
  517. font-size: 20px;
  518. font-weight: bold;
  519. max-width: 40vw;
  520. }
  521. #mapBottomBox #mapImageList>div {
  522. background-color: #F2F6FC;
  523. border-radius: 5px;
  524. width: calc(50vw - 25px);
  525. height: calc(50vw - 25px);
  526. margin: 5px 0px;
  527. box-shadow: 1px 1px 5px 0px #ccc;
  528. overflow: hidden;
  529. display: flex;
  530. align-items: center;
  531. position: relative;
  532. }
  533. #mapBottomBox #mapImageList .removeImage {
  534. /* position: absolute;
  535. right: 5px;
  536. top: 5px;
  537. background-color: #F56C6C;
  538. color: #FFF;
  539. box-shadow: 0 0 2px 1px;
  540. border-radius: 50%; */
  541. }
  542. #mapBottomBox #mapImageList>div>img {
  543. width: 100%;
  544. }
  545. #uploadImage {
  546. display: flex;
  547. flex-direction: column;
  548. flex-wrap: nowrap;
  549. align-content: center;
  550. justify-content: center;
  551. align-items: center;
  552. font-weight: bold;
  553. color: #909399;
  554. }
  555. #uploadImage div:nth-child(1) span {
  556. font-size: 40px;
  557. }
  558. #uploadImage div:nth-child(2) span {
  559. font-size: 20px;
  560. }
  561. #mapBottomBox #mapImageList {
  562. display: flex;
  563. flex-wrap: wrap;
  564. align-content: center;
  565. align-items: center;
  566. justify-content: space-between;
  567. }
  568. #mapBottomBox .mapBrandTag {
  569. background-color: #409EFF32;
  570. color: #409EFF;
  571. padding: 5px;
  572. border-radius: 5px;
  573. font-weight: bold;
  574. box-shadow: 0 0 5px 1px;
  575. margin-bottom: 10px;
  576. }
  577. #mapBottomBox .mapSuccessTag {
  578. /* background-color: #67C23A32; */
  579. color: #67C23A;
  580. padding: 5px;
  581. border-radius: 5px;
  582. font-weight: bold;
  583. /* box-shadow: 0 0 5px 1px; */
  584. margin-bottom: 10px;
  585. }
  586. #mapBottomBox .mapWarning {
  587. /* background-color: #E6A23C32; */
  588. color: #E6A23C;
  589. padding: 5px;
  590. border-radius: 5px;
  591. font-weight: bold;
  592. /* box-shadow: 0 0 5px 1px; */
  593. margin-bottom: 10px;
  594. }
  595. #mapBottomBox .mapDangerTag {
  596. background-color: #F56C6C32;
  597. color: #F56C6C;
  598. padding: 5px;
  599. border-radius: 5px;
  600. font-weight: bold;
  601. box-shadow: 0 0 5px 1px;
  602. margin-bottom: 10px;
  603. }
  604. #mapBottomBox .mapInfoTag {
  605. background-color: #90939932;
  606. color: #909399;
  607. padding: 5px;
  608. border-radius: 5px;
  609. font-weight: bold;
  610. box-shadow: 0 0 5px 1px;
  611. margin-bottom: 10px;
  612. }
  613. .arrowdown {
  614. position: absolute;
  615. left: 50%;
  616. top: 5px;
  617. padding: 12px;
  618. transform: translate(-50%, 0);
  619. }
  620. /* 隐藏底部菜单 */
  621. /* .paperplane{
  622. position: absolute;
  623. top: 10px;
  624. right: 10px;
  625. color: #409EFF;
  626. font-weight: bold;
  627. } */
  628. /* 提交 */
  629. .paperplaneMyMarker {
  630. background-color: #499DF2;
  631. width: 100%;
  632. color: #FFFFFF;
  633. border-radius: 2rem;
  634. font-size: 17px;
  635. text-align: center;
  636. padding: 5px 0;
  637. letter-spacing: 10px;
  638. }
  639. .paperplaneMyMarker2 {
  640. border: 1px solid #499DF2;
  641. width: 100%;
  642. color: #499DF2;
  643. border-radius: 2rem;
  644. font-size: 17px;
  645. text-align: center;
  646. padding: 5px 0;
  647. letter-spacing: 10px;
  648. }
  649. .displayFlex3 .paperplane {
  650. background-color: #499DF2;
  651. width: 100%;
  652. color: #FFFFFF;
  653. border-radius: 2rem;
  654. font-size: 17px;
  655. text-align: center;
  656. padding: 5px 0;
  657. letter-spacing: 10px;
  658. margin-left: 5px;
  659. }
  660. .displayFlex3 .paperplaneMyMarker2 {
  661. border: 1px solid #499DF2;
  662. width: 100%;
  663. color: #499DF2;
  664. border-radius: 2rem;
  665. font-size: 17px;
  666. text-align: center;
  667. padding: 5px 0;
  668. letter-spacing: 10px;
  669. margin-right: 5px;
  670. }
  671. #mapTextArea {
  672. width: 100%;
  673. border-radius: 5px;
  674. background-color: #F5F5F5;
  675. }
  676. .my-div-icon {
  677. animation-name: example;
  678. animation-duration: 2s;
  679. animation-iteration-count: infinite;
  680. /* box-shadow: 0 0 2px 3px #FFF; */
  681. }
  682. .my-div-icon2 {
  683. width: 10px;
  684. height: 10px;
  685. animation-name: example2;
  686. background-color: #FFbb00;
  687. animation-duration: 2s;
  688. border-radius: 50%;
  689. animation-iteration-count: infinite;
  690. box-shadow: 0 0 2px 3px #FFbb00cc;
  691. }
  692. /* 动画代码 */
  693. @keyframes example {
  694. 0% {
  695. opacity: 1;
  696. }
  697. 50% {
  698. opacity: 0.5;
  699. }
  700. 100% {
  701. opacity: 1;
  702. }
  703. }
  704. /* 动画代码 */
  705. @keyframes example2 {
  706. 0% {
  707. box-shadow: 0 0 2px 3px #FFbb00cc;
  708. }
  709. 100% {
  710. box-shadow: 0 0 2px 15px #FFbb0064;
  711. }
  712. }
  713. #myMarkerId,
  714. #addMyMarker {
  715. display: none;
  716. }
  717. .mui-poppicker {
  718. z-index: 9999 !important;
  719. }
  720. .mui-backdrop {
  721. z-index: 9998;
  722. position: fixed;
  723. top: 0;
  724. right: 0;
  725. bottom: 0;
  726. left: 0;
  727. background-color: rgba(0, 0, 0, .3);
  728. }
  729. /* .mui-backdrop::before{
  730. content: "图片过大,压缩中!!!";
  731. font-weight: bold;
  732. text-shadow: 1px 1px 3px black;
  733. position: absolute;
  734. left: 50%;
  735. top: 50%;
  736. color: #FFFFFF;
  737. transform: translate(-50%,-50%);
  738. } */
  739. .leaflet-left .leaflet-control {
  740. margin-left: 5px;
  741. }
  742. .leaflet-top .leaflet-control {
  743. margin-top: 55px;
  744. }
  745. /* .openMyPhoneMap {
  746. position: absolute;
  747. padding: 10px;
  748. top: 60px;
  749. right: 10px;
  750. color: #34c6d8;
  751. display: flex;
  752. align-items: center;
  753. } */