.yl_wrap .zst-top-wrap {
  margin-bottom: 16px;
}
.yl_wrap .zst-top-wrap > .zst-top {
  display: flex;
}
.yl_wrap .zst-top-wrap > .zst-top > .item {
  padding: 0 12px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfcfcf;
  border-bottom: none;
  font-weight: bold;
  cursor: pointer;
}
.yl_wrap .zst-top-wrap > .zst-top > .item:not(:last-of-type) {
  border-right: none;
}
.yl_wrap .zst-top-wrap > .zst-top > .item > span {
  display: flex;
  align-items: center;
}
.yl_wrap .zst-top-wrap > .zst-top > .item > span::before {
  display: block;
  content: '';
  width: 2px;
  height: 13px;
  background: #ffffff;
  margin-right: 3px;
}
.yl_wrap .zst-top-wrap > .zst-top > .item.active {
  position: relative;
}
.yl_wrap .zst-top-wrap > .zst-top > .item.active > span {
  color: var(--red-color);
}
.yl_wrap .zst-top-wrap > .zst-top > .item.active > span::before {
  background: var(--red-color);
}
.yl_wrap .zst-top-wrap > .zst-top > .item.active::after {
  display: inline-block;
  content: '';
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.yl_wrap .zst-top-wrap > .zst-bottom {
  width: 100%;
  border: 1px solid #cecece;
  display: none;
  flex-wrap: wrap;
  align-content: space-between;
  padding: 12px 11px;
}
.yl_wrap .zst-top-wrap > .zst-bottom > a {
  width: 13%;
  height: 20px;
  overflow: hidden;
  color: #181818;
  margin-bottom: 4px;
  display: block;
  position: relative;
  padding-left: 16px;
}
.yl_wrap .zst-top-wrap > .zst-bottom > a:not(:last-child) {
  margin-right: 15px;
}
.yl_wrap .zst-top-wrap > .zst-bottom > a.active {
  color: var(--red-color);
}
.yl_wrap .zst-top-wrap > .zst-bottom > a:hover {
  color: var(--red-color);
  text-decoration: underline;
}
.yl_wrap .zst-top-wrap > .zst-bottom > a::before {
  position: absolute;
  display: inline-block;
  content: '';
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}
.yl_wrap .zst-top-wrap > .zst-bottom > a.re::before {
  width: 16px;
  height: 16px;
  background: url(/www8300/images/fire.png) no-repeat center center / 100%;
  background-size: 100% 100%;
}
.yl_wrap .zst-top-wrap > .zst-bottom > a.paid::before {
  width: 16px;
  height: 16px;
  background: url(/www8300/images/paid.png) no-repeat center center;
  background-size: 100% 100%;
}
.yl_wrap .zst-top-wrap > .zst-bottom > a.yl::before {
  width: 16px;
  height: 16px;
  background: url(/www8300/images/icon_yl.png) no-repeat center center;
  background-size: 12px 12px;
}
.yl_wrap .zst-top-wrap > .zst-bottom > a.gj::before {
  width: 16px;
  height: 16px;
  background: url(/www8300/images/icon_gj.png) no-repeat center center;
  background-size: 14px 12px;
}
.yl_wrap .zst-top-wrap > .zst-bottom.six-line > a {
  width: 15%;
}
.yl_wrap .zst-top-wrap > .zst-bottom.five-line > a {
  width: 18%;
}
.yl_wrap .zst-top-wrap > .zst-bottom.show {
  display: flex;
}
.yl_wrap .toolbar-yl {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: #f7f7f7;
}
.yl_wrap .toolbar-yl h2 {
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
}
.yl_wrap .toolbar-yl .right {
  display: flex;
  align-items: center;
}
.yl_wrap .toolbar-yl .right span {
  font-size: 14px;
  color: #181818;
}
.yl_wrap .toolbar-yl .right input {
  width: 80px;
  height: 24px;
  color: #181818;
  background: #ffffff;
  border-radius: 2px;
  border: 1px solid #181818;
  outline: none;
  text-align: center;
  margin-right: 4px;
}
.yl_wrap .toolbar-yl .right #ylsearch {
  width: 40px;
  height: 24px;
  color: #ffffff;
  background: var(--main-color);
  border-radius: 2px;
  text-align: center;
  line-height: 24px;
  cursor: pointer;
  margin-left: 12px;
}
.yl_wrap .toolbar-yl .right a {
  color: var(--main-color);
  margin-left: 16px;
}
.yl_wrap .yltable {
  width: 100%;
  border-spacing: 0;
  text-align: center;
  border-collapse: collapse;
}
.yl_wrap .yltable thead {
  height: 68px;
  background: #eef4ff;
}
.yl_wrap .yltable thead th {
  border: 1px solid #e0e0e0;
  font-weight: normal;
  position: relative;
  cursor: pointer;
}
.yl_wrap .yltable thead th em {
  width: 9px;
  height: 11px;
  display: inline-block;
  content: '';
  background-image: url(/www8300/images/sort.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.yl_wrap .yltable thead th em.down {
  background-image: url(/www8300/images/sort_asc.png);
}
.yl_wrap .yltable thead th em.up {
  background-image: url(/www8300/images/sort_desc.png);
}
.yl_wrap .yltable thead th.strong {
  font-weight: bold;
}
.yl_wrap .yltable tbody tr td {
  font-size: 12px;
  padding: 5px;
  border: 1px solid #e0e0e0;
}
.yl_wrap .yltable tbody tr td a {
  color: var(--main-color);
  text-decoration: underline;
}
.yl_wrap .yltable tbody tr:hover {
  background: #eeeeee;
}
.yl_wrap .yltable tbody tr.tab {
  background: #f2f7ff;
}
.yl_wrap #showchart {
  margin-top: 16px;
}
.yl_wrap #showchart .subbar {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  background: #fdf6f6;
  border-radius: 6px 6px 0px 0px;
  border: 1px solid #f7f7f7;
}
.yl_wrap #showchart .subbar span {
  font-size: 16px;
  font-weight: bold;
}
.yl_wrap #showchart .fxresult {
  width: 100%;
  height: 421px;
  border-radius: 0 0 6px 6px;
  border: 1px solid #e0e0e0;
}
.yl_wrap > .parameter {
  width: 100%;
  margin-top: 24px;
  border: 2px solid #cecece;
  overflow: hidden;
}
.yl_wrap > .parameter > .top {
  width: 100%;
  height: 48px;
  background: #f7f7f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
}
.yl_wrap > .parameter > .top > .text {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.yl_wrap > .parameter > .top > .text::before {
  display: inline-block;
  content: '';
  width: 24px;
  height: 24px;
  background: url(/www8300/images/cssm.png) no-repeat center center;
}
.yl_wrap > .parameter > .top > .p-control {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.yl_wrap > .parameter > .top > .p-control::before {
  display: inline-block;
  content: '';
  width: 16px;
  height: 16px;
  margin-right: 3px;
}
.yl_wrap > .parameter > .top > .p-control.param-xs::before {
  background: url(/www8300/images/eye-k.png) no-repeat center center;
}
.yl_wrap > .parameter > .top > .p-control.param-yc::before {
  background: url(/www8300/images/eye-b.png) no-repeat center center;
}
.yl_wrap > .parameter > .top > .p-control.param-xs {
  display: none;
}
.yl_wrap > .parameter > .param-bot {
  padding: 12px;
}
.yl_wrap > .parameter > .param-bot span {
  font-weight: bold;
}
.yl_wrap > .parameter > .param-bot > p:not(:last-of-type) {
  margin-bottom: 8px;
}
