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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.coming-soon-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.logo-section {
    margin-bottom: 40px;
}

.logo h1 {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 2px;
}

.main-message {
    margin-bottom: 50px;
}

.main-message h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.main-message p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.progress-bar {
    width: 300px;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 4px;
    animation: progressAnimation 3s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 0%; }
}

.progress-text {
    font-size: 1.1rem;
    color: #888;
    font-weight: 500;
}

.contact-info {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
}

.company-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.company-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.icp-info {
    font-size: 0.9rem;
    color: #888;
}

.copyright {
    font-size: 0.9rem;
    color: #888;
}

.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.pet-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: floatAnimation 6s ease-in-out infinite;
}

.pet-icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.pet-icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.pet-icon-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.pet-icon-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(0px) rotate(-5deg); }
    75% { transform: translateY(20px) rotate(3deg); }
}

/* 响应式设计 - 平板设备 */
@media screen and (max-width: 1024px) {
    .container {
        padding: 15px;
    }
    
    .coming-soon-content {
        padding: 50px 30px;
    }
    
    .logo h1 {
        font-size: 3.5rem;
    }
    
    .main-message h2 {
        font-size: 2.2rem;
    }
    
    .main-message p {
        font-size: 1.2rem;
    }
    
    .footer-info {
        flex-direction: column;
        text-align: center;
    }
}

/* 响应式设计 - 手机设备 */
@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .coming-soon-content {
        padding: 40px 20px;
        border-radius: 15px;
        margin: 10px;
    }
    
    .logo h1 {
        font-size: 3rem;
        margin-bottom: 8px;
    }
    
    .logo-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .main-message {
        margin-bottom: 40px;
    }
    
    .main-message h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .main-message p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .progress-bar {
        width: 250px;
        height: 6px;
    }
    
    .progress-text {
        font-size: 1rem;
    }
    
    .contact-info {
        padding-top: 25px;
    }
    
    .company-info h3 {
        font-size: 1.2rem;
    }
    
    .company-info p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .footer-info {
        gap: 10px;
    }
    
    .icp-info, .copyright {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .pet-icon {
        font-size: 2rem;
    }
    
    .pet-icon-1 { top: 5%; left: 5%; }
    .pet-icon-2 { top: 15%; right: 8%; }
    .pet-icon-3 { bottom: 15%; left: 8%; }
    .pet-icon-4 { bottom: 5%; right: 5%; }
}

/* 响应式设计 - 小屏幕手机 */
@media screen and (max-width: 480px) {
    .coming-soon-content {
        padding: 30px 15px;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .main-message h2 {
        font-size: 1.5rem;
    }
    
    .main-message p {
        font-size: 1rem;
    }
    
    .progress-bar {
        width: 200px;
    }
    
    .company-info h3 {
        font-size: 1.1rem;
    }
    
    .icp-info, .copyright {
        font-size: 0.75rem;
    }
    
    .pet-icon {
        font-size: 1.5rem;
    }
}

/* 响应式设计 - 横屏模式 */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .coming-soon-content {
        padding: 20px 15px;
    }
    
    .logo-section {
        margin-bottom: 20px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .main-message {
        margin-bottom: 25px;
    }
    
    .main-message h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .main-message p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .progress-bar {
        width: 180px;
        height: 4px;
        margin-bottom: 10px;
    }
    
    .contact-info {
        padding-top: 15px;
    }
    
    .company-info h3 {
        font-size: 1rem;
    }
    
    .company-info p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .footer-info {
        gap: 5px;
    }
    
    .icp-info, .copyright {
        font-size: 0.7rem;
    }
}