<style>

  #input_txt_7d1be132eda36 {

    background-color: #f8f8f8 !important;

  }

</style>


<script>

  document.addEventListener("DOMContentLoaded", function () {

    const optionSelect = document.getElementById("input_select_f3a9bc07dc939");

    const priceInput = document.getElementById("input_txt_7d1be132eda36");


    // 금액 입력 비활성화

    priceInput.readOnly = true;


    optionSelect.addEventListener("change", function () {

      const value = this.value;


      if (value === "랜딩페이지 제작") {

        priceInput.value = "400,000";

      } else if (value === "홈페이지 제작") {

        priceInput.value = "800,000";

      } else {

        priceInput.value = "";

      }

    });

  });

</script>