@charset "utf-8";
/* CSS Document */
.t30{ margin-top:50px;}
        /* 产品页面主要内容 */
        .product-main {
            padding: 30px 0 50px;
        }
        
        .product-title-section {
            background-color: white;
            padding: 25px;
            margin-bottom: 25px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        
        .product-title-section h1 {
            font-size: 2rem;
            color: #12afa3;
            margin-bottom: 10px;
			    border-bottom: 1px solid #eee;
        }
                .product-title-section h2 {
            font-size: 1.2rem;
            color: #888;
            margin-bottom: 10px;
        }
		 .product-title-section h3 {
            font-size: 1rem;
            color: #ccc;
            margin-bottom: 10px;
        }
        .product-title-section p {
            color: #666;
            
        }
         .product-title-section .ccc{  border-bottom: 1px solid #eee; padding-bottom:10px; line-height:32px;}
		  .product-title-section .ddd{ padding-top:10px;}
        .product-content {
            display: flex;
            gap: 25px;
        }
        
        /* 左侧分类导航 */
        .category-sidebar {
            flex: 0 0 220px;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            padding: 20px;
            align-self: flex-start;
        }
        
        .category-title {
            font-size: 1.2rem;
            color: #12afa3;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .category-list {
            list-style: none;
        }
        
        .category-list li {
            margin-bottom: 12px;
        }
        
        .category-list a {
            display: block;
            padding: 10px 15px;
            border-radius: 4px;
            color: #555;
            border-left: 3px solid transparent;
        }
        
        .category-list a:hover {
            background-color: #f0f7ff;
            color: #12afa3;
            border-left-color: #12afa3;
            transform: translateX(3px);
        }
        
        .category-list a.active {
            background-color: #e0f5f3;
            color: #12afa3;
            border-left-color: #12afa3;
            font-weight: 500;
        }
        
        /* 右侧产品网格 */
        .product-grid-section {
            flex: 1;
            background-color: white;
 
 
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }
        
        .product-card {
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-color: #12afa3;
        }
        
        .product-img {
            height: 300px;
            background-color: #f0f7ff;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-img {
            transform: scale(1.03);
        }
        
        .product-info {
            padding: 15px;
        }
        
        .product-info h3 {
            font-size: 1.1rem;
            color: #12afa3;
            margin-bottom: 8px;
        }
        
        .product-info p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }
        
        /* 分页控件 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .pagination a, 
        .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
 
            height: 36px;
            margin: 0 3px;
            border-radius: 4px;
            border: 1px solid #ddd;
            color: #555;
            font-size: 0.95rem;
			padding: 0 10px;
        }
        
        .pagination a:hover {
            background-color: #12afa3;
            color: white;
            border-color: #12afa3;
        }
        
        .pagination .current {
            background-color: #12afa3;
            color: white;
            border-color: #12afa3;
        }
        
        /* 公司简介部分 */
        .company-intro {
            background-color: white;
            padding: 30px;
            margin: 40px 0;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        
        .company-intro h3 {
            font-size: 1.4rem;
            color: #12afa3;
            margin-bottom: 15px;
        }
        
        .company-intro p {
            margin-bottom: 15px;
            color: #555;
        }
        
        /* 页脚 */
        .main-footer {
            background-color: #003d7a;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h4 {
            color: #4dabf7;
            margin-bottom: 20px;
            font-size: 1.2rem;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-column p {
            margin-bottom: 10px;
            opacity: 0.9;
        }
        
        .footer-column i {
            margin-right: 10px;
            width: 20px;
            color: #4dabf7;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .product-content {
                flex-direction: column;
            }
            
            .category-sidebar {
                flex: none;
                width: 100%;
            }
            
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
        }