        .chat-float {
            position: fixed;
            bottom: 90px;
            right: 20px;
            z-index: 999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            box-shadow: 0 4px 20px rgba(190, 0, 47, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .chat-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(190, 0, 47, 0.4);
        }

        .chat-icon {
            width: 28px;
            height: 28px;
            position: relative;
        }

        .chat-icon::before,
        .chat-icon::after {
            content: '';
            position: absolute;
            background-color: white;
        }

        .chat-icon::before {
            width: 22px;
            height: 18px;
            border-radius: 12px 12px 4px 4px;
            top: 4px;
            left: 3px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

        .chat-icon::after {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            top: 16px;
            left: 10px;
            box-shadow: 
                8px 0 0 white,
                16px 0 0 white;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 4px 20px rgba(190, 0, 47, 0.3);
            }
            50% {
                box-shadow: 0 4px 25px rgba(190, 0, 47, 0.5);
            }
            100% {
                box-shadow: 0 4px 20px rgba(190, 0, 47, 0.3);
            }
        }

        .footer-mobile {
            background-color: #f8f8f8;
            border-top: 1px solid #e5e5e5;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 998;
        }

        .footer-tabs {
            display: flex;
            justify-content: space-around;
            padding: 0.5rem 0;
        }

        .footer-tab {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #7d7d7d;
            flex: 1;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        .footer-tab.active {
            color: var(--primary);
        }

        .footer-tab:hover {
            color: var(--primary);
        }
        .tab-label {
            font-size: 0.75rem;
        }

        .footer-desktop {
            display: none;
            background-color: var(--background-alt);
            padding: 3rem 0 1.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-brand h3 {
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }

        .footer-brand p {
            color: var(--text-medium);
            max-width: 300px;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--background);
            color: var(--text-dark);
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .social-link:hover {
            background-color: var(--primary);
            color: white;
        }

        .footer-heading {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--text-medium);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding: 1.5rem 0;
            text-align: center;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* 响应式设计 */
        @media (min-width: 769px) {
            .footer-mobile {
                display: none;
            }
            
            .footer-desktop {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--background);
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow);
                transform: translateY(-100%);
                opacity: 0;
                transition: transform 0.3s ease, opacity 0.3s ease;
                z-index: 997;
                visibility: hidden;
                gap: 0;
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-menu li {
                width: 100%;
            }
            
            .nav-menu a {
                display: block;
                padding: 1rem 0;
                border-bottom: 1px solid var(--border);
            }
            
            .nav-menu a::after {
                display: none;
            }

            .header-actions {
                gap: 1rem;
            }

            .dropdown-content {
                position: static;
                box-shadow: none;
                display: none;
                padding-left: 1rem;
            }

            .dropdown:hover .dropdown-content {
                display: none;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

.list {
    width: 100%;
    margin: 20px 0;
}

.list ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* 添加这一行，允许所有屏幕尺寸下自动换行 */
}

.list a {
    text-decoration: none;
    color: #666;
    padding: 8px 16px;
    font-size: 0.8em;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: inline-block; /* 确保链接在换行时保持正确的盒模型 */
}

.list a:hover {
    color: #333;
    background-color: #f5f5f5;
}

/* 平板设备 */
@media (max-width: 768px) {
    .list ul {
        gap: 20px;
    }
    
    .list a {
        padding: 6px 12px;
        font-size: 0.75em;
    }
}

/* 移动设备 */
@media (max-width: 480px) {
    .list ul {
        gap: 15px;
    }
    
    .list a {
        padding: 5px 10px;
        font-size: 0.7em;
        white-space: normal; /* 允许文字换行 */
    }
}

/* 小屏手机 */
@media (max-width: 320px) {
    .list ul {
        gap: 10px;
        flex-direction: column; /* 垂直排列 */
        align-items: center;
    }
    
    .list a {
        padding: 8px 15px;
        font-size: 0.75em;
        text-align: center;
        width: 150px; /* 固定宽度 */
    }
}