﻿        /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        

        
        .pro_show_container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 0;
        }
        
        /* 顶部区域样式 */
        .pro_show_top {
            display: flex;
            margin-bottom: 40px;
            background: white;
            border-radius: 0px;
            box-shadow-: 0 12px 40px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .pro_show_top:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
        }
        
        /* 左侧轮播图 */
        .pro_show_slider {
            width: 45%;
            position: relative;
            padding: 20px 0;
            background-: linear-gradient(145deg, #f8fafc, #f1f5f9);
            border: 1px solid #eaeff5;
        }
        
        .pro_show_slides {
            position: relative;
            height: 450px;
            overflow: hidden;
            border-radius: 0px;
            box-shadow-: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        
        .pro_show_slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            background-: linear-gradient(45deg, #f8f8f8, #f5f5f5);
        }
        
        .pro_show_slide.active {
            opacity: 1;
        }
        
        .pro_show_slide img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border-radius: 0px;
            transition: transform 0.5s ease;
        }
        
        .pro_show_slide.active img {
            transform: scale(1.03);
        }
        
        .pro_show_prev, .pro_show_next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            height: 46px;
            background: rgba(255, 255, 255, 0.92);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            color: #333;
			padding-top:4px;
            font-size: 35px;
        }
        
        .pro_show_prev:hover, .pro_show_next:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
            color: #cc0000;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        
        .pro_show_prev {
            left: 15px;
        }
        
        .pro_show_next {
            right: 15px;
        }
        
        .pro_show_dots {
            display: flex;
            justify-content: center;
            margin-top: 22px;
            gap: 8px;
        }
        
        .pro_show_dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .pro_show_dot.active {
            background: #cc0000;
            transform: scale(1.3);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
        }
        
        /* 右侧信息区 */
        .pro_show_info {
            width: 55%;
            padding: 40px 50px;
            display: flex;
            flex-direction: column;
            background: white;
        }
        
        .pro_show_title {
            font-size: 36px;
            font-weight: 800;
            color: #22222;
            margin-bottom: 18px;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        
        .pro_show_divider {
            height: 2px;
            width: 80px;
            background: linear-gradient(90deg, #eeeeee, #eeeeee);
            margin-bottom: 25px;
            border-radius: 4px;
        }
        
        .pro_show_description p{
            font-size: 16px;
            color: #666666;
            margin-bottom: 0px;
            line-height:2;
        }
        
        .pro_show_features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .pro_show_feature {
            background: #eeeeee;
            padding: 10px 18px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: #333333;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .pro_show_buttons {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }
        
        .pro_show_btn {
            flex: 1;
            padding: 16px 20px;
            border: none;
            border-radius: 10px;
            font-size: 24px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .pro_show_btn_left {
            background: linear-gradient(135deg, #cc0000, #dd0000);
            color: white;
            box-shadow: 0 5px 18px rgba(0, 0, 0, 0.35);
        }
        
        .pro_show_btn_right {
            background: linear-gradient(135deg, #333333, #666666);
            color: white;
            box-shadow: 0 5px 18px rgba(0, 0, 0, 0.35);
        }
        
        .pro_show_btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
            z-index: -1;
        }
        
        .pro_show_btn:hover::before {
            transform: translateX(0);
        }
        
        .pro_show_btn:hover {
            transform: translateY(-4px); color: white;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }
        
        /* 底部产品详情 */
        .pro_show_bottom {
            background: white;
            border-radius: 0px;
            box-shadow0: 0 12px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .pro_show_tabs {
            display: flex;
            background: linear-gradient(to right, #fcfcfc, #fcfcfc);
            border-bottom: 1px solid #eeeeee;
        }
        
        .pro_show_tab {
            padding: 20px 35px;
            font-size: 18px;
            font-weight: 700;
            color: #222222;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .pro_show_tab.active {
            color: #cc0000;
        }
        
        .pro_show_tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 4px;
            background: #cc0000;
            border-radius: 4px 4px 0 0;
        }
        
        .pro_show_tab:hover {
            background: rgba(0, 0, 0, 0.05);
        }
        
        .pro_show_tab_content {
            padding: 40px 0;
        }
        
        .pro_show_content_item {
            display: none;
        }
        
        .pro_show_content_item.active {
            display: block;
            animation: fadeIn 0.6s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .pro_show_content_title {
            font-size: 28px;
            margin-bottom: 25px;
            color: #1a365d;
            position: relative;
            padding-bottom: 15px;
        }
        
        .pro_show_content_title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #cc0000;
            border-radius: 3px;
        }
        
        .pro_show_content_text {
            line-height: 1.8;
            color: #4a5568;
            font-size: 17px;
            margin-bottom: 20px;
        }
        
        .pro_show_table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .pro_show_table th, 
        .pro_show_table td {
            padding: 16px 20px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .pro_show_table th {
            background: linear-gradient(to right, #cc0000, #2c80c5);
            color: white;
            font-weight: 600;
        }
        
        .pro_show_table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        
        .pro_show_table tr:hover {
            background-color: #edf2f7;
        }
        
        .pro_show_dimension_img {
            max-width: 85%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #eaeff5;
            transition: transform 0.4s ease;
        }
        
        .pro_show_dimension_img:hover {
            transform: scale(1.02);
        }
        
        /* 相关产品 */
        .pro_show_related_container {
            position: relative;
            padding: 20px 0;
        }
        
        .pro_show_related_title {
            font-size: 26px;
            margin-bottom: 30px;
            color: #222222;
            position: relative;
            padding-bottom: 15px;
        }
        
        .pro_show_related_title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #ffffff;
            border-radius: 3px;
        }
        
        .pro_show_related_products {
            display: flex;
            overflow-x: hidden;
            scroll-behavior: smooth;
            gap: 20px;
            padding: 15px 5px;
            margin-bottom: 20px;
        }
        
        .pro_show_related_product {
            min-width: calc(25% - 15px);
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }
        
        .pro_show_related_product:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 0px rgba(0, 0, 0, 0.05);
        }
        
        .pro_show_related_img {
            height: 320px;
            background0: linear-gradient(145deg, #eeeeee, #eeeeee);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }
        
        .pro_show_related_img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.4s ease;
        }
        
        .pro_show_related_product:hover .pro_show_related_img img {
            transform: scale(1.01);
        }
        
        .pro_show_related_info {
            padding: 25px 20px;
        }
        
        .pro_show_related_name {
            font-size: 18px;
			text-align:center;
            font-weight: 500;
            margin-bottom: 12px;
            color: #222222;
        }
        
        .pro_show_related_price {
            color: #e74c3c;
            font-size: 22px;
            font-weight: 800;
        }
        
        .pro_show_related_dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 10px;
        }
        
        .pro_show_related_dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #cbd5e0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .pro_show_related_dot.active {
            background: #cc0000;
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        }
        
        /* 移动端适配 */
        @media (max-width: 900px) {
            .pro_show_top {
                flex-direction: column;
            }
            
            .pro_show_slider, 
            .pro_show_info {
                width: 100%;
            }
            
            .pro_show_slider {
                border-right: none;
                border-bottom: 1px solid #eaeff5;
            }
            
            .pro_show_slides {
                height: 350px;
            }
            
            .pro_show_tabs {
                overflow-x: auto;
                white-space: nowrap;
            }
            
            .pro_show_related_product {
                min-width: calc(50% - 15px);
            }
        }
        
        @media (max-width: 600px) {
            .pro_show_slides {
                height: 280px;
            }
            
            .pro_show_buttons {
                flex-direction: column;
            }
            
            .pro_show_related_product {
                min-width: calc(100% - 15px);
            }
            
            .pro_show_tab {
                padding: 16px 25px;
                font-size: 16px;
            }
            
            .pro_show_info {
                padding: 30px 25px;
            }
            
            .pro_show_title {
                font-size: 28px;
            }
            
            .pro_show_tab_content {
                padding: 30px 20px;
            }
            
            .pro_show_related_product {
                min-width: calc(100% - 20px);
            }
        }