      /* 产品列表页-------------开始*/
	   .product_container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 15px;
        }

        .product_grid {
			padding: 0 15px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px 20px;
			
        }

        .product_item {
            position: relative;
            overflow: hidden;
			box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
			background-image: linear-gradient(#ffffff, #ffffff, #ffffff);
        }

        .product_link {
            text-decoration: none;
            color: #333;
            display: block;
            transition: all 0.3s;
        }

        .product_image-wrapper {
            position: relative;
            width: 100%;
            padding-top: 100%;
            overflow: hidden;
            border-radius: 0px;
        }

        .product_image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .product_caption {
            margin-top: 0px;
            padding: 18px 0px 18px 0px;
            text-align: center;
            background: #f9f9f9;
            color: #000;
			font-size: 16px;
            border-radius: 0px 0px 5px 5px;
            transition: all 0.3s;
            white-space: normal;
        }

        /* 悬停效果 */
        .product_link:hover .product_image {
            transform: scale(1.05);
        }

        .product_link:hover .product_caption {
            background: linear-gradient(to right, #53b332, #015bac);
            color: #fff;
        }

        /* 光效动画 */
        .product_link:hover::after {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            animation: product_shine 0.8s;
        }

        @keyframes product_shine {
            100% {
                left: 200%;
            }
        }

        /* 响应式布局 */
        @media (max-width: 768px) {
		.product_container {
            margin: 20px auto;
            padding: 0px 10px 30px 10px;
        }
            .product_grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px 15px;
            }
        }

        @media (max-width: 480px) {
            .product_grid {
                grid-template-columns: 1fr;
            }
        }
 /* 产品列表页-------------结束*/
 
  /* 产品详情页-----------开始*/
          .productv_* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .productv_container {
            max-width-: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* 产品信息模块 */
        .productv_info-wrapper {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
        }

        .productv_image {
            flex: 0 0 45%;
            border-radius: 8px;
            overflow: hidden;
			border: 1px solid #DDDDDD;
        }

        .productv_image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .productv_details {
            flex: 1;
        }

        .productv_title {
            font-size: 22px;
            margin-bottom: 15px;
			padding-left:10px;
        }

        .productv_divider {
            height: 1px;
            background: #ddd;
            margin: 20px 0;
        }

        /* 联系信息 */
        .productv_contact-list {
            list-style: none;
			 padding-left: 8px;
        }

        .productv_contact-item {
            padding: 8px 0 8px 0px;
            background: url('123.png') left center no-repeat;
            background-size: 20px;
            margin: 0px 0;
			color: #333;
        }

        .productv_phone-btn {
            display: inline-flex;
            align-items: center;
            padding: 12px 25px;
            background:linear-gradient(to right, #53b332, #015bac);;
            color: #ffffff;
            border-radius: 25px;
            text-decoration: none;
            margin-top: 15px;
            transition: background 0.3s;
        }
		   .productv_phone-btn:hover{
            background:linear-gradient(to right, #015bac, #53b332);
            color: #ffffff;

        }

        .productv_phone-btn::before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 20px;
            background: url('../image/tel.png') center/contain no-repeat;
            margin-right: 10px;
        }

        /* Tab切换 */
        .productv_tabs {
            border-bottom: 1px solid #ddd;
            margin: 40px 0;
			font-size: 20px;
        }

        .productv_tab {
            display: inline-block;
            padding: 15px 20px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
        }

        .productv_tab.active {
            border-color: #0091c9;
            color: 222;
        }

        .productv_content {
            display: none;
            padding: 20px 0;
        }

        .productv_content.active {
            display: block;
        }

        /* 响应式 */
        @media (max-width: 992px) {
            .productv_info-wrapper {
                flex-direction: column;
            }

        }
  
      /* -------------------------------------------------产品内容页-相关产品---------------------------------*/
	     .index-pro-roll-container {
        max-width-: 1400px;
        margin: 0 auto;
        padding: 0px;
        overflow: hidden;
    }

    .index-pro-roll-slider-wrapper {
        position: relative;
        margin: 0 -10px;
    }

    .index-pro-roll-slider {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .index-pro-roll-slide {
        flex: 0 0 25%;
        padding: 0 10px;
        box-sizing: border-box;
        text-decoration: none;
    }

    .index-pro-roll-image-wrap {
        position: relative;
        overflow: hidden;
        padding-top: 100%;
        background: #fff;
        border-radius: 0px;
    }

    .index-pro-roll-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }

    .index-pro-roll-title {
        background: #ffffff;
        color: #333;
        text-align: center;
        padding: 15px 10px;
        margin-top: 0px;
        transition: all 0.3s ease;
        font-size: 14px;
    }

    .index-pro-roll-slide:hover .index-pro-roll-image {
        transform: scale(1.02);
        filter: brightness(0.8);
    }

    .index-pro-roll-image-wrap::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 18px;
        z-index: 2;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .index-pro-roll-slide:hover .index-pro-roll-image-wrap::before {
        opacity: 1;
    }

    .index-pro-roll-image-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, 
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,0.3) 50%,
            rgba(255,255,255,0) 100%);
        transform: translateX(-100%);
        transition: transform 0.5s ease;
    }

    .index-pro-roll-slide:hover .index-pro-roll-image-wrap::after {
        transform: translateX(200%);
    }

    .index-pro-roll-slide:hover .index-pro-roll-title {
        background: linear-gradient(to right, #53b332, #015bac);
        color: white;
    }

    .index-pro-roll-dots {
        text-align: center;
        margin-top: 20px;
    }

    .index-pro-roll-dot {
        display: inline-block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ddd;
        margin: 0 5px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .index-pro-roll-dot.active {
        background: #015bac;
    }

    @media (max-width: 768px) {
        .index-pro-roll-container {
            padding: 0;
            max-width: 100%;
        }
        
        .index-pro-roll-slider-wrapper {
            margin: 0;
        }

        .index-pro-roll-slide {
            flex: 0 0 100%;
            padding: 0 20px;
        }

        .index-pro-roll-title {
            margin: 10px 20px;
        }

        .index-pro-roll-dots {
            margin-top: 15px;
        }
    } 
	  
