* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            touch-action: pan-y;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
            padding: 20px;
            padding-bottom: 140px;
        }
        
        /* 搜索高亮样式 */
        .highlight-search {
            background-color: #ffeb3b;
            padding: 2px 0;
            border-radius: 2px;
            box-shadow: 0 0 0 2px #ffeb3b;
        }
        
        /* 浮动搜索框样式 */
        .floating-search {
            position: fixed;
            bottom: 90px;
            right: 20px;
            z-index: 1000;
            width: 300px;
        }
        
        .search-button {
            background: linear-gradient(135deg, #4a6bdf 0%, #6e48aa 100%);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: all 0.3s;
            position: absolute;
            bottom: 0;
            right: 0;
        }
        
        .search-button:hover {
            transform: scale(1.1);
        }
        
        .search-button i {
            font-size: 24px;
        }
        
        .search-box {
            position: absolute;
            bottom: 70px;
            right: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            overflow: hidden;
            transform: scale(0);
            transform-origin: bottom right;
            transition: transform 0.3s;
            width: 100%;
            padding: 15px;
        }
        
        .search-box.open {
            transform: scale(1);
        }
        
        #floatingSearchInput {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            margin-bottom: 10px;
        }
        
        .search-actions {
            display: flex;
            justify-content: space-between;
        }
        
        .search-actions button {
            padding: 8px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        
        .search-cancel {
            background: #f1f1f1;
            color: #333;
        }
        
        .search-submit {
            background: #6e48aa;
            color: white;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }
        
        /* 图片画廊样式 */
        .image-gallery-container {
            position: relative;
            margin: 20px 0;
            overflow: hidden;
        }
        
        .image-gallery {
            display: flex;
            transition: transform 0.3s ease;
            will-change: transform;
        }
        
        .gallery-slide {
            min-width: 100%;
            position: relative;
            text-align: center;
        }
        
        .gallery-image {
            max-width: 80%;
            height: auto;
            max-height: 300px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            cursor: zoom-in;
            transition: transform 0.3s;
        }
        
        .gallery-image:hover {
            transform: scale(1.02);
        }
        
        .gallery-nav {
            display: flex;
            justify-content: center;
            margin-top: 15px;
        }
        
        .gallery-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .gallery-dot.active {
            background: #6e48aa;
        }
        
        .gallery-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .image-gallery-container:hover .gallery-arrow {
            opacity: 1;
        }
        
        .gallery-arrow.prev {
            left: 10px;
        }
        
        .gallery-arrow.next {
            right: 10px;
        }
        
        /* 图片放大效果 */
        .image-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        
        .image-modal.active {
            opacity: 1;
            pointer-events: auto;
        }
        
        .modal-gallery-container {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .modal-gallery {
            display: flex;
            height: 100%;
            transition: transform 0.3s ease;
            will-change: transform;
        }
        
        .modal-slide {
            min-width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }
        
        .modal-image {
            max-width: 90%;
            max-height: 90%;
            transform: scale(0.8);
            transition: transform 0.3s;
            cursor: zoom-out;
        }
        
        .modal-image.zoomed {
            transform: scale(1);
            cursor: grab;
        }
        
        .modal-image.zoomed:active {
            cursor: grabbing;
        }
        
        .modal-nav {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            z-index: 10;
        }
        
        .modal-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .modal-dot.active {
            background: white;
        }
        
        .modal-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(0,0,0,0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            color: white;
            font-size: 24px;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        
        .modal-arrow:hover {
            opacity: 1;
        }
        
        .modal-arrow.prev {
            left: 20px;
        }
        
        .modal-arrow.next {
            right: 20px;
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 30px;
            cursor: pointer;
            z-index: 11;
            background: rgba(0,0,0,0.5);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* 其他原有样式保持不变... */
        header {
            background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .search-container {
            padding: 15px;
            background: #f1f1f1;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        #searchInput {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        .quick-nav {
            background: #f1f1f1;
            padding: 10px;
            margin-bottom: 20px;
            border-radius: 4px;
        }
        
        .quick-nav h3 {
            margin-bottom: 10px;
            color: #6e48aa;
        }
        
        .quick-nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .quick-nav li {
            background: white;
            padding: 5px 10px;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .quick-nav a {
            text-decoration: none;
            color: #6e48aa;
            font-weight: bold;
        }
        
        .content {
            padding: 20px;
        }
        
        h1 {
            color: #6e48aa;
            margin-bottom: 20px;
            font-size: 28px;
        }
        
        h2 {
            color: #9d50bb;
            margin: 25px 0 15px;
            font-size: 24px;
            padding-bottom: 5px;
            border-bottom: 1px solid #eee;
        }
        
        h3 {
            color: #6e48aa;
            margin: 20px 0 10px;
            font-size: 20px;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        .product-section {
            margin-bottom: 40px;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .outfit-suggestion {
            background: #f8f4ff;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
        }
        
        .outfit-suggestion h4 {
            color: #6e48aa;
            margin-bottom: 10px;
        }
        
        .outfit-list {
            list-style-type: none;
        }
        
        .outfit-list li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }
        
        .outfit-list li:before {
            content: "•";
            color: #9d50bb;
            position: absolute;
            left: 0;
        }
        
        .highlight {
            background-color: #fffde7;
            padding: 10px;
            border-left: 3px solid #ffd600;
            margin: 10px 0;
        }
        
        .fashion-tip {
            background-color: #e8f5e9;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
        }
        
        .fashion-tip h4 {
            color: #2e7d32;
            margin-bottom: 10px;
        }
        
        .hidden {
            display: none;
        }
        
        /* 浮动菜单样式 */
        .floating-menu {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }
        
        .menu-button {
            background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }
        
        .menu-button:hover {
            transform: scale(1.1);
        }
        
        .menu-button i {
            font-size: 24px;
        }
        
        .menu-items {
            position: absolute;
            bottom: 70px;
            right: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            overflow: hidden;
            transform: scale(0);
            transform-origin: bottom right;
            transition: transform 0.3s;
            width: 180px;
        }
        
        .menu-items.open {
            transform: scale(1);
        }
        
        .menu-items a {
            display: block;
            padding: 12px 15px;
            color: #6e48aa;
            text-decoration: none;
            border-bottom: 1px solid #f1f1f1;
            transition: background 0.2s;
        }
        
        .menu-items a:hover {
            background: #f8f4ff;
        }
        
        .menu-items a:last-child {
            border-bottom: none;
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 24px;
            }
            
            h2 {
                font-size: 20px;
            }
            
            h3 {
                font-size: 18px;
            }
            
            .gallery-image {
                max-width: 90%;
            }
            
            .gallery-arrow {
                opacity: 1;
                width: 30px;
                height: 30px;
            }
            
            .modal-arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .modal-arrow.prev {
                left: 10px;
            }
            
            .modal-arrow.next {
                right: 10px;
            }
            
            .floating-menu {
                bottom: 15px;
                right: 15px;
            }
            
            .menu-button {
                width: 50px;
                height: 50px;
            }
            
            .menu-items {
                bottom: 60px;
                width: 160px;
            }
        }
        /* 浮动搜索框样式 */
        .floating-search {
            position: fixed;
            bottom: 90px; /* 放在菜单上方 */
            right: 20px;
            z-index: 1000;
            width: 300px;
        }
        
        .search-button {
            background: linear-gradient(135deg, #4a6bdf 0%, #6e48aa 100%);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: all 0.3s;
            position: absolute;
            bottom: 0;
            right: 0;
        }
        
        .search-button:hover {
            transform: scale(1.1);
        }
        
        .search-button i {
            font-size: 24px;
        }
        
        .search-box {
            position: absolute;
            bottom: 70px;
            right: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            overflow: hidden;
            transform: scale(0);
            transform-origin: bottom right;
            transition: transform 0.3s;
            width: 100%;
            padding: 15px;
        }
        
        .search-box.open {
            transform: scale(1);
        }
        
        #floatingSearchInput {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            margin-bottom: 10px;
        }
        
        .search-actions {
            display: flex;
            justify-content: space-between;
        }
        
        .search-actions button {
            padding: 8px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        
        .search-cancel {
            background: #f1f1f1;
            color: #333;
        }
        
        .search-submit {
            background: #6e48aa;
            color: white;
        }
        
        @media (max-width: 768px) {
            .floating-search {
                width: 260px;
                bottom: 80px;
                right: 15px;
            }
            
            .search-button {
                width: 50px;
                height: 50px;
            }
            
            .search-box {
                bottom: 60px;
            }
        }
        /* 优化后的浮动菜单样式 */
        .floating-menu {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        
        .menu-button {
            background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: all 0.3s;
            margin-bottom: 10px;
        }
        
        .menu-button:hover {
            transform: scale(1.1);
        }
        
        .menu-button i {
            font-size: 24px;
        }
        
        .menu-items {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            overflow: hidden;
            transform: scale(0);
            transform-origin: bottom right;
            transition: transform 0.3s;
            width: 200px;
            max-height: 60vh;
            overflow-y: auto;
        }
        
        .menu-items.open {
            transform: scale(1);
        }
        
        .menu-items a {
            display: block;
            padding: 12px 15px;
            color: #6e48aa;
            text-decoration: none;
            border-bottom: 1px solid #f1f1f1;
            transition: background 0.2s;
        }
        
        .menu-items a:hover {
            background: #f8f4ff;
        }
        
        .menu-items a:last-child {
            border-bottom: none;
        }
        
        /* 滚动条样式 */
        .menu-items::-webkit-scrollbar {
            width: 6px;
        }
        
        .menu-items::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        
        .menu-items::-webkit-scrollbar-thumb {
            background: #9d50bb;
            border-radius: 3px;
        }
        
        .menu-items::-webkit-scrollbar-thumb:hover {
            background: #6e48aa;
        }
        
        /* 分类标题样式 */
        .menu-category {
            font-weight: bold;
            background: #f8f4ff;
            color: #6e48aa;
            padding: 10px 15px;
            border-bottom: 1px solid #e0d0f0;
        }
        
        @media (max-width: 768px) {
            .floating-menu {
                bottom: 15px;
                right: 15px;
            }
            
            .menu-button {
                width: 50px;
                height: 50px;
            }
            
            .menu-items {
                width: 180px;
                max-height: 50vh;
            }
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Microsoft YaHei', Arial, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
            padding: 20px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
            padding: 20px;
        }
        
        h1 {
            color: #6e48aa;
            margin-bottom: 30px;
            text-align: center;
            font-size: 28px;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 1px solid #eee;
        }
        
        .product-info {
            padding: 15px;
            text-align: center;
        }
        
        .product-name {
            font-size: 16px;
            color: #333;
            margin-bottom: 5px;
            font-weight: bold;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .product-price {
            color: #e74c3c;
            font-weight: bold;
            font-size: 18px;
        }
        
        .pagination-container > span{
            display: none;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .page-numbers ,.pagination li,.pagination li span{
            display: flex;
            list-style: none;
        }
        
        .page-numbers li ,.pagination li{
            margin: 0 5px;
        }
        
        .page-numbers a,.pagination li a,.pagination li span{
            display: block;
            padding: 8px 15px;
            background: #f1f1f1;
            color: #333;
            border-radius: 4px;
            text-decoration: none;
            transition: background 0.3s;
        }
        
        .page-numbers a:hover, .page-numbers a.active,.pagination .disabled span,.pagination li a:hover,.pagination li.active span{
            background: #6e48aa;
            color: white;
        }
        
        /* 移动端样式 */
        @media (max-width: 768px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .product-image {
                height: 150px;
            }
            
            .product-info {
                padding: 10px;
            }
            
            .product-name {
                font-size: 14px;
            }
            
            .product-price {
                font-size: 16px;
            }
            
            .page-numbers a {
                padding: 6px 12px;
            }
        }
        
        /* 浮动搜索和菜单按钮 (保持与之前一致) */
        .floating-search {
            position: fixed;
            bottom: 90px;
            right: 20px;
            z-index: 1000;
            width: 300px;
        }
        
        .floating-menu {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }