.calculator-box {
  background: #fff;
  height: 863px;
}
.calculator-box .safe-area {
  padding-top: 140px;
}
.calculator-box h2 {
  font-size: 48px;
  font-family: Poppins, Poppins;
  font-weight: bold;
  color: #181818;
  line-height: 72px;
  text-align: center;
}
.calculator-box .tips {
  margin-top: 28px;
  font-size: 26px;
  font-family: Poppins, Poppins;
  font-weight: 400;
  color: #181818;
  line-height: 39px;
}
.calculator-box .calculator-main {
  display: flex;
  align-items: center;
  margin-top: 69px;
  justify-content: space-between;
}
.calculator-box .calculator-main .left {
  width: 624px;
}
.calculator-box .calculator-main .left .input-item {
  height: 100px;
  margin-bottom: 70px;
}
.calculator-box .calculator-main .left .input-item .top-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.calculator-box .calculator-main .left .input-item .top-info .name {
  font-size: 20px;
  font-family: Poppins, Poppins;
  font-weight: 400;
  color: #181818;
  line-height: 30px;
}
.calculator-box .calculator-main .left .input-item .top-info .value {
  font-size: 24px;
  font-family: Poppins, Poppins;
  font-weight: 400;
  color: #DF5149;
  line-height: 35px;
}
.calculator-box .calculator-main .left .input-item input[type=range] {
  display: inline-block;
  height: 13px;
  width: 100%;
  -webkit-appearance: none;
}
.calculator-box .calculator-main .left .input-item input[type=range]::-webkit-slider-runnable-track {
  background: #DF5149;
  border-radius: 7px;
  height: 13px;
}
.calculator-box .calculator-main .left .input-item input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #181818;
  position: relative;
  top: -8px;
  z-index: 1;
}
.calculator-box .calculator-main .left .input-item .bottom-info {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calculator-box .calculator-main .left .input-item .bottom-info .value {
  font-size: 24px;
  font-family: Poppins, Poppins;
  font-weight: 500;
  color: #181818;
  line-height: 35px;
}
.calculator-box .calculator-main .right .info-top {
  width: 609px;
  height: 339px;
  border-radius: 8px;
  border: 1px solid #181818;
}
.calculator-box .calculator-main .right .info-top .top-item {
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.calculator-box .calculator-main .right .info-top .top-item:first-of-type {
  border-bottom: 1px solid #181818;
}
.calculator-box .calculator-main .right .info-top .top-item .name {
  font-size: 20px;
  font-family: Poppins, Poppins;
  font-weight: 400;
  color: #181818;
  line-height: 30px;
}
.calculator-box .calculator-main .right .info-top .top-item .money {
  font-size: 40px;
  font-family: Poppins, Poppins;
  font-weight: 500;
  color: #181818;
  line-height: 60px;
}
.calculator-box .calculator-main .right .bottom-item {
  margin-top: 24px;
  background: #FFD5D3;
  border-radius: 8px;
  height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.calculator-box .calculator-main .right .bottom-item .name {
  font-size: 20px;
  font-family: Poppins, Poppins;
  font-weight: 400;
  color: #181818;
  line-height: 30px;
}
.calculator-box .calculator-main .right .bottom-item .money {
  font-size: 40px;
  font-family: Poppins, Poppins;
  font-weight: 500;
  color: #181818;
  line-height: 60px;
}