
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
    background: #121212;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-image: 
        linear-gradient(to bottom, rgba(18,18,18,0.9), rgba(10,10,10,1));
}

.pageFooter {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pageFooter .logo {
    font-size: 4rem;
    font-weight: 900;
    color: #ff6a00;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.pageFooter .slogan {
    font-size: 1.8rem;
    color: #e0e0e0;
    margin-bottom: 50px;
    line-height: 1.6;
}

.pageFooter .highlight {
    color: #ff8d3f;
    font-weight: 700;
}

.pageFooter .stats-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.pageFooter .stat-item {
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    display: flex
;
    /* align-items: flex-start; */
    transition: all 0.3s ease;
    position: relative;
    flex-direction: column;
    width: 100%;
}

.pageFooter .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff6a00;
    margin-bottom: 10px;
}

.pageFooter .stat-label {
    font-size: 1.1rem;
    color: #b0b0b0;
}

/* 底部导航栏样式 */
.pageFooter .footer {
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255,106,0,0.3);
    padding: 60px 0 0;
    position: relative;
    text-align: left;
}

.pageFooter .footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pageFooter .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.pageFooter .footer-column h3 {
    font-size: 1.4rem;
    color: #ff6a00;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pageFooter .contact-icons {
    display: flex;
    gap: 15px;
}

.pageFooter .footer-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.pageFooter .tg-icon {
    background: rgba(0, 136, 204, 0.2);
    color: #0088cc;
}

.pageFooter .wa-icon {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
}

.pageFooter .footer-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.pageFooter .wa-icon:hover {
    background: rgba(37, 211, 102, 0.4);
}

.pageFooter .tg-icon:hover {
    background: rgba(0, 136, 204, 0.4);
}

.pageFooter .footer-links {
    list-style: none;
}

.pageFooter .footer-links li {
    margin-bottom: 15px;
}

.pageFooter .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    display: block;
}

.pageFooter .footer-links a:hover {
    color: #ff8d3f;
    transform: translateX(5px);
}

.pageFooter .blog-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
}

.pageFooter .blog-list li:before {
    content: "》";
    position: absolute;
    left: 0;
    color: #ff8d3f;
}

.pageFooter .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pageFooter .legal-links {
    display: flex;
    gap: 30px;
}

.pageFooter .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pageFooter .legal-links a:hover {
    color: #ff8d3f;
}

/* 返回顶部浮动按钮 */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, #ff6a00, #ff8d3f);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,106,0,0.4);
    opacity: 0.9;
}

.back-to-top:hover {
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255,106,0,0.6);
}

.pageFooter .copyright {
    color: #b0b0b0;
    font-size: 0.9rem;
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.hero-content{
    width: 100%;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .pageFooter .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pageFooter .stats-container {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .pageFooter .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .pageFooter .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    
    .back-to-top {
        bottom: 25px;
        right: 20px;
        padding: 12px 25px;
    }
    
    .pageFooter .hero-content {
        padding: 0 15px;
    }
    
    .pageFooter .logo {
        font-size: 2.8rem;
        display: flex;
        justify-content: center;
    }
    
    .pageFooter .slogan {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 20px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}