<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* å…¨å±€å˜é‡ */
:root {
    --primary-color: #1e90ff;
    --secondary-color: #ff3e00;
    --text-color: #333;
    /* --bg-color: #fff;
    --light-bg: #f5f5f5; */
    /* --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.2); */
    --border-radius-sm: 15px;
    --border-radius-md: 20px;
    --border-radius-lg: 30px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease-in-out;
    --max-width: 750px;
    --link-item-width: 70%; /* æŽ§åˆ¶é“¾æŽ¥é¡¹çš„å®½åº¦ï¼Œæ”¹ä¸º70%ä½¿å…¶æ›´çŸ­ */
    --container-padding: 15px 20px 15px 15px; /* å³ä¾§å¤šä¸€ç‚¹paddingï¼Œä¸ºæŒ‰é’®ç•™å‡ºç©ºé—´ */
    --link-gap: 10px; /* é“¾æŽ¥é¡¹ä¸ŽæŒ‰é’®ä¹‹é—´çš„é—´è· */
    --button-width: 70px; /* æŒ‰é’®çš„å›ºå®šå®½åº¦ */
    --overlay-max-width: 700px;  /* ç¡®ä¿ä¸è¶…è¿‡å›¾ç‰‡å®½åº¦750px */
    --overlay-max-height: 500px; /* ç¡®ä¿ä¸è¶…è¿‡å›¾ç‰‡é«˜åº¦529px */
}

/* é‡ç½®æ&nbsp;·å¼ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* åŸºç¡€æ&nbsp;·å¼ */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--light-bg);
    padding-bottom: 60px; /* ä¸ºåº•éƒ¨å›ºå®šbanneré¢„ç•™ç©ºé—´ */
    color: var(--text-color);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    overflow: hidden;
    background-color: var(--bg-color);
}

.content-area {
    padding: 0;
    /* ä¸å†éœ€è¦ä¸ºåº•éƒ¨æœåŠ¡é“¾æŽ¥é¢„ç•™ç©ºé—´ */
}

/* å›ºå®šåœ¨åº•éƒ¨çš„banner */
.fixed-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* ç¡®ä¿æ˜¾ç¤ºåœ¨æœ€ä¸Šå±‚ */
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* å›¾ç‰‡å“åº”å¼å¤„ç† */
.image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.responsive-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.responsive-img.loaded {
    opacity: 1;
}

/* å®šä¹‰æ”¾å¤§ç¼©å°åŠ¨ç”» */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* å®šä¹‰ç«‹å³è®¿é—®æŒ‰é’®çš„ç¼©æ”¾åŠ¨ç”» */
@keyframes visitButtonPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* é£˜çª—å®¢æœæ&nbsp;·å¼ */
.floating-service {
    position: fixed;
    right: 15px;
    bottom: 50%;
    transform: translateY(50%);
    z-index: 1001; /* ç¡®ä¿æ˜¾ç¤ºåœ¨bannerä¸Šæ–¹ */
    cursor: pointer;
    transition: all var(--transition-normal);
}

.floating-service:hover {
    transform: translateY(50%) scale(1.05);
}

.floating-service a {
    display: block;
    text-decoration: none;
}

.service-icon {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    animation: pulse 2s infinite ease-in-out;
}

/* åª’ä½“æŸ¥è¯¢ - é€‚é…ä¸åŒæ‰‹æœºå°ºå¯¸ */
/* iPhone SE, 5, 5S (320px) */
@media only screen and (max-width: 320px) {
    body {
        padding-bottom: 50px;
    }
    .service-icon {
        width: 50px;
    }
    .floating-service {
        right: 10px;
    }
    .overlay-links {
        width: 90%;
        padding: 10px;
    }
    .overlay-links .link-item {
        height: 30px;
    }
    .overlay-links .speed-badge {
        min-width: 40px;
        font-size: 12px;
    }
    .overlay-links .url {
        font-size: 12px;
    }
    .overlay-links .visit-button {
        font-size: 11px;
        padding: 3px 6px;
        width: 60px;
    }
}

/* iPhone 6, 7, 8 (375px) */
@media only screen and (min-width: 321px) and (max-width: 375px) {
    /* å·²ç»é€‚é…è‰¯å¥½ */
}

/* iPhone X, XS, 11 Pro, 12 mini (375px but taller) */
@media only screen and (min-width: 321px) and (max-width: 375px) and (min-height: 812px) {
    body {
        padding-bottom: 65px;
    }
}

/* iPhone 6+, 7+, 8+ (414px) */
@media only screen and (min-width: 376px) and (max-width: 414px) {
    /* å·²ç»é€‚é…è‰¯å¥½ */
}

/* iPhone XR, XS Max, 11, 11 Pro Max (414px but taller) */
@media only screen and (min-width: 376px) and (max-width: 414px) and (min-height: 896px) {
    body {
        padding-bottom: 70px;
    }
}

/* æ›´å¤§å°ºå¯¸æ‰‹æœºå’Œå°å¹³æ¿ */
@media only screen and (min-width: 415px) {
    .container {
        max-width: 100%;
    }
    .service-icon {
        width: 70px;
    }
    body {
        padding-bottom: 80px;
    }
}

/* å›¾ç‰‡å¸¦é“¾æŽ¥å&nbsp;åŠ&nbsp;æ&nbsp;·å¼ */
.image-with-overlay {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-links {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: var(--overlay-max-width);
    max-height: var(--overlay-max-height);
    overflow-y: auto; /* å†…å®¹è¶…å‡ºæ—¶æ˜¾ç¤ºæ»šåŠ¨æ¡ */
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

/* ä¿®æ”¹å®¹å™¨å†…éƒ¨çš„å¯¹é½æ–¹å¼ */
.overlay-links .link-container {
    padding-left: 0;
}

/* é“¾æŽ¥åˆ—è¡¨ä¿®æ”¹ - æ–°çš„åŒ…è£…å™¨æ&nbsp;·å¼ */
.link-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* å‡å°é—´è·ï¼Œç¡®ä¿å†…å®¹ç´§å‡‘ */
    position: relative;
    width: 100%;
    justify-content: space-between; /* å°†å†…å®¹æŽ¨å‘ä¸¤ç«¯ */
}

.overlay-links .link-item {
    height: 35px; /* å‡å°é«˜åº¦ */
    border-radius: var(--border-radius-md);
    border: 1px solid var(--primary-color);
    width: var(--link-item-width);
    margin-left: 0;
    margin-right: var(--link-gap);
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0;
}

.overlay-links .speed-badge {
    min-width: 45px; /* å‡å°å®½åº¦ */
    font-size: 13px; /* å‡å°å­—ä½“ */
}

.overlay-links .url {
    font-size: 13px; /* å‡å°å­—ä½“ */
    padding: 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
    text-align: center; /* æ–‡æœ¬å±…ä¸­å¯¹é½ */
    display: flex; /* ä½¿ç”¨å¼¹æ€§å¸ƒå±€ */
    align-items: center; /* åž‚ç›´å±…ä¸­ */
    justify-content: center; /* æ°´å¹³å±…ä¸­ */
}

.overlay-links .visit-button {
    padding: 4px 8px; /* å‡å°å†…è¾¹è· */
    font-size: 12px;
    border-radius: var(--border-radius-md);
    white-space: nowrap;
    align-self: center;
    width: var(--button-width);
    text-align: center;
    flex-shrink: 0;
    margin-left: auto; /* æŽ¨åˆ°æœ€å³ä¾§ */
    transition: transform var(--transition-fast);
    animation: visitButtonPulse 2s infinite ease-in-out;
    text-decoration: none; /* ç¡®ä¿é“¾æŽ¥æ²¡æœ‰ä¸‹åˆ’çº¿ */
    color: white; /* ä¿æŒæ–‡å­—é¢œè‰²ä¸ºç™½è‰² */
}

.overlay-links .visit-button:hover {
    transform: scale(1.05);
    animation: none; /* æ‚¬åœæ—¶åœæ­¢åŠ¨ç”» */
}

.overlay-links .visit-button:active {
    transform: scale(0.95);
}

/* é“¾æŽ¥åˆ—è¡¨æ&nbsp;·å¼ */
.link-container {
    width: 100%;
    max-width: 720px;
    margin: auto;
    padding: 10px 15px;
    background-color: var(--bg-color);
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: space-between; /* ä¸¤ç«¯å¯¹é½ */
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    height: 50px;
    border: 1px solid var(--primary-color);
}

.speed-badge {
    background: var(--primary-color);
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    min-width: 70px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.url {
    flex-grow: 1; /* å…è®¸URLå&nbsp;æ®å‰©ä½™ç©ºé—´ */
    padding: 0 20px;
    font-size: 16px;
    color: var(--text-color);
    text-align: left; /* æ–‡æœ¬å·¦å¯¹é½ */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.visit-button {
    background: linear-gradient(to bottom, #ff6a3d, var(--secondary-color));
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    margin-right: 15px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(255, 62, 0, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    white-space: nowrap;
    align-self: center;
}

/* ä¸‹è½½æŒ‰é’®æ&nbsp;·å¼ */
.download-btn {
    cursor: pointer;
}

.download-btn:hover {
    /* transform: scale(1.02); */
}

.download-btn:active {
    /* transform: scale(0.98); */
} </pre></body></html>