@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Blinker:wght@100;200;300;400;600;700;800;900&family=Noto+Sans+KR:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap');

/* 입찰공고 시작 */
.tender_section {
  /* width: 1610px; */
  width: calc(100% - 7px);
  height: 600px;
  margin-top: 20px;
}

/* 입찰공고 검색조건 */
.tender_terms {
  /* width: 1480px; */
  width: calc(100% - 130px);
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 검색조건 상단 */
.tender_terms_top {
  width: 110%;
  height: 30px;
  display: flex;
  align-items: center;
}

/* 검색조건 상단 법인 */
.corporate_section {
  width: 304px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #FFAD7A;
  display: flex;
}

.corporate_tit {
  width: 148px;
  height: 28px;
  border-radius: 10px;
  background: #FFEDE2;
  line-height: 28px;
}

.corporate_tit p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.corporate_section select
{
  height: 28px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 15px;
}

.corporate_section select:focus option
{
  background: #333;
  color: #fff;
}

.corporate_section select option
{
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

/* 검색조건 상단 일자검색 */
.date_section {
  width: 484px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #FFAD7A;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.date_tit {
  width: 120px;
  height: 28px;
  border-radius: 10px;
  background: #FFEDE2;
  line-height: 28px;
}

.date_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.date_section select
{
  height: 28px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 15px;
}

.date_section select:focus option
{
  background: #333;
  color: #fff;
}

.date_section select option
{
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

/* 달력(이전,이후) */
.date_calendar {
  width: 240px;
  height: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 15px;
  position: relative;
}

.date_calendar p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
}

.date_calendar_prev,
.date_calendar_next
{
  width: 106px;
  height: 22px;
  display: flex;
  align-items: center;
}

.date_calendar_prev>input,
.date_calendar_next>input
{
  width: 88px;
  height: 22px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.date_calendar_prev>i,
.date_calendar_next>i 
{
  color: #aaa;
  font-size: 13px;
  margin-left: 6px;
  cursor: pointer;
  z-index: 20;
}

.date_calendar_prev:hover>i,
.date_calendar_next:hover>i 
{
  color: #CF4F00;
  transition: color 0.3s ease;
}

.calendar_prev,
.calendar_next
{
  width: 300px;
  height: 208px;
  background: #333;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: none;
  position: absolute;
  top: 30px;
  right: 100px;
  z-index: 30;
}

.calendar_next {
  position: absolute;
  top: 30px;
  left: 10px;
}

.calendar_prev.on,
.calendar_next.on
{
  display: flex;
}

.calendar_top {
  width: 207px;
  height: 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.calendar_top>i {
  font-size: 11px;
  color: #ccc;
}

.calendar_top select {
  height: 19px;
  background: #333;
  color: #fff;
}

.calendar_yyyymm {
  width: 135px;
  height: 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar_m,
.calendar_y 
{
  width: 56px;
  height: 19px;
}

.calendar_main {
  width: 90%;
  height: 159px;
  margin-top: 10px;
}

.calendar_main .week ul {
  width: 93%;
  display: flex;
  justify-content: space-between;
  margin-left: 5px;
}

.calendar_main .week ul li {
  color: #FFF;
  font-size: 13px;
  font-weight: 700;
}

.sch_day {
  margin-top: 8px;
}

.sch_day .calendar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; 
  gap: 4px;
}

.sch_day .calendar .day {
  width: calc(100% / 7 - 4px); 
  height: 25px;
  color: #FFF;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
}

.sch_day .calendar .day:hover {
  background: #fff !important;
  color: #333 !important;
  font-weight: 700 !important;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.sch_day .calendar .day.empty {
  visibility: hidden;
  pointer-events: none;
}

#calendar_m_op,
#calendar_y_op {
  border: none;
  cursor: pointer;
}

/* 검색조건 상단 사업구분 */
.bu_se_section {
  width: 270px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #FFAD7A;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.bu_se_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #FFEDE2;
  text-align: center;
  line-height: 28px;
}

.bu_se_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.bu_se_section select
{
  height: 28px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 15px;
}

.bu_se_section select:focus option
{
  background: #333;
  color: #fff;
}

.bu_se_section select option
{
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

/* 검색조건 상단 사업부서 */
.bu_dept_section {
  width: 355px;
  height: 30px;
  border-radius: 10px;
  background: #FFEDE2;
  display: flex;
  align-items: center;
  border: 1px solid #FFEDE2;
  margin-left: 20px;
}

.bu_dept_section p {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  margin-left: 12px;
}

.bu_dept_section input {
  width: 240px;
  height: 22px;
  border-radius: 3px;
  border: 1px solid #FFAD7A;
  color: #333;
  font-size: 12px;
  font-weight: 400;
  margin-left: 25px;
}

.bu_dept_section input:focus {
  outline: none;
}

/* 검색조건 하단 */
.tender_terms_bottom {
  width: 110%;
  height: 30px;
  display: flex;
  align-items: center;
}

/* 검색조건 하단 해외여부 */
.foreign_y_section {
  width: 304px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #FFAD7A;
  background: #fff;
  display: flex;
  align-items: center;
}

.foreign_y_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #FFEDE2;
  text-align: center;
  line-height: 28px;
}

.foreign_y_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.foreign_y_section select
{
  height: 28px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 15px;
}

.foreign_y_section select:focus option
{
  background: #333;
  color: #fff;
}

.foreign_y_section select option
{
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

/* 검색조건 하단 용역명 */
.service_nm_section {
  width: 233px;
  height: 30px;
  border-radius: 10px;
  background: #FFEDE2;
  display: flex;
  align-items: center;
  border: 1px solid #FFEDE2;
  margin-left: 20px;
}

.service_nm_section p {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  margin-left: 12px;
}

.service_nm_section input {
  width: 142px;
  height: 22px;
  border-radius: 3px;
  border: 1px solid #FFAD7A;
  color: #333;
  font-size: 12px;
  font-weight: 400;
  margin-left: 25px;
}

.service_nm_section input:focus {
  outline: none;
}

/* 검색조건 하단 발주처 */
.order_section {
  width: 233px;
  height: 30px;
  border-radius: 10px;
  background: #FFEDE2;
  display: flex;
  align-items: center;
  border: 1px solid #FFEDE2;
  margin-left: 20px;
}

.order_section p {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  margin-left: 12px;
}

.order_section input {
  width: 142px;
  height: 22px;
  border-radius: 3px;
  border: 1px solid #FFAD7A;
  color: #333;
  font-size: 12px;
  font-weight: 400;
  margin-left: 25px;
}

.order_section input:focus {
  outline: none;
}

/* 검색조건 하단 발주방식 */
.order_way_section {
  width: 270px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #FFAD7A;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.order_way_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #FFEDE2;
  text-align: center;
  line-height: 28px;
}

.order_way_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.order_way_section select
{
  height: 28px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 15px;
}

.order_way_section select:focus option
{
  background: #333;
  color: #fff;
}

.order_way_section select option
{
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

/* 검색조건 하단 참가여부 */
.participation_section {
  width: 270px;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #FFAD7A;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.participation_tit {
  width: 150px;
  height: 28px;
  border-radius: 10px;
  background: #FFEDE2;
  text-align: center;
  line-height: 28px;
}

.participation_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.participation_section select
{
  height: 28px;
  border: none;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-left: 15px;
}

.participation_section select:focus option
{
  background: #333;
  color: #fff;
}

.participation_section select option
{
  color: #333;
  font-size: 13px;
  font-weight: 500;
}

/* 검색버튼 */
.search_btn>button {
  border: none;
  background: #333;
  width: 70px;
  height: 30px;
  border-radius: 10px;
  cursor: pointer;
  margin-left: 13px;
}

.search_btn>button:hover {
  background: #CF4F00;
  transition: background-color 0.3s ease;
}

.search_btn>button>p {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
}

/* 리스트 서브메뉴 */
.tender_sub_menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.tender_sub_bar {
  /* width: 1540px; */
  width: calc(100% - 70px);
  height: 30px;
  border-radius: 10px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tender_sub_bar select {
  border: none;
  background: none;
  cursor: pointer;
  height: 22px;
}

.tender_sub_bar select#contest_date {
  margin-left: 12px;
}

.tender_sub_bar select#submit_date {
  margin-right: 12px;
}

.tender_sub_bar select:focus option {
  background: #333;
  color: #fff;
}

.tender_sub_bar select option {
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

/* 리스트 사이드메뉴 */
.menu_side_btn button {
  width: 50px;
  height: 30px;
  border: none;
  border-radius: 10px;
  background: #A5A5A5;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.menu_side_btn button:hover {
  background: #333;
  transition: background-color 0.3s ease;
}

.menu_side_btn button i {
  font-size: 15px;
  color: #fff;
}

.menu_side_modal {
  width: 172px;
  height: 404px;
  position: fixed;
  transform: translate(-71%, 2%); 
  background: #fff;
  display: none;
  border-radius: 20px;
  border: 1px solid #eee;
  align-items: center;
  z-index: 9999;
  justify-content: center;
}

.menu_side_modal.on {
  display: flex;
  flex-direction: column;
}

.menu_side_section {
  width: 134px;
  height: 384px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

ul.menu_side_list {
  width: 100%;
  height: 96px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

ul.menu_side_list li {
  cursor: pointer;
}

ul.menu_side_list li p {
  color: #AAA;
  font-size: 15px;
  font-weight: 500;
}

ul.menu_side_list li:hover p {
  color: #333;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

ul.article_menu {
  margin-top: 10px;
  width: 95px;
  height: 278px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

ul.article_menu li {
  color: #aaa;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
}

ul.article_menu li i {
  font-size: 15px;
  color: #aaa;
  margin-right: 15px;
  cursor: pointer;
}

/* 리스트 스크롤 */
.tender_list_scroll {
  /* width: 1599px; */
  width: calc(100% - 17px);
  box-sizing: content-box; 
  height: 480px;
  position: relative;
  overflow-y: auto; 
  overflow-x: hidden;
  margin-top: 10px;
}

.tender_list_scroll::-webkit-scrollbar {
  width: 15px; 
  background: #F6F6F6;
}

.tender_list_scroll::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px; 
  transition: background-color 0.3s ease;
}

.tender_list_scroll::-webkit-scrollbar-thumb:hover {
  background-color: #333; 
  transition: background-color 0.3s ease;
}

.tender_list_scroll::-webkit-scrollbar-track {
  background: #f6f6f6;
  border-radius: 10px; 
  margin: 12px; 
}

/* 리스트 */
.tender_list {
  /* width: 1540px; */
  width: calc(100% - 70px);
  min-height: 300px;
}

.tender_list tbody tr {
  width: calc(100% - 85px);
  background: #fff;
  border-radius: 10px;
  padding: 0;
  height: 30px;
  scroll-snap-align: start;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.tender_list tbody tr.odd:hover {
  background: #FBF4EF;
  transition: background-color 0.3s ease;
}

.tender_list tbody tr.even {
  background: #F6F6F6;
}

.tender_list tbody tr.even:hover {
  background: #FBF4EF;
  transition: background-color 0.3s ease;
}

.tender_list tbody tr td {
  height: 30px;
  line-height: 30px; 
  padding: 0; 
}

.bu_dept_list,
.service_nm_list {
  max-width: 150px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.bu_dept_list {
  max-width: 100px;
}

td.service_nm_list {
  cursor: pointer;
}

td.service_nm_list:hover {
  color: #007BDF;
  transition: color 0.3s ease;
  font-weight: 600;
}

.tender_list td {
  overflow: hidden;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.contest_date_list {
  margin-left: 12px;
}

.submit_date {
  margin-right: 12px;
}

.tender_list td.contest_date_list {
  border-radius: 10px 0 0 10px;
}

.tender_list tbody tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* 페이지 이동 */
.page {
  margin-top: 20px;
  width: 100%;
  height: 25px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

.page ul {
  width: 291px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page ul li,.page ul li button {
  cursor: pointer;
}

.page ul li.prev_next {
  color: #ccc;
  font-size: 15px;
}

.page ul li.prev_next:hover {
  color: #333;
  transition: color 0.3s ease;
}

.page ul li button {
  width: 25px;
  height: 25px;
  background: #ccc;
  border: none;
  border-radius: 5px;
  color: #FFF;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
}

.page ul li button:hover {
  background: #333;
  transition: background-color 0.3s ease;
}

.page ul li button.active {
  background: #333;
  color: #FFF;
  font-weight: bold;
  cursor: default; /* Hover 상태와 구분하기 위해 */
}

.page ul li button.active:hover {
  background: #333; /* Hover 상태와 동일하게 유지 */
}

/* 팝업 모달 백그라운드 */
.modal_bg {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 9998; 
  display: none; 
}

.modal_bg.on {
  display: block;
}

/* 용역명 리스트 클릭 >> 입찰정보 팝업 */
.bidding_intel_modal {
  width: 1468px;
  height: 846px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #eee;
  z-index: 9999;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  flex-direction: column;
  align-items: center;
}

.bidding_intel_modal.on {
  display: flex;
}

/* 팝업 타이틀 */
.bid_intel_tit {
  width: 100%;
  height: 18px;
  display: flex;
  align-items: center;
  border-left: 3px solid #CF4F00;
}

.bid_intel_tit h2 {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  margin-left: 5px;
}

.modal_top {
  width: 1430px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}

.modal_top>button {
  border: none;
  background: none;
}

.modal_top>button i {
  font-size: 23px;
  color: #333;
  cursor: pointer;
}

.modal_top>button:hover i {
  color: #CF4F00;
  transition: color 0.3s ease;
}

/* 용역명 리스트 클릭 >> 입찰정보 팝업 main */
.modal_main {
  width: 1430px;
  height: 690px;
  margin-top: 20px;
}

/* 라인1 */
.bidding_line1 {
  width: 100%;
  height: 30px;
}

/* 회사명 */
.b_comp_nm_section {
  width: 100%;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
}

.b_comp_nm_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_comp_nm_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_comp_nm_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 라인2 */
.bidding_line2 {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* 나라장터 */
.b_nara_section {
  width: 708px;
  height: 58px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_nara_tit {
  width: 150px;
  height: 58px;
  border-radius: 10px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b_nara_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.b_nara_section ul {
  width: 318px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 15px;
}

.b_nara_section ul li:first-child {
  color: #333;
  font-size: 13px;
  font-weight: 400;
}

.b_nara_section ul li button {
  width: 120px;
  height: 30px;
  border: none;
  border-radius: 10px;
  background: #333;
  cursor: pointer;
}

.b_nara_section ul li button:hover {
  background: #007BDF;
  transition: background-color 0.3s ease;
}

.b_nara_section ul li button p {
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

/* 공고일 */
.b_contest_date_section {
  width: 348px;
  height: 58px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_contest_date_tit {
  width: 150px;
  height: 58px;
  background: #eee;
  border-radius: 10px;
  line-height: 58px;
}

.b_contest_date_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_contest_date_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 담당 */
.b_charge_section {
  width: 348px;
  height: 58px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_charge_tit {
  width: 150px;
  height: 58px;
  background: #eee;
  border-radius: 10px;
  line-height: 58px;
}

.b_charge_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_charge_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 라인3 */
.bidding_line3 {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* 용역명 */
.b_service_nm_section {
  width: 1068px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_service_nm_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_service_nm_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_service_nm_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* EP공지 */
.b_ep_notice_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_ep_notice_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_ep_notice_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_ep_notice_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 라인4 */
.bidding_line4 {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* 발주처 */
.b_order_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_order_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_order_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_order_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 수요처 */
.b_demand_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_demand_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_demand_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_demand_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 발주방식 */
.b_order_way_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_order_way_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_order_way_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_order_way_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 추정가격 */
.b_estimated_price_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_estimated_price_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_estimated_price_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_estimated_price_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 라인5 */
.bidding_line5 {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* 용역기간 */
.b_service_date_section {
  width: 708px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_service_date_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_service_date_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_service_date_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 용역금액 */
.b_service_amount_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_service_amount_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_service_amount_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_service_amount_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 기초금액 */
.b_basic_amount_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_basic_amount_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_basic_amount_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_basic_amount_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 라인6 */
.bidding_line6 {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* 사업구분 */
.b_bu_se_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_bu_se_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_bu_se_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_bu_se_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 용역구분 */
.b_service_se_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_service_se_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_service_se_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_service_se_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 공사종류 */
.b_construction_type_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_construction_type_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_construction_type_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_construction_type_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 도급방식 */
.b_subcontract_way_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_subcontract_way_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_subcontract_way_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_subcontract_way_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 라인7 */
.bidding_line7 {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* 도급현황 */
.b_subcontract_section {
  width: 1068px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_subcontract_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_subcontract_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_subcontract_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 지분율 */
.b_ratio_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_ratio_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_ratio_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_ratio_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 라인8 */
.bidding_line8 {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* 참가등록마감일 */
.b_register_date_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_register_date_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_register_date_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_register_date_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 제출일 */
.b_submit_date_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_submit_date_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_submit_date_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_submit_date_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 입찰방식 */
.b_bid_way_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_bid_way_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_bid_way_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_bid_way_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 해외사업여부 */
.b_foreign_y_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_foreign_y_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_foreign_y_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_foreign_y_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 라인9 */
.bidding_line9 {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* 라인9 좌측*/
/* 참가자격 */
.b_participation_r_section {
  width: 1068px;
  height: 68px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_participation_r_tit {
  width: 150px;
  height: 68px;
  background: #eee;
  border-radius: 10px;
  line-height: 68px;
}

.b_participation_r_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_participation_r_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 라인9 우측*/
.bidding_line9_rt {
  width: 348px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* 공고상태 */
.b_contest_state_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_contest_state_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_contest_state_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_contest_state_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 사전규격공개일 */
.b_open_date_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_open_date_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_open_date_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_open_date_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 라인10 */
.bidding_line10 {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* 공고구분 */
.b_contest_se_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_contest_se_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_contest_se_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_contest_se_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 담당부서 */
.b_charge_dept_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_charge_dept_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_charge_dept_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_charge_dept_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* TP/SOQ 제출일자 */
.b_tp_soq_date_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_tp_soq_date_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_tp_soq_date_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_tp_soq_date_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 협정일*/
.b_agreement_date_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_agreement_date_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_agreement_date_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_agreement_date_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 라인11 */
.bidding_line11 {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* 예상경쟁사 */
.b_prospective_comp_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_prospective_comp_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_prospective_comp_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_prospective_comp_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 전차용역사 */
.b_service_comp_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_service_comp_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_service_comp_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_service_comp_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* QBS여부 */
.b_qbs_yn_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_qbs_yn_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_qbs_yn_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_qbs_yn_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 입찰일 */
.b_bid_date_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_bid_date_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_bid_date_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_bid_date_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 라인12 */
.bidding_line12 {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* 제원 */
.b_data_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_data_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_data_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_data_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 협정일(PQ) */
.b_agreement_date_pq_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_agreement_date_pq_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_agreement_date_pq_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_agreement_date_pq_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 가격입찰공고일 */
.b_price_bid_date_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_price_bid_date_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_price_bid_date_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_price_bid_date_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 개찰일 */
.b_tick_date_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_tick_date_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_tick_date_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_tick_date_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 라인13 */
.bidding_line13 {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* PQ대상여부 */
.b_pq_yn_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_pq_yn_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_pq_yn_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_pq_yn_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 참가여부 */
.b_participation_section {
  width: 348px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_participation_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_participation_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_participation_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 책임기술자 능력평가서 담당자 */
.b_mng_section {
  width: 708px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  align-items: center;
}

.b_mng_tit {
  width: 350px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_mng_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_mng_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 라인14 */
.bidding_line14 {
  width: 100%;
  height: 30px;
  margin-top: 10px;
}

/* 비고 */
.b_remark_section {
  width: 100%;
  height: 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
}

.b_remark_tit {
  width: 150px;
  height: 28px;
  background: #eee;
  border-radius: 10px;
  line-height: 28px;
}

.b_remark_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_remark_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
}

/* 라인15 */
.bidding_line15 {
  width: 100%;
  height: 60px;
  margin-top: 10px;
}

/* 첨부파일 */
.b_file_section {
  width: 100%;
  height: 58px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.b_file_tit {
  width: 150px;
  height: 58px;
  background: #eee;
  border-radius: 10px;
  line-height: 58px;
}

.b_file_tit>p {
  color: #333;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.b_file_section>p {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  margin-left: 15px;
  text-align: left;
}

/* 팝업닫기 */
.modal_bottom {
  width: 1430px;
  height: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
}

/* 팝업닫기 버튼 */
.modal_close button {
  width: 70px;
  height: 30px;
  background: #333;
  border-radius: 10px;
  border: none;
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.modal_close button:hover {
  background: #FF0000;
  transition: background-color 0.3s ease;
  width: 75px;
}

