
/* KIMONEVAPRO 风格增强 - 隔离作用域 */
.kimone-module {
    background: var(--kimone-white, #ffffff);
    border-radius: var(--border-radius, 12px);
    overflow: hidden;
    box-shadow: var(--shadow-medium, 0 8px 25px rgba(0, 0, 0, 0.12));
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.kimone-module:hover {
    transform: translateY(-5px);
}

.module-header {
    background: var(--gradient-primary, linear-gradient(135deg, #2c5c34 0%, #4a8c5a 100%));
    padding: 20px 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.module-header i {
    font-size: 24px;
}

.module-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.module-content {
    padding: 30px;
}

/* 产品简介模块样式 */
.intro-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
    border-radius: var(--border-radius, 12px);
    overflow: hidden;
    box-shadow: var(--shadow-light, 0 5px 15px rgba(0, 0, 0, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: contain;
}

/* 规格表格样式 */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light, 0 5px 15px rgba(0, 0, 0, 0.08));
}

.specs-table tr {
    transition: all 0.2s ease;
}

.specs-table tr:hover {
    background-color: rgba(74, 140, 90, 0.05);
}

.specs-table td {
    padding: 15px;
    border: 1px solid var(--kimone-gray, #e9ecef);
    font-size: 16px;
}

.spec-name {
    font-weight: 600;
    color: var(--kimone-primary, #2c5c34);
    width: 35%;
    background-color: #f9faf9;
}

/* 产品图集样式 */
.image-text-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.image-text-item {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.image-text-item .image-content {
    flex: 1;
    border-radius: var(--border-radius, 12px);
    overflow: hidden;
    box-shadow: var(--shadow-light, 0 5px 15px rgba(0, 0, 0, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-text-item .image-content img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 300px;
    object-fit: contain;
}

/* 核心优势网格样式 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.advantage-item {
    background: #f9faf9;
    padding: 25px;
    border-radius: var(--border-radius, 12px);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: var(--gradient-primary, linear-gradient(135deg, #2c5c34 0%, #4a8c5a 100%));
    color: white;
    transform: translateY(-5px);
}

.advantage-item:hover h3,
.advantage-item:hover i {
    color: white;
}

.advantage-item i {
    font-size: 40px;
    color: var(--kimone-secondary, #4a8c5a);
    margin-bottom: 15px;
}

.advantage-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--kimone-primary, #2c5c34);
    font-family: 'Montserrat', sans-serif;
}

/* FAQ样式 */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--kimone-gray, #e9ecef);
    border-radius: var(--border-radius, 12px);
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    background: #f9faf9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px;
}

/* 响应式设计 */
@media (max-width: 900px) {
    .intro-content,
    .image-text-item {
        flex-direction: column;
    }
    
    .image-text-item .image-content img {
        max-height: 250px;
    }
    
    .intro-image img {
        max-height: 300px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .module-content {
        padding: 20px;
    }
    
    .image-text-item .image-content img {
        max-height: 200px;
    }
    
    .intro-image img {
        max-height: 250px;
    }
}

/* 动画效果 */
@keyframes kimone-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.kimone-module {
    animation: kimone-fadeIn 0.5s ease forwards;
}
