
/* 只添加必要的样式覆盖，避免冲突 */
.kimone-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);
}

.kimone-specs-table tr {
    transition: all 0.2s ease;
}

.kimone-specs-table tr:hover {
    background-color: rgba(74, 140, 90, 0.05);
}

.kimone-specs-table td {
    padding: 15px;
    border: 1px solid #e9ecef;
    font-size: 16px;
}

.kimone-spec-name {
    font-weight: 600;
    color: #2c5c34;
    width: 35%;
    background-color: #f9faf9;
}

.kimone-reasons-list {
    list-style: none;
    margin: 20px 0;
}

.kimone-reasons-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    font-size: 18px;
}

.kimone-reasons-list li:last-child {
    border-bottom: none;
}

.kimone-reasons-list li:before {
    content: "✓";
    color: #4a8c5a;
    font-weight: bold;
    font-size: 20px;
    margin-right: 15px;
    background: rgba(74, 140, 90, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kimone-faq-item {
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.kimone-faq-question {
    padding: 18px 20px;
    background: #f9faf9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
}

.kimone-faq-answer {
    padding: 20px;
    background: white;
    font-size: 18px;
}

.kimone-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.kimone-image-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.kimone-credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.kimone-credentials-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
