 /* 针对.text-gray内容区域的样式定义 */
        .text-gray {
            color: #333;
            
            line-height: 1.6;
            margin: 0 auto;
            
        }
        
        .text-gray h1,
        .text-gray h2,
        .text-gray h3,
        .text-gray h4,
        .text-gray h5,
        .text-gray h6 {
            font-weight: bold;
            margin: 1.5em 0 0.8em 0;
            color: #000;
        }
        
        .text-gray h1 { 
            font-size: 28px; 
            border-bottom: 2px solid #0d6efd;
            padding-bottom: 10px;
        }
        .text-gray h2 { 
            font-size: 24px; 
            border-left: 4px solid #0d6efd;
            padding-left: 15px;
        }
        .text-gray h3 { 
            font-size: 20px; 
            color: #0d6efd;
        }
        .text-gray h4 { font-size: 18px; }
        .text-gray h5 { font-size: 16px; }
        .text-gray h6 { font-size: 14px; }
        
        .text-gray p {
            font-size: 16px;
            line-height: 1.6;
            margin: 0.8em 0;
        }
        
        .text-gray strong {
            color: #0d6efd;
        }
        
        .text-gray ul {
            list-style-type: none!important;
            margin: 1em 0;
            padding-left: 0;
        }
        
        .text-gray li {
            font-size: 16px;
            line-height: 1.5;
            margin: 0.5em 0;
            padding-left: 1.5em;
            position: relative;
        }
        
        .text-gray li:before {
            content: "•";
            color: #0d6efd;
            font-weight: bold;
            position: absolute;
            left: 0.5em;
        }
        
        .text-gray table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5em 0;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }
        
        .text-gray th {
            background-color: #f8f9fa;
            padding: 12px 15px;
            text-align: left;
            font-weight: 600;
            border-bottom: 2px solid #0d6efd;
        }
        
        .text-gray td {
            padding: 10px 15px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .text-gray tr:hover {
            background-color: #f8f9fa;
        }
        
        .text-gray a {
            color: #0d6efd;
            text-decoration: none;
            font-weight: 500;
        }
        
        .text-gray a:hover {
            text-decoration: underline;
        }
        
        /* 针对Edui-Editor可能使用的特定标签样式补充 */
        .text-gray blockquote {
            border-left: 4px solid #0d6efd;
            background-color: #f8f9fa;
            padding: 15px 20px;
            margin: 1.5em 0;
            font-style: italic;
        }
        
        .text-gray code {
            background-color: #f1f3f4;
            padding: 2px 6px;
            border-radius: 3px;
            font-family: 'Courier New', monospace;
            font-size: 0.9em;
        }
        
        .text-gray pre {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
            overflow-x: auto;
            margin: 1.5em 0;
            border-left: 3px solid #0d6efd;
        }
        
        .text-gray pre code {
            background: none;
            padding: 0;
        }
        
        .text-gray img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 1.5em auto;
            border-radius: 5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-dot.in-stock {
    background-color: #4CAF50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

.features {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.feature {
    display: flex;
    align-items: center;
   
}

.feature-icon {
    width: 40px;
    height: 40px;
   
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;