.price-container {
  padding: 0.2rem;
  font-size: 0.28rem;
}

.price-container .date {
  padding-bottom: 0.2rem;
}

.price-container .table-container .table-head {
  padding: 0.2rem 0;
  background: #F2F2F2;
  font-weight: 600;
}

.price-container .table-container .table-head span {
  display: inline-block;
  width: 25%;
  text-align: center;
}

.price-container .table-container .table-body {
  min-height: 9rem;
  overflow: hidden;
}

.price-container .table-container .table-body li {
  padding: 0.2rem 0;
  background: #fff;
  margin-bottom: 0.16rem;
  overflow: hidden;
}

.price-container .table-container .table-body li span {
  display: block;
  width: 25%;
  float: left;
  text-align: center;
}

.price-container .table-container .table-body li .up {
  position: relative;
  color: #ca360f;
}

.price-container .table-container .table-body li .up::after {
  position: absolute;
  content: '';
  right: 10px;
  top: 0;
  width: 15px;
  height: 17px;
  background: url("../image/price-up.svg");
  background-size: 100% 100%;
}

.price-container .table-container .table-body li .down {
  position: relative;
  color: #0fca51;
}

.price-container .table-container .table-body li .down::after {
  position: absolute;
  content: '';
  right: 10px;
  top: 0;
  width: 15px;
  height: 17px;
  background: url("../image/price-down.svg");
  background-size: 100% 100%;
}

.price-container .table-container .table-body li .unchange {
  position: relative;
}

.price-container .table-container .table-body li .unchange::after {
  position: absolute;
  content: '';
  right: 10px;
  top: 0;
  width: 15px;
  height: 17px;
  background: url("../image/price-p.svg");
  background-size: 100% 100%;
}

.form-input {
  margin-bottom: 0.2rem;
  overflow: hidden;
}

.form-input .label {
  display: inline-block;
  color: #333;
  font-weight: 400;
  width: 20%;
  text-align: right;
  font-size: 0.28rem;
}

.form-input .input-div input {
  width: 70%;
  height: 0.7rem;
  background-color: #fff;
  border: 1px #fff solid;
}

.form-input .search-btn {
  display: inline-block;
  width: 1.5rem;
  height: 0.6rem;
  line-height: 0.6rem;
  background: #519166;
  color: #fff;
  border-radius: 0.05rem;
  font-size: 0.28rem;
  text-align: center;
  overflow: hidden;
}

.shadow {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1001;
}

.dialog {
  position: fixed;
  display: none;
  width: 95vw;
  height: 350px;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  z-index: 1002;
  border-radius: 10px;
  padding: 25px 20px;
}

.dialog .close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 15px;
  height: 15px;
  background: url("../image/close-black.svg");
  background-size: 100% 100%;
}

.dialog .product-name {
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
}

.dialog .price-echarts {
  width: 100%;
  height: 100%;
}
