
        /* 独立样式 - 不会与网站现有样式冲突 */
        .kimone-content {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .specs-section {
            margin-bottom: 30px;
            padding: 20px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }
        
        .specs-list {
            list-style-type: none;
            padding: 0;
            margin: 15px 0;
        }
        
        .specs-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #e0e0e0;
            font-size: 16px;
            display: flex;
        }
        
        .specs-list li:first-child {
            font-weight: 700;
            color: #2c5c34;
            font-size: 18px;
            border-bottom: 2px solid #4a8c5a;
            margin-bottom: 10px;
            padding-bottom: 12px;
        }
        
        .specs-list li:last-child {
            border-bottom: none;
        }
        
        .specs-list li:before {
            content: "•";
            color: #4a8c5a;
            font-weight: bold;
            margin-right: 12px;
            flex-shrink: 0;
        }
        
        .section-title {
            font-size: 22px;
            font-weight: 700;
            color: #2c5c34;
            margin: 0 0 20px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #4a8c5a;
        }
        
        .operation-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .operation-table tr {
            transition: background-color 0.2s;
        }
        
        .operation-table tr:hover {
            background-color: #f9faf9;
        }
        
        .operation-table td {
            padding: 14px 16px;
            border: 1px solid #e0e0e0;
            vertical-align: top;
        }
        
        .operation-table td:first-child {
            font-weight: 600;
            color: #2c5c34;
            background-color: #f9faf9;
            width: 30%;
        }
        
        .image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 20px 0;
        }
        
        .image-grid img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.12);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .image-grid img:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.15);
        }
        
        .image-grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .reasons-list {
            list-style-type: none;
            padding: 0;
        }
        
        .reasons-list li {
            padding: 16px 0;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 30px;
        }
        
        .reasons-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 16px;
            color: #4a8c5a;
            font-weight: bold;
            font-size: 18px;
            background: rgba(74, 140, 90, 0.1);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .reasons-list li:last-child {
            border-bottom: none;
        }
        
        .reasons-list strong {
            color: #2c5c34;
        }
        
        .faq-item {
            margin-bottom: 18px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            padding: 16px 20px;
            background: #f7f7f7;
            font-weight: 600;
            font-size: 17px;
            color: #2c5c34;
        }
        
        .faq-answer {
            padding: 16px 20px;
            background: #fff;
        }
        
        @media (max-width: 768px) {
            .kimone-content {
                padding: 15px;
            }
            
            .specs-section {
                padding: 15px;
            }
            
            .image-grid,
            .image-grid-3 {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .operation-table td:first-child {
                width: 40%;
            }
            
            .section-title {
                font-size: 20px;
            }
            
            .specs-list li {
                font-size: 15px;
            }
        }
    