/* Tooto Specification Table */

.tooto-specification-table {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	width: 100%;
	background: #fff;
}

.tooto-spec-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 34px;
    gap: 80px;
    line-height: 48px;
	border-bottom: 1px solid #e5e5e5;
}

/* 移除最后一行的 border（单数时移除最后1个，双数时移除最后2个） */
.tooto-spec-row:nth-last-child(1),
.tooto-spec-row:nth-last-child(2) {
	border-bottom: none;
}

/* 如果是奇数个，最后一个要保留 border，倒数第二个移除 */
.tooto-spec-row:nth-last-child(1):nth-child(odd) {
	border-bottom: 1px solid #e5e5e5;
}

.tooto-spec-key {
	font-weight: 600;
	color: #1a1a1a;
	font-size: 15px;
	flex: 0 0 auto;
	padding-right: 20px;
    min-width: 178px;
}

.tooto-spec-value {
	color: #666;
	font-size: 15px;
	flex: 1;
}

/* 响应式 */
@media (max-width: 768px) {
	.tooto-specification-table {
		grid-template-columns: 1fr;
	}

	.tooto-spec-row {
		align-items: center;
		gap: 40px;
        line-height: 24px;
        padding: 10px 0;
	}

	/* 移动端只移除最后一个的 border */
	.tooto-spec-row:nth-last-child(2) {
		border-bottom: 1px solid #e5e5e5;
	}

	.tooto-spec-row:nth-last-child(1) {
		border-bottom: none;
	}
	
	.tooto-spec-key {
        min-width: 145px;
        padding: 0;

	}
	
	.tooto-spec-value {
		text-align: left;
	}
}
