@charset "utf-8";
        /* 基础样式 */
        .productv-container {
            margin: 0 auto;
            padding: 50px 0 0px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        /* 左侧图片区域 */
        .productv-left {
            flex: 0 0 100%;
            max-width: 100%;
            position: relative;
        }

        @media (min-width: 768px) {
            .productv-left {
                flex: 0 0 40%;
                max-width: 40%;
            }
        }

        /* 右侧内容区域 */
        .productv-right {
            flex: 0 0 100%;
            max-width: 100%;
        }

        @media (min-width: 768px) {
            .productv-right {
                flex: 0 0 calc(60% - 40px);
                max-width: calc(60% - 40px);
            }
        }

        /* 放大镜容器 */
        .productv-zoom-container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 100%; /* 创建1:1正方形 */
            overflow: hidden;
            border-radius: 1px;
            box-shadow0: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            background-color: #f8f8f8;border: 1px solid #dddddd;
        }

        .productv-main-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: crosshair;
        }

        .productv-zoom-lens {
            position: absolute;
            border: 2px solid #015bac;
            background-color: rgba(255, 255, 255, 0.2);
            cursor: crosshair;
            display: none;
            pointer-events: none;
            z-index: 10;
        }

        /* 右侧放大区域容器 - 固定在右侧内容区域上方 */
        .productv-zoom-preview {
            position: absolute;
            top: 0;
            right: -20px;
            transform: translateX(100%);
            width: 500px;
            height: 500px;
            border: 2px solid #ddd;
            border-radius: 8px;
            background-color: #fff;
            background-repeat: no-repeat;
            display: none;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            z-index: 20;
        }

        @media (max-width: 1024px) {
            .productv-zoom-preview {
                width: 300px;
                height: 300px;
                right: -15px;
            }
        }

        @media (max-width: 900px) {
            .productv-zoom-preview {
                display: none !important;
            }
        }

        @media (max-width: 767px) {
            .productv-zoom-preview {
                display: none !important;
            }
        }

        /* 缩略图轮播 */
        .productv-thumbnails {
            position: relative;
            padding: 0 40px;
        }

        .productv-thumbs-container {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            padding: 10px 0;
        }

        .productv-thumbs-container::-webkit-scrollbar {
            display: none;
        }

        .productv-thumb {
            flex: 0 0 auto;
            width: 80px;
            height: 80px;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid #f9f9f9;
            transition: all 0.3s ease;
            opacity: 0.7;
            background-color: #f8f8f8;
        }

        .productv-thumb.active {
            border-color: #015bac;
            opacity: 1;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(74, 110, 224, 0.2);
        }

        .productv-thumb:hover {
            opacity: 1;
            border-color: #015bac;
        }

        .productv-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;border: 1px solid #dddddd;
        }

        /* 轮播箭头 */
        .productv-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow-: 0 2px 8px rgba(0, 0, 0, 0.15);
            z-index: 2;
            transition: all 0.3s ease;
            color: #555;
        }

        .productv-arrow:hover {
            background-color: #015bac;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .productv-arrow-left {
            left: 0;
        }

        .productv-arrow-right {
            right: 0;
        }

        /* 右侧内容样式 */
        .productv-title {
            font-size: 28px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        @media (max-width: 767px) {
            .productv-title {
                font-size: 24px;
            }
        }

        .productv-divider {
            height: 1px;
            background-color: #e0e0e0;
            margin: 20px 0;
        }

        .productv-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 15px;
        }

        .productv-contact-info {
            margin-bottom: 25px;
        }

        .productv-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 14px;
            color: #555;
            font-size: 15px;
        }

        .productv-contact-icon {
            width: 24px;
            text-align: center;
            margin-right: 12px;
            color: #666666;
        }

        /* 按钮样式 */
        .productv-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .productv-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 20px;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            border: none;
        }

        .productv-btn-contact {
            background-color: #015bac;
            color: white;
            border: 2px solid #015bac;
        }

        .productv-btn-contact:hover {
            background-color: #dd0000;
            border-color: #dd0000;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
        }

        .productv-btn-back {
            background-color: #f8f8f8;
            color: #333;
            border: 2px solid #ddd;
        }

        .productv-btn-back:hover {
            background-color: #e9e9e9;
            border-color: #ccc;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }