@charset "UTF-8";
/*-------------------------------------------------------------------
    파일정의 :Variables
	작성날짜 :2024-01-08 지성만
	참고사항 :기본값을 정의해서 의미에 적용하고, 의미를 스타일에 활용하여 가이드화 한다.
    분류순서 :기본정책 > 유틸리티 > 사용자정의(컬러, 폰트, 보더, 간격 등)
    속성순서 :표시 > 위치 > 넘침/흐름 > 크기/간격 > 박스모양 > 폰트/정렬 > 기타
-------------------------------------------------------------------*/
body {
  min-width: 1340px;
}

.gnb .node1-wrap {
  display: flex;
}
.gnb .node1-wrap > li.on > a {
  position: relative;
  color: #0071C1;
}
.gnb .node1-wrap > li.on > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 46%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0071C1;
  z-index: 1000;
}
.gnb .node1-wrap > li > a {
  display: block;
  padding: 5px 30px;
  line-height: 80px;
  font-weight: 500;
  font-size: 16px;
  color: #101010;
}
.gnb .node1-wrap > li > .node2-wrap {
  /* display: none;
  /* position: absolute;
  top: 121px;
  position:fixed;
  top: 203px;
  left: 0;
  width: 100%;
  padding-top: 0;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 100; */
  display: none;
  position:absolute;
  top: 83px;
  left: -360px;
  width: 1991px;
  padding-top: 0;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 100;
}
.gnb .node1-wrap > li > .node2-wrap > div {
  display: flex;
  gap: 10px;
}
.gnb .node1-wrap > li > .node2-wrap > div .sub-nav-title {
  width: 340px;
  height: 204px;
  text-align: center;
  background-color: #eaeaea;
  border-bottom-right-radius: 60px;
}
.gnb .node1-wrap > li > .node2-wrap > div .sub-nav-title h2 {
  line-height: 30px;
  margin: 26px 0 6px 0;
  font-size: 22px;
}
.gnb .node1-wrap > li > .node2-wrap > div .sub-nav-title p {
  line-height: 18px;
  font-size: 16px;
  font-family: "NSL";
  text-align:left;
  padding-left:20px;
}
.gnb .node1-wrap > li > .node2-wrap > div .sub-nav-title em {
  display: block;
  margin-top: 10px;
  line-height: 18px;
  font-size: 80px;
}
.gnb .node1-wrap > li > .node2-wrap > div .sub-nav-wrap {
  width: 70%;
  height: 204px;
  padding: 24px 0;
}
.gnb .node1-wrap > li > .node2-wrap > div .sub-nav-wrap h3 {
  margin-bottom: 10px;
  text-align: center;
  padding: 8px 0;
  /*
  	SR				: 70377
	Description		: 사용자 시인성 확보를 위한 변경
	Author			: 기반시설 유지관리팀
	Since			: 2025-02-06
	Before			: background-color: #ccc;
					  color: #fff;
  */
  background-color: #e6e6e6;
  color: #000;
  font-weight: bold;
}

.gnb .node1-wrap > li > .node2-wrap > div .sub-nav-wrap h3 > a {
  /* margin-bottom: 10px; */
  /* text-align: center; */
  /* padding: 8px 0; */
  /* background-color: #ccc; */
  /*
  	SR				: 70377
	Description		: 사용자 시인성 확보를 위한 변경
	Author			: 기반시설 유지관리팀
	Since			: 2025-02-06
	Before			: color: #fff;
  */
  color: #000;
  font-weight: bold;
}

.popup-wrap[data-popup=banner] {
  position: relative;
  display: none;
}
.popup-wrap[data-popup=banner].is-active {
  display: block;
}
.popup-wrap[data-popup=banner] .popup {
  margin: 0 auto;
}

.layer_popup {
  display: flex;
  justify-content: center;
  background-color: #D8F0FC;
}
.layer_popup > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1280px;
}
.layer_popup > div .cs_banner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.layer_popup > div .cs_banner p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 10px;
  color: #000;
  font: normal 16px "NSR";
  letter-spacing: -0.32px;
}
.layer_popup > div .cs_banner p span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #D5611C;
}
.layer_popup > div > ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.layer_popup > div > ul li {
  display: flex;
  align-items: center;
  position: relative;
  width: 178px;
  height: 52px;
  padding: 2px 0 0 15px;
  border-radius: 6px;
  background: #FFF;
}
.layer_popup > div > ul li span {
  font: 100 13px/18px "NSR";
  letter-spacing: -0.26px;
}
.layer_popup > div > ul li::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 16px;
  height: 16px;
  background: url("../images/banner/circle-chevron-right-solid1.svg") no-repeat;
}
.layer_popup > div .chk_closed {
  padding-top: 20px;
}
.layer_popup > div .chk_closed .form-check label span {
  font-size: 12px;
  color: #0071C1;
}

.card_basic {
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
}

.card_default {
  padding: 24px;
  background-color: #fff;
}

header .header__top .unb_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #0071C1;
}
header .header__top .unb_wrap .unb_body {
  display: flex;
  justify-content: space-between;
  width: 1280px;
}
header .header__top .unb_wrap .unb_body a {
  font-family: "NSR";
  color: #fff;
}
header .header__top .unb_wrap .unb_body .tnb {
  display: flex;
}
header .header__top .unb_wrap .unb_body .tnb a {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 2px 20px 0;
  background-color: #fff;
}
header .header__top .unb_wrap .unb_body .tnb a:nth-child(1) {
  color: #999;
}
header .header__top .unb_wrap .unb_body .tnb a:nth-child(2) {
  background-color: #7FA8DC;
}
header .header__top .unb_wrap .unb_body .tnb a:nth-child(3) {
  background-color: #6ABFB8;
}
header .header__top .unb_wrap .unb_body .tnb a:nth-child(4) {
  background-color: #999;
}
header .header__top .unb_wrap .unb_body .tnb a:nth-child(5) {
  background-color: #6ABFB8;
}
header .header__top .unb_wrap .unb_body .unb {
  display: flex;
  gap: 30px;
}
header .header__top .unb_wrap .unb_body .unb a {
  display: flex;
  align-items: center;
  height: 40px;
}
header .header__top .gnb_wrap {
  border-bottom: 0 none;
  /* display: flex; */
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
header .header__top .gnb_wrap .logo {
  width: 220px;
  height: 50px;
  padding-top: 0;
}
header .header__top .gnb_wrap .btn_unb {
  background: #7FA8DC;
  line-height: 32px;
  padding: 4px 20px;
  border-radius: 6px;
  color: #fff;
  margin-left: 880px;
}
section {
  /* background-color: #F3F2F7; */
}
section article .visual_wrap {
  height: 373px;
  background-color: #66C1BC;
}
section article .visual_wrap > div {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}
section article .visual_wrap > div .seach_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 580px;
  height: 224px;
  gap: 18px;
}
section article .visual_wrap > div .seach_wrap p, section article .visual_wrap > div .seach_wrap span {
  color: #fff;
  font: 100 16px "NSL";
  text-shadow: 0 0 3px rgba(34, 84, 82, 0.75);
  letter-spacing: -0.25px;
}
section article .visual_wrap > div .seach_wrap span {
  font: 700 16px "NSR";
}
section article .visual_wrap > div .seach_wrap .total_sch {
  position: relative;
}
section article .visual_wrap > div .seach_wrap .total_sch input {
  width: 97%;
  height: auto;
  border-radius: 33px;
  padding: 20px 80px 16px 42px;
  background: #FFF;
  font: 600 24px "NSL";
}
section article .visual_wrap > div .seach_wrap .total_sch input::-moz-placeholder {
  color: #C2C2C2;
}
section article .visual_wrap > div .seach_wrap .total_sch input::placeholder {
  color: #C2C2C2;
}
section article .visual_wrap > div .seach_wrap .total_sch button {
  width: 60px;
  height: 67px;
  position: absolute;
  right: 38px;
  z-index: 10;
}
section article .visual_wrap > div .seach_wrap .total_sch button i {
  width: 27px;
  height: 27px;
}
section article .visual_wrap > div .seach_wrap .total_sch button i.big_search {
  background: url("../images/common/magnifying-glass-solid1.svg") no-repeat;
}
section article .visual_wrap > div .banner_wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 410px;
  height: 224px;
  border-radius: 16px;
  border: 1px solid #09A5BC;
  padding: 18px 22px;
  background: #01B5D0 url("../images/main/woman_image.png") right bottom no-repeat;
}
section article .visual_wrap > div .banner_wrap h3 {
  font-size: 20px;
  color: #E7FD38;
}
section article .visual_wrap > div .banner_wrap ul > li.word_braek {
  display: flex;
}
section article .visual_wrap > div .banner_wrap ul > li ol {
  margin: -2px 0 0 8px;
}
section article .visual_wrap > div .banner_wrap ul > li li {
  text-indent: -15px;
  padding-left: 15px;
}
section article .visual_wrap > div .banner_wrap li {
  padding: 2px 0;
}
section article .visual_wrap > div .banner_wrap li, section article .visual_wrap > div .banner_wrap em {
  color: #FBFBFB;
  font: 500 16px/22px "NSL";
  letter-spacing: -0.55px;
}
section article .visual_wrap > div .mypage_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 230px;
}
section article .visual_wrap > div .mypage_wrap .user {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
section article .visual_wrap > div .mypage_wrap .user p {
  line-height: 22px;
}
section article .visual_wrap > div .mypage_wrap .user span {
  font-size: 18px;
}
section article .visual_wrap > div .mypage_wrap .last_date {
  padding-left: 10px;
  color: #fff;
}
section article .visual_wrap > div .mypage_wrap .button_set {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section article .visual_wrap > div .mypage_wrap .button_set button {
  height: 45px;
  border: 2px solid #fff;
  border-radius: 22px;
  background-color: rgba(255, 255, 255, 0);
}
section article .visual_wrap > div .mypage_wrap .button_set span {
  font-size: 16px;
  color: #fff;
}
section article .visual_wrap > div .mypage_wrap .button_set em {
  font-size: 18px;
  font-weight: 700;
  color: #D96311;
}
section article .section_wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 40px;
}
section article .section_wrap .guick_menu_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -70px;
  padding: 26px 38px;
}
section article .section_wrap .guick_menu_wrap .title_qmenu {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
section article .section_wrap .guick_menu_wrap .title_qmenu p, section article .section_wrap .guick_menu_wrap .title_qmenu span {
  color: #777;
}
section article .section_wrap .guick_menu_wrap .title_qmenu p {
  font: 700 22px "NSM";
}
section article .section_wrap .guick_menu_wrap .title_qmenu span {
  font-size: 14px;
  letter-spacing: -0.56;
}
section article .section_wrap .guick_menu_wrap .qmeu_01 ul, section article .section_wrap .guick_menu_wrap .qmeu_02 ul {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
section article .section_wrap .guick_menu_wrap .qmeu_01 li, section article .section_wrap .guick_menu_wrap .qmeu_02 li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 90px;
}
section article .section_wrap .guick_menu_wrap .qmeu_02 li:hover {
  cursor: pointer;
}

section article .section_wrap .guick_menu_wrap .qmeu_01 .on {
    background-position: -383px 1px;
}
section article .section_wrap .guick_menu_wrap .qmeu_01 figure, section article .section_wrap .guick_menu_wrap .qmeu_02 figure {
  width: 70px;
  height: 70px;
  background-position: -8px 1px;
  background-image: url("../images/main/banner.png");
  background-repeat: no-repeat;
}
section article .section_wrap .guick_menu_wrap .qmeu_01 span, section article .section_wrap .guick_menu_wrap .qmeu_02 span {
  font-size: 16px;
  color: #000;
  letter-spacing: -0.55px;
}
/* section article .section_wrap .guick_menu_wrap .qmeu_01 li:hover figure {
  width: 70px;
  height: 70px;
  background-position: -383px 1px;
} */
section article .section_wrap .guick_menu_wrap .qmeu_02 ul {
  gap: 20px;
}
section article .section_wrap .guick_menu_wrap .qmeu_02 .banner02_1 {
  background-position: -542px 1px;
  margin: 5px -5px;
}
section article .section_wrap .guick_menu_wrap .qmeu_02 .banner02_2 {
  background-position: -659px 1px;
  margin: 5px -5px;
}
section article .section_wrap .guick_menu_wrap .qmeu_02 .banner02_3 {
  background-position: -775px 1px;
  margin: 5px -5px;
}
section article .section_wrap .guick_menu_wrap .qmeu_02 .banner02_4 {
  background-position: -889px 1px;
  margin: 5px -5px;
}
section article .section_wrap .guick_menu_wrap .qmeu_02 .banner02_5 {
  background-position: -1003px 1px;
  margin: 5px -5px;
}
section article .section_wrap .section_body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section article .section_wrap .section_body .set {
  display: flex;
  gap: 20px;
}
section article .section_wrap .section_body .set > div {
  min-height: 300px;
}
section article .section_wrap .section_body .set > div .card_header {
  padding-bottom: 20px;
}
section article .section_wrap .section_body .set > div .card_header h5 {
  font-size: 16px;
}
section article .section_wrap .section_body .set > div .card_body > p {
  text-align: center;
  line-height: 200px;
}
section article .section_wrap .section_body .set.col-2 > div {
  width: 50%;
  padding: 20px 24px;
}
section article .section_wrap .section_body .set.col-2 > div .news_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
section article .section_wrap .section_body .set.col-2 > div .news_header h3 {
  font-size: 20px;
  color: #0071C1;
}
section article .section_wrap .section_body .set.col-2 > div .news_header .controls {
  display: flex;
  align-items: center;
  gap: 20px;
}
section article .section_wrap .section_body .set.col-2 > div .news_header .controls .arrow {
  width: 20px;
  text-align: center;
}
section article .section_wrap .section_body .set.col-2 > div .news_header .controls .arrow img {
  width: 10px;
}
section article .section_wrap .section_body .set.col-2 > div .news_header .controls .stoplay {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 2px;
}
section article .section_wrap .section_body .set.col-2 > div .news_header .controls .stoplay button {
  width: 12px;
  height: 20px;
}
section article .section_wrap .section_body .set.col-2 > div .news_body {
  position: relative;
}
section article .section_wrap .section_body .set.col-2 > div .news_body .slides_body {
  position: relative;
  height: 215px;
}
section article .section_wrap .section_body .set.col-2 > div .news_body .slides_body .slides {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  animation: fadein 1.5s;
}
section article .section_wrap .section_body .set.col-2 > div .news_body .slides_body .slides img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section article .section_wrap .section_body .set.col-2 > div .news_body dl dd {
  padding: 15px 5px 0;
}
section article .section_wrap .section_body .set.col-2 > div .news_body dl dd p {
  display: inline-block;
  background-color: #0071C1;
  padding: 8px 20px 6px;
  font-size: 16px;
  border-radius: 15px;
  color: #fff;
}
section article .section_wrap .section_body .set.col-2 > div .news_body dl dd ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section article .section_wrap .section_body .set.col-2 > div .news_body dl dd ul li {
  display: flex;
  justify-content: space-between;
}
section article .section_wrap .section_body .set.col-2 > div .news_body dl dd ul li a {
  width: 460px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
section article .section_wrap .section_body .set.col-2 > div .news_body dl dd + dd {
  margin-top: 15px;
  border-top: 1px solid #ccc;
}
section article .section_wrap .section_body .set.col-2 > div.news_wrap .tab-wrap .tab-nav li {
  border-bottom: 1px solid #ccc;
}
section article .section_wrap .section_body .set.col-2 > div.news_wrap .tab-wrap .tab-body .tab-content {
  padding: 10px 10px 0;
}
section article .section_wrap .section_body .set.col-2 > div.news_wrap .tab-wrap .tab-body .board_wrap .list_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
section article .section_wrap .section_body .set.col-2 > div.news_wrap .tab-wrap .tab-body .board_wrap .list_header .circle_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0071C1;
  padding-top: 10px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
}
section article .section_wrap .section_body .set.col-2 > div.news_wrap .tab-wrap .tab-body .board_wrap .list_header .circle_box p {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
section article .section_wrap .section_body .set.col-2 > div.news_wrap .tab-wrap .tab-body .board_wrap .list_header .board_title {
  width: 490px;
}
section article .section_wrap .section_body .set.col-2 > div.news_wrap .tab-wrap .tab-body .board_wrap .list_header .board_title p {
  font: 500 18px "NSM";
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
section article .section_wrap .section_body .set.col-2 > div.news_wrap .tab-wrap .tab-body .board_wrap .list_header .board_title span {
  display: block;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
section article .section_wrap .section_body .set.col-2 > div.news_wrap .tab-wrap .tab-body .board_wrap .list_body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section article .section_wrap .section_body .set.col-2 > div.news_wrap .tab-wrap .tab-body .board_wrap .list_body li {
  display: flex;
  justify-content: space-between;
}
section article .section_wrap .section_body .set.col-2 > div.news_wrap .tab-wrap .tab-body .board_wrap .list_body li a {
  width: 460px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
section article .section_wrap .section_body .set.col_2_1 > div:first-child {
  width: 67.2%;
}
section article .section_wrap .section_body .set.col_2_1 > div:last-child {
  width: 32.8%;
}
section article .section_wrap .section_body .set.col_3 > div {
  width: 33.3333%;
}
section article .sub_wrap .inner {
  position: relative;
  min-height: 520px;
}
section article.login .sub_wrap {
  padding-bottom: 0;
}
section article.login .sub_wrap .inner {
  background: url("../images/sub/login_bg.png") 50px -32px no-repeat;
  background-size: 660px;
}
section article.login .sub_wrap .inner .sub_section .login_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
section article.login .sub_wrap .inner .sub_section .login_area > h3 {
  font-size: 24px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
}
section article.login .sub_wrap .inner .sub_section .login_area > h3 span {
  color: #fd4727;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap {
  padding: 60px 130px;
  background: #fff;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.15);
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner {
  position: relative;
  width: 500px;
  margin: auto;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_form {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_form dl {
  overflow: hidden;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_form dl:first-child {
  margin-bottom: 10px;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_form dl dt {
  float: left;
  font-size: 14px;
  font-weight: bold;
  width: 80px;
  line-height: 36px;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_form dl dd {
  float: left;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_form dl dd input {
  width: 300px;
  height: 36px;
  border: 0 none;
  background-color: #E8F0FE;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_form .id_check {
  display: inline-block;
  margin-top: 10px;
  margin-left: 80px;
  font-size: 14px;
  color: #666;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_form .id_check input {
  margin-right: 10px;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_form .login_btn {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  width: 108px;
  height: 82px;
  color: #fff;
  display: inline-block;
  background: url("../images/sub/login_btn.gif");
  border-radius: 6px;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_util {
  overflow: hidden;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_util ul {
  /* display: flex; */
  justify-content: flex-end;
  gap: 20px;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_util ul li a {
  font-size: 14px;
  color: #666666;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_util ul li button {
  background-color: #D5ECF1;
  border-radius: 16px;
  height: 32px;
  padding: 0 20px;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_notice {
  border: 1px solid #e0e0e0;
  padding: 30px 0;
  margin-bottom: 60px;
  background: url("../images/sub/ico_login_notice.png") no-repeat 357px 40px;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_notice .login_notice ul {
  margin-left: 390px;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_notice .login_notice ul li {
  position: relative;
  padding-left: 15px;
  font-size: 14px;
  color: #666;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_notice .login_notice ul li:first-child {
  margin-bottom: 10px;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_notice .login_notice ul li:after {
  position: absolute;
  left: 7px;
  top: 8px;
  display: block;
  content: "";
  width: 3px;
  height: 2px;
  background: #666;
  border-radius: 50%;
}
section article.login .sub_wrap .inner .sub_section .login_area .login_wrap .login_inner .login_notice .login_notice ul li span {
  color: #eb6100;
}
section article.login .sub_wrap .inner .sub_section .cs_wrap {
  margin: 40px 0 0;
  min-height: 150px;
  display: flex;
  justify-content: space-between;
}
section article.login .sub_wrap .inner .sub_section .cs_wrap .cs_btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 440px;
  background: url("../images/sub/man_bg.png") right -20px no-repeat;
  background-size: 180px;
}
section article.login .sub_wrap .inner .sub_section .cs_wrap .cs_btn button {
  max-width: 270px;
  line-height: normal;
  min-height: 45px;
  padding: 0;
  border-radius: 22px;
  background-color: #999;
  color: #fff;
}
section article.login .sub_wrap .inner .sub_section .cs_wrap .cs_banner {
  display: flex;
  width: 500px;
  justify-content: space-between;
}
section article.login .sub_wrap .inner .sub_section .cs_wrap .cs_banner .cs_info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
section article.login .sub_wrap .inner .sub_section .cs_wrap .cs_banner .cs_info h4 {
  font-size: 22px;
  letter-spacing: -0.5px;
}
section article.login .sub_wrap .inner .sub_section .cs_wrap .cs_banner .cs_info h5 {
  font-size: 32px;
  color: #ff0000;
}
section article.login .sub_wrap .inner .sub_section .cs_wrap .cs_banner .cs_info p {
  color: #7f7f7f;
}
section article.login .sub_wrap .inner .slick-slider.autoplay {
  padding-bottom: 20px;
}
section article.login .sub_wrap .inner .slick-slider.autoplay h3 {
  text-align: center;
  line-height: 80px;
  background-color: #fff;
  border: 1px solid #ccc;
}
section article.login .sub_wrap .inner .slick-slider.autoplay .slick-arrow {
  top: 42%;
}
section article.login .sub_wrap .inner .slick-slider.autoplay .slick-list .slick-track {
  display: flex;
  gap: 10px;
}
section article .site_link {
  padding: 26px 0;
  background-color: #494C5F;
}
section article .site_link > div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
section article .site_link > div .site_set:nth-child(1) {
  width: 45%;
}
section article .site_link > div .site_set:nth-child(2) {
  width: 15%;
}
section article .site_link > div .site_set:nth-child(3) {
  width: 40%;
}
section article .site_link > div .site_set:nth-child(3) ul li {
  width: 248px;
  background-color: rgba(255, 255, 255, 0.1);
}
section article .site_link > div .site_set h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 18px;
}
section article .site_link > div .site_set ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
section article .site_link > div .site_set ul li {
  width: 185px;
  display: flex;
  justify-content: center;
  height: 50px;
  align-items: center;
  background: #2D3040;
}
section article .site_link > div .site_set ul a {
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}
section article .site_link > div .site_set > ul > li > a {
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}
section article .site_link > div .site_set > ul > li .dropdown-basic .dropdown-toggle {
  color: rgba(255, 255, 255, 0.45);
}
section article .site_link > div .site_set > ul > li .dropdown-basic .dropdown.is-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 220px;
  overflow-y: auto;
  padding: 0;
  bottom: 35px;
  left: -17px;
  right: -17px;
  width: auto;
  border-radius: 0;
  background-color: #2D3040;
  border-color: #191a24;
}
section article .site_link > div .site_set > ul > li .dropdown-basic .dropdown.is-active a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 8px 0;
  color: #fff;
}
section article .site_link > div .site_set > ul > li .dropdown-basic .dropdown.is-active a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}
section article .site_link > div .site_set > ul > li .dropdown-basic .dropdown.is-active a:hover {
  background-color: #000;
}
.footer .footer__contents .container {
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 50px;
}
.footer .footer__contents .container.footer_logo_addr h2 {
  position: relative;
  left: auto;
  top: auto;
  width: 230px;
}
.footer .footer__contents .container.footer_logo_addr address {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.footer .footer__contents .container.footer_logo_addr address .footer__copy {
  padding-top: 0;
}/*# sourceMappingURL=style.css.map */