.neighbourhood_content {
    padding: 30px 0;
    background: #F8F8FE;
}
.neighbourhood_content .default_content {
    max-width: 1210px;
}
.btnlookprice{
width:100%;
border: 1px solid var(--primaryColor);
}

.lookprice_mask {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 104;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all .5s;
}

.lookprice_mask.lookprice_none {
  display: none;
}

.lookprice_container {
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -373px 0 0 -270px;
  transition: transform .5s;
  z-index: 105;
  width: 540px;
  padding: 20px 30px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
}

.lookprice_container.lookprice_none {
  display:none;
}

.lookprice_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: #000;
}

.lookprice_back {
  width: 38px;
  height: 38px;
  background: url(../images/close.png) no-repeat 0 0;
  cursor: pointer;
  background-size: 100% 100%;
  transition: all 0.5s;
}

.lookprice_back:hover {
  transform: rotate(90deg);
}

.lookprice_tip {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #999;
  margin-bottom: 8px;
}

.lookprice_subtitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  margin-bottom: 18px;
}

.lookprice_list {
  margin-bottom: 8px;
}

.lookprice_label {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin-bottom: 4px;
}

.lookprice_label span {
  color: #ff0008;
}

.lookprice_input,
.lookprice_textarea {
  width: 100%;
  height: 50px;
  line-height: 48px;
  background: #ffffff;
  border: 1px solid #f1f1f1;
  box-sizing: border-box;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  padding: 0 12px;
}

.lookprice_textarea {
  height: 120px;
  margin-bottom: 10px;
}

.lookprice_code {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.lookprice_code .lookprice_input {
  width: 240px;
  margin-right: 13px;
}

.lookprice_code img {
  width: 50px;
  cursor: pointer;
}

.lookprice_button {
  width: 100%;
  height: 60px;
  color: #fff;
  line-height: 60px;
  background: var(--primaryColor);
  transition: all 0.5s;
  border-radius: 8px;
}

.lookprice_button:hover {
  background: var(--activeColor);
}