        :root {
            --primary-white: #ffffff;
            --secondary-dark: #1a1a1a;
            --accent-green: #00c853;
            --accent-orange: #ff6b00;
            --text-gray: #666666;
            --border-light: #e0e0e0;
            --hover-bg: #f5f5f5;
            --footer-dark: #0f0f0f;
            --footer-gray: #2a2a2a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans SC', sans-serif;
            background-color: #f8f9fa;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* 页脚主容器 */
        .site-footer {
            background-color: var(--footer-dark);
            color: white;
            margin-top: auto;
            position: relative;
            overflow: hidden;
        }

        /* 装饰性背景元素 */
        .footer-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(0, 200, 83, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 0, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        /* 顶部CTA区域 - 绿色渐变条 */
        .footer-cta {
            background: linear-gradient(135deg, var(--accent-green) 0%, #00a344 100%);
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .footer-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 120%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,0.03) 10px,
                rgba(255,255,255,0.03) 20px
            );
            animation: slide 20s linear infinite;
        }

        @keyframes slide {
            0% { transform: translateX(0); }
            100% { transform: translateX(50px); }
        }

        .cta-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .cta-text h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-text p {
            margin: 0;
            opacity: 0.9;
            font-size: 1rem;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-cta {
            background-color: white;
            color: var(--accent-green);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            color: var(--accent-green);
        }

        .btn-cta-outline {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-cta-outline:hover {
            background-color: white;
            color: var(--accent-green);
        }

        /* 主内容区域 */
        .footer-main {
            padding: 60px 0 40px;
            position: relative;
            z-index: 1;
        }

        .footer-brand {
            margin-bottom: 25px;
        }

        .footer-brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            text-decoration: none;
        }

        .brand-icon-footer {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-green) 0%, #00a344 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            transform: rotate(-5deg);
            transition: transform 0.3s;
        }

        .footer-brand-logo:hover .brand-icon-footer {
            transform: rotate(0deg) scale(1.1);
        }

        .brand-text {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            letter-spacing: 1px;
        }

        .brand-text span {
            color: var(--accent-green);
        }

        .footer-desc {
            color: #999;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        /* 订阅表单 */
        .subscribe-form {
            position: relative;
            margin-bottom: 30px;
        }

        .subscribe-input {
            width: 100%;
            background-color: var(--footer-gray);
            border: 2px solid transparent;
            border-radius: 30px;
            padding: 14px 50px 14px 20px;
            color: white;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .subscribe-input:focus {
            outline: none;
            border-color: var(--accent-green);
            background-color: rgba(255,255,255,0.05);
        }

        .subscribe-input::placeholder {
            color: #666;
        }

        .subscribe-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--accent-green);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .subscribe-btn:hover {
            background-color: var(--accent-orange);
            transform: translateY(-50%) scale(1.1);
        }

        /* 社交链接 */
        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 42px;
            height: 42px;
            background-color: var(--footer-gray);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.1rem;
            border: 1px solid transparent;
        }

        .social-link:hover {
            background-color: var(--accent-green);
            color: white;
            transform: translateY(-3px);
            border-color: var(--accent-green);
            box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
        }

        /* 链接栏目 */
        .footer-links-col {
            margin-bottom: 30px;
        }

        .footer-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--accent-green);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a i {
            font-size: 0.7rem;
            color: var(--accent-green);
            opacity: 0;
            transition: all 0.3s;
            transform: translateX(-5px);
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-links a:hover i {
            opacity: 1;
            transform: translateX(0);
        }

        /* 应用下载区域 */
        .app-download {
            background-color: var(--footer-gray);
            border-radius: 16px;
            padding: 25px;
            margin-top: 10px;
        }

        .app-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .app-title i {
            color: var(--accent-green);
        }

        .app-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .app-btn {
            background-color: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 12px 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
            transition: all 0.3s;
        }

        .app-btn:hover {
            background-color: rgba(255,255,255,0.1);
            border-color: var(--accent-green);
            transform: translateX(5px);
        }

        .app-btn i {
            font-size: 1.5rem;
        }

        .app-btn-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .app-btn-small {
            font-size: 0.75rem;
            color: #999;
        }

        .app-btn-large {
            font-size: 1rem;
            font-weight: 700;
        }

        /* 底部版权栏 */
        .footer-bottom {
            background-color: #0a0a0a;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 25px 0;
            position: relative;
            z-index: 1;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }

        .copyright a {
            color: var(--accent-green);
            text-decoration: none;
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-bottom-links a {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: white;
        }

        /* 合作伙伴区域 */
        .partners-section {
            background-color: rgba(255,255,255,0.02);
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 30px 0;
        }

        .partners-title {
            text-align: center;
            color: #666;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .partners-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            opacity: 0.6;
        }

        .partner-logo {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            color: #666;
            font-weight: 700;
            letter-spacing: 1px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .partner-logo:hover {
            color: white;
            opacity: 1;
        }

        /* 响应式设计 */
        @media (max-width: 991px) {
            .cta-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-main {
                padding: 40px 0 20px;
            }

            .app-download {
                margin-top: 20px;
            }
        }

        @media (max-width: 576px) {
            .footer-cta {
                padding: 30px 0;
            }

            .cta-text h3 {
                font-size: 1.4rem;
            }

            .cta-buttons {
                width: 100%;
                justify-content: center;
            }

            .btn-cta {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                gap: 15px;
            }
        }

        /* 动画效果 */
        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    body,td,th {
	font-family: "Noto Sans SC", sans-serif;
}
