.cellGroup .inputStyle:nth-child(1) {
/* 第一个 .inputStyle 元素的样式 */
}
.cellGroup .inputStyle:nth-child(2) {
/* 第二个 .inputStyle 元素的样式 */
}
.cellGroup .inputStyle:nth-child(1),
.cellGroup .inputStyle:nth-child(2) {
/* 第一个和第二个 .inputStyle 元素的共同样式 */
}
.cellGroup .inputStyle:nth-child(3) {
/* 第三个 .inputStyle 元素的样式 */
}