:root {
    /* 亮色主题变量 */
    --primary-color: #0066cc;
    --text-color: #1d1d1f;
    --bg-color: #fbfbfd;
    --card-bg: #ffffff;
    --border-color: #d2d2d7;
    --secondary-text: #86868b;
    --card-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    --item-bg: rgba(0, 0, 0, 0.02);
    --item-hover-bg: rgba(0, 0, 0, 0.03);
    --notice-bg: rgba(0, 0, 0, 0.05);
    --version-badge-bg: rgba(0, 102, 204, 0.1);
    --version-badge-color: #0066cc;
    --button-hover-bg: #0055aa;
    --alt-button-bg: rgba(0, 0, 0, 0.05);
    --alt-button-color: #1d1d1f;
    --alt-button-hover-bg: rgba(0, 0, 0, 0.08);
}

@media (prefers-color-scheme: dark) {
    :root {
        /* 暗色主题变量 */
        --primary-color: #2997ff;
        --text-color: #f5f5f7;
        --bg-color: #000000;
        --card-bg: #1c1c1e;
        --border-color: #424245;
        --secondary-text: #86868b;
        --card-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        --hover-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
        --item-bg: rgba(255, 255, 255, 0.05);
        --item-hover-bg: rgba(255, 255, 255, 0.08);
        --notice-bg: rgba(255, 255, 255, 0.1);
        --version-badge-bg: rgba(41, 151, 255, 0.15);
        --version-badge-color: #2997ff;
        --button-hover-bg: #0077cc;
        --alt-button-bg: rgba(255, 255, 255, 0.1);
        --alt-button-color: #f5f5f7;
        --alt-button-hover-bg: rgba(255, 255, 255, 0.15);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -.022em;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.header {
    text-align: center;
    margin-bottom: 64px;
    animation: fadeIn 1s ease-out;
}

.header h1 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

.header p {
    font-size: 20px;
    line-height: 1.5;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto 32px;
}

.github-link, .support-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background-color: var(--card-bg);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 10px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.github-link:hover, .support-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.github-link svg, .support-link svg {
    margin-right: 8px;
}

.github-link i, .support-link i {
    margin-right: 8px;
    font-size: 20px;
}

/* 版本信息部分 */
.version-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
    animation: fadeIn 1s ease-out;
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
    gap: 10px;
}

.version-badge {
    background-color: var(--version-badge-bg);
    color: var(--version-badge-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 16px;
    margin-right: 16px;
}

.release-date {
    color: var(--secondary-text);
    font-size: 16px;
}

/* 下载部分 */
.download-section {
    position: relative;
    z-index: 999999;
}

.download-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.download-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 20px 16px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.download-card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-4px);
}

.download-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--item-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.download-icon i {
    font-size: 26px;
    color: var(--primary-color);
}

.download-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.download-card p {
    color: var(--secondary-text);
    margin-bottom: 16px;
    font-size: 13px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.download-button:hover {
    background-color: var(--button-hover-bg);
    transform: translateY(-2px);
}

.download-button i {
    margin-right: 6px;
    font-size: 16px;
}

.download-button.alt {
    background-color: var(--alt-button-bg);
    color: var(--alt-button-color);
}

.download-button.alt:hover {
    background-color: var(--alt-button-hover-bg);
}

/* 功能部分 */
.features-section {
    margin-bottom: 64px;
    animation: fadeIn 1s ease-out;
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.features-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hover-shadow);
}

.feature-icon {
    margin-bottom: 16px;
    color: var(--primary-color);
}

.feature-icon i {
    font-size: 40px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--secondary-text);
    line-height: 1.5;
}

/* 评价部分 */
.review-section {
    margin-bottom: 64px;
    animation: fadeIn 1s ease-out;
    animation-delay: 0.5s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.review-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

/* 横向自动滚动的评价容器 */
.reviews-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
    margin: 0 auto;
    max-width: calc(100% - 40px); /* 确保两侧有足够的边距 */
}

.reviews-scroll {
    display: flex;
    transition: transform 0.3s ease-out;
    width: max-content;
    gap: 24px;
    cursor: grab; /* 表示可拖动 */
    padding: 10px 20px; /* 添加左右内边距 */
}

.reviews-scroll:active {
    cursor: grabbing; /* 拖动时的光标样式 */
    transition: none; /* 拖动时禁用过渡效果 */
}

.review-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    min-width: 300px;
    max-width: 350px;
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hover-shadow);
}

.review-stars {
    color: #ffcc00;
    font-size: 20px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.reviewer {
    color: var(--secondary-text);
    font-size: 14px;
}

.review-footer {
    text-align: center;
    margin-top: 40px;
}

.review-support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.review-support-link:hover {
    background-color: var(--button-hover-bg);
    transform: translateY(-2px);
}

/* 页脚部分 */
.footer {
    text-align: center;
    animation: fadeIn 1s ease-out;
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    color: var(--secondary-text);
    font-size: 14px;
}

/* 动画 */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .download-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
    }
    
    .download-card {
        padding: 16px 12px;
    }
    
    .download-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    
    .download-icon i {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 32px;
    }

    .header p {
        font-size: 16px;
        padding: 0 1rem;
    }

    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-card {
        padding: 24px;
    }
    
    .os-tab {
        flex-direction: column;
        padding: 12px 8px;
    }
    
    .os-tab svg {
        margin-right: 0;
        margin-bottom: 4px;
    }
    
    .os-tab i {
        margin-right: 0;
        margin-bottom: 4px;
    }
    
    .features-grid, .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .version-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .github-link, .support-link {
        display: block;
        margin: 10px auto;
        max-width: 240px;
    }

    .github-stats {
        flex-direction: column;
        gap: 10px;
    }

    .app-intro {
        padding: 24px;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .changelog-container {
        padding: 24px;
    }
    
    .reviews-container {
        padding: 0;
    }
    
    .review-card {
        min-width: 260px;
        max-width: 280px;
        padding: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .download-content {
        position: relative;
        height: auto;
    }
    
    .content-wrapper {
        padding: 28px;
    }
}

@media (min-width: 1025px) {
    .download-content {
        position: relative;
        height: auto;
    }
    
    .content-wrapper {
        padding: 32px;
    }
}

/* GitHub 统计信息 */
.github-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--item-bg);
    padding: 8px 16px;
    border-radius: 20px;
}

.stat-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.stat-count {
    font-weight: 600;
    color: var(--text-color);
}

.stat-label {
    color: var(--secondary-text);
    font-size: 14px;
}

/* 应用介绍部分 */
.app-intro {
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    margin-bottom: 64px;
    border: 1px solid var(--border-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.intro-desc {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.feature-group h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 18px;
}

.feature-group h3 i {
    color: var(--primary-color);
    font-size: 20px;
}

.feature-group p {
    color: var(--secondary-text);
    margin-bottom: 12px;
}

.feature-group ul {
    list-style: none;
    margin-left: 28px;
}

.feature-group ul li {
    position: relative;
    margin-bottom: 8px;
    color: var(--secondary-text);
}

.feature-group ul li::before {
    content: "•";
    position: absolute;
    left: -20px;
    color: var(--primary-color);
}

.intro-preview {
    margin-top: 30px;
    text-align: center;
}

.main-preview-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.5s ease;
}

.main-preview-image:hover {
    transform: scale(1.02);
}

/* 平台预览样式 */
.platform-preview {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--item-bg);
}

.platform-image {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: transform 0.5s ease;
}

.platform-preview:hover .platform-image {
    transform: scale(1.02);
}

.platform-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.platform-badge.web {
    background-color: rgba(41, 121, 255, 0.8);
}

.platform-badge.windows {
    background-color: rgba(0, 120, 215, 0.8);
}

.platform-badge.macos {
    background-color: rgba(134, 134, 134, 0.8);
}

.platform-badge.linux {
    background-color: rgba(233, 84, 32, 0.8);
}

/* 更新日志部分 */
.changelog-section {
    margin-bottom: 64px;
    animation: fadeIn 1s ease-out;
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.changelog-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.changelog-container {
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding: 40px;
}

.version-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.version-item:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.version-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
}

.version-header h3 {
    font-size: 20px;
    color: var(--primary-color);
}

.version-date {
    color: var(--secondary-text);
    font-size: 14px;
}

.changelog-list {
    list-style: none;
}

.changelog-list li {
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.changelog-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
}

.changelog-more {
    text-align: center;
    margin-top: 30px;
}

.changelog-more a {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.changelog-more a i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.changelog-more a:hover {
    text-decoration: underline;
}

.changelog-more a:hover i {
    transform: translateX(3px);
}

/* 响应式调整 */
@media (min-width: 1025px) {
    .app-intro {
        flex-direction: row;
    }

    .intro-content {
        flex: 2;
    }

    .intro-preview {
        flex: 1;
        margin-top: 0;
    }
}

/* 更新日志Markdown渲染样式 */
.changelog-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

.changelog-content h1,
.changelog-content h2,
.changelog-content h3,
.changelog-content h4,
.changelog-content h5,
.changelog-content h6 {
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    font-weight: 600;
    color: #222;
}

.changelog-content h1 { font-size: 1.6em; }
.changelog-content h2 { font-size: 1.4em; }
.changelog-content h3 { font-size: 1.2em; }
.changelog-content h4 { font-size: 1.1em; }
.changelog-content h5 { font-size: 1em; }
.changelog-content h6 { font-size: 0.9em; }

.changelog-content p {
    margin-bottom: 1em;
}

.changelog-content ul,
.changelog-content ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.changelog-content ul li {
    list-style-type: disc;
    margin-bottom: 0.5em;
}

.changelog-content ol li {
    list-style-type: decimal;
    margin-bottom: 0.5em;
}

.changelog-content a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s;
}

.changelog-content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.changelog-content code {
    font-family: 'Courier New', monospace;
    background-color: #f5f5f5;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 0.9em;
}

.changelog-content pre {
    background-color: #f5f5f5;
    padding: 1em;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 1em;
}

.changelog-content pre code {
    background-color: transparent;
    padding: 0;
}

.changelog-content blockquote {
    border-left: 4px solid #ddd;
    padding-left: 1em;
    color: #666;
    margin-bottom: 1em;
}

.changelog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 1em 0;
}

.changelog-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
}

.changelog-content table th,
.changelog-content table td {
    border: 1px solid #ddd;
    padding: 0.5em;
}

.changelog-content table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.changelog-content hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 1.5em 0;
}

/* 响应式调整 */
@media (min-width: 1025px) {
    .app-intro {
        flex-direction: row;
    }

    .intro-content {
        flex: 2;
    }

    .intro-preview {
        flex: 1;
        margin-top: 0;
    }
}

/* 下拉菜单样式 */
.dropdown-container {
    position: relative;
    width: 100%;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.dropdown-icon {
    margin-left: 8px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.dropdown-container:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--hover-shadow);
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999999;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--item-hover-bg);
}

.dropdown-item i {
    margin-right: 8px;
    font-size: 16px;
    color: var(--primary-color);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 12px;
        padding: 0;
        border-top: 1px solid var(--border-color);
    }
    
    .dropdown-toggle {
        display: none;
    }
    
    .dropdown-item {
        margin-bottom: 8px;
        border-radius: 8px;
        background-color: var(--alt-button-bg);
    }
    
    .dropdown-item:last-child {
        margin-bottom: 0;
    }
    
    .download-grid {
        grid-template-columns: repeat(1, 1fr);
    }
} 

.download-tip-donate-link{
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-tip-donate-link-text{
  /* 按钮 */
  color: #4CAF50;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 4px;
  background-color: #94949475;
  margin: 40px 0;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}

.download-tip-donate-link-text .desc{
  font-size: 14px;
  color: #bbbbbb;
}

/* 二维码区域 */
.qr-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.qr-card {
  background: var(--card-bg);
  border-radius: 1.2rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: cardFloat 1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  border: 1px solid var(--border-color);
}

.qr-card:nth-child(2) {
  animation-delay: 0.2s;
}

.qr-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--hover-shadow);
}

.qr-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-card-content h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
}

.qr-card p {
  color: var(--secondary-text);
  margin-top: 1rem;
  font-size: 1rem;
}

.qr-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  background-color: white;
  padding: 0;
  border-radius: 0;
  -webkit-touch-callout: default;
  -webkit-user-select: auto;
  user-select: auto;
  pointer-events: auto;
}

.qr-image-wrapper {
  background: white;
  padding: 0.8rem;
  border-radius: 1rem;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
  margin: 1rem 0;
  border: 1px solid var(--border-color);
}

.wechat-search {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}

.wechat-search-text {
  font-size: 1.2rem;
}

/* 添加下载提示弹窗的样式 */
.download-tip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    z-index: 999999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 400px;
    max-width: 600px;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    animation: zoomIn 0.3s ease forwards;
}

.download-tip.active {
    opacity: 1;
    pointer-events: auto;
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

#download-tip-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

#download-tip-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

#download-tip-status-content {
    display: flex;
    z-index: 99999;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.download-tip-qrcode {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.download-tip-qrcode-title {
    margin-bottom: 15px;
    font-size: 16px;
}

.download-tip-qrcode-image {
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-tip-qrcode-image img {
    max-width: 130px;
    max-height: 130px;
}

.download-tip-qrcode-desc {
    margin-top: 10px;
    font-size: 14px;
    color: #aaa;
}

.download-tip a {
    color: #4CAF50;
    text-decoration: underline;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    background-color: rgba(76, 175, 80, 0.1);
}

.download-tip a:hover {
    background-color: rgba(76, 175, 80, 0.2);
}