 @import url('css2.css');
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
        }
        
        /* 滚动条样式增强 */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #FFF8E7;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #0064AF;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #e09612;
            transform: scale(1.1);
        }
        
        .hero-section {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./images/IMG_4594.JPG');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .section-title {
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: #0064AF;
        }
        
        .card {
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .product-card {
            opacity: 0;
            transform: translateY(50px) scale(0.9);
            transition: all 0.8s ease;
        }
        
        .product-card.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #0064AF;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .active::after {
            width: 100%;
        }
        
        .testimonial-card {
            transition: all 0.5s ease;
        }
        
        .testimonial-card:hover {
            transform: scale(1.03);
        }
        
        .animate-float {
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        /* 视差元素 */
        .parallax-element {
            position: relative;
            transition: transform 0.2s ease-out;
        }
        
        /* 滚动动画类 */
        .scroll-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .scroll-down {
            opacity: 0;
            transform: translateY(-30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .scroll-left {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .scroll-right {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .scroll-scale {
            opacity: 0;
            transform: scale(0.95);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .scroll-rotate {
            opacity: 0;
            transform: rotate(-5deg) scale(0.95);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .visible {
            opacity: 1 !important;
            transform: translate(0) scale(1) rotate(0) !important;
        }
        
        /* 背景装饰元素 */
        .bg-decoration {
            position: absolute;
            pointer-events: none;
            z-index: -1;
            opacity: 0.1;
            transition: opacity 0.5s ease;
        }
        
        .bg-decoration.visible {
            opacity: 0.2;
        }
        
        /* 滚动指示器 */
        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: #0064AF;
            z-index: 100;
            width: 0%;
            transition: width 0.1s ease;
        }
        
        /* 浮动元素动画 */
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-10px) rotate(2deg);
            }
            50% {
                transform: translateY(0) rotate(0deg);
            }
            75% {
                transform: translateY(10px) rotate(-2deg);
            }
        }
        
        /* 脉冲元素动画 */
        .pulse-animation {
            animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }
        
        /* 摇摆元素动画 */
        .sway-animation {
            animation: sway 8s ease-in-out infinite;
            transform-origin: bottom center;
        }
        
        @keyframes sway {
            0%, 100% {
                transform: rotate(-2deg);
            }
            50% {
                transform: rotate(2deg);
            }
        }
        
        .count-animation {
            display: inline-block;
        }
        
        /* 自定义滚动条 */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #0064AF;
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #e09612;
        }
        
        /* 加载动画 */
        .loader {
            border: 5px solid #f3f3f3;
            border-top: 5px solid #0064AF;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            position: fixed;
            top: 50%;
            left: 50%;
            margin-top: -25px;
            margin-left: -25px;
            z-index: 9999;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .loader-container {
            position: fixed;
            width: 100%;
            height: 100%;
            background-color: white;
            z-index: 9998;
        }
        
        /* 移动端菜单 */
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }

        .user-image{
            width: 80px;
            height: 80px;
        }

        .user-font{
            font-size: 13px;
        }
        .user-box{
            text-align: center;
        }
        
        #imageModal {
            backdrop-filter: blur(5px);
            transition: opacity 0.3s ease-in-out;
        }
        .product-card img {
            cursor: pointer;
        }