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

body {
    font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    background: linear-gradient(135deg, #eae866 0%, #eae866 25%, #37dac7 50%, #d19354 75%, #3e59aa 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    color: #333;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(234, 215, 17, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 640px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* 头部样式 */
.header {
    padding: 8px 15px 8px;
    text-align: center;
}

.logo-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 180px;
    height: 45px;
}

.logo-image {
    width: 170px;
    height: 42px;
    object-fit: contain;
    border-radius: 12px;
    transition: opacity 0.3s ease-in-out; /* 淡入动画 */
}

.logo-image.loaded {
    opacity: 1; /* 加载完成后显示 */
}

.logo-image.loading {
    background: rgba(255, 255, 255, 0.1); /* 加载时的占位背景 */
    border: 1px dashed rgba(255, 255, 255, 0.3); /* 虚线边框表示加载中 */
}



.brand-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
}

.rotating-letter {
    display: inline-block;
    font-size: 28px;
    font-weight: bold;
    color: #fff200;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    animation: letterRotate 0.8s ease-in-out;
    min-width: 20px;
    text-align: center;
}

.fixed-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* 主要内容区域 */
.main-content {
    padding: 0 15px;
}

/* 轮播图横幅区域 */
.banner {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}



.carousel-slide img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: block; /* 确保图片完全填充 */
}



/* 轮播指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.indicator.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}


/* 音频提示 */
.audioo-noticee {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(14, 14, 14, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    margin-bottom: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.audioo-icon {
    font-size: 18px;
}

.marquee-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    /* 立即开始动画，无延迟 */
    animation: marqueeScroll 20s linear infinite running !important;
    opacity: 1 !important;
    /* 强制硬件加速 */
    transform: translate3d(0, 0, 0);
}

/* 立即开始的动画 */
@keyframes marqueeScroll {
    0% {
        transform: translate3d(100%, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}


/* 跑马灯文字样式 - 统一黑色 */
.noticee-text {
    font-size: 14px;
    color: #000 !important;
    font-weight: bold;
    white-space: nowrap;
    display: inline-block;
    text-shadow: none !important;
}

/* 强制所有跑马灯文字为黑色 - 最高优先级 */
.noticee-text,
.noticee-text *,
.noticee-text span,
.noticee-text div,
.noticee-text p,
.noticee-text .red-text,
.noticee-text .gradient-text,
.noticee-text span[class*="red"],
.noticee-text span[class*="green"],
.noticee-text span[class*="text"] {
    color: #000 !important;
    text-shadow: none !important;
    background: none !important;
    background-color: transparent !important;
    -webkit-text-fill-color: #000 !important;
    -webkit-text-stroke: none !important;
}

/* 强制覆盖所有内联样式 */
.noticee-text[style*="color"],
.noticeetext *[style*="color"] {
    color: #000 !important;
    text-shadow: none !important;
}

/* 跑马灯渐变动画 */
@keyframes gradientTextMarquee {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 下载区域 */
.download-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

/* iOS专用样式 */
.ios-link {
    background: rgba(255, 255, 255, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.ios-link .vip-icon {
    font-size: 18px;
    color: #007AFF !important;
}

.ios-btn {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.9), rgba(88, 86, 214, 0.9)) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.3) !important;
}

.download-row {
    display: flex;
    align-items: center;
    background: rgba(15, 15, 15, 0.2);
    backdrop-filter: blur(12px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    padding: 14px 20px; /* 增加内边距 */
    border-radius: 30px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-wrap: nowrap;
    gap: 1%;
}

.download-row:hover {
    background: rgba(219, 229, 81, 0.602);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.delay-info {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.8), rgba(0, 242, 254, 0.8));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 8px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: bold;
    width: 22%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    order: 1;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.398);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 22px;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 50%;
    height: 36px;
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
    order: 2;
    flex-shrink: 0;
}

.download-link:hover {
    background: rgba(61, 58, 58, 0.4);
    transform: scale(1.02);
}

.vip-icon {
    color: #ff6b3593;
    font-size: 16px;
}

.download-btn {
    background: linear-gradient(135deg, rgba(240, 185, 6, 0.883), rgba(236, 232, 7, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 22px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    width: 26%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    order: 3;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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



/* 底部信息 */
.footer {
    text-align: center;
    padding: 20px 15px;
    color: #fff;
    font-size: 12px;
    line-height: 1.6;
}

.footer p {
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.domain-info {
    font-weight: bold;
    color: #fff200;
    font-size: 14px;
}

.warning {
    color: #ffcccc;
    font-style: italic;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
    }
    

    
    /* 轮播控制按钮已移除 */
    


    
    .header {
        padding: 6px 15px 6px;
    }
    
    .logo {
        width: 150px;
        height: 38px;
    }
    
    .logo-image {
        width: 140px;
        height: 35px;
    }
    
    .brand-title {
        font-size: 20px;
    }
    
    .rotating-letter {
        font-size: 24px;
        min-width: 18px;
    }
    
    .fixed-text {
        font-size: 20px;
    }
    
    .audioo-noticee {
        padding: 10px 15px;
    }
    
    .noticee-text {
        font-size: 13px;
        color: #000 !important;
        font-weight: bold;
        text-shadow: none !important;
    }
    
    /* 移动端强制黑色文字 */
    .noticee-text,
    .noticee-text *,
    .noticee-text span,
    .noticee-text div,
    .noticee-text p,
    .noticee-text .red-text,
    .noticee-text .gradient-text,
    .noticee-text span[class*="red"],
    .noticee-text span[class*="green"],
    .noticee-text span[class*="text"] {
        color: #000 !important;
        text-shadow: none !important;
        background: none !important;
        background-color: transparent !important;
        -webkit-text-fill-color: #000 !important;
        -webkit-text-stroke: none !important;
    }
    

    .delay-info {
        width: 22%;
        height: 32px;
        padding: 6px;
        font-size: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        order: 1;
    }
    
    .download-link {
        width: 50%;
        height: 32px;
        font-size: 12px;
        padding: 6px 10px;
        gap: 6px;
        justify-content: center;
        order: 2;
    }
    
    .download-btn {
        width: 26%;
        height: 32px;
        font-size: 12px;
        padding: 6px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        order: 3;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.download-section .download-row {
    animation: fadeInUp 0.6s ease forwards;
}

.download-section .download-row:nth-child(1) { animation-delay: 0.1s; }
.download-section .download-row:nth-child(2) { animation-delay: 0.2s; }
.download-section .download-row:nth-child(3) { animation-delay: 0.3s; }
.download-section .download-row:nth-child(4) { animation-delay: 0.4s; }
.download-section .download-row:nth-child(5) { animation-delay: 0.5s; }
.download-section .download-row:nth-child(6) { animation-delay: 0.6s; }

/* 科技感背景动画 */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}



/* 渐变文字颜色动画 */
@keyframes gradientText {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* 光泽效果动画 */
@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* 字母轮训动画 */
@keyframes letterRotate {
    0% { 
        transform: rotateY(90deg) scale(0.8);
        opacity: 0;
    }
    50% { 
        transform: rotateY(45deg) scale(1.1);
        opacity: 0.7;
    }
    100% { 
        transform: rotateY(0deg) scale(1);
        opacity: 1;
    }
}

/* 跑马灯动画 */
@keyframes marquee {
    0% { 
        transform: translateX(100%);
    }
    100% { 
        transform: translateX(-100%);
    }
}

/* 无缝跑马灯动画 */
@keyframes marqueeSeamless {
    0% { 
        transform: translateX(100%);
    }
    100% { 
        transform: translateX(-100%);
    }
}

/* 装饰性粒子效果 */
.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px, 50px 50px;
    animation: float 25s infinite linear;
    pointer-events: none;
    z-index: -1;
}

.container::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(120, 119, 198, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
} 


  
  /* 轮播图样式 */
  .carousel-container {
    width: 100%;
    overflow: hidden;
  }
  
/* 客服样式 */
.servicee-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 50px;
    background: linear-gradient(135deg, #c86f92e5 0%, #6a73a6dd 100%);
    border: none;
    border-radius: 25px;
    color: rgb(254, 254, 254);
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    padding: 0 20px;
    text-decoration: none;
    position: relative;
    overflow: visible; /* 改为visible让波纹可见 */
    z-index: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; /* 加上字体 */
}

.servicee-icon {
    font-size: 20px;
    margin-right: 8px;
}

/* 悬停效果 */
.servicee-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

/* 按钮文字悬停效果 */
.servicee-btn:hover {
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

/* 按钮容器 */
.customerr-servicee {
    position: relative;
    margin-top: 35px;
    text-align: center;
    z-index: 1000;
    padding: 15px 0;
    font-family: inherit; /* 继承字体 */
}

/* 实心渐变波纹效果 */
.customerr-servicee::before,
.customerr-servicee::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 50px;
    border-radius: 25px;
    z-index: 0; /* 在按钮下方 */
    opacity: 0;
}

.customerr-servicee::before {
    background: linear-gradient(135deg, 
        rgba(178, 63, 109, 0.658) 0%, 
        rgba(106, 115, 166, 0.69) 100%);
    animation: solidRipple 2s ease-out infinite;
}

.customerr-servicee::after {
    background: linear-gradient(135deg, 
        rgba(106, 115, 166, 0.652) 0%, 
        rgba(178, 63, 109, 0.705) 100%);
    animation: solidRipple 2s ease-out infinite 1.5s; /* 延迟1.5秒 */
}

@keyframes solidRipple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
        filter: blur(0px);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5); /* 整体放大1.5倍 */
        opacity: 0;
        filter: blur(15px);
    }
}

  /* 轮播图样式 */
  .carousel-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; /* 保持16:9比例，可根据需要调整 */
  }
  
  .carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
  }
  
  
  .carousel-image {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  /* 导航按钮 */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 140px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
  

  }
  
  .carousel-btn-prev {
    left: 10px;
  }
  
  .carousel-btn-next {
    right: 10px;
  }
  
  .carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
  
    .carousel-indicator.active {
    background-color: #fff;
    transform: scale(1.2);
  }
  
  .carousel-indicator:hover {
      background-color: rgba(255, 255, 255, 0.8);
    }
  }
  
  /* 确保在最后一个下载行之后 */
  .download-row:last-of-type {
    margin-bottom: 0;
  }
  
  .customerr-servicee {
    margin-top: 20px; /* 调整这个值来改变距离 */
  }
  


/* 方案一：简约内联样式 */
.brandd-titlee {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
  }
  
  .fixed-start {
    color: #fff;
  }
  
  .rotatingg-letterr {
    display: inline-block;
    font-size: 28px;
    font-weight: bold;
    color: #fff200;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    min-width: 20px;
    text-align: center;
    animation: letterRotate 0.8s ease-in-out;
  }
  
  .fixed-end {
    color: #fff;
  }  

  /* 方案一：霓虹灯效果 */
.footer {
    text-align: center;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
  }
  
  .domain-info {
    font-size: 38px;
    font-weight: 900;
    color: #00ffea;
    text-shadow: 
      0 0 15px #00ffea,
      0 0 30px #00ffea,
      0 0 45px #00ffea;
    letter-spacing: 5px;
    margin: 15px 0;
    animation: neonPulse 1.5s ease-in-out infinite alternate;
    text-transform: uppercase;
  }
  
  .contact-email {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 20px 0;
  }
  
  .email-link {
    color: #d9ff00;
    text-decoration: none;
    font-weight: normal;
    text-shadow: 
      0 0 10px #ff00ff74,
      0 0 20px #ff00ff7c;
    transition: all 0.3s ease;
  }
  
  .email-link:hover {
    color: #ffffff;
    text-shadow: 
      0 0 15px #ff00ff,
      0 0 30px #ff00ff,
      0 0 45px #ff00ff;
  }
  
  .email-link b {
    font-weight: 900;
    animation: emailGlow 2s ease-in-out infinite;
  }
  
  @keyframes neonPulse {
    0% {
      text-shadow: 
        0 0 10px #00ffea,
        0 0 20px #00ffea,
        0 0 30px #00ffea;
    }
    100% {
      text-shadow: 
        0 0 20px #00ffea,
        0 0 40px #00ffea,
        0 0 60px #00ffea,
        0 0 80px #00ffea;
    }
  }
  
