
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
        background: linear-gradient(135deg, #f9f9ff 0%, #f0f4ff 100%);
        color: #333;
        line-height: 1.6;
        padding: 0;
        margin: 0;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    header {
        background: linear-gradient(to right, #2c3e50, #4a6491);
        color: white;
        padding: 25px 20px;
        border-radius: 12px 12px 0 0;
        margin-bottom: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .logo-icon {
        font-size: 32px;
        color: #7ed386;
    }
    
    /* H标签层级调整 */
    h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    h3 {
        font-size: 22px;
        font-weight: 600;
        color: #2c3e50;
        margin: 25px 0 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #7ed386;
    }
    
    h4 {
        font-size: 20px;
        color: #4a6491;
        margin: 20px 0 15px;
        font-weight: 600;
    }
    
    h5 {
        font-size: 18px;
        color: #2c3e50;
        margin: 15px 0 10px;
        font-weight: 600;
    }
    
    .product-highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .highlight-card {
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }
    
    .highlight-card:hover {
        transform: translateY(-5px);
    }
    
    .highlight-card i {
        font-size: 28px;
        color: #4a6491;
        margin-bottom: 15px;
    }
    
    .specs-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0 30px;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .specs-table th {
        background: #4a6491;
        color: white;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }
    
    .specs-table td {
        padding: 12px 15px;
        border-bottom: 1px solid #f1f1f1;
    }
    
    .specs-table tr:nth-child(even) {
        background: #f9f9ff;
    }
    
    .specs-table tr:last-child td {
        border-bottom: none;
    }
    
    .custom-option {
        color: #2c3e50;
        font-weight: 500;
    }
    
    .custom-option i {
        color: #7ed386;
        margin: 0 5px;
    }
    
    .features-list {
        list-style: none;
        margin: 20px 0;
    }
    
    .features-list li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .features-list li:before {
        content: "•";
        color: #7ed386;
        font-weight: bold;
        font-size: 20px;
    }
    
    /* 重新设计的图片展示区 */
    .product-visualization {
        margin: 40px 0;
    }
    
    .visual-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
        margin-top: 20px;
    }
    
    .visual-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid #eee;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .visual-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }
    
    .visual-image {
        width: 100%;
        height: 280px; /* 统一图片容器高度 */
        border-bottom: 1px solid #f0f0f0;
        background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }
    
    /* 统一图片大小设置 */
    .visual-image img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* 保持比例，完整显示图片 */
        padding: 20px;
        transition: transform 0.5s ease;
        max-height: 280px; /* 确保图片不会超出容器 */
    }
    
    .visual-card:hover .visual-image img {
        transform: scale(1.05);
    }
    
    .visual-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .visual-content h5 {
        color: #2c3e50;
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 600;
        line-height: 1.3;
    }
    
    .visual-content p {
        color: #555;
        font-size: 15px;
        line-height: 1.5;
        flex-grow: 1;
    }
    
    .visual-tag {
        display: inline-block;
        background: #4a6491;
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .tech-tag { background: #4a6491; }
    .design-tag { background: #7ed386; }
    .feature-tag { background: #e67e22; }
    .custom-tag { background: #9b59b6; }
    
    /* 技术对比部分 */
    .tech-comparison {
        background: white;
        border-radius: 12px;
        padding: 25px;
        margin: 30px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border-left: 4px solid #4a6491;
    }
    
    .comparison-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    
    .comparison-item {
        text-align: center;
        padding: 20px;
        border-radius: 8px;
        background: #f9f9ff;
    }
    
    .comparison-item h5 {
        color: #2c3e50;
        margin-bottom: 10px;
        font-size: 18px;
    }
    
    .traditional {
        border: 2px dashed #e74c3c;
    }
    
    .kimone-design {
        border: 2px solid #7ed386;
    }
    
    .oem-cta-box {
        background: linear-gradient(to right, #2c3e50, #4a6491);
        color: white;
        padding: 35px 30px;
        border-radius: 12px;
        margin: 40px 0;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .oem-cta-box h4 {
        color: white;
        margin-bottom: 15px;
        font-size: 26px;
        border-bottom: none;
    }
    
    .oem-cta-box .btn {
        display: inline-block;
        background: #7ed386;
        color: #2c3e50;
        padding: 16px 35px;
        margin-top: 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 18px;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .oem-cta-box .btn:hover {
        background: #6bc174;
        transform: translateY(-3px);
        box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
    }
    
    .kimone-module {
        background: white;
        border-radius: 12px;
        padding: 25px;
        margin: 30px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .module-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .module-header i {
        font-size: 28px;
        color: #4a6491;
    }
    
    .disclaimer-content {
        font-size: 16px;
        line-height: 1.7;
    }
    
    footer {
        text-align: center;
        padding: 20px;
        margin-top: 40px;
        color: #4a6491;
        font-size: 14px;
        border-top: 1px solid #eee;
    }
    
    /* 图片统一响应式设置 */
    @media (max-width: 992px) {
        .visual-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }
        
        .visual-image {
            height: 250px;
        }
        
        .visual-image img {
            max-height: 250px;
        }
    }
    
    @media (max-width: 768px) {
        h2 { font-size: 24px; }
        h3 { font-size: 20px; }
        h4 { font-size: 18px; }
        h5 { font-size: 16px; }
        
        .product-highlights { grid-template-columns: 1fr; }
        .specs-table { font-size: 14px; }
        .specs-table th, .specs-table td { padding: 10px; }
        .oem-cta-box { padding: 25px 20px; }
        .oem-cta-box .btn { padding: 14px 25px; font-size: 16px; }
        .kimone-module { padding: 20px; }
        .comparison-grid { grid-template-columns: 1fr; }
        
        .visual-image {
            height: 220px;
        }
        
        .visual-image img {
            max-height: 220px;
            padding: 15px;
        }
    }
    
    @media (max-width: 480px) {
        .visual-grid {
            grid-template-columns: 1fr;
        }
        
        .visual-image {
            height: 200px;
        }
        
        .visual-image img {
            max-height: 200px;
            padding: 12px;
        }
        
        .container {
            padding: 15px;
        }
        
        header {
            padding: 20px 15px;
        }
    }
