.trading-rules-table{
    width: 100%;
}

/* 3列表格列宽：20%, 60%, 20% */
.trading-rules-table th:nth-child(1),
.trading-rules-table td:nth-child(1) {
    width: 20%;
}

.trading-rules-table th:nth-child(2),
.trading-rules-table td:nth-child(2) {
    width: 80%;
}

.trading-rules-table:has(th:nth-child(3)) th:nth-child(2),
.trading-rules-table:has(th:nth-child(3)) td:nth-child(2),
.trading-rules-table:has(td:nth-child(3)) th:nth-child(2),
.trading-rules-table:has(td:nth-child(3)) td:nth-child(2) {
    width: 60%;
}

.trading-rules-table:has(th:nth-child(3)) th:nth-child(3),
.trading-rules-table:has(th:nth-child(3)) td:nth-child(3),
.trading-rules-table:has(td:nth-child(3)) th:nth-child(3),
.trading-rules-table:has(td:nth-child(3)) td:nth-child(3) {
    width: 20%;
}


.trading-rules-table:has(th:nth-child(4)) th:nth-child(2),
.trading-rules-table:has(th:nth-child(4)) td:nth-child(2),
.trading-rules-table:has(td:nth-child(4)) th:nth-child(2),
.trading-rules-table:has(td:nth-child(4)) td:nth-child(2) {
    width: 50%;
}

.trading-rules-table th:nth-child(4),
.trading-rules-table td:nth-child(4) {
    width: 10%;
}



/* 默认隐藏所有地区专属内容 */
.show-for-cn,
.show-for-non-cn {
  display: none;
}

/* 中国大陆地区显示 CN 内容 */
body.region-cn .show-for-cn {
  display: block;
}

/* 非中国大陆地区显示 Non-CN 内容 */
body.region-non-cn .show-for-non-cn {
  display: block;
}

/* 如果是 inline 或 inline-block 元素，添加对应类名 */
body.region-cn .show-for-cn.inline {
  display: inline;
}

body.region-cn .show-for-cn.inline-block {
  display: inline-block;
}

body.region-non-cn .show-for-non-cn.inline {
  display: inline;
}

body.region-non-cn .show-for-non-cn.inline-block {
  display: inline-block;
}