/* 重置默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: #0a0f1c;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 主容器 */
.download-container {
    min-height: 100vh;
    position: relative;
    background: url('../images/home/Group 1258-2.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* 背景装饰 */
.bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 178, 172, 0.15) 0%, rgba(56, 178, 172, 0.05) 30%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.bg-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 178, 172, 0.08) 0%, transparent 50%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite reverse;
}

/* 延迟指示器 */
.ping-indicator {
    position: absolute;
    background: rgba(56, 178, 172, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 178, 172, 0.3);
}

.ping-1 {
    top: 15%;
    left: 20%;
    animation: float 3s ease-in-out infinite;
}

.ping-2 {
    top: 25%;
    right: 15%;
    animation: float 3s ease-in-out infinite 0.5s;
}

.ping-3 {
    bottom: 30%;
    left: 15%;
    animation: float 3s ease-in-out infinite 1s;
}

.ping-4 {
    bottom: 20%;
    right: 20%;
    animation: float 3s ease-in-out infinite 1.5s;
}

/* 主要内容 */
.main-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

/* App信息区域 */
.app-info {
    margin-bottom: 40px;
}

.app-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.app-icon img {
    width: 120px;
    height: 120px;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(56, 178, 172, 0.3);
    animation: iconGlow 2s ease-in-out infinite alternate;
}

.ai-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #1a1a1a;
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    border: 2px solid #38b2ac;
    box-shadow: 0 2px 8px rgba(56, 178, 172, 0.5);
}

.app-name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

/* 标题区域 */
.title-section {
    margin-bottom: 40px;
}

.title-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 16px rgba(56, 178, 172, 0.3));
}

.subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.description {
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* 二维码区域 */
.qr-section {
    margin-bottom: 40px;
}

.qr-code {
    width: 160px;
    height: 160px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    /* background: #fff; */
    padding: 8px;
}

/* 下载按钮 */
.download-section {
    margin-top: 30px;
}

.download-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.6);
}

.download-btn:active {
    transform: translateY(0);
}

/* 动画效果 */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes iconGlow {
    0% {
        box-shadow: 0 8px 32px rgba(56, 178, 172, 0.3);
    }
    100% {
        box-shadow: 0 12px 48px rgba(56, 178, 172, 0.5);
    }
}

/* 响应式设计 */
@media (max-width: 480px) {
    .download-container {
        padding: 15px;
    }
    
    .app-icon img {
        width: 100px;
        height: 100px;
    }
    
    .app-name {
        font-size: 18px;
    }
    
    .description {
        font-size: 20px;
    }
    
    .qr-code {
        width: 140px;
        height: 140px;
    }
    
    .download-btn {
        font-size: 16px;
        padding: 12px 40px;
        min-width: 180px;
    }
    
    .ping-indicator {
        font-size: 10px;
        padding: 3px 6px;
    }
}

@media (max-width: 320px) {
    .app-icon img {
        width: 80px;
        height: 80px;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
    }
    
    .download-btn {
        font-size: 14px;
        padding: 10px 30px;
        min-width: 160px;
    }
}

/* 高度适配 */
@media (max-height: 600px) {
    .main-content {
        max-width: 350px;
    }
    
    .app-info {
        margin-bottom: 20px;
    }
    
    .title-section {
        margin-bottom: 20px;
    }
    
    .qr-section {
        margin-bottom: 20px;
    }
    
    .app-icon img {
        width: 80px;
        height: 80px;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
    }
} 
/* 微信提示页面样式 */
.wechat-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  z-index: 999999;
  flex-direction: column;
}

.wechat-content {
  text-align: center;
  bottom: 26vh;
}

.wechat-icon{
    height: 25vh;
}
.wechat-icon-box{
    display: flex;
    justify-content: flex-end;
}
.wechat-text p {
  font-size: 18px;
  color: #999;
  margin: 10px 0;
  font-weight: 500;
  line-height: 1.5;
}
