        /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            list-style: none;
            font-family: "Microsoft YaHei", sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            background-color: #f5f5f5;
            color: #333;
            scroll-behavior: smooth;
        }

        a {
            color: #090909;
            text-decoration: none;
        }

        a:hover {
            color: #ff0f23;
        }

        img {
            border: none;
            vertical-align: middle;
        }

        /* 通用工具类 */
        .clearfix::after {
            content: "";
            display: block;
            height: 0;
            clear: both;
            visibility: hidden;
        }

        .tag--recommend {
            background: #ff0f23;
            color: #fff !important;
            font-size: 12px !important;
            font-weight: 400 !important;
            display: inline-block !important;
            padding: 0 5px !important;
            margin-right: 8px !important;
            border-radius: 4px !important;
            line-height: 1.6 !important;
            position: relative;
            top: -4px;
        }

        /* 容器布局 */
        .container {
            margin: 0 auto;
            padding-top: 30px;
            width: 1600px;
            position: relative;
        }

        /* 响应式适配 */
        @media (max-width: 1680px) {
            .container {
                width: 1200px;
            }
        }

        /* 商家信息区 */
        .merchant-brand {
            width: 500px;
            margin-bottom: 30px;
            float: left;
        }

        .merchant-brand__avatar {
            float: left;
            width: 13%;
            height: auto;
            overflow: hidden;
            border-radius: 4px;
        }

        .merchant-brand__avatar img {
            width: 100%;
            display: block;
        }

        .merchant-brand__content {
            float: right;
            width: 85%;
            overflow: hidden;
        }

        .merchant-brand__title {
            font-size: 24px;
            font-weight: 700;
            line-height: 28px;
            color: #333;
        }

        .merchant-brand__tags {
            color: #0a8f08;
            margin-top: 10px;
            font-size: 14px;
            gap: 12px;
            display: flex;
            align-items: center;
        }

        .merchant-brand__tags span {
            border: 1px solid #0a8f08;
            padding: 2px 8px;
            border-radius: 3px;
            background-color: rgba(10, 143, 8, 0.05);
            transition: all 0.2s ease;
        }

        .merchant-brand__tags span:hover {
            background-color: rgba(10, 143, 8, 0.1);
        }

        .merchant-hotline {
            float: right;
            font-size: 14px;
            text-align: right;
        }

        .merchant-hotline i {
            color: #ff0f23;
        }

        .merchant-hotline span {
            display: block;
            color: #ff0f23;
            font-size: 32px;
            line-height: 1em;
            font-weight: 800;
            font-style: italic;
        }

        /* 图片轮播区 */
        .image-carousel {
            width: 992px;
            float: left;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 0;
        }

        @media (max-width: 1680px) {
            .image-carousel {
                width: 720px;
            }
        }

        /* 缩略图容器 */
        .image-carousel__thumb-wrapper {
            width: 150px;
            height: 720px;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            background-color: #fff;
        }

        @media (max-width: 1680px) {
            .image-carousel__thumb-wrapper {
                width: 120px;
                height: 580px;
            }
        }

        /* 滚动按钮 */
        .image-carousel__scroll-btn {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 22px;
            border: none;
            background-color: rgba(255, 255, 255, 0.9);
            color: #555;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.2s ease;
        }

        .image-carousel__scroll-btn--up {
            top: 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .image-carousel__scroll-btn--down {
            bottom: 0;
            border-top: 1px solid #f0f0f0;
        }

        .image-carousel__scroll-btn:hover {
            color: #ff0f23;
            background-color: #fff;
        }

        /* 缩略图列表 */
        .image-carousel__thumb-list {
            width: 100%;
            height: 100%;
            overflow-y: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            scroll-behavior: smooth;
            padding: 5px;
        }

        .image-carousel__thumb-list::-webkit-scrollbar {
            display: none;
        }

        /* 缩略图样式 */
        .image-carousel__thumb-img {
            width: 100%;
            height: auto;
            object-fit: cover;
            cursor: pointer;
            border: 2px solid #f0f0f0;
            border-radius: 4px;
            transition: all 0.2s ease;
        }

        .image-carousel__thumb-img.active {
            border-color: #ff0f23;
            box-shadow: 0 0 0 2px rgba(217, 48, 37, 0.1);
        }

        /* 大图容器 */
        .image-carousel__main-wrapper {
            flex: 1;
            width: 720px;
            height: 720px;
            border-radius: 8px;
            overflow: hidden;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            touch-action: pan-y;
        }

        @media (max-width: 1680px) {
            .image-carousel__main-wrapper {
                width: 580px;
                height: 580px;
            }
        }

        /* 切换按钮 */
        .image-carousel__switch-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border: 1px solid #f0f0f0;
            background-color: rgba(255, 255, 255, 0.9);
            color: #555;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.2s ease;
            border-radius: 50%;
        }

        .image-carousel__switch-btn--prev {
            left: 5px;
        }

        .image-carousel__switch-btn--next {
            right: 5px;
        }

        .image-carousel__switch-btn:hover {
            color: #ff0f23;
            background-color: #fff;
            border-color: #ff0f23;
            box-shadow: 0 2px 6px rgba(217, 48, 37, 0.2);
        }

        /* 大图样式 */
        .image-carousel__main-img {
            display: none;
            width: 100%;
            height: 100%;
            max-width: 720px;
            max-height: 720px;
            object-fit: contain;
            padding: 0px;
        }

        @media (max-width: 1680px) {
            .image-carousel__main-img {
                max-width: 580px;
                max-height: 580px;
            }
        }

        .image-carousel__main-img.active {
            display: block;
        }

        /* 右侧产品信息区 */
        .right-product-info {
            float: right;
            width: 590px;
            height: auto;
            max-height: calc(100vh - 40px);
            border-radius: 8px;
            background-color: #fff;
            padding: 25px;
            position: sticky;
            top: 20px;
            z-index: 99;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #f8f8f8;
            display: flex;
            flex-direction: column;
            transition: top 0.3s ease;
            margin-bottom: 0;
        }

        /* 联系方式滚动容器 */
        .right-product-info__contact-wrapper {
            flex: 1;
            overflow-y: auto;
            margin: 10px 0;
            scrollbar-width: thin;
            scrollbar-color: #ff0f23 #f5f5f5;
        }

        /* Webkit滚动条样式 */
        .right-product-info__contact-wrapper::-webkit-scrollbar {
            width: 6px;
        }

        .right-product-info__contact-wrapper::-webkit-scrollbar-track {
            background: #f5f5f5;
            border-radius: 3px;
        }

        .right-product-info__contact-wrapper::-webkit-scrollbar-thumb {
            background: #ff0f23;
            border-radius: 3px;
        }

        .right-product-info__contact-wrapper::-webkit-scrollbar-thumb:hover {
            background: #ff0f23;
        }

        @media (max-width: 1680px) {
            .right-product-info {
                width: 470px;
            }
        }

        .right-product-info__header {
            width: 100%;
            display: block;
            margin-bottom: 0;
            padding-bottom: 20px;
            border-bottom: 1px solid #f5f5f5;
            flex-shrink: 0;
        }

        .right-product-info__title {
            font-size: 24px;
            line-height: 30px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .right-product-info__price {
            color: #ff0f23;
            display: block;
            font-size: 18px;
            margin-bottom: 10px;
            font-style: normal;
            font-weight: 500;
        }

        .right-product-info__price span {
            font-size: 32px;
            font-weight: 700;
            margin-right: 5px;
            margin-left: 5px;
        }

        .right-product-info__publish-time {
            font-size: 14px;
            color: #999;
            display: block;
        }

        /* 联系方式列表 */
        .right-product-info__contact {
            padding: 0;
            margin-bottom: 0;
        }

        .right-product-info__contact-item {
            padding: 12px 0;
            border-bottom: 1px solid #f8f8f8;
        }

        .right-product-info__contact-item:last-child {
            border-bottom: none;
        }

        .right-product-info__contact-item p {
            display: flex;
            align-items: flex-start;
            font-size: 16px;
            line-height: 1.6;
        }

        .right-product-info__contact-item p em {
            display: inline-block;
            color: #666;
            width: 90px;
            font-style: normal;
            font-weight: 500;
            flex-shrink: 0;
        }

        .right-product-info__contact-item p span {
            display: inline-block;
            width: calc(100% - 90px);
            color: #333;
        }

        /* 联系电话卡片 */
        .contact-card {
            background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
            padding: 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 10px;
            border: 1px solid #fee;
            flex-shrink: 0;
        }

        .contact-card__tel {
            padding-left: 10px;
        }

        .contact-card__tel i {
            color: #ff0f23;
            margin-right: 5px;
            font-size: 16px;
        }

        .contact-card__tel em {
            font-size: 32px;
            color: #ff0f23;
            font-weight: 700;
            display: block;
            margin-top: 5px;

        }

        .contact-card__qr {
            width: 74px;
            height: 74px;
            overflow: hidden;
            border-radius: 4px;
            border: 2px solid #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .contact-card__qr img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 主体详情区 */
        .main-body {
            width: 992px;
            background: #fff;
            border-radius: 8px;
            margin-top: 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
            position: relative;
            float: left;
            clear: left;
        }

        @media (max-width: 1680px) {
            .main-body {
                width: 720px;
            }
        }

        .main-title {
            background: #f5f5f5;
            padding-top: 20px;
            position: sticky;
            top: 0px;
            z-index: 98;
        }

        .main-title ul {
            background: #fff;
            display: flex;
            gap: 20px;
            border-bottom: 2px solid #eee;
            height: 60px;
            padding: 0 20px;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
        }

        .main-title ul li {
            display: inline-block;
        }

        .main-title ul li a {
            padding: 20px 0;
            font-size: 18px;
            line-height: 1 !important;
            color: #333;
            font-weight: 500;
            cursor: pointer;
            display: block;
            border-bottom: 2px solid transparent;
            transition: all 0.2s ease;
        }

        .main-title ul li a:hover,
        .main-title ul li a.active {
            color: #ff0f23;
            border-bottom: 2px solid #ff0f23;
        }

        .detail {
            padding: 0 20px;
        }

        .detail .detail-title {
            font-size: 24px;
            font-weight: 800;
            display: block;
            margin: 20px 0;
            scroll-margin-top: 80px;
        }

        .detail p{
            line-height: 2em;
            margin-top: 10px;
        }

        .detail img {
            width: 100%;
            border-radius: 4px;
        }

        .detail-section {
            border-top: 1px solid #fafafa;
            padding: 10px 0;
        }

        .detail-section:nth-child(1) {
            border-top: none;
        }

        /* 相关产品列表 */
        .product-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 0 auto;
            padding: 10px 0;
        }

        .product-item {
            flex: 1 0 calc(20% - 10px);
            min-width: 200px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid #fff;
            padding: 5px;
            transition: all 0.2s ease;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        }

        /* 响应式产品卡片 */
        @media (max-width: 1680px) {
            .product-item {
                flex: 1 0 calc(25% - 10px);
            }
        }

        .product-item:hover {
            transform: translateY(-3px);
            border-color: #ff0f23;
            box-shadow: 0 4px 12px rgba(219, 5, 5, 0.15);
        }

        .product-img {
            width: 100%;
            padding-top: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 4px;
        }

        .product-img img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            margin: 0;
            transition: transform 0.3s ease;
        }

        .product-item:hover .product-img img {
            transform: scale(1.05);
        }

        .product-card-info {
            padding: 10px 0;
        }

        .product-name {
            font-size: 16px;
            font-weight: 400;
            color: #333;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.4;
        }

        .product-name .tag--recommend {
            top: -1px;
        }

        .product-price {
            font-size: 20px;
            color: #ff0f23;
            font-weight: 700;
        }

        .product-link {
            text-decoration: none;
            color: inherit;
            display: block;
            border-radius: 8px;
            overflow: hidden;
        }

        .product-item {
            cursor: pointer;
        }

        .product-link:hover .product-name {
            color: #ff0f23;
        }

        .links{
            font-size: 14px;
            padding: 15px 0;
        }
        /* 页脚 */
        .footer {
            font-size: 12px;
            line-height: 1.5em;
            padding: 15px 0;
            color: #666;
            border-top: 1px solid #eee;
            clear: both;
        }

        /* 分享侧边栏 */
        .share {
            right: 10px;
            bottom: 98px;
            width: 46px;
            position: fixed;
            z-index: 999;
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 23px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .share .share-btn {
            text-align: center;
            display: block;
            cursor: pointer;
            padding: 15px 10px 0;
            transition: background 0.2s ease;
        }

        .share .btn-top-radius {
            border-top-left-radius: 23px;
            border-top-right-radius: 23px;
        }

        .share .btn-bottom-radius {
            border-bottom-left-radius: 23px;
            border-bottom-right-radius: 23px;
        }

        .share .share-btn:hover {
            background-color: #f6f6f6;
        }

        .share .share-btn i {
            display: block;
            color: #ff0f23;
        }

        .share .share-btn span {
            font-size: 12px;
            display: block;
            padding-bottom: 15px;
            border-bottom: 1px solid #ccc;
            color: #333;
        }

        .share .share-btn .border-none {
            border-bottom: none;
        }

        .share .code {
            display: none;
        }

        .share .code img,
        .share .code span {
            width: 185px;
            height: 185px;
            display: block;
            margin-bottom: 10px;
        }

        .share .share-btn:hover .code {
            position: absolute;
            right: 48px;
            bottom: 15px;
            display: block;
            padding: 10px;
            color: #000;
            background: #fff;
            border: 1px solid #e8e8e8;
            font-size: 14px;
            height: auto;
            width: auto;
            line-height: 1em;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .share .share-btn:hover .code i {
            color: #ff0f23;
            display: inline-block;
            margin-right: 5px;
        }

        .share .share-btn:hover .code .code-tel {
            font-size: 24px;
            font-weight: 700;
            color: #ff0f23;
            display: block;
        }

        .share .text-left {
            text-align: left;
            padding: 10px 15px !important;
            line-height: 30px !important;
        }

        /* 返回顶部按钮 */
        #backToTop {
            position: fixed;
            bottom: 50px;
            right: 10px;
            width: 46px;
            height: 46px;
            background-color: #fff;
            color: #333;
            border: 1px solid #ccc;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 9999;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        #backToTop:hover {
            background-color: #ff0f23;
            color: #fff;
            border-color: #ff0f23;
        }

        #backToTop.show {
            opacity: 1;
            visibility: visible;
        }