{"id":33,"date":"2025-03-07T12:24:13","date_gmt":"2025-03-07T04:24:13","guid":{"rendered":"http:\/\/8.148.226.92\/?page_id=33"},"modified":"2025-09-03T14:27:09","modified_gmt":"2025-09-03T06:27:09","slug":"%e9%a6%96%e9%a1%b5","status":"publish","type":"page","link":"https:\/\/www.asaixiaomian.com\/","title":{"rendered":"\u9996\u9875"},"content":{"rendered":"\n<style>\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n        body {\n            font-family: Arial, sans-serif;\n            margin: 0;\n            padding: 0;\n        }\n\n        .banner {\n            width: 100%;\n            max-width: 100%;\n            height: 600px;\n            position: relative;\n            overflow: hidden;\n            margin: 0 auto;\n        }\n\n        .slides {\n            display: flex;\n            height: 100%;\n            transition: transform 0.5s ease-in-out;\n        }\n\n        .slide {\n            min-width: 100%;\n            position: relative;\n        }\n\n        .slide img {\n            width: 100%;\n            height: 100%;\n            object-fit: cover;\n        }\n\n        .prev, .next {\n            position: absolute;\n            top: 50%;\n            transform: translateY(-50%);\n            background-color: rgba(0, 0, 0, 0.5);\n            color: white;\n            font-size: 24px;\n            padding: 10px;\n            cursor: pointer;\n            z-index: 10;\n            transition: background-color 0.3s;\n        }\n\n        .prev:hover, .next:hover {\n            background-color: rgba(0, 0, 0, 0.8);\n        }\n\n        .prev {\n            left: 10px;\n        }\n\n        .next {\n            right: 10px;\n        }\n\n        .indicators {\n            position: absolute;\n            bottom: 10px;\n            left: 50%;\n            transform: translateX(-50%);\n            display: flex;\n        }\n\n        .indicator {\n            width: 10px;\n            height: 10px;\n            border-radius: 50%;\n            background-color: rgba(255, 255, 255, 0.5);\n            margin: 0 5px;\n            cursor: pointer;\n            transition: background-color 0.3s;\n        }\n\n        .indicator.active {\n            background-color: white;\n        }\n\n        @media (max-width: 768px) {\n            .banner {\n                height: 250px;\n            }\n        }\n    <\/style>\n    <div class=\"banner\">\n        <div class=\"slides\" id=\"slides\">\n            <div class=\"slide\">\n                <img decoding=\"async\" src=\"\/image\/banner1.jpg\" alt=\"\u5e7b\u706f\u72471\">\n            <\/div>\n            <div class=\"slide\">\n                <img decoding=\"async\" src=\"\/image\/banner2.jpg\" alt=\"\u5e7b\u706f\u72472\">\n            <\/div>\n            <div class=\"slide\">\n                <img decoding=\"async\" src=\"\/image\/banner3.jpg\" alt=\"\u5e7b\u706f\u72473\">\n            <\/div>\n        <\/div>\n        \n        <div class=\"prev\" onclick=\"prevSlide()\">&#10094;<\/div>\n        <div class=\"next\" onclick=\"nextSlide()\">&#10095;<\/div>\n        \n        <div class=\"indicators\" id=\"indicators\"><\/div>\n    <\/div>\n\n    <script>\n        let currentSlide = 0;\n        const slides = document.getElementById('slides');\n        const slideCount = document.querySelectorAll('.slide').length;\n        const indicators = document.getElementById('indicators');\n        let slideInterval;\n\n        \/\/ \u521b\u5efa\u6307\u793a\u5668\n        for (let i = 0; i < slideCount; i++) {\n            const indicator = document.createElement('div');\n            indicator.classList.add('indicator');\n            if (i === 0) indicator.classList.add('active');\n            indicator.addEventListener('click', () => goToSlide(i));\n            indicators.appendChild(indicator);\n        }\n\n        \/\/ \u66f4\u65b0\u6307\u793a\u5668\u72b6\u6001\n        function updateIndicators() {\n            document.querySelectorAll('.indicator').forEach((indicator, index) => {\n                if (index === currentSlide) {\n                    indicator.classList.add('active');\n                } else {\n                    indicator.classList.remove('active');\n                }\n            });\n        }\n\n        \/\/ \u5207\u6362\u5230\u6307\u5b9a\u5e7b\u706f\u7247\n        function goToSlide(index) {\n            currentSlide = index;\n            updateSlides();\n            resetInterval();\n        }\n\n        \/\/ \u66f4\u65b0\u5e7b\u706f\u7247\u4f4d\u7f6e\n        function updateSlides() {\n            slides.style.transform = `translateX(-${currentSlide * 100}%)`;\n            updateIndicators();\n        }\n\n        \/\/ \u4e0b\u4e00\u5f20\u5e7b\u706f\u7247\n        function nextSlide() {\n            currentSlide = (currentSlide + 1) % slideCount;\n            updateSlides();\n            resetInterval();\n        }\n\n        \/\/ \u4e0a\u4e00\u5f20\u5e7b\u706f\u7247\n        function prevSlide() {\n            currentSlide = (currentSlide - 1 + slideCount) % slideCount;\n            updateSlides();\n            resetInterval();\n        }\n\n        \/\/ \u91cd\u7f6e\u81ea\u52a8\u8f6e\u64ad\u8ba1\u65f6\u5668\n        function resetInterval() {\n            clearInterval(slideInterval);\n            slideInterval = setInterval(nextSlide, 5000);\n        }\n\n        \/\/ \u5f00\u59cb\u81ea\u52a8\u8f6e\u64ad\n        function startSlideshow() {\n            slideInterval = setInterval(nextSlide, 5000);\n            \n            \/\/ \u9f20\u6807\u60ac\u505c\u6682\u505c\u8f6e\u64ad\n            const banner = document.querySelector('.banner');\n            banner.addEventListener('mouseenter', () => {\n                clearInterval(slideInterval);\n            });\n            \n            banner.addEventListener('mouseleave', () => {\n                resetInterval();\n            });\n        }\n\n        \/\/ \u521d\u59cb\u5316\u5e7b\u706f\u7247\n        startSlideshow();\n    <\/script>\n\n\n\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>\u963f\u8d5b\u5c0f\u9762 &#8211; \u91cd\u5e86\u5927\u9aa8\u5c0f\u9762\u5f00\u521b\u8005<\/title>\n    <script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n    <link href=\"https:\/\/cdn.jsdelivr.net\/npm\/font-awesome@4.7.0\/css\/font-awesome.min.css\" rel=\"stylesheet\">\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@300;400;500;600;700&#038;display=swap\" rel=\"stylesheet\">\n    \n    <script>\n        tailwind.config = {\n            theme: {\n                extend: {\n                    colors: {\n                        primary: '#E63946', \/\/ \u4e3b\u8272\u8c03\uff1a\u6e29\u6696\u7ea2\u8272\uff0c\u4ee3\u8868\u8fa3\u6912\u548c\u70ed\u60c5\n                        secondary: '#F1C40F', \/\/ \u8f85\u52a9\u8272\uff1a\u91d1\u9ec4\u8272\uff0c\u4ee3\u8868\u5c0f\u9ea6\u548c\u98df\u6b32\n                        tertiary: '#8D99AE', \/\/ \u7b2c\u4e09\u8272\uff1a\u67d4\u548c\u84dd\u7070\u8272\uff0c\u63d0\u4f9b\u5bf9\u6bd4\n                        dark: '#1D3557', \/\/ \u6df1\u8272\uff1a\u6df1\u84dd\u7070\u8272\uff0c\u7528\u4e8e\u6587\u672c\n                        light: '#F1FAEE', \/\/ \u6d45\u8272\uff1a\u7c73\u767d\u8272\uff0c\u7528\u4e8e\u80cc\u666f\n                    },\n                    fontFamily: {\n                        inter: ['Inter', 'sans-serif'],\n                    },\n                }\n            }\n        }\n    <\/script>\n    \n    <style type=\"text\/tailwindcss\">\n        @layer utilities {\n            .content-auto {\n                content-visibility: auto;\n            }\n            .text-shadow {\n                text-shadow: 0 2px 4px rgba(0,0,0,0.3);\n            }\n            .text-shadow-lg {\n                text-shadow: 0 4px 8px rgba(0,0,0,0.5);\n            }\n            .bg-blur {\n                backdrop-filter: blur(8px);\n            }\n            .animate-fade-in {\n                animation: fadeIn 0.8s ease-in-out;\n            }\n            .animate-slide-up {\n                animation: slideUp 0.8s ease-out;\n            }\n            .animate-pulse-slow {\n                animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;\n            }\n            @keyframes fadeIn {\n                from { opacity: 0; }\n                to { opacity: 1; }\n            }\n            @keyframes slideUp {\n                from { transform: translateY(30px); opacity: 0; }\n                to { transform: translateY(0); opacity: 1; }\n            }\n            @keyframes pulse {\n                0%, 100% { opacity: 1; }\n                50% { opacity: 0.7; }\n            }\n            .carousel-item {\n                transition: transform 0.5s ease-in-out;\n            }\n            .carousel-indicator {\n                transition: all 0.3s ease;\n            }\n            .carousel-indicator.active {\n                background-color: #E63946;\n                width: 2rem;\n            }\n            .product-card {\n                transition: all 0.3s ease;\n            }\n            .product-card:hover {\n                transform: translateY(-10px);\n            }\n            .news-card {\n                transition: all 0.3s ease;\n            }\n            .news-card:hover {\n                transform: translateY(-5px);\n                box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);\n            }\n        }\n    <\/style>\n<\/head>\n<body class=\"font-inter bg-light text-dark antialiased\">\n    \n    <!-- \u5de6\u8fb9\u6587\u672c\uff0c\u53f3\u8fb9\u56fe\u7247 -->\n    <section class=\"py-20 bg-white\">\n        <div class=\"container mx-auto px-4\">\n            <div class=\"flex flex-col md:flex-row items-center gap-12\">\n                <div class=\"md:w-1\/2\">\n                    <h2 class=\"text-[clamp(1.5rem,3vw,2.5rem)] font-bold text-dark mb-6 relative\">\n                        <span class=\"inline-block pb-2 relative\">\n                            \u54c1\u724c\u6545\u4e8b\n                            <div class=\"absolute left-0 bottom-0 w-1\/3 h-1 bg-primary\"><\/div>\n                        <\/span>\n                    <\/h2>\n                    \n                    <p class=\"text-gray-700 mb-6 leading-relaxed\">\n                        \u963f\u8d5b\u5c0f\u9762\uff0c\u5173\u7231\u66f4\u591a\u4e3a\u68a6\u60f3\u800c\u52aa\u529b\u7684\u666e\u901a\u4eba\uff0c\u201c\u5927\u9aa8\u71ac\u6c64\uff0c\u5c0f\u9762\u66f4\u9999\u201d\uff0c\u4f5c\u4e3a\u91cd\u5e86\u5927\u9aa8\u5c0f\u9762\u7684\u54c1\u7c7b\u5f00\u521b\u8005\uff0c\u963f\u8d5b\u5c0f\u9762\u4e0d\u4ec5\u4f20\u627f\u4e86\u91cd\u5e86\u5c0f\u9762\u7684\u7cbe\u9ad3\uff0c\u66f4\u5728\u53e3\u5473\u548c\u5236\u4f5c\u5de5\u827a\u4e0a\u8fdb\u884c\u4e86\u521b\u65b0\u548c\u63d0\u5347\u3002\n                    <\/p>\n                    \n                    <p class=\"text-gray-700 mb-6 leading-relaxed\">\n                        \u7ecf\u8fc710\u5e74\u91cd\u5e86\u5c0f\u9762\u8d5b\u9053\u7684\u6df1\u8015\uff0c\u963f\u8d5b\u5c0f\u9762\u5df2\u7ecf\u662f\u4e00\u4e2a\u771f\u6b63\u610f\u4e49\u4e0a\u5b9e\u73b0\u4e86\u201c\u4eba\u4eba\u5f00\u5f97\u8d77\uff0c\u4eba\u4eba\u5403\u5f97\u8d77\u201d\u7684\u9910\u996e\u8fde\u9501\u54c1\u724c\u3002\n                    <\/p>\n                    <p class=\"text-gray-700 mb-6 leading-relaxed\">\n                        \u963f\u8d5b\u5c0f\u9762\u59cb\u7ec8\u575a\u6301\u6253\u9020\u201c\u4f4e\u4ef7\u4f18\u8d28\u201d\u7684\u4ea7\u54c1\u7406\u5ff5\uff0c\u4e0d\u65ad\u63a8\u9648\u51fa\u65b0\uff0c\u4ee5\u6ee1\u8db3\u6d88\u8d39\u8005\u7684\u591a\u6837\u5316\u9700\u6c42\u3002\u65e0\u8bba\u662f\u4ece\u4ef7\u683c\u3001\u53e3\u5473\u8fd8\u662f\u670d\u52a1\u4e0a\uff0c\u963f\u8d5b\u5c0f\u9762\u90fd\u505a\u5230\u4e86\u771f\u6b63\u7684\u4eb2\u6c11\u548c\u8d34\u5fc3\uff0c\u8ba9\u6bcf\u4e2a\u4eba\u90fd\u80fd\u4eab\u53d7\u5230\u8fd9\u4efd\u6765\u81ea\u91cd\u5e86\u7684\u7f8e\u5473\u3002\n                    <\/p>\n                    \n                    <div class=\"grid grid-cols-2 gap-4 mb-8\">\n                        <div class=\"bg-light p-4 rounded-lg\">\n                            <div class=\"text-primary text-3xl font-bold mb-2\">10\u5e74+<\/div>\n                            <div class=\"text-gray-600\">\u8fd0\u8425\u7ecf\u9a8c<\/div>\n                        <\/div>\n                        <div class=\"bg-light p-4 rounded-lg\">\n                            <div class=\"text-primary text-3xl font-bold mb-2\">15\u4e07+<\/div>\n                            <div class=\"text-gray-600\">\u6708\u5ba2\u6d41\u91cf<\/div>\n                        <\/div>\n                        <div class=\"bg-light p-4 rounded-lg\">\n                            <div class=\"text-primary text-3xl font-bold mb-2\">10%<\/div>\n                            <div class=\"text-gray-600\">\u79df\u5360\u6bd4<\/div>\n                        <\/div>\n                        <div class=\"bg-light p-4 rounded-lg\">\n                            <div class=\"text-primary text-3xl font-bold mb-2\">95%<\/div>\n                            <div class=\"text-gray-600\">\u987e\u5ba2\u6ee1\u610f\u5ea6<\/div>\n                        <\/div>\n                    <\/div>\n                    \n                    <a href=\"https:\/\/www.asaixiaomian.com\/%e5%93%81%e7%89%8c%e6%95%85%e4%ba%8b\/\" class=\"inline-flex items-center text-primary font-medium hover:text-primary\/80 transition-colors\">\n                        \u4e86\u89e3\u66f4\u591a\u54c1\u724c\u5185\u5bb9 <i class=\"fa fa-long-arrow-right ml-2\"><\/i>\n                    <\/a>\n                <\/div>\n                \n                <div class=\"md:w-1\/2\">\n                    <div class=\"relative\">\n                        <img decoding=\"async\" src=\"\/image\/xgt.jpg\" alt=\"\u963f\u8d5b\u5c0f\u9762\u7684\u6545\u4e8b\" class=\"w-full h-auto rounded-xl shadow-xl\">\n\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n\n\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>\u963f\u8d5b\u5c0f\u9762 &#8211; \u91cd\u5e86\u5927\u9aa8\u5c0f\u9762\u5f00\u521b\u8005<\/title>\n    <script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n    <link href=\"https:\/\/cdn.jsdelivr.net\/npm\/font-awesome@4.7.0\/css\/font-awesome.min.css\" rel=\"stylesheet\">\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@300;400;500;600;700&#038;display=swap\" rel=\"stylesheet\">\n    \n    <script>\n        tailwind.config = {\n            theme: {\n                extend: {\n                    colors: {\n                        primary: '#E63946', \/\/ \u4e3b\u8272\u8c03\uff1a\u6e29\u6696\u7ea2\u8272\uff0c\u4ee3\u8868\u8fa3\u6912\u548c\u70ed\u60c5\n                        secondary: '#F1C40F', \/\/ \u8f85\u52a9\u8272\uff1a\u91d1\u9ec4\u8272\uff0c\u4ee3\u8868\u5c0f\u9ea6\u548c\u98df\u6b32\n                        tertiary: '#8D99AE', \/\/ \u7b2c\u4e09\u8272\uff1a\u67d4\u548c\u84dd\u7070\u8272\uff0c\u63d0\u4f9b\u5bf9\u6bd4\n                        dark: '#1D3557', \/\/ \u6df1\u8272\uff1a\u6df1\u84dd\u7070\u8272\uff0c\u7528\u4e8e\u6587\u672c\n                        light: '#F1FAEE', \/\/ \u6d45\u8272\uff1a\u7c73\u767d\u8272\uff0c\u7528\u4e8e\u80cc\u666f\n                    },\n                    fontFamily: {\n                        inter: ['Inter', 'sans-serif'],\n                    },\n                }\n            }\n        }\n    <\/script>\n    \n    <style type=\"text\/tailwindcss\">\n        @layer utilities {\n            .content-auto {\n                content-visibility: auto;\n            }\n            .text-shadow {\n                text-shadow: 0 2px 4px rgba(0,0,0,0.3);\n            }\n            .text-shadow-lg {\n                text-shadow: 0 4px 8px rgba(0,0,0,0.5);\n            }\n            .bg-blur {\n                backdrop-filter: blur(8px);\n            }\n            .animate-fade-in {\n                animation: fadeIn 0.8s ease-in-out;\n            }\n            .animate-slide-up {\n                animation: slideUp 0.8s ease-out;\n            }\n            .animate-pulse-slow {\n                animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;\n            }\n            @keyframes fadeIn {\n                from { opacity: 0; }\n                to { opacity: 1; }\n            }\n            @keyframes slideUp {\n                from { transform: translateY(30px); opacity: 0; }\n                to { transform: translateY(0); opacity: 1; }\n            }\n            @keyframes pulse {\n                0%, 100% { opacity: 1; }\n                50% { opacity: 0.7; }\n            }\n            .carousel-item {\n                transition: transform 0.5s ease-in-out;\n            }\n            .carousel-indicator {\n                transition: all 0.3s ease;\n            }\n            .carousel-indicator.active {\n                background-color: #E63946;\n                width: 2rem;\n            }\n            .product-card {\n                transition: all 0.3s ease;\n            }\n            .product-card:hover {\n                transform: translateY(-10px);\n            }\n            .news-card {\n                transition: all 0.3s ease;\n            }\n            .news-card:hover {\n                transform: translateY(-5px);\n                box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);\n            }\n        }\n    <\/style>\n<\/head>\n<body class=\"font-inter bg-light text-dark antialiased\">\n<!-- \u54c1\u724c\u8363\u8a89\u5927\u56fe -->\n<section class=\"py-16 bg-light\">\n    <div class=\"container mx-auto px-4\">\n        <div class=\"text-center mb-12\">\n            <h2 class=\"text-[clamp(1.5rem,3vw,2.5rem)] font-bold text-dark mb-4\">\n                \u54c1\u724c\u8363\u8a89\n            <\/h2>\n            <p class=\"text-gray-600 text-lg max-w-3xl mx-auto\">\n                \u591a\u5e74\u6765\uff0c\u963f\u8d5b\u5c0f\u9762\u51ed\u501f\u5353\u8d8a\u7684\u54c1\u8d28\u548c\u72ec\u7279\u7684\u98ce\u5473\uff0c\u8d62\u5f97\u4e86\u4f17\u591a\u8363\u8a89\u548c\u5956\u9879\n            <\/p>\n        <\/div>\n        \n        <!-- \u79fb\u9664\u4e86\u7edd\u5bf9\u5b9a\u4f4d\u7684\u6587\u5b57\u8499\u7248 -->\n        <div class=\"rounded-xl overflow-hidden shadow-2xl\">\n            <img decoding=\"async\" src=\"\/image\/rongyu.jpg\" alt=\"\u54c1\u724c\u8363\u8a89\" class=\"w-full h-auto\">\n        <\/div>\n    <\/div>\n<\/section>\n\n\n\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>\u963f\u8d5b\u5c0f\u9762 &#8211; \u89c6\u9891\u5ba3\u4f20<\/title>\n    <script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n    <link href=\"https:\/\/cdn.jsdelivr.net\/npm\/font-awesome@4.7.0\/css\/font-awesome.min.css\" rel=\"stylesheet\">\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@300;400;500;600;700&#038;display=swap\" rel=\"stylesheet\">\n    \n    <script>\n        tailwind.config = {\n            theme: {\n                extend: {\n                    colors: {\n                        primary: '#E63946', \/\/ \u4e3b\u8272\u8c03\uff1a\u6e29\u6696\u7ea2\u8272\n                        secondary: '#F1C40F', \/\/ \u8f85\u52a9\u8272\uff1a\u91d1\u9ec4\u8272\n                    },\n                    fontFamily: {\n                        inter: ['Inter', 'sans-serif'],\n                    },\n                }\n            }\n        }\n    <\/script>\n    \n    <style type=\"text\/tailwindcss\">\n        @layer utilities {\n            .play-button {\n                @apply w-16 h-16 md:w-24 md:h-24 bg-primary\/90 hover:bg-primary text-white rounded-full flex items-center justify-center transition-all duration-300 transform hover:scale-110 shadow-xl animate-pulse-slow;\n            }\n            .video-modal {\n                @apply fixed inset-0 bg-black\/95 z-50 flex items-center justify-center opacity-0 pointer-events-none transition-opacity duration-300;\n            }\n            .video-modal.active {\n                @apply opacity-100 pointer-events-auto;\n            }\n            .video-container {\n                @apply relative w-full max-w-4xl transform transition-transform duration-500 scale-95;\n            }\n            .video-modal.active .video-container {\n                @apply scale-100;\n            }\n            .close-button {\n                @apply absolute -top-12 right-0 text-white text-2xl hover:text-primary transition-colors z-10;\n            }\n            .content-auto {\n                content-visibility: auto;\n            }\n            .animate-pulse-slow {\n                animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;\n            }\n            @keyframes pulse {\n                0%, 100% { opacity: 1; }\n                50% { opacity: 0.7; }\n            }\n        }\n    <\/style>\n    \n    <style>\n        html {\n            scroll-behavior: smooth;\n        }\n        \n        \/* \u5927\u56fe\u5706\u89d2 *\/\n        .video-bg {\n            border-radius: 1.5rem;\n            overflow: hidden;\n        }\n        \n        \/* \u89c6\u9891\u5c01\u9762\u56fe\u4f18\u5316 *\/\n        .video-cover {\n            transition: transform 0.5s ease-out;\n        }\n        \n        .video-wrapper:hover .video-cover {\n            transform: scale(1.03);\n        }\n        \n        \/* \u64ad\u653e\u6309\u94ae\u60ac\u505c\u6548\u679c\u589e\u5f3a *\/\n        .play-button:hover {\n            box-shadow: 0 0 0 15px rgba(230, 57, 70, 0.2);\n        }\n        \n        \/* \u54cd\u5e94\u5f0f\u9ad8\u5ea6 *\/\n        .video-placeholder {\n            aspect-ratio: 16\/9;\n        }\n    <\/style>\n<\/head>\n<body class=\"font-inter bg-light text-dark antialiased\">\n\n    <!-- \u5ba3\u4f20\u89c6\u9891\u6a21\u5757 -->\n    <section class=\"py-8 md:py-16\">\n        <div class=\"container mx-auto px-4\">\n            <div class=\"max-w-6xl mx-auto\">\n                <div class=\"relative video-wrapper shadow-2xl video-bg\">\n                    <!-- \u89c6\u9891\u5c01\u9762\u56fe -->\n                    <div class=\"video-placeholder bg-gray-200\">\n                        <img decoding=\"async\" src=\"\/image\/shipinfengmian.jpg\" alt=\"\u963f\u8d5b\u5c0f\u9762\u5ba3\u4f20\u89c6\u9891\" class=\"video-cover w-full h-full object-cover content-auto\">\n                    <\/div>\n                    \n                    <!-- \u6e10\u53d8\u53e0\u52a0\u5c42 -->\n                    <div class=\"absolute inset-0 bg-gradient-to-t from-black\/70 via-black\/30 to-transparent flex items-center justify-center\">\n                        <div class=\"play-button\" id=\"playButton\">\n                            <i class=\"fa fa-play text-2xl md:text-3xl\"><\/i>\n                        <\/div>\n                    <\/div>\n                    \n                    <!-- \u89c6\u9891\u6a21\u6001\u6846 -->\n                    <div class=\"video-modal\" id=\"videoModal\">\n                        <div class=\"video-container\">\n                            <button class=\"close-button\" id=\"closeButton\">\n                                <i class=\"fa fa-times\"><\/i>\n                            <\/button>\n                            <video controls class=\"w-full rounded-lg shadow-2xl\" id=\"videoPlayer\" poster=\"\/image\/shipinfengmian.jpg\">\n                                <source src=\"\/image\/yigexuanze.mp4\" type=\"video\/mp4\">\n                                \u60a8\u7684\u6d4f\u89c8\u5668\u4e0d\u652f\u6301\u89c6\u9891\u64ad\u653e\n                            <\/source>\n                            <\/video>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <script>\n        \/\/ \u89c6\u9891\u64ad\u653e\u529f\u80fd\n        document.addEventListener('DOMContentLoaded', () => {\n            const playButton = document.getElementById('playButton');\n            const videoModal = document.getElementById('videoModal');\n            const closeButton = document.getElementById('closeButton');\n            const videoPlayer = document.getElementById('videoPlayer');\n            \n            playButton.addEventListener('click', () => {\n                videoModal.classList.add('active');\n                videoPlayer.play();\n            });\n            \n            closeButton.addEventListener('click', () => {\n                videoModal.classList.remove('active');\n                videoPlayer.pause();\n                videoPlayer.currentTime = 0;\n            });\n            \n            \/\/ \u70b9\u51fb\u6a21\u6001\u6846\u5916\u90e8\u5173\u95ed\u89c6\u9891\n            videoModal.addEventListener('click', (e) => {\n                if (e.target === videoModal) {\n                    videoModal.classList.remove('active');\n                    videoPlayer.pause();\n                    videoPlayer.currentTime = 0;\n                }\n            });\n            \n            \/\/ \u952e\u76d8 ESC \u5173\u95ed\u89c6\u9891\n            document.addEventListener('keydown', (e) => {\n                if (e.key === 'Escape' && videoModal.classList.contains('active')) {\n                    videoModal.classList.remove('active');\n                    videoPlayer.pause();\n                    videoPlayer.currentTime = 0;\n                }\n            });\n        });\n    <\/script>\n<\/body>\n\n\n\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>\u963f\u8d5b\u5c0f\u9762 &#8211; \u91cd\u5e86\u5927\u9aa8\u5c0f\u9762\u5f00\u521b\u8005<\/title>\n    <script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n    <link href=\"https:\/\/cdn.jsdelivr.net\/npm\/font-awesome@4.7.0\/css\/font-awesome.min.css\" rel=\"stylesheet\">\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@300;400;500;600;700&#038;display=swap\" rel=\"stylesheet\">\n    \n    <script>\n        tailwind.config = {\n            theme: {\n                extend: {\n                    colors: {\n                        primary: '#E63946', \/\/ \u4e3b\u8272\u8c03\uff1a\u6e29\u6696\u7ea2\u8272\uff0c\u4ee3\u8868\u8fa3\u6912\u548c\u70ed\u60c5\n                        secondary: '#F1C40F', \/\/ \u8f85\u52a9\u8272\uff1a\u91d1\u9ec4\u8272\uff0c\u4ee3\u8868\u5c0f\u9ea6\u548c\u98df\u6b32\n                        tertiary: '#8D99AE', \/\/ \u7b2c\u4e09\u8272\uff1a\u67d4\u548c\u84dd\u7070\u8272\uff0c\u63d0\u4f9b\u5bf9\u6bd4\n                        dark: '#1D3557', \/\/ \u6df1\u8272\uff1a\u6df1\u84dd\u7070\u8272\uff0c\u7528\u4e8e\u6587\u672c\n                        light: '#F1FAEE', \/\/ \u6d45\u8272\uff1a\u7c73\u767d\u8272\uff0c\u7528\u4e8e\u80cc\u666f\n                    },\n                    fontFamily: {\n                        inter: ['Inter', 'sans-serif'],\n                    },\n                }\n            }\n        }\n    <\/script>\n    \n    <style type=\"text\/tailwindcss\">\n        @layer utilities {\n            .content-auto {\n                content-visibility: auto;\n            }\n            .text-shadow {\n                text-shadow: 0 2px 4px rgba(0,0,0,0.3);\n            }\n            .text-shadow-lg {\n                text-shadow: 0 4px 8px rgba(0,0,0,0.5);\n            }\n            .bg-blur {\n                backdrop-filter: blur(8px);\n            }\n            .animate-fade-in {\n                animation: fadeIn 0.8s ease-in-out;\n            }\n            .animate-slide-up {\n                animation: slideUp 0.8s ease-out;\n            }\n            .animate-pulse-slow {\n                animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;\n            }\n            @keyframes fadeIn {\n                from { opacity: 0; }\n                to { opacity: 1; }\n            }\n            @keyframes slideUp {\n                from { transform: translateY(30px); opacity: 0; }\n                to { transform: translateY(0); opacity: 1; }\n            }\n            @keyframes pulse {\n                0%, 100% { opacity: 1; }\n                50% { opacity: 0.7; }\n            }\n            .carousel-item {\n                transition: transform 0.5s ease-in-out;\n            }\n            .carousel-indicator {\n                transition: all 0.3s ease;\n            }\n            .carousel-indicator.active {\n                background-color: #E63946;\n                width: 2rem;\n            }\n            .product-card {\n                transition: all 0.3s ease;\n            }\n            .product-card:hover {\n                transform: translateY(-10px);\n            }\n            .news-card {\n                transition: all 0.3s ease;\n            }\n            .news-card:hover {\n                transform: translateY(-5px);\n                box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);\n            }\n        }\n    <\/style>\n<\/head>\n<body class=\"font-inter bg-light text-dark antialiased\">\n<!-- 4\u5f20\u7206\u54c1\u4ea7\u54c1\u5c55\u793a -->\n<section class=\"py-20 bg-white\">\n    <div class=\"container mx-auto px-4\">\n        <div class=\"text-center mb-12\">\n            <h2 class=\"text-[clamp(1.5rem,3vw,2.5rem)] font-bold text-dark mb-4\">\n                \u7206\u54c1\u63a8\u8350\n            <\/h2>\n            <p class=\"text-gray-600 text-lg max-w-3xl mx-auto\">\n                \u7cbe\u9009\u963f\u8d5b\u5c0f\u9762\u6700\u53d7\u6b22\u8fce\u7684\u4eba\u6c14\u4ea7\u54c1\uff0c\u6bcf\u4e00\u6b3e\u90fd\u503c\u5f97\u60a8\u54c1\u5c1d\n            <\/p>\n        <\/div>\n        \n        <div class=\"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6\">\n            <!-- \u4ea7\u54c1\u5361\u7247 1 -->\n            <div class=\"product-card bg-light rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition-shadow duration-300\">\n                <div class=\"relative\">\n                    <img decoding=\"async\" src=\"\/image\/wanzamian.jpg\" alt=\"\u62db\u724c\u8c4c\u6742\u9762\" class=\"w-full h-64 object-cover\">\n                <\/div>\n                <div class=\"p-6\">\n                    <h3 class=\"text-xl font-bold text-dark mb-2\">\u62db\u724c\u8c4c\u6742\u9762<\/h3>\n                    <p class=\"text-gray-600 mb-4\">\n                        \u5c0f\u9762\u7684\u7075\u9b42\u6d77\u6912\uff0c\u52b2\u9053\u7684\u9c9c\u9762\u6761\uff0c\u8c4c\u8c46\u7c92\u7c92\u6210\u578b\u9897\u9897\u7ef5\u8f6f\uff0c\u70b9\u775b\u6d47\u5934\u9171\u9999\u8089\u54e8\u5b50 \uff0c\u53e3\u53f7\u4e3a \u201c\u8c4c\u8c46\u563f\u8019\uff0c\u8fa3\u6912\u563f\u9999\u201d\u3002\n                    <\/p>\n                    <div class=\"flex justify-between items-center\">\n                    <\/div>\n                <\/div>\n            <\/div>\n            \n            <!-- \u4ea7\u54c1\u5361\u7247 2 -->\n            <div class=\"product-card bg-light rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition-shadow duration-300\">\n                <div class=\"relative\">\n                    <img decoding=\"async\" src=\"\/image\/laomachaoshou.jpg\" alt=\"\u8001\u9ebb\u6284\u624b\" class=\"w-full h-64 object-cover\">\n                <\/div>\n                <div class=\"p-6\">\n                    <h3 class=\"text-xl font-bold text-dark mb-2\">\u8001\u9ebb\u6284\u624b<\/h3>\n                    <p class=\"text-gray-600 mb-4\">\n                        \u624b\u5de5\u5305\u5236\u7684\u6284\u624b\uff0c\u76ae\u8584\u9985\u5927\uff0c\u914d\u4ee5\u7279\u5236\u7684\u9ebb\u8fa3\u6c64\u5e95\uff0c\u9ebb\u800c\u4e0d\u71e5\uff0c\u8fa3\u800c\u4e0d\u4f24\u3002\n                    <\/p>\n                    <div class=\"flex justify-between items-center\">\n                    <\/div>\n                <\/div>\n            <\/div>\n            \n            <!-- \u4ea7\u54c1\u5361\u7247 3 -->\n            <div class=\"product-card bg-light rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition-shadow duration-300\">\n                <div class=\"relative\">\n                    <img decoding=\"async\" src=\"\/image\/daguxiaomian.jpg\" alt=\"\u5927\u9aa8\u5c0f\u9762\" class=\"w-full h-64 object-cover\">\n                <\/div>\n                <div class=\"p-6\">\n                    <h3 class=\"text-xl font-bold text-dark mb-2\">\u5927\u9aa8\u5c0f\u9762<\/h3>\n                    <p class=\"text-gray-600 mb-4\">\n                        \u5c0f\u9762\u597d\u5403\uff0c\u6c64\u66f4\u9c9c\u7f8e\uff0c\u6709\u4e00\u5927\u5757\u8fde\u7b4b\u5e26\u8089\u7684\u5927\u9aa8\uff0c\u4e00\u4e2a\u4eba\u5c31\u80fd\u5403\u5f97\u9971\u9971\u7684\u3002\u5206\u8fa3\u4e0e\u4e0d\u8fa3\u53e3\u5473\u3002\n                    <\/p>\n                    <div class=\"flex justify-between items-center\">\n                    <\/div>\n                <\/div>\n            <\/div>\n            \n            <!-- \u4ea7\u54c1\u5361\u7247 4 -->\n            <div class=\"product-card bg-light rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition-shadow duration-300\">\n                <div class=\"relative\">\n                    <img decoding=\"async\" src=\"\/image\/feichangmian.jpg\" alt=\"\u80a5\u80a0\u9762\" class=\"w-full h-64 object-cover\">\n                <\/div>\n                <div class=\"p-6\">\n                    <h3 class=\"text-xl font-bold text-dark mb-2\">\u80a5\u80a0\u9762<\/h3>\n                    <p class=\"text-gray-600 mb-4\">\n                        \u7cbe\u9009\u65b0\u9c9c\u80a5\u80a0\uff0c\u914d\u4ee5\u72ec\u7279\u7684\u5364\u5236\u5de5\u827a\uff0c\u53e3\u611f\u8f6f\u7cef\uff0c\u9999\u6c14\u56db\u6ea2\uff0c\u662f\u80a5\u80a0\u7231\u597d\u8005\u7684\u4e0d\u4e8c\u4e4b\u9009\u3002\n                    <\/p>\n                    <div class=\"flex justify-between items-center\">\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/section>\n\n\n\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>\u963f\u8d5b\u5c0f\u9762 &#8211; \u91cd\u5e86\u5927\u9aa8\u5c0f\u9762\u5f00\u521b\u8005<\/title>\n    <script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n    <link href=\"https:\/\/cdn.jsdelivr.net\/npm\/font-awesome@4.7.0\/css\/font-awesome.min.css\" rel=\"stylesheet\">\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@300;400;500;600;700&#038;display=swap\" rel=\"stylesheet\">\n    \n    <script>\n        tailwind.config = {\n            theme: {\n                extend: {\n                    colors: {\n                        primary: '#E63946', \/\/ \u4e3b\u8272\u8c03\uff1a\u6e29\u6696\u7ea2\u8272\uff0c\u4ee3\u8868\u8fa3\u6912\u548c\u70ed\u60c5\n                        secondary: '#F1C40F', \/\/ \u8f85\u52a9\u8272\uff1a\u91d1\u9ec4\u8272\uff0c\u4ee3\u8868\u5c0f\u9ea6\u548c\u98df\u6b32\n                        tertiary: '#8D99AE', \/\/ \u7b2c\u4e09\u8272\uff1a\u67d4\u548c\u84dd\u7070\u8272\uff0c\u63d0\u4f9b\u5bf9\u6bd4\n                        dark: '#1D3557', \/\/ \u6df1\u8272\uff1a\u6df1\u84dd\u7070\u8272\uff0c\u7528\u4e8e\u6587\u672c\n                        light: '#F1FAEE', \/\/ \u6d45\u8272\uff1a\u7c73\u767d\u8272\uff0c\u7528\u4e8e\u80cc\u666f\n                    },\n                    fontFamily: {\n                        inter: ['Inter', 'sans-serif'],\n                    },\n                }\n            }\n        }\n    <\/script>\n    \n    <style type=\"text\/tailwindcss\">\n        @layer utilities {\n            .content-auto {\n                content-visibility: auto;\n            }\n            .text-shadow {\n                text-shadow: 0 2px 4px rgba(0,0,0,0.3);\n            }\n            .text-shadow-lg {\n                text-shadow: 0 4px 8px rgba(0,0,0,0.5);\n            }\n            .bg-blur {\n                backdrop-filter: blur(8px);\n            }\n            .animate-fade-in {\n                animation: fadeIn 0.8s ease-in-out;\n            }\n            .animate-slide-up {\n                animation: slideUp 0.8s ease-out;\n            }\n            .animate-pulse-slow {\n                animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;\n            }\n            @keyframes fadeIn {\n                from { opacity: 0; }\n                to { opacity: 1; }\n            }\n            @keyframes slideUp {\n                from { transform: translateY(30px); opacity: 0; }\n                to { transform: translateY(0); opacity: 1; }\n            }\n            @keyframes pulse {\n                0%, 100% { opacity: 1; }\n                50% { opacity: 0.7; }\n            }\n            .carousel-item {\n                transition: transform 0.5s ease-in-out;\n            }\n            .carousel-indicator {\n                transition: all 0.3s ease;\n            }\n            .carousel-indicator.active {\n                background-color: #E63946;\n                width: 2rem;\n            }\n            .product-card {\n                transition: all 0.3s ease;\n            }\n            .product-card:hover {\n                transform: translateY(-10px);\n            }\n            .news-card {\n                transition: all 0.3s ease;\n            }\n            .news-card:hover {\n                transform: translateY(-5px);\n                box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);\n            }\n        }\n    <\/style>\n<\/head>\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>\u52a0\u76df\u4f18\u52bf\u5c55\u793a<\/title>\n    <style>\n        body {\n            font-family: Arial, sans-serif;\n            margin: 0;\n            padding: 0;\n            background-color: white;\n        }\n\n       .advantage-container {\n            display: flex;\n            flex-wrap: wrap;\n            justify-content: space-around;\n            padding: 20px;\n        }\n\n       .advantage-item {\n            width: 30%;\n            min-width: 250px;\n            margin-bottom: 20px;\n        }\n\n       .advantage-number {\n            font-size: 36px;\n            font-weight: bold;\n            color: #000;\n        }\n\n       .advantage-title {\n            font-size: 18px;\n            font-weight: bold;\n            margin-bottom: 5px;\n            background-color: #ffdd00;\n            display: inline-block;\n            padding: 3px 8px;\n        }\n\n       .advantage-desc {\n            font-size: 14px;\n            line-height: 1.4;\n        }\n\n       .view-more {\n            display: block;\n            width: 120px;\n            height: 40px;\n            margin: 20px auto 0;\n            border: 2px solid #000;\n            border-radius: 10px;\n            text-align: center;\n            line-height: 40px;\n            text-decoration: none;\n            color: #000;\n            font-size: 16px;\n            transition: background-color 0.3s, color 0.3s;\n        }\n\n       .view-more:hover {\n            background-color: #000;\n            color: white;\n        }\n    <\/style>\n<\/head>\n\n<body>\n    <div class=\"text-center py-10\">\n        <h1 class=\"text-[clamp(2rem,5vw,3.5rem)] font-bold text-gray-800\">\n            \u52a0\u76df\u5f00\u5e97\u4f18\u52bf\n        <\/h1>\n        <p class=\"text-gray-600 mt-3 text-lg\">\u516b\u5927\u6838\u5fc3\u4f18\u52bf\uff0c\u52a9\u60a8\u8f7b\u677e\u521b\u4e1a<\/p>\n    <\/div>\n    <div class=\"advantage-container\">\n    <div class=\"advantage-container\">\n        <div class=\"advantage-item\">\n            <span class=\"advantage-number\">1#<\/span>\n            <span class=\"advantage-title\">\u8d85\u4f4e\u6295\u8d44\u95e8\u69db<\/span>\n            <p class=\"advantage-desc\">\u5355\u5e97\u603b\u6295\u8d44\u4ec515\u4e07\u5143\uff0c\u6bd4\u4f20\u7edf\u9910\u996e\u8282\u770150%\u4ee5\u4e0a\u3002<\/p>\n        <\/div>\n        <div class=\"advantage-item\">\n            <span class=\"advantage-number\">2#<\/span>\n            <span class=\"advantage-title\">\u6781\u81f4\u6807\u51c6\u5316<\/span>\n            <p class=\"advantage-desc\">2\u5206\u949f\u51fa\u9910\uff0c\u5c0f\u767d\u4e5f\u80fd\u8f7b\u677e\u8fd0\u8425\u3002<\/p>\n        <\/div>\n        <div class=\"advantage-item\">\n            <span class=\"advantage-number\">3#<\/span>\n            <span class=\"advantage-title\">\u4e13\u4e1a\u9009\u5740\u56e2\u961f<\/span>\n            <p class=\"advantage-desc\">10\u5e74\u4ee5\u4e0a\u9009\u5740\u7ecf\u9a8c\u548c\u5927\u6570\u636e\u5168\u94fe\u8def\u9009\u5740\u652f\u6301\u3002<\/p>\n        <\/div>\n        <div class=\"advantage-item\">\n            <span class=\"advantage-number\">4#<\/span>\n            <span class=\"advantage-title\">\u4fdd\u59c6\u7ea7\u8fd0\u8425\u6276\u6301<\/span>\n            <p class=\"advantage-desc\">8\u5929\u5c01\u95ed\u57f9\u8bad\uff0c3\u5929\u7763\u5bfc\u4ece\u5f00\u5e97\u5230\u76c8\u5229\u5168\u7a0b\u62a4\u822a\u3002<\/p>\n        <\/div>\n        <div class=\"advantage-item\">\n            <span class=\"advantage-number\">5#<\/span>\n            <span class=\"advantage-title\">\u9ad8\u6bdb\u5229\u4ea7\u54c1\u77e9\u9635<\/span>\n            <p class=\"advantage-desc\">\u9ad8\u9891\u590d\u8d2d+\u9ad8\u6bdb\u5229\u9910\u54c1\u642d\u914d\u7ec4\u5408\uff0c\u9501\u5b9a65%\u6bdb\u5229\u7387\u3002<\/p>\n        <\/div>\n        <div class=\"advantage-item\">\n            <span class=\"advantage-number\">6#<\/span>\n            <span class=\"advantage-title\">\u5f3a\u4f9b\u5e94\u94fe\u4fdd\u969c<\/span>\n            <p class=\"advantage-desc\">\u4e2d\u592e\u53a8\u623f\u76f4\u4f9b\uff0c\u6210\u672c\u76f4\u964d10%-15%<\/p>\n        <\/div>\n        <div class=\"advantage-item\">\n            <span class=\"advantage-number\">7#<\/span>\n            <span class=\"advantage-title\">\u98df\u6750\u7cbe\u7ec6\u5316\u7ba1\u7406<\/span>\n            <p class=\"advantage-desc\">\u95e8\u5e97\u98df\u6750\u8017\u635f\u4ec5\u4e3a1%\u3002<\/p>\n        <\/div>\n        <div class=\"advantage-item\">\n            <span class=\"advantage-number\">8#<\/span>\n            <span class=\"advantage-title\">\u54c1\u724c\u8425\u9500\u8d4b\u80fd<\/span>\n            <p class=\"advantage-desc\">\u603b\u90e8\u6d41\u91cf\u652f\u6301\uff0c\u7ebf\u4e0a\u7ebf\u4e0b\u5168\u57df\u5f15\u6d41<\/p>\n        <\/div>\n        <div class=\"advantage-item\">\n            <span class=\"advantage-number\">9#<\/span>\n            <span class=\"advantage-title\">\u88c5\u4fee\u6258\u7ba1<\/span>\n            <p class=\"advantage-desc\">\u4e13\u4e1a\u5de5\u7a0b\u56e2\u961f\u9ad8\u6548\u4e0d\u8d70\u5f2f\u8def\uff0c10-15\u5929\u5b8c\u5de5\u3002<\/p>\n        <\/div>\n        <a href=\"https:\/\/www.asaixiaomian.com\/%e5%8a%a0%e7%9b%9f%e6%88%91%e4%bb%ac-2\/\" class=\"view-more\">\u4e86\u89e3\u66f4\u591a<\/a>\n    <\/div>\n\n\n\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>\u963f\u8d5b\u5c0f\u9762 &#8211; \u91cd\u5e86\u5927\u9aa8\u5c0f\u9762\u5f00\u521b\u8005<\/title>\n    <script src=\"https:\/\/cdn.tailwindcss.com\"><\/script>\n    <link href=\"https:\/\/cdn.jsdelivr.net\/npm\/font-awesome@4.7.0\/css\/font-awesome.min.css\" rel=\"stylesheet\">\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@300;400;500;600;700&#038;display=swap\" rel=\"stylesheet\">\n    \n    <script>\n        tailwind.config = {\n            theme: {\n                extend: {\n                    colors: {\n                        primary: '#E63946', \/\/ \u4e3b\u8272\u8c03\uff1a\u6e29\u6696\u7ea2\u8272\uff0c\u4ee3\u8868\u8fa3\u6912\u548c\u70ed\u60c5\n                        secondary: '#F1C40F', \/\/ \u8f85\u52a9\u8272\uff1a\u91d1\u9ec4\u8272\uff0c\u4ee3\u8868\u5c0f\u9ea6\u548c\u98df\u6b32\n                        tertiary: '#8D99AE', \/\/ \u7b2c\u4e09\u8272\uff1a\u67d4\u548c\u84dd\u7070\u8272\uff0c\u63d0\u4f9b\u5bf9\u6bd4\n                        dark: '#1D3557', \/\/ \u6df1\u8272\uff1a\u6df1\u84dd\u7070\u8272\uff0c\u7528\u4e8e\u6587\u672c\n                        light: '#F1FAEE', \/\/ \u6d45\u8272\uff1a\u7c73\u767d\u8272\uff0c\u7528\u4e8e\u80cc\u666f\n                    },\n                    fontFamily: {\n                        inter: ['Inter', 'sans-serif'],\n                    },\n                }\n            }\n        }\n    <\/script>\n    \n    <style type=\"text\/tailwindcss\">\n        @layer utilities {\n            .content-auto {\n                content-visibility: auto;\n            }\n            .text-shadow {\n                text-shadow: 0 2px 4px rgba(0,0,0,0.3);\n            }\n            .text-shadow-lg {\n                text-shadow: 0 4px 8px rgba(0,0,0,0.5);\n            }\n            .bg-blur {\n                backdrop-filter: blur(8px);\n            }\n            .animate-fade-in {\n                animation: fadeIn 0.8s ease-in-out;\n            }\n            .animate-slide-up {\n                animation: slideUp 0.8s ease-out;\n            }\n            .animate-pulse-slow {\n                animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;\n            }\n            @keyframes fadeIn {\n                from { opacity: 0; }\n                to { opacity: 1; }\n            }\n            @keyframes slideUp {\n                from { transform: translateY(30px); opacity: 0; }\n                to { transform: translateY(0); opacity: 1; }\n            }\n            @keyframes pulse {\n                0%, 100% { opacity: 1; }\n                50% { opacity: 0.7; }\n            }\n            .carousel-item {\n                transition: transform 0.5s ease-in-out;\n            }\n            .carousel-indicator {\n                transition: all 0.3s ease;\n            }\n            .carousel-indicator.active {\n                background-color: #E63946;\n                width: 2rem;\n            }\n            .product-card {\n                transition: all 0.3s ease;\n            }\n            .product-card:hover {\n                transform: translateY(-10px);\n            }\n            .news-card {\n                transition: all 0.3s ease;\n            }\n            .news-card:hover {\n                transform: translateY(-5px);\n                box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);\n            }\n        }\n    <\/style>\n<\/head>\n    <!-- \u4e09\u7bc7\u65b0\u95fb\u7b80\u4ecb -->\n    <section class=\"py-20 bg-white\">\n        <div class=\"container mx-auto px-4\">\n            <div class=\"text-center mb-12\">\n                <h2 class=\"text-[clamp(1.5rem,3vw,2.5rem)] font-bold text-dark mb-4\">\n                    \u6700\u65b0\u8d44\u8baf\n                <\/h2>\n                <p class=\"text-gray-600 text-lg max-w-3xl mx-auto\">\n                    \u4e86\u89e3\u963f\u8d5b\u5c0f\u9762\u7684\u6700\u65b0\u52a8\u6001\u548c\u884c\u4e1a\u8d44\u8baf\n                <\/p>\n            <\/div>\n            \n            <div class=\"grid grid-cols-1 md:grid-cols-3 gap-8\">\n                <!-- \u65b0\u95fb 1 -->\n                <div class=\"news-card bg-light rounded-xl overflow-hidden shadow-md\">\n                    <div class=\"relative\">\n                        <img decoding=\"async\" src=\"\/image\/xinwen1.png\" alt=\"\u86c7\u5e74\u9996\u7206\uff01\u963f\u8d5b\u5c0f\u9762\u9996\u8f6e\u5929\u4f7f\u878d\u8d44\uff01\" class=\"w-full h-56 object-cover\">\n                    <\/div>\n                    <div class=\"p-6\">\n                        <h3 class=\"text-xl font-bold text-dark mb-2\">\u86c7\u5e74\u9996\u7206\uff01\u963f\u8d5b\u5c0f\u9762\u9996\u8f6e\u5929\u4f7f\u878d\u8d44\uff01<\/h3>\n                        <div class=\"flex items-center text-gray-500 text-sm mb-3\">\n                            <i class=\"fa fa-calendar-o mr-2\"><\/i>\n                        <\/div>\n                        <p class=\"text-gray-600 mb-4\">\n                            \u300c\u963f\u8d5b\u5c0f\u9762\u300d\u6210\u529f\u83b7\u5f97\u4e86\u9996\u8f6e\u5929\u4f7f\u8f6e\u878d\u8d44\uff01\u6295\u8d44\u65b9\u4e3a\u7f8e\u4e1a\u8fde\u9501\u5de8\u5934\u6d41\u884c\u7f8e\u80a1\u4efd\uff0c\u4e9a\u6d32\u5403\u9762\u516c\u53f8\u8ddf\u6295\u3002\n                        <\/p>\n                        <a href=\"https:\/\/www.asaixiaomian.com\/2025\/02\/05\/%e8%9b%87%e5%b9%b4%e9%a6%96%e7%88%86%ef%bc%81%e9%98%bf%e8%b5%9b%e5%b0%8f%e9%9d%a2%e9%a6%96%e8%bd%ae%e5%a4%a9%e4%bd%bf%e8%9e%8d%e8%b5%84%ef%bc%81\/\" class=\"inline-flex items-center text-primary font-medium hover:text-primary\/80 transition-colors\">\n                            \u9605\u8bfb\u5168\u6587 <i class=\"fa fa-angle-right ml-1\"><\/i>\n                        <\/a>\n                    <\/div>\n                <\/div>\n                \n                <!-- \u65b0\u95fb 2 -->\n                <div class=\"news-card bg-light rounded-xl overflow-hidden shadow-md\">\n                    <div class=\"relative\">\n                        <img decoding=\"async\" src=\"\/image\/xinwen4.png\" alt=\"\u963f\u8d5b\u56de\u4e61\u30fb\u4e00\u8d77\u51fa\u53d1\uff01\u8fd9\u573a\u6751\u91cc\u7684\u53d1\u5e03\u4f1a\u85cf\u7740\u963f\u8d5b\u5c0f\u9762\u6700\u52a8\u4eba\u7684\u521d\u5fc3\uff01\" class=\"w-full h-56 object-cover\">\n                    <\/div>\n                    <div class=\"p-6\">\n                        <h3 class=\"text-xl font-bold text-dark mb-2\">\u963f\u8d5b\u56de\u4e61\u30fb\u4e00\u8d77\u51fa\u53d1\uff01\u8fd9\u573a\u6751\u91cc\u7684\u53d1\u5e03\u4f1a\u85cf\u7740\u963f\u8d5b\u5c0f\u9762\u6700\u52a8\u4eba\u7684\u521d\u5fc3\uff01&#8221;<\/h3>\n                        <div class=\"flex items-center text-gray-500 text-sm mb-3\">\n                            <i class=\"fa fa-calendar-o mr-2\"><\/i>\n                        <\/div>\n                        <p class=\"text-gray-600 mb-4\">\n                           8\u670829\u65e5\uff0c\u6e05\u8fdc\u82f1\u5fb7\u9a6c\u8360\u5858\u6751\u7684\u9752\u5c71\u7eff\u6c34\u95f4\u683c\u5916\u70ed\u95f9 \u2014\u2014\u201c\u963f\u8d5b\u56de\u4e61\u30fb\u4e00\u8d77\u51fa\u53d1\u201d2025 \u963f\u8d5b\u5c0f\u9762\u6751\u91cc\u53d1\u5e03\u4f1a\u5728\u8fd9\u91cc\u6e29\u60c5\u542f\u5e55\u3002\u4ece\u57ce\u5e02\u56de\u5230\u4e61\u6751\uff0c\u4ece\u54c1\u724c\u8d70\u5411\u6839\u6e90\uff0c\u6211\u4eec\u5e26\u7740\u5341\u5e74\u521b\u4e1a\u7684\u6c89\u6dc0\u3001\u5bf9\u4e61\u4eb2\u7684\u611f\u6069\uff0c\u4ee5\u53ca \u201c\u4eba\u4eba\u5403\u5f97\u8d77\u3001\u4eba\u4eba\u5f00\u5f97\u8d77\u201d \u7684\u627f\u8bfa\uff0c\u4e0e\u5168\u6751\u4e61\u90bb\u3001\u52a0\u76df\u5546\u4f19\u4f34\u3001\u884c\u4e1a\u5927\u5496\u5171\u8d74\u8fd9\u573a\u610f\u4e49\u975e\u51e1\u7684\u76f8\u805a\u3002\n                        <\/p>\n                        <a href=\"https:\/\/www.asaixiaomian.com\/?p=667\" class=\"inline-flex items-center text-primary font-medium hover:text-primary\/80 transition-colors\">\n                            \u9605\u8bfb\u5168\u6587 <i class=\"fa fa-angle-right ml-1\"><\/i>\n                        <\/a>\n                    <\/div>\n                <\/div>\n                \n                <!-- \u65b0\u95fb 3 -->\n                <div class=\"news-card bg-light rounded-xl overflow-hidden shadow-md\">\n                    <div class=\"relative\">\n                        <img decoding=\"async\" src=\"\/image\/xinwen3.png\" alt=\"\u5c0f\u9762\u754c\u7684\u871c\u96ea\u51b0\u57ce\uff0c\u963f\u8d5b\u5c0f\u9762\u5982\u4f55\u752815\u5143\u5ba2\u5355\u4ef7\u6495\u5f00\u5343\u4ebf\u8d5b\u9053\uff1f\" class=\"w-full h-56 object-cover\">\n                    <\/div>\n                    <div class=\"p-6\">\n                        <h3 class=\"text-xl font-bold text-dark mb-2\">\u5c0f\u9762\u754c\u7684\u871c\u96ea\u51b0\u57ce\uff0c\u963f\u8d5b\u5c0f\u9762\u5982\u4f55\u752815\u5143\u5ba2\u5355\u4ef7\u6495\u5f00\u5343\u4ebf\u8d5b\u9053\uff1f<\/h3>\n                        <div class=\"flex items-center text-gray-500 text-sm mb-3\">\n                            <i class=\"fa fa-calendar-o mr-2\"><\/i>\n                        <\/div>\n                        <p class=\"text-gray-600 mb-4\">\n\u793e\u533a\u7ecf\u6d4e\u6b63\u6084\u7136\u5d1b\u8d77\uff0c\u963f\u8d5b\u5c0f\u9762\u5982\u540c\u4e00\u4f4d\u654f\u9510\u7684\u5f04\u6f6e\u513f\uff0c\u7cbe\u51c6\u5730\u6293\u4f4f\u4e86\u673a\u9047\uff0c\u4ee5\u72ec\u7279\u7684\u5b9a\u4f4d\u3001\u521b\u65b0\u7684\u6a21\u5f0f\u548c\u5f3a\u5927\u7684\u5b9e\u529b\uff0c\u5728\u9910\u996e\u5e02\u573a\u4e2d\u5d2d\u9732\u5934\u89d2\u3002\n                        <\/p>\n                        <a href=\"https:\/\/www.asaixiaomian.com\/2025\/03\/13\/%e9%98%bf%e8%b5%9b%e5%b0%8f%e9%9d%a2%ef%bc%9a15-%e5%85%83%e5%ae%a2%e5%8d%95%e4%bb%b7%e5%bc%80%e5%90%af%e7%a4%be%e5%8c%ba%e9%a4%90%e9%a5%ae%e6%96%b0%e4%bc%a0%e5%a5%87\/\" class=\"inline-flex items-center text-primary font-medium hover:text-primary\/80 transition-colors\">\n                            \u9605\u8bfb\u5168\u6587 <i class=\"fa fa-angle-right ml-1\"><\/i>\n                        <\/a>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n","protected":false},"excerpt":{"rendered":"<p>&#10094; &#10095; \u963f\u8d5b [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-33","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.asaixiaomian.com\/index.php?rest_route=\/wp\/v2\/pages\/33","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.asaixiaomian.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.asaixiaomian.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.asaixiaomian.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.asaixiaomian.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=33"}],"version-history":[{"count":34,"href":"https:\/\/www.asaixiaomian.com\/index.php?rest_route=\/wp\/v2\/pages\/33\/revisions"}],"predecessor-version":[{"id":684,"href":"https:\/\/www.asaixiaomian.com\/index.php?rest_route=\/wp\/v2\/pages\/33\/revisions\/684"}],"wp:attachment":[{"href":"https:\/\/www.asaixiaomian.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=33"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}