/* 产品详情页专属样式 */
.product-detail-page .post-main{padding:0;overflow:hidde;nmin-width: 0;background-color: var(--white);border-radius: 12px;padding: 3rem;box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);}
.product-header-section{padding:2rem;background:linear-gradient(135deg,#ffffff 0%,#f8f9fa 100%);border-bottom:2px solid #f0f0f0}
.product-header-main{display:grid;grid-template-columns:1fr 1fr;gap:3rem;margin-bottom:2rem}
.product-header-tags{padding-top:0.2rem}
.product-image-section{position:relative}
.product-main-image{width:100%;height:600px;background-color:#fff;border-radius:12px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,0.08);display:flex;align-items:center;justify-content:center;border:2px solid #f0f0f0;margin-bottom:1rem;position:relative;cursor:pointer}
.product-main-image img{max-width:100%;max-height:100%;object-fit:contain;padding:1.5rem;transition:transform 0.3s ease}
.product-main-image:hover img{transform:scale(1.05)}
.image-zoom-icon{position:absolute;top:20px;right:20px;background:var(--secondary);color:white;width:50px;height:50px;border-radius:50%;display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity 0.3s ease;pointer-events:none;z-index:10;font-size:20px}
.product-main-image:hover .image-zoom-icon{opacity:1}
.image-modal{display:none;position:fixed;z-index:10000;left:0;top:0;width:100%;height:100%;background-color:rgba(0,0,0,0.7);align-items:center;justify-content:center}
.image-modal.show{display:flex}
.modal-content{max-width:90%;max-height:90%;object-fit:contain;border-radius:8px;box-shadow:0 10px 40px rgba(0,0,0,0.5)}
.close-modal{position:absolute;top:20px;right:30px;color:white;font-size:40px;font-weight:bold;cursor:pointer;z-index:10001;transition:color 0.3s ease}
.close-modal:hover{color:#ccc}
.product-info-section{display:flex;flex-direction:column;gap:1.5rem}
.product-category{display:inline-block;align-items:center;gap:0.5rem;padding:0.5rem 1rem;background-color:rgba(230,126,34,0.1);color:var(--secondary);border-radius:3px;font-size:0.9rem;font-weight:600;width:fit-content}
.product-category:not(:first-child) {margin-top: 6px; }
.tag-link{color:#007bff;text-decoration:none;transition:color 0.3s ease}
.tag-link:hover{color:#0056b3}
.product-name{font-size:2.5rem;color:var(--primary);font-weight:700;line-height:1.3;margin:0}
.product-model{font-size:1.1rem;color:var(--gray);font-weight:500}
.product-short-desc{font-size:1.05rem;color:var(--dark);line-height:1.6;padding:0.7rem 1rem;background-color:#f8f9fa;border:1px solid var(--secondary);border-radius:4px;}
.product-short-desc p{margin-bottom:unset}
.product-features-tags{display:grid;grid-template-columns:repeat(2,1fr);gap:0.75rem}
.feature-tag{display:inline-flex;align-items:center;gap:0.5rem;padding:0.6rem 1.2rem;background-color:#fff;color:var(--primary);border:2px solid #e0e0e0;border-radius:8px;font-size:0.95rem;font-weight:500;transition:all 0.3s ease}
.feature-tag i{color:var(--secondary);font-size:1rem}
.feature-tag:hover{border-color:var(--secondary);background-color:rgba(230,126,34,0.05);transform:translateY(-2px)}
.product-cta-section{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:1rem}
.cta-button{display:flex;align-items:center;justify-content:center;gap:0.75rem;padding:0.6rem 1.2rem;border-radius:10px;font-size:1.1rem;font-weight:600;text-decoration:none;transition:all 0.3s ease;cursor:pointer;border:none}
.cta-primary{background:linear-gradient(135deg,var(--secondary) 0%,#d35400 100%);color:var(--white);box-shadow:0 4px 15px rgba(230,126,34,0.3)}
.cta-primary:hover{transform:translateY(-3px);box-shadow:0 6px 20px rgba(230,126,34,0.4)}
.cta-secondary{background-color:var(--white);color:var(--primary);border:2px solid var(--primary)}
.cta-secondary:hover{background-color:var(--primary);color:var(--white);transform:translateY(-3px);box-shadow:0 4px 15px rgba(42,92,139,0.3)}
.product-content-section{padding:3rem}
.product-tabs{display:flex;gap:1rem;border-bottom:2px solid #e0e0e0;margin-bottom:2.5rem;flex-wrap:wrap}
.tab-button{padding:1rem 1.5rem;background-color:transparent;border:none;color:var(--gray);font-size:1.1rem;font-weight:600;cursor:pointer;transition:all 0.3s ease;border-bottom:3px solid transparent;position:relative}
.tab-button:hover{color:var(--primary)}
.tab-button.active{color:var(--secondary);border-bottom-color:var(--secondary)}
.tab-content{display:none;animation:fadeIn 0.4s ease}
.tab-content.active{display:block}
@keyframes fadeIn{from{opacity:0;transform:translateY(10px)}
to{opacity:1;transform:translateY(0)}
}.product-description{max-width:900px;line-height:1.8;font-size:1.05rem;color:var(--dark)}
.product-description h2{color:var(--primary);font-size:1.8rem;margin-top:2rem;margin-bottom:1rem;font-weight:700}
.product-description h3{color:var(--primary);font-size:1.5rem;margin-top:1.5rem;margin-bottom:0.8rem;font-weight:700}
.product-description p{margin-bottom:1.2rem}
.product-description ul,.product-description ol{margin:1.5rem 0;padding-left:2rem}
.product-description li{margin-bottom:0.8rem}
.product-description img{max-width:100%;height:auto;border-radius:8px;margin:2rem auto;display:block;box-shadow:0 4px 12px rgba(0,0,0,0.1)}
/* 美观大气的产品表格样式 */
.product-description table{width:100%;border-collapse:separate;border-spacing:0;margin:2.5rem 0;background:linear-gradient(135deg,#ffffff 0%,#fafbfc 100%);border-radius:16px;overflow:hidden;box-shadow:0 8px 32px rgba(0,0,0,0.12),0 4px 16px rgba(0,0,0,0.08);border:1px solid rgba(0,0,0,0.08)}
.product-description table thead{background:linear-gradient(135deg,var(--primary) 0%,#0f1419 40%,#1a2332 70%,#2c5aa0 100%);color:white;position:relative;box-shadow:inset 0 3px 6px rgba(255,255,255,0.15),inset 0 -2px 4px rgba(0,0,0,0.2),0 6px 12px rgba(0,0,0,0.25)}
.product-description table thead::before{content:'';position:absolute;top:0;left:0;right:0;height:6px;background:linear-gradient(90deg,var(--secondary),#ff4500,#ff6b35,var(--secondary));border-radius:16px 16px 0 0;box-shadow:0 2px 4px rgba(255,170,53,0.4)}
.product-description table thead::after{content:'';position:absolute;bottom:0;left:0;right:0;height:2px;background:linear-gradient(90deg,transparent,rgba(255,255,255,0.4),transparent)}
.product-description table thead th,.product-description table tr:first-child td,.product-description table tr:first-child th{padding:1.4rem 1.8rem;font-weight:600;font-size:1rem;text-align:left;background-color:var(--primary);color:white;border-bottom:2px solid rgba(255,255,255,0.5)}
.product-description table thead th:first-child{border-left:none}
.product-description table thead th:not(:last-child)::after{content:'';position:absolute;right:0;top:25%;height:50%;width:1px;background:rgba(255,255,255,0.3)}
.product-description table tbody tr,.product-description table tbody th,.product-description table tbody td{transition:all 0.3s ease;border-bottom:1px solid rgba(0,0,0,0.06)}
.product-description table tbody tr:last-child{border-bottom:none}
.product-description table tbody tr:hover{background-color:rgba(230,126,34,0.02);box-shadow:0 2px 8px rgba(230,126,34,0.1)}
.product-description table td,.product-description table th{padding:1.4rem 1.8rem;font-size:1rem;line-height:1.5;color:var(--dark);border-right:1px solid rgba(0,0,0,0.06)}
.product-description table td:last-child,.product-description table th:last-child{border-right:none}
.product-description table td:first-child,.product-description table th:first-child{font-weight:600;color:var(--primary);background:linear-gradient(90deg,rgba(230,126,34,0.03) 0%,transparent 100%);padding-left:1.4rem}
.product-description table tbody tr:nth-child(even){background-color:rgba(0,0,0,0.01)}
.product-description table tbody tr:nth-child(even):hover{background-color:rgba(230,126,34,0.03)}
@media (max-width:768px){.product-description table{font-size:0.9rem;margin:2rem 0;overflow-x:auto;-webkit-overflow-scrolling:touch;display:block;white-space:nowrap}
.product-description table thead,.product-description table tbody,.product-description table tr,.product-description table th,.product-description table td{display:inline-block;white-space:normal;vertical-align:top}
.product-description table thead{display:block}
.product-description table tbody{display:block}
.product-description table tr{display:table-row}
.product-description table th,.product-description table td{display:table-cell;min-width:120px;max-width:200px}
.product-description table thead th,.product-description table td{padding:1rem 0.8rem}
.product-description table thead th{font-size:1rem}
.product-description table tbody tr:hover{transform:none;box-shadow:none}
}@media (max-width:480px){.product-description table{font-size:0.85rem}
.product-description table thead th,.product-description table td{padding:0.8rem 0.6rem}
.product-description table thead th{font-size:0.95rem}
}
.specs-table{width:100%;border-collapse:collapse;margin:2rem 0;box-shadow:0 2px 12px rgba(0,0,0,0.08);border-radius:12px;overflow:hidden}
.specs-table tr{border-bottom:1px solid #e0e0e0}
.specs-table tr:last-child{border-bottom:none}
.specs-table th{background-color:var(--primary);color:var(--white);padding:1.2rem 1.5rem;text-align:left;font-weight:600;font-size:1.1rem}
.specs-table td{padding:1.2rem 1.5rem}
.specs-table td:first-child{background-color:#f8f9fa;font-weight:600;color:var(--primary);width:30%}
.specs-table td:last-child{color:var(--dark)}
.specs-table tr:nth-child(even) td:last-child{background-color:#fafbfc}
.applications-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2rem}
.application-card{background-color:#fff;border-radius:12px;padding:2rem;text-align:center;box-shadow:0 2px 12px rgba(0,0,0,0.08);border:2px solid #f0f0f0;transition:all 0.3s ease}
.application-card:hover{border-color:var(--secondary);transform:translateY(-5px);box-shadow:0 6px 20px rgba(0,0,0,0.12)}
.application-icon{width:80px;height:80px;margin:0 auto 1.5rem;background:linear-gradient(135deg,var(--secondary),#d35400);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:2.5rem;color:var(--white)}
.application-card h4{color:var(--primary);font-size:1.2rem;font-weight:700;margin-bottom:0.8rem}
.application-card p{color:var(--gray);font-size:0.95rem;line-height:1.6;margin:0}
.certificates-section{margin-top:2rem}
.certificates-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.certificate-item{background-color:#fff;border-radius:8px;padding:1rem;text-align:center;box-shadow:0 2px 8px rgba(0,0,0,0.08);border:1px solid #e0e0e0;transition:all 0.3s ease}
.certificate-item:hover{transform:translateY(-5px);box-shadow:0 4px 15px rgba(0,0,0,0.12)}
.certificate-item img{max-width:100%;height:auto;margin-bottom:0.5rem}
.certificate-item p{color:var(--primary);font-size:0.9rem;font-weight:600;margin:0}
@media (max-width:1024px){.product-header-main{grid-template-columns:1fr;gap:2rem}
.product-name{font-size:2.2rem}
.product-header-tags{padding-top:1.5rem}
.applications-grid{grid-template-columns:repeat(2,1fr)}
.certificates-grid{grid-template-columns:repeat(3,1fr)}
}@media (max-width:768px){
.product-detail-page .post-main{padding:1.5rem 1rem;}
.product-header-section{padding:2rem 1.5rem}
.product-header-main{gap:1.5rem;margin-bottom:1.5rem}
.product-main-image{height:350px}
.product-name{font-size:1.8rem;line-height:1.2}
.product-short-desc{font-size:1rem;padding:1.2rem}
.product-features-tags{gap:0.5rem}
.feature-tag{padding:0.5rem 0.8rem;font-size:0.85rem}
.cta-button{padding:0.6rem 1.2rem;font-size:1rem}
.product-header-tags{padding-top:1.5rem}
.product-category-full{font-size:0.95rem}
.tag-link-full{padding:0.4rem 0.8rem;font-size:0.85rem}
.tag-separator{font-size:1rem;margin:0 0.3rem 0.25rem 0}
.product-name{font-size:1.8rem}
.product-cta-section{grid-template-columns:1fr}
.product-content-section{padding:2rem 1.5rem}
.product-tabs{overflow-x:auto;-webkit-overflow-scrolling:touch}
.applications-grid{grid-template-columns:1fr}
.certificates-grid{grid-template-columns:repeat(2,1fr)}
.specs-table td:first-child{width:40%}
}@media (max-width:576px){.product-header-section,.product-content-section{padding:0.5rem}
.product-main-image{height:280px}
.product-name{font-size:1.6rem}
.product-short-desc{font-size:0.95rem;padding:1rem}
.product-tabs{gap:0.5rem}
.tab-button{padding:0.8rem 1rem;font-size:1rem}
.inquiry-form-section{padding:1.5rem}
.certificates-grid{grid-template-columns:1fr}
}