@charset "utf-8";

.search-wrap {
  position: relative;
}

.search-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 265px;
  background: url(/kor/img/main_top_img.jpg) no-repeat 50% 50%;
  background-size: cover;
  border-radius: 0 0 100px 0;
}

.search-wrap>.container {
  display: flex;
  padding-top: 150px;
  gap: 3rem;
}

.search-wrap .search {
  position: relative;
  z-index: 1;
  background: #28B8AF;
  color: #fff;
  border-radius: 2rem;
  flex-grow: 1;
  padding: 40px 3rem 2rem;
}

.search-wrap .search .info {
  position: absolute;
  top: 0;
  left: 20px;
  transform: translateY(-50%);
  background: #fff;
  color: #303841;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  letter-spacing: -.5px;
  display: inline-flex;
  gap: 8px;
}

.search-wrap .search .info i {
  color: var(--primary);
}

.search .form-fuild {
  display: flex;
  gap: 1.5rem;
}

.search .form-fuild .group {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}


.search .form-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.search .form-row .label {
  font-weight: 700;
  font-size: 1.12em;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  flex-basis: 10em;
}

.search .form-row .label::before {
  content: '';
  display: inline-flex;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .5);
}


.search .btn-search {
  width: 147px;
  background: #00958C;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  gap: 10px;
  font-size: 1.2em;
  font-weight: 500;
  transition: all .5s ease 0s;
}

.search .btn-search:hover {
  background-color: #027e75;
}

.search .form-row .select-box {
  display: flex;
  flex-grow: 1;
}

.search .form-row .select-box select {
  border-radius: 4px;
  background: #41CAC2;
  padding: 1rem !important;
  border: solid 1px #54DCD4;
  color: #fff;
  height: auto;
  font-size: 1em;
  font-weight: 300;
  letter-spacing: .5px;
  cursor: pointer;
}

/* data status */

.search-wrap .dataStatus {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 2rem;
  width: 380px;
  padding: 2rem 2rem 3rem;
}

.search-wrap .dataStatus .head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.search-wrap .dataStatus .sec-tit {
  font-size: 1.12em;
  font-weight: 700;
}

.search-wrap .dataStatus .list {
  display: flex;
}

.search-wrap .dataStatus .list>li {
  flex-grow: 1;
  flex-basis: 100%;
}

.search-wrap .dataStatus .list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-right: dashed 1px #E3EAEC;
  gap: 5px;
  position: relative;
  pointer-events: none;
}

.search-wrap .dataStatus .list li:last-child a {
  border-right: none;
}

.search-wrap .dataStatus .item {
  background: url(/kor/img/data_countries.png) no-repeat;
  width: 56px;
  height: 56px;
}

.search-wrap .dataStatus li:nth-child(2) .item {
  background-image: url(/kor/img/data_food.png);
}

.search-wrap .dataStatus li:nth-child(3) .item {
  background-image: url(/kor/img/data_data.png);
}

.search-wrap .dataStatus .num {
  position: absolute;
  left: 50%;
  bottom: -13px;
  padding: 1px 5px;
  border: solid 1px #E3EAEC;
  border-radius: 30px;
  background: #fff;
  min-width: 3em;
  transform: translateX(-50%);
  font-size: .9em;
  letter-spacing: -0.5px;
  text-align: center;
}

.search-wrap .dataStatus .btn-moreLink i {
  font-size: 20px;
}

.search-wrap .dataStatus .tit {
  white-space: nowrap;
}

.sec {
  margin-top: 4rem;
  margin-bottom: 4rem;
  position: relative;
}

.sec .tit {
  font-size: 1.5em;
  font-weight: 700;

  margin-bottom: 1rem;
}

.notice-list,
.quickLinks ul {
  display: flex;
  gap: 2rem;
}

.notice-list>li,
.quickLinks ul>li {
  flex-basis: 100%;
  flex-grow: 1;
}

.notice-list a,
.quickLinks ul a {
  display: flex;
  flex-direction: column;
  border: solid 1px #E3EAEC;
  border-radius: 8px;
  color: #101010;
  transition: all .3s ease 0s;
  background:#fff;
}

.quickLinks ul a {
  padding: 2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.25em;
  font-weight: 700;
  height: 100%;
  gap: 10px;
}

.notice-list a:hover,
.quickLinks ul a:hover {
  border-color: var(--primary);
  color: #101010;
  position: relative;
}

.notice-list a::after,
.quickLinks ul a::after {
  content: "\e90b";
  font-family: 'xeicon';
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  opacity: 0;
}

.notice-list a:hover::after,
.quickLinks ul a:hover::after {
  opacity: 1;
  transition: opacity .3s ease 0s;
}

.notice-list a .subj {
  height: 8em;
  border-bottom: solid 1px #E3EAEC;
  padding: 2rem;
  font-size: 1.13em;
}

.notice-list a .foot {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.13em;
}

.notice-list a .foot .nation {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #080808;
}

.notice-list a .foot .date {
  font-size: .9em;
  color: #404040;
}

.notice-list+.btn-moreLink {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
}

.notice-list{
  background:#eaf1f3;
  border-radius: 8px;
  padding:1rem;
}
.notice-list a{
  border-color:#bacfd5;
}


@media(max-width:1000px) {

  .notice-list,
  .quickLinks ul {
    flex-wrap: wrap;
  }

  .notice-list>li,
  .quickLinks ul>li {
    flex-basis: calc(50% - 2rem);
  }
}

@media (max-width:970px) {
  .search {
    font-size: 14px;
  }

  .search-wrap .dataStatus {
    width: auto;
    flex-grow: 1;
  }

  .search-wrap>.container {
    gap: 1rem;
  }

  .search .form-fuild {
    flex-direction: column;
  }

  .search .form-fuild .group {
    gap: 1rem;
  }

  .search .btn-search {
    width: 100%;
    flex-direction: row;
    padding: .7em;
  }

  .search .form-row .select-box select {
    padding: .4em !important;
  }
}

@media (max-width:730px) {
  .search-wrap>.container {
    flex-wrap: wrap;
  }

  .search-wrap>.container>* {
    width: 100%;
  }
}

@media (max-width:520px) {

  .notice-list,
  .quickLinks ul {
    flex-direction: column;
  }
}
