
.specs-section {
    background: #fff;
    padding: 20px 0px;
    font-family: 'Poppins', sans-serif;
}

.specs-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    
}

.specs-container {
    display: flex;
    gap: 20px;
    margin: 0px;
    }

.specs-column {
    flex: 1;
    min-width: 0;
}

/* 核心修复：增加一个包装层，解决边框被切断的问题 */
.table-wrapper {
    padding: 1px; /* 给边框留出 1px 的显示空间 */
    background: transparent;
}

.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    /* 解决虚线感：改用 box-shadow 绘制外框，比 border 更稳 */
    box-shadow: 0 0 0 1px #d1d1d1; 
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.specs-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    font-size: 16px;
    line-height: 1.5;
}

/* 移除多余边框 */
.specs-table td:last-child { border-right: none; }
.specs-table tr:last-child td { border-bottom: none; }

.spec-label {
    font-weight: 600;
    width: 35%;
    background-color: #fafafa;
    font-size: 16px;
}

/* 手机端适配 */
@media (max-width: 992px) {
    .specs-container { flex-direction: column; gap: 20px; }
    .specs-title { font-size: 22px; }
}
