@charset "utf-8";

.wrap{
  width: 100%;
  height: 100%;
  position: relative;
}

/* header */
header{
  width: 100%;
  height: 145px;
  background-color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0; left: 0; right: 0;
  /* backdrop-filter: blur(5px); */
  /* background: rgb(255, 255, 255, 0.95); */
  z-index: 9999;
}

/* h_inner_wrap_top */
.h_inner_wrap_top{
  width: 100%;
  height: 100px;
  border-bottom: 1px solid #ccc;
}

/* .full_wrap{
  width: 1300px;
  height: 100%;
  margin: 0 auto;
  background-color: chartreuse;
} */

.inner{
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 100%;
}

.inner img{
  display: block;
}

/* 로고 그룹을 가로로 정렬 */
.logo-group {
    display: flex;       /* 가로 정렬을 위한 마법의 속성 */
    align-items: center; /* 로고들의 높낮이 중앙 맞춤 */
    gap: 30px;           /* 로고 사이의 간격 */
}

/* 로고 이미지 크기 최적화 */
.logo-group img {
    display: block;
    height: 60px;        /* 로고 높이를 원하는 만큼 고정 (이미지에 맞춰 조절) */
    width: auto;         /* 비율 유지 */
}

/* 검색 */
.inner .search_wrap::after{
  display: block;
  content: "";
  clear: both;
}

.inner .search_wrap input::placeholder{
  color: #c8c8c8;
  font-weight: 300;
}

.inner .search_wrap .search_box{
  height: 46px;
  width: 600px; /* 450->600 */
  background-color: #fff;
  border-radius: 40px;
  padding: 0 7px;
  margin-left: 180px; /* 270->180 */
  border: 2px solid #ccc;
}


.inner .search_wrap .search_txt{
  border: none;
  background-color: transparent;
  outline: none;
  float: left;
  padding-left: 10px;
  color: #797979;
  font-size: 16px;
  font-weight: 400;
  height: 100%;
  line-height: 30px;
  width: 350px;
  border-radius:5px;
}

.inner .search_wrap .search_btn{
  color: #ccc;
  float: right;
  width: 40px;
  height: 100%;
  border-radius: 50%;
  background-color: transparent;
  border: none;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* search_box에 Flexbox 적용 */
.search_box {
    display: flex; /* 내부 요소들을 유연하게 배치 */
    align-items: center; /* 내부 요소들을 수직 중앙 정렬 */
    /* 기존 너비와 높이 등 유지 */
}

.search_txt {
    /* 기존 플로팅 속성 제거 */
    float: none; 
    /* 너비 대신 유연하게 공간 차지하도록 설정 */
    flex-grow: 1; 
    width: auto; /* 기존 350px 고정값 대신 */
}

.search_btn {
    float: none;
    /* 기존 width: 40px; 유지 */
    /* Flexbox를 사용하므로 중앙 정렬을 위한 display: flex 등은 그대로 유지 */
}

.selectBox {
    /* 적절한 너비 설정 (예시) */
    width: 90px; 
	border-radius:5px;
	margin-left:7px;
}

.h_inner_wrap_top .inner ul{
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: end;
}
.h_inner_wrap_top .inner ul>li{
  display: inline-block;
  line-height: 1;
  padding: 0 20px;
  border-right: 1px solid #333;
  margin-bottom: 15px;
  font-size: 14px;
}

.h_inner_wrap_top .inner ul>li:nth-last-child(2):first-child ~ li:last-child { /* li가 정확히 2개일 때의 마지막 li */
  padding-right: 0;
}

.h_inner_wrap_top .inner ul>li:nth-last-child(3):first-child ~ li:last-child { /* li가 정확히 3개일 때의 마지막 li */
  padding-right: 0;
}

.h_inner_wrap_top .inner ul>li>a{
  display: block;
}

.h_inner_wrap_top .inner > ul > li:last-child {
    border-right: 0; /* 또는 none */
}


/* h_inner_wrap_bottom */
.h_inner_wrap_bottom{
  position: relative;
  width: 100%;
  height: 45px;
  border-bottom: 1px solid #ccc;
  /* box-shadow: 1px 10px 20px -8px rgba(32, 184, 237, 0.8) ; */
}

.h_inner_wrap_bottom .inner{
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.h_inner_wrap_bottom .inner .gnb_bg{
  display: none;
  width: 100%;
  height: 155px;
  background-color: #edf5f8;
  position: absolute;
  top:45px; left: 0;
  border-radius: 0 0 20px 20px;
  box-shadow: inset 0 0 18px rgba(32, 184, 237, 0.6) ;
}

.h_inner_wrap_bottom .inner .gnb_wrap{
  width: 1200px;
  z-index: 100;
}

.h_inner_wrap_bottom .inner .gnb_wrap>ul{
  width: 100%;
  height: 45px; line-height: 45px;
  display: flex;
}

.h_inner_wrap_bottom .inner .gnb_wrap>ul>li{
  flex: 1;
}

.h_inner_wrap_bottom .inner .gnb_wrap>ul>li>a{
  display: block;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border-left: 1px solid #ccc;
}

.h_inner_wrap_bottom .inner .gnb_wrap>ul>li:nth-child(6){
  border-right: 1px solid #ccc;
}

.h_inner_wrap_bottom .inner .gnb_wrap>ul>li:hover>a{
  color: #fff;
  background-color: #20b8ed;
}

.h_inner_wrap_bottom .inner .gnb_wrap>ul>li>ul.sub{
  display: none;
  
}

.h_inner_wrap_bottom .inner .gnb_wrap>ul>li>ul.sub>li>a{
  display: block;
  text-align: center;
  padding: 10px 0;
  height: 32px; line-height: 32px;
}

.h_inner_wrap_bottom .inner .gnb_wrap>ul>li>ul.sub>li>a:hover{
  color: #20b8ed;
}


/* slide_wrap: 슬라이드 */
.slide_wrap{
  width: 100%;
  height: 550px;
  
  /* background-color: #fc6; */
}

.slide_wrap .slide{
  width: 100%;
  height: 550px;
  overflow: hidden;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
}

.slide_wrap .slide ul{
  width: 1920px;
  height: 550px;
  display: block;
}

.slide_wrap .slide li{
  width: 1920px;
  height: 550px;
  position: absolute;
  top: 0; left: 50%;
  margin-left: -960px;
  display: none;
  
}

.slide_wrap .slide li:first-child{
  display: block;
}

.slide_wrap .slide ul li img{
  max-width: 1920px;
  max-height: 550px;
  display: block;
}


/* slide_wrap: 슬라이드 버튼 */
.slide_wrap .slide_btn{
  position: relative;
}

.slide_wrap .slide_btn ul{
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%);
  cursor:pointer;
}

.slide_wrap .slide_btn ul li{
  width: 30px;
  height: 5px;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 0;
  margin: 0 8px;
  cursor:pointer;
}

.slide_wrap .slide_btn ul li:hover, .slide_btn ul li:active{
  background-color: rgba(0, 0, 0, 0.7);
  cursor:pointer;
}

.slide_wrap .slide_btn ul li.active{
  background-color: rgba(0, 0, 0, 0.7);
  cursor:pointer;
}

/* container_wrap: 컨텐츠 */
.container_wrap{
  margin: 35px 0 0;
  width: 100%;
  height: 1078px;
  /* background-color: brown; */
  position: relative;
}

.contents{
  width: 100%;
  height: 1078px;
  position: absolute;
  top: 0px; left: 50%;
  transform: translateX(-50%);
  /* background-color: #fcc; */
}

/* .contents_wrap1{
  width: 100%;
} */

.contents_top{
  width: 1200px;
  height: 300px;
  display: flex;
  margin: 0 auto;
}

/* con_top_01 */
.contents_top .con_top_01{
  width: 300px;
  height: 300px;
  background-color: #e3f6fd;
  display: flex;
  justify-content: center;
  text-align: center;
}

.contents_top .con_top_01>div{
  display: block;
  position: relative;
}

.contents_top .con_top_01 p{
  width: 100%;
  margin-top: 30px;
}

.contents_top .con_top_01 p img{
  width: 83px;
  height: 77px;
}

.contents_top .con_top_01 h3{
  font-weight: 600;
  color: #0071bc;
  margin-bottom: 8px;
  margin-top: 4px;
}

.contents_top .con_top_01 ul li{
  line-height: 24px;
}

.contents_top .con_top_01 .con_button{
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
}

.contents_top .con_top_01 .con_button>a{
  display: block;
  cursor: pointer;
}

.contents_top .con_top_01 .con_button>a>span{
  display: inline-block;
  background-color: #0071bc;
  color: #fff;
  font-weight: 600;
  width: 110px;
  padding: 3px 0;
  font-size: 14px;
  border-radius: 20px;
}

/* con_top_02 */
.contents_top .con_top_02{
  width: 300px;
  height: 300px;
  background-color: #c7edfb;
  display: flex;
  justify-content: center;
  text-align: center;
}

.contents_top .con_top_02>div{
  display: block;
  position: relative;
}

.contents_top .con_top_02 p{
  width: 100%;
  margin-top: 30px;
}
.contents_top .con_top_02 p img{
  width: 64px;
  height: 77px;
}
.contents_top .con_top_02 h3{
  font-weight: 600;
  color: #0071bc;
  margin-bottom: 8px;
  margin-top: 4px;
}
.contents_top .con_top_02 ul li{
  line-height: 24px;
}
.contents_top .con_top_02 .con_button{
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
}

.contents_top .con_top_02 .con_button>a{
  display: block;
  cursor: pointer;
}

.contents_top .con_top_02 .con_button>a>span{
  display: inline-block;
  background-color: #0071bc;
  color: #fff;
  font-weight: 600;
  width: 110px;
  padding: 3px 0;
  font-size: 14px;
  border-radius: 20px;
}

/* con_top_03 */
.contents_top .con_top_03{
  width: 300px;
  height: 300px;
  background-color: #abe4f8;
  display: flex;
  justify-content: center;
  text-align: center;
}

.contents_top .con_top_03>div{
  display: block;
  position: relative;
}

.contents_top .con_top_03 p{
  width: 100%;
  margin-top: 30px;
}
.contents_top .con_top_03 p img{
  width: 132px;
  height: 77px;
}
.contents_top .con_top_03 h3{
  font-weight: 600;
  color: #0071bc;
  margin-bottom: 8px;
  margin-top: 4px;
}
.contents_top .con_top_03 ul li{
  line-height: 24px;
}
.contents_top .con_top_03 .con_button{
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
}

.contents_top .con_top_03 .con_button>a{
  display: block;
  cursor: pointer;
}

.contents_top .con_top_03 .con_button>a>span{
  display: inline-block;
  background-color: #0071bc;
  color: #fff;
  font-weight: 600;
  width: 110px;
  padding: 3px 0;
  font-size: 14px;
  border-radius: 20px;
}

/* con_top_04 */
.contents_top .con_top_04{
  width: 300px;
  height: 300px;
  background-color: #90dcf6;
  display: flex;
  justify-content: center;
  text-align: center;
}

.contents_top .con_top_04>div{
  display: block;
  position: relative;
}

.contents_top .con_top_04 p{
  width: 100%;
  margin-top: 30px;
}

.contents_top .con_top_04 p img{
  width: 87px;
  height: 77px;
}

.contents_top .con_top_04 h3{
  font-weight: 600;
  color: #0071bc;
  margin-bottom: 8px;
  margin-top: 4px;
}

.contents_top .con_top_04 ul li{
  line-height: 24px;
}

.contents_top .con_top_04 .con_button{
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
}

.contents_top .con_top_04 .con_button>a{
  display: block;
  cursor: pointer;
}

.contents_top .con_top_04 .con_button>a>span{
  display: inline-block;
  background-color: #0071bc;
  color: #fff;
  font-weight: 600;
  width: 110px;
  padding: 3px 0;
  font-size: 14px;
  border-radius: 20px;
}

/* .contents_wrap2{
  width: 100%;
} */

.contents_center{
  width: 1200px;
  height: 260px;
  display: flex;
  margin: 0 auto;
}


/* con_center_wrap_01 */
.contents_center .con_center_wrap_01{
  width: 600px;
  height: 260px;
  background-color: #0071bc;
}

.contents_center .con_center_wrap_01 h2{
  width: 530px;
  display: block;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -1px;
  margin: 20px 0 10px 50px;
  color: #fff;
}

.contents_center .con_center_wrap_01 .con_center_top{
  width: 530px;
  height: 80px;
  display: flex;
  margin-left: 35px;
  border-bottom: 1px solid #fff;
}

.contents_center .con_center_wrap_01 .con_center_top .con_center_01{
  width: 265px;
}

.contents_center .con_center_wrap_01 .con_center_top .con_center_01 p{
  padding-left: 15px;
  color: #fff;
}

.contents_center .con_center_wrap_01 .con_center_top .con_center_01>p:nth-child(2){
  display: block;
  font-size: 24px;
  font-weight: 500;
  padding: 0 0 15px 30px;
}

.contents_center .con_center_wrap_01 .con_center_top .con_center_01>p>span{
  font-size: 8px;
  display: inline-block;
  margin-left: 0;
  vertical-align: 3px;
  margin-right: 6px;
  
}

.contents_center .con_center_wrap_01 .con_center_top .con_center_02{
  width: 265px;
}

.contents_center .con_center_wrap_01 .con_center_top .con_center_02 p{
  display: block;
  color: #fff;
}

.contents_center .con_center_wrap_01 .con_center_top .con_center_02>p:nth-child(2){
  display: block;
  font-size: 24px;
  font-weight: 500;
  padding: 0 0 15px 15px;
}

.contents_center .con_center_wrap_01 .con_center_top .con_center_02>p>span{
  font-size: 8px;
  display: inline-block;
  margin-left: 0;
  vertical-align: 3px;
  margin-right: 6px;
}

.contents_center .con_center_wrap_01 .con_center_bottom{
  width: 530px;
  height: 80px;
  display: block;
  margin-left: 35px;
  margin-top: 20px;
  display: flex;
}

.contents_center .con_center_wrap_01 .con_center_bottom .con_center_03{
  width: 265px;
}

.contents_center .con_center_wrap_01 .con_center_bottom .con_center_03 p{
  padding-left: 15px;
  color: #fff;
}

.contents_center .con_center_wrap_01 .con_center_bottom .con_center_03>p:nth-child(2){
  display: block;
  font-size: 24px;
  font-weight: 500;
  padding: 0 0 15px 30px;
}

.contents_center .con_center_wrap_01 .con_center_bottom .con_center_03>p>span{
  font-size: 8px;
  display: inline-block;
  margin-left: 0;
  vertical-align: 3px;
  margin-right: 6px;
}

.contents_center .con_center_wrap_01 .con_center_bottom .con_center_04 p{
  display: block;
}

.contents_center .con_center_wrap_01 .con_center_bottom .con_center_04 p img{
  display: block;
}

/* con_center_wrap_02 */
.contents_center .con_center_wrap_02{
  width: 600px;
  padding: 25px 30px;
  height: 260px;
  position: relative;
  background-color: #e3f6fd;
}

.contents_center .con_center_wrap_02 .tabmenu{
  display: flex;
  height: 40px; line-height: 40px;
  align-items: center;
}

.contents_center .con_center_wrap_02 .tabmenu>li{
  display: inline-block;
  width: 150px;
  background-color: #d9d9d9;
  border-right: 1px solid #fff;
  border-radius: 15px 15px 0 0;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}

.contents_center .con_center_wrap_02 .tabmenu>li {
    font-weight: 400 !important;
}

.contents_center .con_center_wrap_02 .tabmenu>li:nth-child(3) {
  border-right: 0;
}

.contents_center .con_center_wrap_02 .tabmenu>li.on{
  background-color: #0071bc;
  color: #fff;  
}

.contents_center .con_center_wrap_02 .tabmenu>li>a{
  display: block;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.contents_center .con_center_wrap_02 .tabcon{
  width: 540px;
  height: 160px;
  position: absolute; left: 30px; 
  border-top: 1px solid #0071bc;
}

.contents_center .con_center_wrap_02 .quotation{
  display: flex;
  align-items: start;
}

.contents_center .con_center_wrap_02 .quotation table tr{
  border-bottom: 1px dashed #0071bc;
  height: 33px; line-height: 33px;
}

.contents_center .con_center_wrap_02 .quotation table th{
  text-align: left;
}

.contents_center .con_center_wrap_02 .quotation table th a{
/*  display: block;*/
  width: 440px;
  font-size: 16px;
  font-weight: 400;
  padding: 0 12px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contents_center .con_center_wrap_02 .quotation table td{
  width: 100px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 0 12px;
  color: #333;
  text-align: right;
}


.contents_center .con_center_wrap_02 .qa{
  display: flex;
  align-items: start;
  display: none;
}

.contents_center .con_center_wrap_02 .qa table tr{
  border-bottom: 1px dashed #0071bc;
  height: 33px; line-height: 33px;
}

.contents_center .con_center_wrap_02 .qa table th{
  text-align: left;
}

.contents_center .con_center_wrap_02 .qa table th a{
/*  display: block;*/
  width: 440px;
  font-size: 16px;
  font-weight: 400;
  padding: 0 12px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contents_center .con_center_wrap_02 .qa table td{
  width: 100px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 0 12px;
  color: #333;
  text-align: right;
}

.contents_center .con_center_wrap_02 .notice{
  display: flex;
  align-items: start;
  display: none;
}

.contents_center .con_center_wrap_02 .notice table tr{
  border-bottom: 1px dashed #0071bc;
  height: 33px; line-height: 33px;
}

.contents_center .con_center_wrap_02 .notice table th{
  text-align: left;
}

.contents_center .con_center_wrap_02 .notice table th a{
  display: block;
  width: 440px;
  font-size: 16px;
  font-weight: 400;
  padding: 0 12px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contents_center .con_center_wrap_02 .notice table td{
  width: 100px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 0 12px;
  color: #333;
  text-align: right;
}

/* .contents_wrap3{
  width: 100%;
  height: 458px;
  margin: 40px 0;
  background-color: #fcefef;
} */


/* contents_bottom */

.contents_bottom{
  width: 100%;
  height: 478px;
  margin: 40px 0;
  padding-top: 10px;
  background-color: #fcefef;
}

/* pubBook_tit1 */
.contents_bottom .pubBook_tit1{
  width: 1200px;
  height: 47px; line-height: 47px;
  margin: 20px auto 18px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  border-bottom: 1px solid #b9b9b9;
}

.contents_bottom .pubBook_tit1 h2{
  font-weight: 500;
  font-size: 1.5em;
  /* color: #0071bc; */
}

.contents_bottom .pubBook_tit1 h2 span{
  font-size: 20px;
  vertical-align: 1px;
}

.contents_bottom .pubBook_tit1 a{
  display: block;
}

.contents_bottom .pubBook_tit1 a span{
  font-size: 14px;
  display: block;
  padding-top: 5px;
}

/* pubBook_wrap */
.contents_bottom .pubBook_wrap{
  width: 1200px;
  height: 333px;
  margin: 0 auto;
  border-bottom: 1px solid #b9b9b9;
  position: relative;
}

.contents_bottom .pubBook_wrap::after{
  clear: both;
  display: block;
  content: "";
}

/* pubBook_slide */
.contents_bottom .pubBook_wrap .pubBook_slide{
  position: relative;
  width: 1200px;
  height: 318px;
  margin: 0 auto;
  overflow: hidden;
}

.contents_bottom .pubBook_wrap .pubBook_slide .slides{
  position: absolute;
  left: 0; top: 0;
  z-index: 500;
}

.contents_bottom .pubBook_wrap .pubBook_slide .slides.animated{
  transition: 0.6s ease-out;
}

.contents_bottom .pubBook_wrap .pubBook_slide .slides .pubBook_tit2{
  width: 185px;
  font-weight: 500;
  margin-top: 10px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contents_bottom .pubBook_wrap .pubBook_slide .slides .pubBook_name{
  width: 185px;
  height: 28px; line-height: 28px;
  font-size: 14px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contents_bottom .pubBook_wrap .pubBook_slide .slides li:not(:last-child){
  float: left;
  margin-right: 18px;
}

.contents_bottom .pubBook_wrap .pubBook_slide .slides li a{
  display: block;
  cursor: pointer;
}

.contents_bottom .pubBook_wrap .pubBook_slide .slides li a img{
  max-width: 185px;
  max-height: 259px;
  border: 1px solid #b9b9b9;
  display: block;
  object-fit: cover;
  cursor: pointer;
}

/* controls */
.contents_bottom .pubBook_wrap .controls{
  width: 1300px;
  position: absolute;
  left: 50%; top: 40%;
  transform: translate(-50%, -60%);
  /* cursor: pointer; */
}

.contents_bottom .pubBook_wrap .controls span{
  width: 38px;
  height: 38px; line-height: 32px;
  display: inline-block;
  font-weight: 500;
  color: #b9b9b9;
  text-align: center;
  border-radius: 18px;
  background-color: #fff;
  border: 1px solid #b9b9b9;
  box-shadow: inset 0 0 7px 1px #b9b9b9;
  cursor: pointer;
}

.contents_bottom .pubBook_wrap .controls span.prev{
  font-size: 28px;
  float: left;
}

.contents_bottom .pubBook_wrap .controls span.next{
  font-size: 28px;
  float: right;
}

/* 출간도서 item.form.skin */
#buy_title {
	margin:0 0 10px;
	font-size:1.2em;
	font-weight:600;
}
#sit_ov_btn .buy_site {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

#sit_ov_btn .buy_site li{
  width: calc(100% / 2);
  display: block;
  cursor: pointer;
}

#sit_ov_btn .buy_site li a{
  display: block;
  cursor: pointer;
}

#sit_ov_btn .buy_site li a img{
  display: block;
  cursor: pointer;
}


.image-none {
	cursor: none; /* 마우스 커서를 완전히 숨김 */
}

.Btn_BG_blue { 
	border: 0; 
	font-size: 24px; 
	width: 100%; 
	text-align: left; 
	font-weight: bolder; 	
	margin-bottom: 20px;
	color:#5e6b9e; 
	background:white; 
}

.mg_top30 {margin-top: 30px;}

/* footer */
footer{
  width: 100%;
  height: 350px;
  background-color: #4d4d4d;
  position: relative;
}

.footer_wrap1{
  width: 100%;
  height: 150px;
  margin: 0 auto;
  background-color: #e0e0e0;
  
}

/* footer_top */
.footer_top{
  width: 1200px;
  height: 150px;
  margin: 0 auto;
  position: relative;
}

.footer_top ul{
  width: 820px;
  height: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_top ul li{
  display: block;
  cursor: pointer;
}

.footer_top ul li a{
  display: block;
  cursor: pointer;
}

.footer_top ul li a img{
  display: block;
  cursor: pointer;
}

.footer_top .f_customer{
  max-width: 227px;
  max-height: 220px;
  position: absolute;
  right: 0; top: 36px;
}

.footer_top .f_customer p{
  display: block;
}

.footer_top .f_customer p img{
  display: block;
}

.footer_wrap2{
  width: 100%;
  height: 200px;
  margin: 0 auto;
}

/* footer_bottom */
.footer_bottom{
  width: 1200px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  padding-top: 35px;
  
}

.footer_bottom .f_logo{
  padding-top: 7px;
  display: block;
  width: 130px;
}

.footer_bottom .f_logo img{
  width: 74px;
  height: 70px;
  display: block;
}
.footer_bottom .f_menu{
  display: block;
  width: 690px;
  
}

/* f_menu1 */
.footer_bottom .f_menu .f_menu1{
  width: 690px;
  display: block;
}

.footer_bottom .f_menu .f_menu1 ul{
  width: 690px;
  display: flex;
  color: #fff;
  margin-bottom: 20px;
}

.footer_bottom .f_menu .f_menu1 ul li{
  
  padding: 0 20px;
  line-height: 0.8;
  border-right: 1px solid #fff;
  
}

.footer_bottom .f_menu .f_menu1 ul li:nth-child(1){
  padding-left: 0;
}

.footer_bottom .f_menu .f_menu1 ul li:nth-child(3){
  padding-right: 0;
  border-right: 0;
}

.footer_bottom .f_menu .f_menu1 ul li a{
  font-size: 13px;
  font-weight: 300;
  display: block;
  cursor: pointer;
}

/* f_menu2 */
.footer_bottom .f_menu .f_menu2{
  width: 690px;
  display: block;
}

.footer_bottom .f_menu .f_menu2 ul{
  width: 690px;
  display: flex;
  color: #fff;
}

.footer_bottom .f_menu .f_menu2 ul li{
  
  padding: 0 20px;
  line-height: 0.8;
  border-right: 1px solid #fff;
  margin-bottom: 10px;
}

.footer_bottom .f_menu .f_menu2 ul li:nth-child(1){
  padding-left: 0;
}

.footer_bottom .f_menu .f_menu2 ul li:nth-child(3){
  padding-right: 0;
  border-right: 0;
}

.footer_bottom .f_menu .f_menu2 ul li p{
  display: block;
  font-size: 14px;
  font-weight: 300;
}

/* f_menu3 */
.footer_bottom .f_menu .f_menu3{
  width: 690px;
  display: block;
}

.footer_bottom .f_menu .f_menu3 ul{
  width: 690px;
  display: flex;
  color: #fff;
}

.footer_bottom .f_menu .f_menu3 ul li{
  margin-bottom: 7px;
  padding: 0 20px;
  line-height: 0.8;
  border-right: 1px solid #fff;
}

.footer_bottom .f_menu .f_menu3 ul li:nth-child(1){
  padding-left: 0;
}

.footer_bottom .f_menu .f_menu3 ul li:nth-child(3){
  padding-right: 0;
  border-right: 0;
}

.footer_bottom .f_menu .f_menu3 ul li:nth-child(4){
  padding-right: 0;
  border-right: 0;
}

.footer_bottom .f_menu .f_menu3 ul li p{
  display: block;
  font-size: 14px;
  font-weight: 300;
}

/* f_menu4 */
.footer_bottom .f_menu .f_menu4{
  width: 760px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.footer_bottom .f_menu .f_menu4 p{
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  
}
.footer_bottom .f_menu .f_menu4 #ft_totop{
  display: block;
  font-size: 16px;
  font-weight: 500;
  width: 55px;
  height: 55px; line-height: 50px;
  background-color: #1a1a1a;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  right: 0; bottom: 13px;
}
.footer_bottom .f_menu .f_menu4 #ft_totop a{
  display: block;
  text-align: center;
}



