@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul {
    list-style: none;
  }
  a {
    text-decoration: none;
    color: #333;
  }
  img {
    vertical-align: top;
  }
  /* 공통클래스 */
  .clearfix::after {
    content: "";
    display: block;
    clear: both;
  }
  .container {
    max-width: 1440px;
    width: 96%;
    margin: 0 auto;
    margin-top: 25px;
  }
  
  body {
    letter-spacing: -0.07px;
  }
  /* header */
  header {}
  /* header-top */
  .header-top {}
  .header-top .container {}
  .header-top .top-menu {
    float: right;
  }
  .header-top .top-menu > li.museumLink {
    position: relative;
  }
  .header-top .top-menu > li.museumLink a.on {
    color: #fff;
    background-color: #000;
  }
  .header-top .top-menu > li.museumLink .linkList {
    width: 100%;
    border-top: 1px solid #555555;
    padding-top: 20px;
    position: absolute;
    top: 46px;
    left: 0;
    background: #000;
    z-index: 11;
    text-align: center;
    display: none;
  }
  .header-top .top-menu > li.museumLink .linkList li {
    margin-bottom: 15px;
  }
  .header-top .top-menu > li.museumLink .linkList li a {
    font-size: 14px;
    color: #cccccc;
  }
  .header-top .top-menu > li.museumLink .linkList li a:hover {
    color: #ffcc33;
    text-decoration: underline;
  }
  .header-top .top-menu > li {
    float: left;
  }
  .header-top .top-menu > li:first-child {}
  .header-top .top-menu > li:nth-child(2) {
    margin-right: 16px;
    margin-left: 3px;
  }
  /* .header-top .top-menu > li:nth-child(3) {
    font-size: 0;
  } */
  .header-top .top-menu > li:last-child {
    margin-left: 20px;
  }
  .header-top .top-menu > li > a {
    text-align: center;
    display: block;
    padding: 11px 8px 15px;
    font-size: 14px;
    /* border-top: 3px solid #333; */
    position: relative;
    letter-spacing: 0.1px;
  }
  .header-top .top-menu > li:nth-child(3) > a {
    padding-right: 5px;
  }
  .header-top .top-menu > li > a::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
  }
  .header-top .top-menu > li > a > img {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
  }
  .header-top .top-menu li .arrow {
    /* position: relative; */
  }
  .header-top .top-menu li .arrow img {
    /* display: inline-block; */
    transform: rotate(-90deg);
  }
  .header-top .top-menu .itemwrap {}
  .header-top .top-menu .itemwrap .item-menu {
    padding: 15px 13px 0px;
    position: relative;
  }
  .header-top .top-menu .itemwrap .item-menu::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
  }
  .header-top .top-menu .itemwrap .item-menu li {
    display: inline-block;
    margin-left: 11px;
  }
  .header-top .top-menu .itemwrap .item-menu li:first-child {
    margin-left: 0;
  }
  .header-top .top-menu .itemwrap .item-menu li a {
    display: block;
  }
  .header-top .top-menu .itemwrap .item-menu li a img {
    width: 100%;
  }
  
  /* header-bottom */
  .header-bottom {}
  .header-bottom .container {
    position: relative;
    height: 110px;
    margin-top: 0;
  }
  /* logo */
  .header-bottom #logo {
    float: left;
    margin: 18.5px 0;
  }
  .header-bottom #logo a {
    display: block;
    width: 100%;
  }
  .header-bottom #logo a img {
    width: 100%;
  }
  /* menu */
  .header-bottom .container .nav-bg{
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    /* background: blue; */
    border:solid #ededed;
    border-width: 1px 0;
    height: 296px;
    z-index: 9;
  }
  .header-bottom nav {
    position: absolute;
    top: 50%;
    left: 51.11%;
    /* left: 50%; */
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  .header-bottom nav .menu {
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .header-bottom nav .menu > li {
    width: 145px;
    position: relative;
  }
  .header-bottom nav .menu > li:last-child {
    margin-right: 0;
  }
  .header-bottom nav .menu > li > a {
    display: block;
    font-size: 23px;
    width: 145px;
    text-align: center;
    font-weight: 500;
  }
  .header-bottom nav .menu > li .submenu {
    position: absolute;
    top: 89px;
    left: 0;
    z-index: 10;
    background-color: #fff;
    width: 150px;
    height: 250px;
    border-left: 1px solid #eaeaea;
    display: none;
  }
  .header-bottom nav .menu > li .submenu li {
    padding: 10px;
  }
  .header-bottom nav .menu > li .submenu li a {
    font-size: 15.5px;
    letter-spacing: -0.8px;
    word-break: keep-all;
    color: #222;
    line-height: 1.2;
    position: relative;
  }
  .header-bottom nav .menu > li .submenu li a:hover {
    font-weight: 600;
  }
  .header-bottom nav .menu > li .submenu li a:hover::before {
    display: inline-block;
    content: "";
    width: 5px;
    height: 5px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    left: -13px;
    top: 50%;
    transform: translateY(-50%);
  }

  .header-bottom .log-in {
    float: right;
    width: 180px;
    margin-top: 48.5px;
  }
  .header-bottom .log-in li {
    float: left;
  }
  .header-bottom .log-in li:nth-child(2) {
    margin-left: 16px;
  }
  .header-bottom .log-in li:last-child {
    margin-left: 30px;
  }
  .header-bottom .log-in li a {
    font-size: 17px;
    font-weight: 500;
    line-height: 17px;
  }
  .header-bottom .log-in li a.log-a {}
  .header-bottom .log-in li a img {}


main {}
.visual {
  /* height: 626px; */
  padding-top: 37px;
}
.visual .container {
  margin-top: 0;
}
.visual .sw-visual {
  width: 100%;
  height: 100%;
  /* position: relative; */
    /* 스와이퍼에 높이를 주는 건 좋지 않다 container나 더 부모한테 주자 */
}
/* swiper-wrapper는 넣지 않는다 */
.visual .sw-visual .swiper-slide {
  width: 100%;
  height: 100%;
}
.visual .sw-visual .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sw-visual .control-box {
  position: absolute;
  max-width: 1330px;
  bottom: 15px;
  right: 20px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.sw-visual .control-box .swiper-pagination{
  /* 쌤이 한 거 */
  position: static;
  /* display: flex; */
  width: auto;
  font-size: 0;
}
/* .visual .control-box .swiper-pagination {
  내가 한 거
  width: auto;
  left: auto;
  right: 20px;
  bottom: 15px;
} */
 .sw-visual .control-box .btn-pause {
    width: 38px;
    height: 38px;
    background-size: 38px;
    font-size: 0px;
    margin-left: 10px;
    background-image: url("../images/main_btn_stop.png");
    /* background-color: #fff; */
    background-position: center;
    margin-right: -5px;
    z-index: 10;
    border: 1px solid #8a8a89;
    /* align-self: center; */
}
.swiper-button-prev,
.swiper-button-next{
  color: #222;
  width: 34px;
  height: 60px;
  /* font-size: 0; */
  /* or 텍스트를 들여쓰기 ex)text-indent*/
  /* text-indent: -9999em; */
  /* >> 화면 전체에서 들여쓰기 돼서 안 보인다 이거랑 font-size:0으로 해도 된다 */
}
.swiper-button-prev{
  background-image: url("../images/main_visual_prev.png");
  left: 20px;
}
.swiper-button-next{
  background-image: url("../images/main_visual_next.png");
  right: 20px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 0;
}
.swiper-pagination-bullet {
  width: 25px;
  height: 25px;
  background: #fff;
  border: 1px solid #8a8a89;
  /* border-radius: 50%; */
  opacity: 1;
  /* 양옆으로 4px로 있다 6px로 바꾸자 */
  margin: 0 6px;
  /* vertical-align: middle; */
  cursor: pointer;
  /* font-size: 0px; */
}
.swiper-pagination-bullet-active {
  /* outline: none; */
  width: 25px;
  background: #3f0b9f;
  border: 1px solid #3f0b9f;
}
/* .sw-visual .control-box .btn-pause {
    width: 38px;
    height: 38px;
    background-size: 38px;
    font-size: 0px;
    margin-left: 10px;
    background-image: url("../images/main_btn_stop.png");
    background-position: center;
    margin-right: -5px;
    z-index: 10;
    border: 1px solid #8a8a89;
} */

/* section-info */
.section-info {
  /* padding: 20px 0 68px; */
}
.section-info .container {
  background-repeat: no-repeat;
  background-position: right top 12px;
  background-image: url("../images/bg_main_cont_01.png");
  margin-top: 0;
  padding: 20px 0 68px;
}
.section-info .info-header {
  padding: 12px 0 23px;
  margin-bottom: 34px;
  border-bottom: 3px solid;
  display: flex;
  justify-content: space-between;
}
.section-info .info-header .info-area {
  display: flex;
  align-items: center;
}
.section-info .info-header .info-area li {}
.section-info .info-header .info-area li.area1 {
  font-size: 23px;
  font-weight: 600;
  margin-right: 30px;
}
.section-info .info-header .info-area li.area1 img {
  margin-right: 4px;
  width: 28px;
  height: 29px;
  vertical-align: text-bottom;
}
.section-info .info-header .info-area li.area2 {
  font-size: 19px;
  margin-right: 53px;
}
.section-info .info-header .info-area li.area2 strong {}
.section-info .info-header .info-area li.area2 span {}
.section-info .info-header .info-area li.area3 {
  font-size: 23px;
  margin-right: 30px;
  font-weight: 600;
}
.section-info .info-header .info-area li.area3 img {}
.section-info .info-header .info-area li.area4 {
  font-size: 19px;
  font-weight: 600;
}
.section-info .info-header .come-way {
  padding-bottom: 3px;
  font-size: 20px;
  border-bottom: 3px solid #000;
  font-weight: 600;
  letter-spacing: -0.4px;
}
.section-info .info-header .come-way img {
  vertical-align: text-bottom;
  width: 30px;
  height: 20px;
  margin-left: 8px;
}

/* reserve-scedule */
.reserve-scedule {
  width: 100%;
  display: flex;
}
.reserve-scedule .reserve {
  width: 50%;
  height: 460px;
}
.reserve-scedule .reserve.schedule {
  padding: 0 40px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: url("../images/bg_main_cont_02.png") no-repeat;
  background-position: right bottom -22px;
}
.reserve-scedule .reserve.schedule .reserve-date {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32.8px;
  padding: 32px 0 11px;
}
.reserve-scedule .reserve.schedule .reserve-date img {
  width: 28px;
  height: 26px;
  margin-right: 8px;
}
.reserve-scedule .reserve.schedule .reserve-date p {
  font-size: 26px;
  font-weight: 400;
}
.reserve-scedule .reserve.schedule .reserve-date p strong {}
.reserve-scedule .reserve.schedule ul.reserve-graph {}
/* .reserve-scedule .reserve.schedule ul.reserve-graph::before {
  content: "";
  display: block;
  padding-bottom: 4px;
} */
.reserve-scedule .reserve.schedule ul.reserve-graph li {
  border-top: 1px dashed #ddd;
  padding: 12px 0 16px;
  display: flex;
  align-items: center;
}
.reserve-scedule .reserve.schedule ul.reserve-graph li .info1 {
  color: #3f0b9f;
  font-size: 19px;
  font-weight: 600;
  width: 23.5%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 23.5%;
}
.reserve-scedule .reserve.schedule ul.reserve-graph li .info1::before {
  content: "";
  display: inline-block;
  /* margin-right: 8px; */
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #3f0b9f;
}
.reserve-scedule .reserve.schedule ul.reserve-graph li .info2 {
  font-size: 20px;
  text-align: center;
  color: #666;
  width: 20%;
  letter-spacing: -0.7px;
}
.reserve-scedule .reserve.schedule ul.reserve-graph li .info3 {
  font-size: 15px;
  width: 25%;
  text-align: center;
}
.reserve-scedule .reserve.schedule ul.reserve-graph li .info4 {
  width: 30%;
  display: flex;
  justify-content: center;
}
.reserve-scedule .reserve.schedule ul.reserve-graph li .info4 .info-in {
  width: 128px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  background-color: #6f6f6f;
}
.reserve-scedule .reserve.schedule ul.reserve-graph li .info4 .info-in img {
  width: 12px;
  height: 9px;
  margin-right: 8px;
  vertical-align: middle;
}
.reserve-scedule .reserve.schedule ul.reserve-graph li .info5 {
  width: 30%;
  display: flex;
  justify-content: center;
}
.reserve-scedule .reserve.schedule ul.reserve-graph li .info5 .info-in {
  background-color: #006cb8;
  width: 128px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  font-size: 18px;
}
.reserve-scedule .reserve.schedule ul.reserve-graph li .info5 img {
  width: 13px;
  height: 14px;
  margin-right: 8px;
  vertical-align: middle;
}

.reserve-scedule .reserve-img {
  display: flex;
  gap: 60px;
  justify-content: flex-end;
  align-items: center;
  padding-top: 26px;
  }
.reserve-scedule .reserve-img .r-display {}
.reserve-scedule .reserve-img .r-display a {}
.reserve-scedule .reserve-img .r-display a img {
  width: 300px;
  height: 300px;
  margin-bottom: 22px;
}
.reserve-scedule .reserve-img .r-display a p {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
}


/* slider2 */
.slider2 {
  background-color: #f3f9fe;
}
.slider2 .container {
  padding: 63px 0 67px;
  display: flex;
  gap: 3%;
  justify-content: space-between;
  margin-top: 0;
}
/* 전시 */
.slider2 .display {
  width: 48.5%
}
.slider2 .display .display-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 41px;
  align-items: center;
}
.slider2 .display .display-top h2 {
  width: auto;
  font-size: 30px;
  font-weight: 600;
}
.slider2 .display .display-top .button {
  display: flex;
  gap: 20px;
  height: auto;
}
.slider2 .display .display-top .button .btn-prev,
.slider2 .display .display-top .button .btn-next{
  width: 10px;
  height: 20px;
  font-size: 0;
}
.slider2 .display .display-top .button .btn-prev {
  /* border: 1px solid; */
  background: url("../jpg2/btn_swiper_prev.png") no-repeat center/cover;
  /* background-position: center; */
}
.slider2 .display .display-top .button .btn-next {
  background: url("../jpg2/btn_swiper_next.png") no-repeat center/cover;
}
.slider2 .display .display-top .button .control {
  width: 9px;
  height: 17px;
  font-size: 0;
  background: url("../jpg2/btn_swiper_stop.png") no-repeat center/cover;
}

/* .sw-display */
.slider2 .sw-display {}
.slider2 .sw-display .swiper-slide {}
.slider2 .sw-display .swiper-slide a {
  display: block;
  width: 100%;
  height: 220px;
  font-size: 0;
}
.slider2 .sw-display .swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider2 .sw-display .swiper-slide .progress {
  margin-top: 20px;
}
.slider2 .sw-display .swiper-slide .progress span {
  display: inline-block;
  padding: 0 15px;
  height: 34px;
  line-height: 34px;
  font-size: 17px;
  font-weight: 400;
  min-width: 60px;
  border: 1px solid black;
}
.slider2 .sw-display .swiper-slide .progress span.sp1 {
  background-color: black;
  color: #fff;
  margin-right: 6px;
}
.slider2 .sw-display .swiper-slide .progress span.sp2 {
  background-color: #fff;
}
.slider2 .sw-display .swiper-slide .textbox {}
.slider2 .sw-display .swiper-slide .textbox {}
.slider2 .sw-display .swiper-slide .textbox p.p1 {
  margin: 23px 0 8px;
  font-size: 19px;
  font-weight: 400;
}
.slider2 .sw-display .swiper-slide .textbox p.p2 {
  color: rgb(102, 102, 102);
  font-size: 16px;
  font-weight: 400;
}

/* 교육 */
.slider2 .education {
  width: 48.5%;
  position: relative;
}
.slider2 .education h2 {
  width: auto;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 41px;
}
.slider2 .sw-education {}
.slider2 .sw-education .swiper-slide {}
.slider2 .sw-education .swiper-slide a {
  display: block;
  width: 100%;
  height: 220px;
  font-size: 0;
  /* border:2px solid; */
}
.slider2 .sw-education .swiper-slide a img {
  /* border:2px solid; */
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider2 .sw-education .progress {
  margin-top: 20px;
}
.slider2 .sw-education .progress span {
  display: inline-block;
  padding: 0 15px;
  height: 34px;
  line-height: 34px;
  font-size: 17px;
  font-weight: 400;
  min-width: 60px;
  border: 1px solid black;
}
.slider2 .sw-education .progress span.sp1 {
  background-color: black;
  color: #fff;
  margin-right: 6px;
}
.slider2 .sw-education .progress span.sp2 {
  background-color: #fff;
}
.slider2 .sw-education .textbox {}
.slider2 .sw-education .textbox p {}
.slider2 .sw-education .textbox p.p1 {
  margin: 23px 0 8px;
  font-size: 19px;
  font-weight: 400;
  /* vertical-align: top; */
}
.slider2 .sw-education .textbox p.p2 {
  color: rgb(102, 102, 102);
  font-size: 16px;
  font-weight: 400;
}

.slider2 .education .button {
  display: flex;
  gap: 20px;
  height: auto;
  position: absolute;
  right: 0;
  top: 22px;
  transform: translateY(-50%);
}
.slider2 .education .button .edu-btn-prev,
.slider2 .education .button .edu-btn-next {
  width: 10px;
  height: 20px;
  font-size: 0;
}
.slider2 .education .button .edu-btn-prev {
  background: url("../jpg2/btn_swiper_prev.png") no-repeat center/cover;
  opacity: 0.35;
}
.slider2 .education .button .edu-btn-next {
  background: url("../jpg2/btn_swiper_next.png") no-repeat center/cover;
  opacity: 0.35;
}
.slider2 .education .button .edu-control {
  width: 9px;
  height: 17px;
  font-size: 0;
  background: url("../jpg2/btn_swiper_stop.png") no-repeat center/cover;
}

.slider2 .education .button .edu-btn-prev span,
.slider2 .education .button .edu-btn-next span {
  /* display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: 300; */
}

/* section3 */
.section3 {}
.section3 .container {}
.section3 .container h2 {
  font-size: 46px;
  font-weight: 600;
}
.section3 .container h2 a {}
.section3 .container .express {
}
.section3 .container .express .notice-fix {
  display: flex;
  flex-wrap: wrap;
}
.section3 .container .express .notice-fix .notice1 {
  background-color: rgb(245, 245, 245);
  background-image: url("../images/ico_main_notice.png");
  background-position: calc(100% - 18px) 18px;
  background-repeat: no-repeat;
  width: 500px;
  padding: 34px 60px 40px 40px;
  height: 278px;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.1px;
}
.section3 .container .express .notice-fix .notice1 strong {}
.section3 .container .express .notice-fix .notice1 a {}
.section3 .container .express .notice-fix .notice1 a p {
  padding-top: 17px;
  font-size: 16px;
  color: #666;
  letter-spacing: -0.2px;
  line-height: 1.6;
  /* display: -webkit-box; */
  /* overflow: hidden; */
  /* -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; */
}
.section3 .container .express .notice-fix .notice1 span {
  display: block;
  padding-top: 37px;
  font-size: 16px;
  color: #444;
  letter-spacing: -0.2px;
}
.section3 .container .express .notice-fix .notice2 {
  width: calc(100% - 500px);
  display: flex;
  flex-wrap: wrap;
  /* gap: 10px; */
  padding-left: 10px;
}
.section3 .container .express .notice-fix .notice2 li {
  width: calc(50% - 30px);
  margin-left: 30px;
  padding: 25px 0 41px;
  border-top: 2px solid #ddd;
}
.section3 .container .express .notice-fix .notice2 li a {}
.section3 .container .express .notice-fix .notice2 li a strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.2px;
  font-weight: 600;
  padding-right: 125px;
  line-height: 1.42;
  min-height: 52px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.section3 .container .express .notice-fix .notice2 li .notice2-in {
  display: flex;
  justify-content: space-between;
  padding-top: 19px;
}
.section3 .container .express .notice-fix .notice2 li .notice2-in span {
  font-size: 16px;
  display: inline-block;
  color: #666;
  letter-spacing: -0.2px;
  line-height: 1.3;
}
.section3 .container .express .notice-fix .notice2 li .notice2-in span img {}

.section3 .h2-with {
  text-align: center;
  margin-bottom: 48px;
  margin-top: 51px;
}
.section3 .h2-with a {}
.section3 .h2-with a span {
  color: #0073bc;
}
.section3 .with {}
.section3 .with ul {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin-bottom: 98px;
}
.section3 .with ul li {}
.section3 .with ul li a {
  display: flex;
  gap: 10px;
  align-items: center;
}
.section3 .with ul li a img {}
.section3 .with ul li a span {
    font-size: 17px;
    font-weight: 500;
}

/* footer */
footer {}

/* footer-top */
.footer-top {
  padding: 18px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.footer-top .container {
  margin-top: 0;
}
.footer-top .footer-menu {}
.footer-top .footer-menu li {
  float: left;
  line-height: 1;
  vertical-align: top;
  /* padding: 0 10px; */
  /* border-right: 1px solid #444; */
}
.footer-top .footer-menu li::before {
  content: "";
  background-color: #444;
  margin: 0 10px;
  display: inline-block;
  height: 16px;
  width: 1px;
  vertical-align: top;
}
.footer-top .footer-menu li:first-child::before {
  display: none;
}
.footer-top .footer-menu li a {
  letter-spacing: -0.07px;
  font-size: 16px;
  color: #444;
}
.footer-top .footer-menu li:last-child a {
  font-weight: 600;
}
/* footer-bottom */
.footer-bottom {}
.footer-bottom .container {
  margin-top: 0;
  padding: 40px 0 36px;
  position: relative;
}
/* footer-address */
.footer-bottom .adress {}
.footer-bottom .adress p {
  color: #444;
  font-size: 16px;
}
.footer-bottom .adress p:first-child {
  display: inline-block;
}
.footer-bottom .adress p:nth-child(2) {
  display: inline-block;
}
.footer-bottom .adress p:nth-child(2)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  margin: 0 10px;
  background-color: #444;
}
/* footer-linkwrap */
.footer-bottom .linkwrap {
  width: 330px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.footer-bottom .linkwrap .link-box {
  float: left;
}
.footer-bottom .linkwrap .link-box a {}
.footer-bottom .linkwrap .link-box a img {
  width: 90px;
  height: 62px;
}
.footer-bottom .linkwrap .select {
  float: right;
}
.footer-bottom .linkwrap .select a {
  display: block;
  width: 221px;
  padding: 12px 3px;
  margin-left: auto;
  border-bottom: 2px solid #444;
  margin-left: 19px;
}
.footer-bottom .linkwrap .select a span{}
.footer-bottom .linkwrap .select a img {
  display: inline-block;
  margin-left: 60px;
}
