/*
#	Project: PHPDisk - 网盘系统
#	This is NOT a freeware, use is subject to license terms.
#	Website: http://www.phpdisk.com
#	Author: PHPDisk Dev Team
#	Copyright (C) 2015-2025 PHPDisk. All Rights Reserved.
*/

/* 确保 Boxicons 图标正确显示 */
.bx, i.bx, [class*="bx-"] {
    font-family: 'boxicons' !important;
    font-weight: 400 !important;
    font-style: normal !important;
    display: inline-block !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    speak: none !important;
    text-transform: none !important;
}

/* 确保 :before 伪元素也使用正确的字体 */
.bx:before, 
i.bx:before, 
[class*="bx-"]:before,
.bx::before, 
i.bx::before, 
[class*="bx-"]::before {
    font-family: 'boxicons' !important;
    font-weight: 400 !important;
    font-style: normal !important;
    display: inline-block !important;
    line-height: 1 !important;
    speak: none !important;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* 确保图标在白色背景上也能显示 */
.bg-white.bg-opacity-20 .bx,
.bg-white.bg-opacity-20 i.bx,
.bg-white.bg-opacity-20 .bx:before,
.bg-white.bg-opacity-20 i.bx:before,
.bg-white.bg-opacity-20 .bx::before,
.bg-white.bg-opacity-20 i.bx::before {
    font-family: 'boxicons' !important;
    color: inherit !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

/* 强制显示图标伪元素 */
i.bx.bx-cog:before,
i.bx.bx-palette:before,
i.bx.bx-support:before,
i.bx.bx-award:before,
i.bx.bx-cog::before,
i.bx.bx-palette::before,
i.bx.bx-support::before,
i.bx.bx-award::before {
    font-family: 'boxicons' !important;
    display: inline-block !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

/* Hero 区域 */
.hero-section {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    padding: 10px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    margin-top: -30px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* 浮动粒子 */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float-up 15s infinite;
}
.particle:nth-child(1) { width: 80px; height: 80px; left: 5%; animation-delay: 0s; }
.particle:nth-child(2) { width: 40px; height: 40px; left: 15%; animation-delay: 2s; }
.particle:nth-child(3) { width: 60px; height: 60px; left: 35%; animation-delay: 4s; }
.particle:nth-child(4) { width: 30px; height: 30px; left: 50%; animation-delay: 1s; }
.particle:nth-child(5) { width: 50px; height: 50px; left: 70%; animation-delay: 3s; }
.particle:nth-child(6) { width: 70px; height: 70px; left: 85%; animation-delay: 5s; }
.particle:nth-child(7) { width: 25px; height: 25px; left: 25%; animation-delay: 6s; }
.particle:nth-child(8) { width: 45px; height: 45px; left: 60%; animation-delay: 7s; }

@keyframes float-up {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    transition: all 0.3s ease;
}
.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

/* 云朵插画 */
.hero-illustration {
    position: relative;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* 云存储动画图 */
.cloud-animation {
    position: relative;
    width: 420px;
    height: 380px;
    margin: 0 auto;
}

/* 主云朵 */
.cloud-main {
    position: absolute;
    width: 300px;
    height: 120px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 60px;
    top: 140px;
    left: 60px;
    box-shadow: 0 30px 60px var(--shadow-color);
    animation: cloud-breathe 4s ease-in-out infinite;
}
.cloud-main::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    top: -70px;
    left: 40px;
}
.cloud-main::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    top: -50px;
    right: 50px;
}
@keyframes cloud-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* 上传箭头 */
.upload-arrow {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    animation: arrow-float 2s ease-in-out infinite;
}
.upload-arrow i {
    font-size: 48px;
    color: #fff;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
@keyframes arrow-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

/* 小云朵 */
.cloud-small {
    position: absolute;
    background: rgba(255,255,255,0.9);
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.cloud-small-1 {
    width: 90px;
    height: 45px;
    top: 30px;
    right: 20px;
    animation: cloud-drift-1 5s ease-in-out infinite;
}
.cloud-small-1::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    top: -18px;
    left: 18px;
}
.cloud-small-2 {
    width: 70px;
    height: 35px;
    top: 80px;
    left: 0;
    animation: cloud-drift-2 6s ease-in-out infinite;
}
.cloud-small-2::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    top: -14px;
    left: 14px;
}
@keyframes cloud-drift-1 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(12px); }
}
@keyframes cloud-drift-2 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

/* 文件卡片 */
.file-card {
    position: absolute;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.file-card i {
    font-size: 28px;
}
.file-card-1 {
    width: 55px;
    height: 65px;
    bottom: 70px;
    left: 15px;
    animation: file-bounce-1 3s ease-in-out infinite;
}
.file-card-1 i { color: #f59e0b; }
.file-card-2 {
    width: 55px;
    height: 65px;
    bottom: 30px;
    left: 55px;
    animation: file-bounce-2 3s ease-in-out infinite 0.3s;
}
.file-card-2 i { color: #3b82f6; }
.file-card-3 {
    width: 55px;
    height: 65px;
    bottom: 60px;
    left: 95px;
    animation: file-bounce-3 3s ease-in-out infinite 0.6s;
}
.file-card-3 i { color: #ef4444; }
.file-card-4 {
    width: 50px;
    height: 60px;
    top: 40px;
    left: 50px;
    animation: file-bounce-4 4s ease-in-out infinite 0.2s;
}
.file-card-4 i { color: #8b5cf6; }
.file-card-5 {
    width: 50px;
    height: 60px;
    bottom: 80px;
    right: 20px;
    animation: file-bounce-5 3.5s ease-in-out infinite 0.4s;
}
.file-card-5 i { color: #06b6d4; }
.file-card-6 {
    width: 50px;
    height: 60px;
    top: 60px;
    right: 50px;
    animation: file-bounce-6 4s ease-in-out infinite 0.8s;
}
.file-card-6 i { color: #ec4899; }
@keyframes file-bounce-1 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-12px) rotate(0deg); }
}
@keyframes file-bounce-2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}
@keyframes file-bounce-3 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
}
@keyframes file-bounce-4 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
}
@keyframes file-bounce-5 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}
@keyframes file-bounce-6 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-8px) rotate(-1deg); }
}

/* 成功徽章 */
.success-badge {
    position: absolute;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 90px;
    right: 70px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    animation: badge-pulse 2s ease-in-out infinite;
}
.success-badge i {
    font-size: 24px;
    color: #fff;
}
@keyframes badge-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6); }
}

/* 上传进度条 */
.upload-progress {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    overflow: hidden;
}
.upload-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
    border-radius: 3px;
    animation: progress-fill 3s ease-in-out infinite;
}
@keyframes progress-fill {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

/* 云朵上的文字 */
.cloud-text {
    position: absolute;
    top: 185px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    animation: text-glow 2s ease-in-out infinite;
}
@keyframes text-glow {
    0%, 100% { opacity: 0.8; text-shadow: 0 2px 8px rgba(0,0,0,0.2); }
    50% { opacity: 1; text-shadow: 0 2px 15px rgba(255,255,255,0.4); }
}

/* 特性标签 */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}
.hero-tag {
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}
.hero-tag:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
.hero-tag i {
    margin-right: 5px;
}

/* 特性区域 */
.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-icon.blue { background: rgba(var(--primary-rgb), 0.1); color: var(--primary-color); }
.feature-icon.green { background: rgba(22, 163, 74, 0.1); color: #16a34a; }
.feature-icon.purple { background: rgba(147, 51, 234, 0.1); color: #9333ea; }
.feature-icon.orange { background: #ffedd5; color: #ea580c; }
.feature-icon.cyan { background: #cffafe; color: #0891b2; }
.feature-icon.pink { background: #fce7f3; color: #db2777; }

/* 案例展示 */
.case-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.case-card:hover {
    transform: scale(1.02);
}

.case-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* 统计数字 */
.stats-section {
    background: var(--dark-bg);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    color: rgba(255,255,255,0.7);
}

/* CTA 区域 */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 80px 0;
}

/* ============================================
   文件上传动画展示区域样式
   ============================================ */

/* 文件上传动画展示区域 */
.animation-col {
    margin-top: -30px;
    display: flex;
    align-items: flex-end;
}

.file-upload-animation-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 云朵存储容器 */
.cloud-storage-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 云朵主形状 */
.cloud-main-animation {
    position: absolute;
    width: 320px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: cloudFloat 4s ease-in-out infinite;
}

.cloud-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(37, 99, 235, 0.9) 100%);
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.cloud-shape-1 {
    width: 120px;
    height: 120px;
    top: 30px;
    left: 50px;
    animation: cloudPulse 3s ease-in-out infinite;
}

.cloud-shape-2 {
    width: 100px;
    height: 100px;
    top: 20px;
    right: 40px;
    animation: cloudPulse 3.5s ease-in-out infinite 0.3s;
}

.cloud-shape-3 {
    width: 140px;
    height: 140px;
    bottom: 20px;
    left: 30px;
    animation: cloudPulse 4s ease-in-out infinite 0.6s;
}

.cloud-shape-4 {
    width: 90px;
    height: 90px;
    bottom: 10px;
    right: 50px;
    animation: cloudPulse 3.2s ease-in-out infinite 0.9s;
}

.cloud-shape-5 {
    width: 110px;
    height: 110px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: cloudPulse 3.8s ease-in-out infinite 1.2s;
}

@keyframes cloudFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translate(-50%, -50%) translateY(-10px) rotate(1deg); 
    }
    50% { 
        transform: translate(-50%, -50%) translateY(-15px) rotate(0deg); 
    }
    75% { 
        transform: translate(-50%, -50%) translateY(-10px) rotate(-1deg); 
    }
}

@keyframes cloudPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.85; 
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    }
    50% { 
        transform: scale(1.08); 
        opacity: 1; 
        box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
    }
}

/* 已存储的文件图标 */
.stored-files {
    position: absolute;
    width: 320px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.stored-file-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(59, 130, 246, 0.2);
    animation: storedFileFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.stored-file-item:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.stored-file-item i {
    font-size: 28px;
    color: #3b82f6;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.stored-file-item:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.stored-file-item:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: 0.3s;
}

.stored-file-item:nth-child(3) {
    bottom: 25%;
    left: 30%;
    animation-delay: 0.6s;
}

.stored-file-item:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 0.9s;
}

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

/* 上传中的文件图标 */
.uploading-files {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.upload-file-item {
    position: absolute;
    bottom: 0;
    animation: fileUploadFly 4s ease-in-out infinite;
}

.file-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.file-icon-wrapper i {
    font-size: 32px;
    color: white;
    animation: fileIconSpin 1s linear infinite;
}

/* 文件类型图标背景颜色由JavaScript随机生成 */

.upload-trail {
    position: absolute;
    width: 3px;
    height: 120px;
    background: linear-gradient(to top, rgba(59, 130, 246, 0.9), rgba(96, 165, 250, 0.5), transparent);
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    animation: trailFade 4s ease-in-out infinite;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.upload-trail::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(59, 130, 246, 0.8);
    border-radius: 50%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    animation: trailDot 4s ease-in-out infinite;
}

@keyframes fileUploadFly {
    0% {
        bottom: -20px;
        opacity: 0;
        transform: translateX(0) scale(0.7) rotate(-5deg);
    }
    5% {
        opacity: 0.8;
    }
    15% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0deg);
    }
    50% {
        transform: translateX(0) scale(1.1) rotate(2deg);
    }
    85% {
        opacity: 1;
        transform: translateX(0) scale(0.9) rotate(-2deg);
    }
    95% {
        opacity: 0.5;
    }
    100% {
        bottom: 65%;
        opacity: 0;
        transform: translateX(0) scale(0.5) rotate(5deg);
    }
}

@keyframes fileIconSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes trailFade {
    0% {
        opacity: 0;
        height: 0;
    }
    10% {
        opacity: 0.9;
        height: 60px;
    }
    50% {
        opacity: 0.7;
        height: 120px;
    }
    90% {
        opacity: 0.3;
        height: 150px;
    }
    100% {
        opacity: 0;
        height: 180px;
    }
}

@keyframes trailDot {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0) scale(0.5);
    }
    10% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(60px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(120px) scale(0.8);
    }
}

/* 文件位置设置 */
.file-item-1 {
    left: 15%;
    animation-delay: 0s;
    animation-duration: 4s;
}

.file-item-2 {
    left: 30%;
    animation-delay: 0.7s;
    animation-duration: 4.2s;
}

.file-item-3 {
    left: 50%;
    animation-delay: 1.4s;
    animation-duration: 4.1s;
}

.file-item-4 {
    left: 70%;
    animation-delay: 2.1s;
    animation-duration: 4.3s;
}

.file-item-5 {
    left: 20%;
    animation-delay: 2.8s;
    animation-duration: 4s;
}

.file-item-6 {
    left: 65%;
    animation-delay: 3.5s;
    animation-duration: 4.2s;
}

/* 成功提示动画 */
.success-indicators {
    position: absolute;
    width: 320px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.success-check {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    animation: successPulse 2s ease-in-out infinite;
    opacity: 0;
}

.success-check i {
    font-size: 24px;
    color: white;
}

.success-check-1 {
    top: 25%;
    left: 25%;
    animation-delay: 1.5s;
}

.success-check-2 {
    top: 35%;
    right: 30%;
    animation-delay: 2.3s;
}

.success-check-3 {
    bottom: 30%;
    left: 35%;
    animation-delay: 3.1s;
}

@keyframes successPulse {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    20% {
        opacity: 1;
        transform: scale(1.2);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
    60% {
        opacity: 0.8;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

/* 上传进度指示 */
.upload-progress-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-animated {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 50%, #3b82f6 100%);
    background-size: 200% 100%;
    border-radius: 3px;
    animation: progressFlow 2s linear infinite;
}

@keyframes progressFlow {
    0% {
        width: 0%;
        background-position: 0% 0%;
        opacity: 0.8;
    }
    20% {
        width: 30%;
        background-position: 30% 0%;
        opacity: 1;
    }
    50% {
        width: 80%;
        background-position: 80% 0%;
        opacity: 1;
    }
    80% {
        width: 100%;
        background-position: 100% 0%;
        opacity: 0.9;
    }
    100% {
        width: 0%;
        background-position: 200% 0%;
        opacity: 0.6;
    }
}

/* ============================================
   适用场景图标样式
   ============================================ */

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconFloat 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    overflow: visible;
}

.stat-icon i {
    font-size: 2.5rem;
    color: #fff;
    display: inline-block;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

/* 图标浮动动画 */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* 每个图标延迟不同的动画时间和不同的蓝色渐变 */
.stat-item:nth-child(1) .stat-icon {
    animation-delay: 0s;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.stat-item:nth-child(2) .stat-icon {
    animation-delay: 0.5s;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.stat-item:nth-child(3) .stat-icon {
    animation-delay: 1s;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.stat-item:nth-child(4) .stat-icon {
    animation-delay: 1.5s;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

/* 悬停效果 */
.stat-item:hover .stat-icon {
    transform: translateY(-10px) scale(1.1);
    animation-play-state: paused;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.stat-item:hover .stat-icon i {
    transform: scale(1.1);
}

/* 图标脉冲效果 - 圆形外圈 */
.stat-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.5s ease;
    z-index: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

.stat-item:hover .stat-icon::before {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.5);
    animation-play-state: paused;
}

/* 旋转的圆形边框装饰 */
.stat-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.6);
    border-right-color: rgba(255, 255, 255, 0.4);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    border-left-color: rgba(255, 255, 255, 0.3);
    animation: iconRotate 3s linear infinite;
    z-index: 0;
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 为每个图标添加不同的旋转速度和方向 */
.stat-item:nth-child(1) .stat-icon::after {
    animation-duration: 3s;
}

.stat-item:nth-child(2) .stat-icon::after {
    animation-duration: 4s;
    animation-direction: reverse;
}

.stat-item:nth-child(3) .stat-icon::after {
    animation-duration: 2.5s;
}

.stat-item:nth-child(4) .stat-icon::after {
    animation-duration: 3.5s;
    animation-direction: reverse;
}

/* 图标内圈光晕效果 - 通过box-shadow实现 */
.stat-icon i {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

.stat-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-desc {
    color: rgba(255,255,255,0.8);
}

/* ============================================
   移动端响应式优化
   ============================================ */

@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Hero区域 */
    .hero-section {
        padding: 0.5rem 0 2rem 0;
        margin-top: -15px;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem !important;
        line-height: 1.6;
    }
    
    .hero-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-tags {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .hero-tag {
        font-size: 0.8125rem;
        padding: 0.375rem 0.75rem;
    }
    
    /* 文件上传动画区域 */
    .animation-col {
        margin-top: -20px;
    }
    
    .file-upload-animation-wrapper {
        height: 350px;
        min-height: 350px;
        margin-top: 1.5rem;
    }
    
    .cloud-main-animation {
        width: 240px;
        height: 135px;
    }
    
    .cloud-shape-1 {
        width: 90px;
        height: 90px;
        top: 20px;
        left: 40px;
    }
    
    .cloud-shape-2 {
        width: 75px;
        height: 75px;
        top: 15px;
        right: 30px;
    }
    
    .cloud-shape-3 {
        width: 105px;
        height: 105px;
        bottom: 15px;
        left: 25px;
    }
    
    .cloud-shape-4 {
        width: 70px;
        height: 70px;
        bottom: 10px;
        right: 40px;
    }
    
    .cloud-shape-5 {
        width: 85px;
        height: 85px;
    }
    
    .stored-file-item {
        width: 40px;
        height: 40px;
    }
    
    .stored-file-item i {
        font-size: 22px;
    }
    
    .file-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .file-icon-wrapper i {
        font-size: 26px;
    }
    
    .success-check {
        width: 35px;
        height: 35px;
    }
    
    .success-check i {
        font-size: 20px;
    }
    
    .upload-progress-indicator {
        width: 150px;
        bottom: 20px;
    }
    
    /* 适用场景 */
    .stats-section {
        padding: 2rem 0;
    }
    
    .stat-item {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .stat-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .stat-icon i {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 1rem;
        margin-top: 0.75rem;
    }
    
    .stat-desc {
        font-size: 0.8125rem;
        margin-top: 0.5rem;
    }
    
    /* CTA区域 */
    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 0.9375rem;
    }
    
    .cta-section .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .file-upload-animation-wrapper {
        height: 280px;
        min-height: 280px;
    }
    
    .cloud-main-animation {
        width: 200px;
        height: 110px;
    }
    
    .cloud-shape-1 {
        width: 70px;
        height: 70px;
    }
    
    .cloud-shape-2 {
        width: 60px;
        height: 60px;
    }
    
    .cloud-shape-3 {
        width: 80px;
        height: 80px;
    }
    
    .cloud-shape-4 {
        width: 55px;
        height: 55px;
    }
    
    .cloud-shape-5 {
        width: 65px;
        height: 65px;
    }
    
    .stored-file-item {
        width: 35px;
        height: 35px;
    }
    
    .stored-file-item i {
        font-size: 18px;
    }
    
    .file-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .file-icon-wrapper i {
        font-size: 22px;
    }
    
    .stat-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .stat-icon i {
        font-size: 1.75rem !important;
    }
}

