/*price_table*/
.price_table {
  font-size: 13px;
  text-align: center;
  border: 1px solid #d4d4d4;
}
.price_table thead {
  color: #fff;
  background: #ba1111;
}
.price_table th,
.price_table td {
  word-break: keep-all;
  padding: 5px;
  border: 1px solid #d4d4d4;
}
.price_table .highlight {
  color: #000;
  background: #ffecd7;
}
.price_table .text_left {
  text-align: left;
}

/*price_3-2*/
.price_tab {
  display: flex;
  border-bottom: 1px solid #ba1111;
}
.price_tab li {
  font-size: 14px;
  text-align: center;
  padding: 5px 10px;
  border: 1px solid #ba1111;
  margin-right: -1px;
  flex-grow: 1;
  cursor: pointer;
}
.price_tab li.on {
  font-weight: bold;
  color: #fff;
  background-color: #ba1111;
}

.price_list {
  margin-top: 40px;
  position: relative;
}
.price_list li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
}
.price_list li.on {
  display: block;
}
.price_list li table {
  font-size: 13px;
  border: 1px solid #d4d4d4;
  margin-bottom: 30px;
}
.price_list li table tr td {
  word-break: keep-all;
  padding: 5px;
  border: 1px solid #d4d4d4;
}
.price_list li table tr td.highlight {
  text-align: center;
  color: #000;
  background: #ffecd7;
  font-weight: bold;
}
.price_list li table tr td:nth-child(1) {
  width: 15%;
}
.price_list li table tr td:nth-child(2) {
  width: 20%;
}
.price_list li table tr td:nth-child(3) {
  width: 65%;
}
.price_list li table tr td .red {
  color: #ba1111;
}
