/* PC homepage – extracted from home.blade.php */

/* classify 样式 */
        .classify {
            width: 85%;
            margin: 0 auto;
            margin-top: 0;
        }

        /* 手机端 classify 宽度调整 */
        @media (max-width: 749px) {
            .classify {
                width: 92%;
            }
        }

        /* 分类区域容器 - 渐变边框 */
        .category-container {
            position: relative;
            padding: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #fef3c7 50%, #ffffff 100%);
            border-radius: 16px;
        }

        .category-container::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 2px;
            background: linear-gradient(135deg, #fef08a, #fde047, #fef08a);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        /* 分类区域样式 - 屏幕宽度 >= 750px */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 16px;
            position: relative;
            z-index: 1;
        }

        .category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 12px 8px;
            border-radius: 12px;
        }

        .category-item:hover {
            transform: translateY(-4px);
            background: rgba(212, 175, 55, 0.08);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
        }

        .category-item:active {
            transform: translateY(-2px) scale(0.98);
        }

        .category-img-wrapper {
            width: 92px;
            height: 92px;
            border-radius: 14px;
            overflow: hidden;
            background: linear-gradient(145deg, #ffffff, #f3f4f6);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .category-item:hover .category-img-wrapper {
            box-shadow: 0 6px 16px rgba(212, 175, 55, 0.2);
            transform: scale(1.05);
        }

        .category-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .category-name {
            font-size: 16px;
            font-weight: 700;
            color: #1f2937;
            text-align: center;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            max-width: 100%;
        }

        /* 分类区域样式 - 屏幕宽度 < 750px */
        @media (max-width: 749px) {
            .category-container {
                padding: 16px;
                background: linear-gradient(135deg, #ffffff 0%, #fffbeb 50%, #ffffff 100%);
            }

            .category-container::before {
                padding: 1.5px;
                background: linear-gradient(135deg, #fef3c7, #fde68a, #fef3c7);
            }

            .category-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 14px;
            }

            .category-item {
                gap: 8px;
            }

            .category-img-wrapper {
                width: 68px;
                height: 68px;
            }

            .category-name {
                font-size: 14px;
                font-weight: 700;
            }
        }

        /* 促销产品区域样式 - 屏幕宽度 >= 750px */
        .promotion-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }

        .promotion-item {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .promotion-item:hover {
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
            transform: translateY(-6px);
        }

        .promotion-item:active {
            transform: translateY(-3px);
        }

        .promotion-img-wrapper {
            position: relative;
            width: 100%;
            padding-top: 0;
            aspect-ratio: 1 / 1;
            background: #f9fafb;
        }

        .promotion-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center center;
        }

        .promotion-discount {
            position: absolute;
            top: 8px;
            left: 8px;
            padding: 4px 8px;
            background: linear-gradient(90deg, #ef4444, #dc2626);
            color: white;
            font-size: 12px;
            font-weight: 700;
            border-radius: 6px;
        }

        .promotion-info {
            padding: 10px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .promotion-title {
            font-size: 13px;
            color: #1f2937;
            font-weight: 500;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            margin-bottom: 8px;
        }

        .promotion-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .promotion-price {
            display: flex;
            align-items: baseline;
            gap: 6px;
        }

        .promotion-current-price {
            font-size: 16px;
            font-weight: 700;
            color: #f97316;
        }

        .promotion-original-price {
            font-size: 12px;
            color: #9ca3af;
            text-decoration: line-through;
        }

        .promotion-add-cart {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f97316;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .promotion-add-cart:hover {
            background: #ea580c;
        }

        .promotion-add-cart:active {
            transform: scale(0.95);
        }

        .promotion-add-cart i {
            font-size: 14px;
        }

        /* 促销产品区域样式 - 屏幕宽度 < 750px */
        @media (max-width: 749px) {
            .promotion-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .promotion-img-wrapper {
                padding-top: 0;
                aspect-ratio: 1 / 1;
            }

            .promotion-info {
                padding: 8px;
            }

            .promotion-title {
                font-size: 12px;
            }

            .promotion-current-price {
                font-size: 14px;
            }

            .promotion-original-price {
                font-size: 11px;
            }
        }

        /* 热门产品区域样式 - 屏幕宽度 >= 750px */
        .trending-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .trending-item {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .trending-item:hover {
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
            transform: translateY(-6px);
        }

        .trending-item:active {
            transform: translateY(-3px);
        }

        .trending-img-wrapper {
            display: none;
        }

        .trending-sup-no {
            display: none;
        }

        .trending-info {
            padding: 12px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .trending-title {
            font-size: 13px;
            color: #1f2937;
            font-weight: 500;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            margin-bottom: 4px;
        }

        .trending-material {
            font-size: 11px;
            color: #6b7280;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            margin-bottom: 8px;
        }

        .trending-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .trending-price {
            font-size: 16px;
            font-weight: 700;
            color: #f97316;
        }

        .trending-add-cart {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f97316;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .trending-add-cart:hover {
            background: #ea580c;
        }

        .trending-add-cart i {
            font-size: 14px;
        }

        /* 热门产品区域样式 - 屏幕宽度 < 750px */
        @media (max-width: 749px) {
            .trending-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .trending-info {
                padding: 10px;
            }

            .trending-title {
                font-size: 12px;
            }

            .trending-material {
                font-size: 10px;
            }

            .trending-price {
                font-size: 14px;
            }
        }

        /* 移动端优化样式 */
        .mobile-marquee-bar {
            display: none;
        }
        @media (max-width: 768px) {
            .mobile-marquee-bar {
                display: flex;
                align-items: center;
                background: linear-gradient(90deg, #1a1a1a, #2d2410);
                padding: 7px 10px;
                overflow: hidden;
                gap: 8px;
            }
            .marquee-icon {
                font-size: 15px;
                flex-shrink: 0;
            }
            .marquee-track {
                flex: 1;
                overflow: hidden;
                white-space: nowrap;
            }
            .marquee-text {
                display: inline-block;
                color: #C9A84C;
                font-size: 12px;
                font-weight: 600;
                letter-spacing: .3px;
                animation: marquee-run 20s linear infinite;
            }
            @keyframes marquee-run {
                0%   { transform: translateX(0); }
                100% { transform: translateX(-50%); }
            }
        }

        /* 移动端卡片样式优化 */
        .mobile-product-card {
            transition: all 0.2s ease;
            touch-action: manipulation;
        }
        .mobile-product-card:active {
            transform: scale(0.98);
            opacity: 0.9;
        }

        /* 移动端按钮点击效果 */
        .mobile-btn {
            min-height: 44px;
            touch-action: manipulation;
        }
        .mobile-btn:active {
            opacity: 0.85;
        }

        /* 移动端安全区域适配 */
        .safe-bottom {
            padding-bottom: env(safe-area-inset-bottom);
        }

        /* 用户评论区域样式 */
        .reviews-section {
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 30%, #fafafa 100%);
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .reviews-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .reviews-section::after {
            content: '';
            position: absolute;
            top: 0;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .reviews-container {
            width: 85%;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .reviews-title {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .reviews-title::before,
        .reviews-title::after {
            content: '';
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #D4AF37);
            border-radius: 2px;
        }

        .reviews-title::after {
            background: linear-gradient(90deg, #D4AF37, transparent);
        }

        .reviews-subtitle {
            font-size: 15px;
            color: #6b7280;
            margin-bottom: 25px;
        }

        /* 评论统计信息 */
        .reviews-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .review-stat-item {
            text-align: center;
        }

        .review-stat-value {
            font-size: 32px;
            font-weight: 700;
            color: #D4AF37;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .review-stat-label {
            font-size: 13px;
            color: #6b7280;
            margin-top: 6px;
        }

        .review-stat-stars {
            display: flex;
            gap: 2px;
        }

        .review-stat-star {
            font-size: 16px;
            color: #fbbf24;
        }

        /* 评论卡片 */
        .review-card {
            background: white;
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 320px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            right: 10px;
            font-size: 80px;
            font-family: Georgia, serif;
            color: rgba(212, 175, 55, 0.08);
            pointer-events: none;
        }

        .review-card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }

        .review-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #D4AF37, #B8860B);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .review-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .review-user-info {
            flex: 1;
        }

        .review-username {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 2px;
        }

        .review-date {
            font-size: 12px;
            color: #9ca3af;
        }

        /* 星级评分 */
        .review-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 12px;
        }

        .star {
            font-size: 14px;
            color: #e5e7eb;
        }

        .star.filled {
            color: #fbbf24;
        }

        .review-content {
            font-size: 14px;
            color: #4b5563;
            line-height: 1.6;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .review-images {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: auto;
        }

        .review-image {
            width: 56px;
            height: 56px;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid #eee;
            background: #f5f5f5;
        }

        

        /* Swiper 导航按钮 */
        .reviews-swiper .swiper-button-prev,
        .reviews-swiper .swiper-button-next {
            width: 44px;
            height: 44px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            color: #333;
        }

        .reviews-swiper .swiper-button-prev:hover,
        .reviews-swiper .swiper-button-next:hover {
            background: #D4AF37;
            color: white;
        }

        .reviews-swiper .swiper-button-prev::after,
        .reviews-swiper .swiper-button-next::after {
            font-size: 18px;
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .reviews-container {
                width: 92%;
            }

            .reviews-title {
                font-size: 20px;
            }

            .review-card {
                padding: 20px;
            }

            .review-avatar {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }

            .review-username {
                font-size: 14px;
            }

            .review-content {
                font-size: 13px;
            }

            .review-image {
                width: 50px;
                height: 50px;
            }

            .reviews-swiper .swiper-button-prev,
            .reviews-swiper .swiper-button-next {
                width: 36px;
                height: 36px;
            }
        }

        /* 自定义滚动条 */
        .custom-scrollbar::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        .custom-scrollbar::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 3px;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #D4AF37, #B8860B);
            border-radius: 3px;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #B8860B, #9A6E07);
        }

        /* 页面加载动画 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .animate-fadeInUp {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .animate-fadeIn {
            animation: fadeIn 0.5s ease-out forwards;
        }

        .animate-scaleIn {
            animation: scaleIn 0.4s ease-out forwards;
        }

        .animation-delay-100 {
            animation-delay: 100ms;
        }

        .animation-delay-200 {
            animation-delay: 200ms;
        }

        .animation-delay-300 {
            animation-delay: 300ms;
        }

        .animation-delay-400 {
            animation-delay: 400ms;
        }

        .animation-delay-500 {
            animation-delay: 500ms;
        }

        /* 平滑过渡 */
        html {
            scroll-behavior: smooth;
        }

        /* 图片懒加载占位 */
        .lazy-image {
            background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
            position: relative;
            overflow: hidden;
        }

        .lazy-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 1.5s infinite;
        }

        @keyframes shimmer {
            100% {
                left: 100%;
            }
        }

        /* 价格数字动画 */
        .currency-price {
            position: relative;
        }

        /* 按钮波纹效果 */
        .btn-ripple {
            position: relative;
            overflow: hidden;
        }

        .btn-ripple::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s;
        }

        .btn-ripple:active::after {
            width: 200px;
            height: 200px;
        }
        .gallery-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            display: -webkit-flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .gallery-content {
            position: relative;
            width: 90%;
            max-width: 1200px;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        /* 缩略图导航条 - 左侧竖排 */
        .thumbnail-bar {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 15px;
            overflow-y: auto;
            overflow-x: hidden;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 12px;
            max-height: 70vh;
            backdrop-filter: blur(10px);
            flex-shrink: 0;
            order: -1;
        }

        .thumbnail-bar::-webkit-scrollbar {
            width: 6px;
        }

        .thumbnail-bar::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
        }

        .thumbnail-bar::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 3px;
        }

        .thumbnail-bar::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .image-container {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-container img {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            -webkit-object-fit: contain;
            transition: opacity 0.3s;
            image-rendering: -webkit-optimize-contrast;
        }

        .controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 20px;
            color: white;
        }

        .arrow {
            cursor: pointer;
            font-size: 50px;
            padding: 10px 20px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 5px;
            transition: 0.2s;
        }

        .arrow:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .hidden {
            visibility: hidden !important;
        }

        .close-btn {
            position: absolute;
            top: -60px;
            right: 0;
            color: white;
            font-size: 40px;
            cursor: pointer;
            padding: 10px;
            width: 50px;
            height: 50px;
            background: rgba(0, 0, 0, 0.7);
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
            opacity: 0.8;
        }

        .category-item {
            position: relative;
        }

        .category-item-span {
            width: 100%;
            height: 36px;
            line-height: 36px;
            position: absolute;
            bottom: 0px;
            background-color: #0a0a0a;
            opacity: 0.7;
            color: white;
            text-align: center;
            left: 0;
            font-size: 24px;
            font-weight: 700;
        }

        .thumbnail {
            width: 80px;
            height: 80px;
            object-fit: cover;
            cursor: pointer;
            border: 3px solid transparent;
            border-radius: 8px;
            transition: all 0.3s;
            opacity: 0.6;
            flex-shrink: 0;
        }

        .thumbnail:hover {
            opacity: 0.9;
            transform: scale(1.05);
        }

        .thumbnail.active {
            border-color: #D4AF37;
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

        .gallery-overlay * {
            box-sizing: border-box;
        }

        .img-box img {
            cursor: pointer;
            display: block;
            -webkit-touch-callout: none;
            max-width: 100%;
            height: auto;
            aspect-ratio: 1;
        }

        .img-box {
            display: -webkit-flex;
            -webkit-align-items: center;
            -webkit-justify-content: center;
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .gallery-content {
                flex-direction: column;
                gap: 15px;
            }

            .thumbnail-bar {
                order: 1;
                flex-direction: row;
                overflow-x: auto;
                overflow-y: hidden;
                max-height: none;
                max-width: 90%;
                padding: 5px;
            }

            .thumbnail-bar::-webkit-scrollbar {
                height: 6px;
                width: auto;
            }

            .image-container {
                order: 0;
            }

            .thumbnail {
                width: 60px;
                height: 60px;
            }

            .close-btn {
                top: -50px;
                width: 40px;
                height: 40px;
                line-height: 40px;
                font-size: 28px;
            }
        }

        /* 添加点击高亮移除 */
        img {
            -webkit-tap-highlight-color: transparent;
        }

        .no-webp .multi-image-icon {
            background-image: url('https://www.fangjewellry.com/m.png');
        }

        @supports not (object-fit: contain) {
            .image-container {
                display: table !important;
                text-align: center;
            }

            .image-container img {
                max-width: none;
                height: auto;
                display: table-cell;
                vertical-align: middle;
            }
        }

        .img-box {
            overflow: hidden;
            -webkit-transform: translateZ(0);
        }

        .main-img {
            object-fit: cover !important;
            background: #f5f5f5;
            -webkit-touch-callout: none;
            width: 100%;
            height: 100%;
        }

        @supports (-webkit-touch-callout: none) {
            .img-box {
                display: -webkit-flex;
                -webkit-align-items: center;
                -webkit-justify-content: center;
            }

            .main-img {
                max-height: 100% !important;
            }
        }

        /* 产品相关样式 */
        .product-item-img img {
            max-height: 250px;
        }

        .info-item-mater p {
            width: 100%;
            text-align: left;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .info-item-img .images-item {
            width: 30px;
            border-radius: 5px;
        }

        .product-m-shopCart.hidden,
        .product-tag.hidden {
            display: none;
        }

        /* ========== 弹窗样式 ========== */

        /* 遮罩层 */
        .overPage {
            width: 100vw;
            height: 100vh;
            position: fixed;
            background-color: rgba(0, 0, 0, 0.85);
            left: 0;
            top: 0;
            z-index: 9998;
            opacity: 0.65;
            display: none;
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
        }

        /* 优惠券弹窗 - 现代珠宝电商风格 */
        .pupor-coupon {
            width: 420px;
            max-width: 90%;
            max-height: 90vh;
            position: fixed;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
            z-index: 9999;
            border-radius: 16px;
            display: none;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }

        /* 优惠券弹窗遮罩层 */
        .coupon-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9998;
            display: none;
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
        }

        body.modal-open {
            overflow: hidden;
        }

        .pupor-title {
            width: 100%;
            padding: 16px 10px 12px;
            text-align: center;
            background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
            position: relative;
            overflow: hidden;
            z-index: 10;
            border-radius: 16px 16px 0 0;
        }

        .pupor-title::before {
            content: '💎';
            position: absolute;
            top: 50%;
            left: 30px;
            transform: translateY(-50%);
            font-size: 32px;
            opacity: 0.3;
            z-index: 0;
        }

        .pupor-title::after {
            content: '💎';
            position: absolute;
            top: 50%;
            right: 30px;
            transform: translateY(-50%);
            font-size: 32px;
            opacity: 0.3;
            z-index: 0;
        }

        .pupor-title h2 {
            font-size: 22px;
            font-weight: 700;
            color: #D4AF37;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
        }

        .pupor-title p {
            font-size: 12px;
            color: #FFF8E7;
            margin: 5px 0 0 0;
            font-weight: 400;
            position: relative;
            z-index: 1;
        }

        .pupor-list {
            padding: 10px 12px;
            max-height: 480px;
            overflow-y: auto;
            background: #FFFFFF;
            margin: 0;
            position: relative;
            z-index: 10;
        }

        .pupor-list::-webkit-scrollbar {
            width: 6px;
        }

        .pupor-list::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }

        .pupor-list::-webkit-scrollbar-thumb {
            background: #D4AF37;
            border-radius: 3px;
        }

        .coupon-item {
            width: 100%;
            margin: 0 0 5px 0;
            display: flex;
            flex-direction: row;
            align-items: stretch;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            position: relative;
            z-index: 10;
            height: 60px;
        }

        .coupon-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
        }

        .coupon-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(135deg, #D4AF37, #B8860B);
            z-index: 1;
        }

        .coupon-item-over {
            flex: 1;
            padding: 10px 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, #FFF8E7 0%, #F4E4C1 100%);
            position: relative;
            z-index: 10;
        }

        .coupon-item-over .coupon-label {
            font-size: 11px;
            color: #B8860B;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .coupon-item-over .coupon-condition {
            font-size: 15px;
            color: #2C2C2C;
            font-weight: 700;
        }

        .coupon-item-line {
            width: 2px;
            background: repeating-linear-gradient(
                to bottom,
                #D4AF37 0px,
                #D4AF37 8px,
                transparent 8px,
                transparent 16px
            );
            position: relative;
        }

        .coupon-item-line::before,
        .coupon-item-line::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            background: #FFFFFF;
            border-radius: 50%;
            left: 50%;
            transform: translateX(-50%);
            z-index: 11;
        }

        .coupon-item-line::before {
            top: -8px;
        }

        .coupon-item-line::after {
            bottom: -8px;
        }

        .coupon-item-num {
            width: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
            padding: 10px 12px;
            position: relative;
            z-index: 10;
            flex-shrink: 0;
        }

        .coupon-item-num .amount {
            font-size: 22px;
            font-weight: 700;
            color: white;
            line-height: 1;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .coupon-item-num .currency {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            margin-top: 3px;
            text-transform: uppercase;
        }

        .couponBtn {
            width: 220px;
            height: 50px;
            margin: 20px auto 30px;
            line-height: 50px;
            background: linear-gradient(135deg, #D4AF37, #B8860B);
            border-radius: 25px;
            color: white;
            cursor: pointer;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .couponBtn:hover {
            background: linear-gradient(135deg, #B8860B, #9A7209);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
        }

        .coupon-tips {
            background: linear-gradient(135deg, #2C2C2C, #1A1A1A);
            color: white;
            padding: 25px 30px;
            font-size: 13px;
            line-height: 1.8;
            position: relative;
            z-index: 10;
        }

        .coupon-tips h4 {
            font-size: 15px;
            font-weight: 700;
            color: #D4AF37;
            margin: 0 0 15px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .coupon-tips p {
            margin: 0 0 10px 0;
            padding-left: 20px;
            position: relative;
        }

        .coupon-tips p::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #D4AF37;
            font-weight: 700;
        }

        .coupon-tips p:last-child {
            margin-bottom: 0;
        }

        .coupon-tips p {
            text-align: left;
            margin: 8px 0;
        }

        /* 购物车弹窗 */
        .product-shopCart {
            width: 85%;
            max-width: 1100px;
            height: 85vh;
            max-height: 750px;
            position: fixed;
            left: 50%;
            top: 56%;
            transform: translate(-50%, -50%);
            background-color: white;
            z-index: 9999;
            border-radius: 12px;
            border: none;
            display: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .shopcartTitle {
            width: 100%;
            height: 60px;
            line-height: 60px;
            border-bottom: 3px solid #D4AF37;
            font-size: 18px;
            font-weight: 700;
            text-align: center;
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            color: white;
            border-radius: 12px 12px 0 0;
            position: relative;
            padding: 0 70px;
        }

        .shop-close {
            position: relative;
            width: 100%;
        }

        .close-btn {
            position: absolute;
            top: -50px;
            right: -10px;
            cursor: pointer;
            transition: opacity 0.3s;
            color: white;
            width: 40px;
            height: 40px;
            background-color: #2c2c2c;
            line-height: 20px;
            text-align: center;
            border-radius: 50%;
            font-size: 22px;
        }


        .attrbuite-iframe {
            width: 100%;
            height: calc(100% - 60px);
            border: none;
        }

        /* 移动端购物车弹窗 */
        .product-m-shopCart {
            width: 100%;
            height: 75%;
            position: fixed;
            bottom: 0;
            left: 0;
            background-color: white;
            z-index: 9999;
            border-radius: 20px 20px 0 0;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
            display: none;
        }

        .m-attrbuite-iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* 标签弹窗 */
        .product-tag {
            width: 80%;
            max-width: 1000px;
            height: 750px;
            position: fixed;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            z-index: 999;
            border-radius: 10px;
            border: 1px solid #D4AF37;
            display: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .tag-iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 10px;
        }

        /* 购物车图标 */
        .shopcarInfo {
            width: 50px;
            height: 50px;
            position: fixed;
            right: 20px;
            bottom: 100px;
            background: linear-gradient(135deg, #D4AF37, #B8860B);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .shopcarInfo:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(212, 175, 55, 0.5);
        }

        .shopcarInfo .iconfont {
            font-size: 24px;
            color: white;
            font-weight: 700;
        }

        .shopCartNum {
            position: absolute;
            right: -5px;
            top: -5px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: #FF4444;
            font-size: 11px;
            text-align: center;
            line-height: 24px;
            color: white;
            font-weight: 700;
            display: none;
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .pupor-coupon {
                width: 92%;
                max-width: 92%;
                max-height: 85vh;
                top: 50%;
                transform: translate(-50%, -50%);
                border-radius: 16px;
            }

            .pupor-list {
                max-height: calc(85vh - 180px);
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }

            .banner{
                height:220px!important;
            }


            .classify .box h2{
                font-size:16px!important;
            }

            .section-subtitle{
                font-size:12px;
                letter-spacing:0;
            }
            .pupor-title {
                padding: 14px 12px 10px;
            }

            .pupor-title h2 {
                font-size: 18px;
                letter-spacing: 2px;
            }

            .pupor-title p {
                font-size: 11px;
                margin-top: 3px;
            }

            .pupor-list {
                padding: 10px 10px;
                max-height: none;
            }

            .coupon-item {
                flex-direction: row;
                margin-bottom: 6px;
                height: 56px;
            }

            .coupon-item-over {
                padding: 6px 10px;
            }

            .coupon-item-over .coupon-label {
                font-size: 10px;
            }

            .coupon-item-over .coupon-condition {
                font-size: 13px;
            }

            .coupon-item-num {
                width: 80px;
                padding: 8px 10px;
            }

            .coupon-item-num .amount {
                font-size: 20px;
            }

            .coupon-item-num .currency {
                font-size: 10px;
            }

            .couponBtn {
                width: 88%;
                max-width: 260px;
                margin: 10px auto 14px;
                height: 42px;
                line-height: 42px;
                font-size: 14px;
            }
        }

        .product-shopCart {
            width: 95%;
            height: 85vh;
            max-height: 90vh;
        }

        .shopcartTitle {
            height: 50px;
            line-height: 50px;
            font-size: 16px;
            padding: 0 60px;
        }

        .shop-close {
            right: 15px;
        }

        .close-btn {
            font-size: 28px;
        }

        .attrbuite-iframe {
            height: calc(100% - 50px);
        }

        .product-tag {
            width: 95%;
            height: 80%;
        }

        .shopcarInfo {
            bottom: 80px;
            right: 15px;
        }

