

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans TC', sans-serif;
            background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            color: #f1f5f9;
            overflow-x: hidden;
        }

        .font-serif {
            font-family: 'Playfair Display', serif;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateY(-60px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.7);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes glowPulse {

            0%,
            100% {
                box-shadow: 0 0 30px rgba(245, 147, 50, 0.3);
            }

            50% {
                box-shadow: 0 0 50px rgba(245, 147, 50, 0.6);
            }
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .card-3d {
            transform-style: preserve-3d;
            transition: transform 0.6s;
        }

        .card-3d:hover {
            transform: rotateY(5deg) rotateX(5deg);
        }

        .gradient-text {
            background: linear-gradient(45deg, #f59332, #22c55e, #ef4444);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .floating-cta {
            position: fixed;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
        }

        @media (max-width: 768px) {
            .floating-cta {
                bottom: 1rem;
                left: 1rem;
                right: 1rem;
                transform: none;
            }

            .floating-cta button {
                width: 100%;
            }

            .mobile-px {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .mobile-text {
                padding: 0 0.5rem;
            }

            .mobile-text-sm {
                font-size: 0.875rem;
                line-height: 1.25rem;
            }

            .mobile-text-base {
                font-size: 1rem;
                line-height: 1.5rem;
            }

            .mobile-text-lg {
                font-size: 1.125rem;
                line-height: 1.75rem;
            }

            .mobile-text-xl {
                font-size: 1.25rem;
                line-height: 1.75rem;
            }

            .mobile-text-2xl {
                font-size: 1.5rem;
                line-height: 2rem;
            }

            .mobile-text-3xl {
                font-size: 1.875rem;
                line-height: 2.25rem;
            }

            .mobile-text-4xl {
                font-size: 2.25rem;
                line-height: 2.5rem;
            }

            .mobile-py-4 {
                padding-top: 1rem;
                padding-bottom: 1rem;
            }

            .mobile-mb-4 {
                margin-bottom: 1rem;
            }

            .mobile-space-y-4>*+* {
                margin-top: 1rem;
            }
        }

        input,
        textarea {
            font-size: 16px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -1px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, transparent, #f59332, transparent);
        }

        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(245, 147, 50, 0.5), transparent);
            margin: 1rem 0;
        }

        @media (min-width: 769px) {
            .section-divider {
                margin: 4rem 0;
            }
        }
		
		
		 .swiper {
            width: 80%;
            max-width: 600px;
            /* 限制最大宽度 */
            border-radius: 12px;
			height:400px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
           
 
        }

        .swiper-slide {
            display: flex !important;
            justify-content: center;            
            align-items: center;            
            background: #fff;
		
			
        }

        .swiper-slide img {
            display: block;
            max-width: 100%;
            max-height: 400px;
			
            object-fit: contain;
           
        }
	

        /* 分页圆点样式可自定义 */
        .swiper-pagination-bullet {
            background: #007bff;
            opacity: 0.7;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
        }
