| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- :root {
- --home-header-height: 44rem;
- --footer-height: 56rem;
- --footer-bottom-offset: 30rem;
- --footer-safe-gap: 22rem;
- --footer-safe-bottom: calc(var(--footer-bottom-offset) + var(--footer-height) + var(--footer-safe-gap));
- --main-bg: rgb(21, 23, 36);
- --second-btn-color: rgb(58, 58, 70);
- --footer-color: black;
- --mask-dark: #000000bb;
- --mask-light: rgba(0, 0, 0, 0.45);
- --second-text-color: #999;
- --mask-white: rgba(0, 0, 0, 0.4);
- --second-btn-color-tran: rgba(58, 58, 70, 0.4);
- --primary-btn-color: #fe2c55;
- }
- @font-face {
- font-family: jiangxizhuokai;
- src: url('@/assets/font/jiangxizhuokai.ttf') format('truetype');
- font-display: swap;
- }
- @font-face {
- font-family: SmileySans;
- src: url('@/assets/font/SmileySans-Oblique-2.ttf') format('truetype');
- font-display: swap;
- }
- * {
- user-select: none;
- -webkit-tap-highlight-color: transparent;
- }
- html,
- body {
- width: 100%;
- height: 100%;
- background: var(--main-bg);
- font-size: 1px;
- margin: 0;
- padding: 0;
- overflow: hidden;
- }
- #app {
- height: 100%;
- width: 100%;
- position: relative;
- font-size: 14rem;
- }
- .slide {
- touch-action: none;
- height: 100%;
- width: 100%;
- position: relative;
- overflow: hidden;
- .slide-list {
- height: 100%;
- width: 100%;
- display: flex;
- position: relative;
- }
- &.vertical {
- height: 100%;
- }
- }
- .flex-direction-column {
- flex-direction: column;
- }
- .global-notice {
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- background: rgba(0, 0, 0, 0.75);
- color: white;
- padding: 12rem 20rem;
- border-radius: 8rem;
- font-size: 14rem;
- z-index: 9999;
- }
- @font-face {
- font-family: "PangMenZhengDao";
- src: url("@/assets/font/PangMenZhengDao.TTF");
- }
- .ol-zoom {
- /*隐藏地图左上角的+-号*/
- display: none;
- }
|