/* Таблицы характеристик */

/* 1 вариант */
.complex-table tr:nth-of-type(odd) td:last-of-type {
    background-color: inherit;
}

.complex-table tr:nth-child(2) {
    background-color: #fff;
}

.complex-table tr:nth-of-type(odd) {
    background-color:#f4f4f4;
}

.complex-table tr:nth-of-type(even):not(tr:nth-child(2)) {
    background-color:#fdfdfd;
}

/* 2 вариант (1 строка таблицы заголовки) */

.complex-table-1rowhead td:first-of-type {
    background-color: inherit;
}

.complex-table-1rowhead tr:nth-of-type(odd) td:last-of-type {
    background-color: inherit;
}

.complex-table-1rowhead tr:nth-child(2) {
    background-color: #fff;
}

.complex-table-1rowhead tr:nth-of-type(odd) {
    background-color:#f4f4f4;
}

.complex-table-1rowhead tr:nth-of-type(even):not(tr:nth-child(2)) {
    background-color:#fdfdfd;
}

.complex-table-1rowhead tr:nth-child(1){
    background-color: #eaeded;
}