<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    overflow: hidden;
}

.mobile {
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000;

}

.header {
    width: 100%;
    background: rgba(0, 0, 0, .4);
    height: 20vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 10;
}

.headerBox {
    display: flex;
    justify-content: center;
    margin: 4vw;
    height: 20vw;
    width: 100%;
    padding-top: 4vw;
}

.tab-container {
    display: flex;
    justify-content: space-around;
    background-color: black;
    width: 100%;
    margin-top: 5vw;
    position: fixed;
    top: 20vw;
    z-index: 9;
}

.tab-item {
    color: white;
    font-size: 4vw;
    cursor: pointer;
    padding: 10px 20px;
}

.tab-item.active {
    background: #e2bd9d;
    border-radius: 0.16rem;
    width: 30vw;
    text-align: center;
}

.content-container {
    position: relative;
    width: 100%;
    margin-top: 40vw;
    overflow-y: auto;
    flex-grow: 1;
}

.content-container img {
    width: 100%;
    height: auto;
    padding: 0 40px 40px 40px;
    display: none;
    transition: opacity 0.3s ease-in-out;
}

.content-container img.active {
    display: block;
    opacity: 1;
}

.floating {
    position: fixed;
    right: 2vw;
    top: 55vw;
    z-index: 20;
    width: 15vw;
}

.floatingContent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    padding: 1vw 0;
    grid-template-rows: 1fr 1fr;
}

.btn1,
.btn3 {
    width: 100%;
    height: 100%;
}

.iosTip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}



.footer {
    position: fixed;
    height: 20vw;
    width: 100%;
    left: 0;
    bottom: 0;
    background: url("../js/bottomBg.js?v=2") no-repeat;
    background-size: 100% 100%;
    z-index: 10;
}


/* ... */
.footer-area {
    bottom: 0;
}

.footer-area {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9;
    padding-top: 2vw;
}

.app {
    padding: 0.2rem;
    margin-bottom: 7px;
}

.app {
    display: flex;
    width: 100%;
    margin: auto;
    justify-content: space-between;
    /* padding-bottom: .8rem; */
}

.footer-area .app-logo-android img, .footer-area .app-logo-ios img {
    width: 31vw;
}

.footer-area .dl-title img {
    width: 45vw;
}

/* ä¸ºä¸åŒç±»åž‹çš„å›¾ç‰‡è®¾ç½®ä¸åŒçš„æ&nbsp;·å¼ */
.footer-area .app-logo-android img, .footer-area .app-logo-ios img {
    border-radius: 50%; /* å°†è¿™äº›ç‰¹å®šæŒ‰é’®è®¾ä¸ºæ¤­åœ†å½¢ */
}

.footer-area img {
    width: 80%;
    display: block;
    margin: auto;
    padding: .1rem;
    margin-bottom: 50px;
    /* åŸºæœ¬æ&nbsp;·å¼ */
    position: relative;
    z-index: 1;
    animation: button-glow 3s infinite ease-in-out;
    box-shadow: 0 0 12px 5px rgba(255, 255, 255, 0.6), /* å‡å°‘ç¬¬ä¸€å±‚ç™½å…‰å¼ºåº¦ */
                0 0 20px 8px rgba(255, 255, 255, 0.4); /* å‡å°ç¬¬äºŒå±‚æ‰©æ•£æ•ˆæžœ */
}

/* å¦‚æžœéœ€è¦æ›´æ‰å¹³çš„æ¤­åœ†ï¼Œå¯ä»¥ä½¿ç”¨è¿™ä¸ªæ&nbsp;·å¼ï¼ˆé€šè¿‡ç™¾åˆ†æ¯”æŽ§åˆ¶æ¤­åœ†ç¨‹åº¦ï¼‰ */
.footer-area .app-logo-android img, .footer-area .app-logo-ios img {
    border-radius: 18% / 50%; /* æ°´å¹³/åž‚ç›´åŠå¾„ï¼Œå¯æ&nbsp;¹æ®å®žé™…å½¢çŠ¶è°ƒæ•´ */
}

/* å‘å…‰æ•ˆæžœçš„åŠ¨ç”» */
@keyframes button-glow {
    0% {
        box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.4),
                   0 0 12px 4px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 12px 5px rgba(255, 255, 255, 0.6),
                   0 0 20px 8px rgba(255, 255, 255, 0.4);
    }
    100% {
        box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.4),
                   0 0 12px 4px rgba(255, 255, 255, 0.2);
    }
}
</pre></body></html>