
.lew-module {
    background: var(--kimone-white, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.lew-module:hover {
    transform: translateY(-5px);
}

.lew-header {
    background: linear-gradient(135deg, #2c5c34 0%, #4a8c5a 100%);
    padding: 20px 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.lew-header i {
    font-size: 24px;
}

.lew-header h2,
.lew-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.lew-header h3 {
    font-size: 20px;
}

.lew-content {
    padding: 30px;
}

.lew-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.lew-specs-table tr {
    transition: all 0.2s ease;
}

.lew-specs-table tr:hover {
    background-color: rgba(74, 140, 90, 0.05);
}

.lew-specs-table td {
    padding: 15px;
    border: 1px solid #e9ecef;
    font-size: 16px;
}

.lew-spec-name {
    font-weight: 600;
    color: #2c5c34;
    width: 35%;
    background-color: #f9faf9;
}

.lew-feature-list {
    list-style: none;
    margin: 20px 0;
}

.lew-feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.lew-feature-list li:hover {
    background-color: rgba(74, 140, 90, 0.05);
}

.lew-feature-list li:last-child {
    border-bottom: none;
}

.lew-feature-list li:before {
    content: "•";
    color: #4a8c5a;
    font-weight: bold;
    font-size: 24px;
    margin-right: 15px;
}

/* 图文模块样式 */
.image-text-module {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 25px 0;
    align-items: stretch;
}

.image-text-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    background: #f9faf9;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.image-text-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.image-text-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.image-text-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #2c5c34;
    margin: 15px 0 10px;
}

.image-text-item p {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.trust-badge {
    text-align: center;
    padding: 20px;
    background: #f9faf9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: #e8f5e9;
    transform: translateY(-3px);
}

.trust-badge i {
    font-size: 2em;
    color: #4a8c5a;
    margin-bottom: 10px;
}

.trust-badge strong {
    display: block;
    margin-top: 8px;
    color: #2c5c34;
}

@media (max-width: 768px) {
    .lew-specs-table {
        font-size: 14px;
    }
    
    .lew-header {
        padding: 15px 20px;
    }
    
    .lew-content {
        padding: 20px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .image-text-module {
        flex-direction: column;
        gap: 20px;
    }
}
