@charset "utf-8";

/* 아이템(제품) 리스트는 common.css에 있습니다 */

/*  메인공통 */
#container {padding-bottom: 120px;}

#container.main {
    padding-bottom: 50px;
}
.prd_ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
}
.prd_ttl h2 {
    font-size: 26px;
    font-weight: 700;
}

/*  ------------------------  메인슬라이더 */

.main_visual {position: relative; margin-top: 20px;}
.main_v_slider .slick-slide span {
    display: block;
    width: 100%; padding-top: 300px;
    background: no-repeat center
} 
.main_visual .slick_total {
    max-width: 1200px;
    width: 100%;
    position: absolute;
    bottom: 30px; left: 50%;
    padding-right:30px;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
}
.main_visual .slick_total .pause_btn {
    display: block;
    width: 40px; 
    height: 40px;
    border-radius: 50%;
    margin-left: auto;
    background: rgba(0,0,0,0.2) no-repeat center;
    background-image: url(../img/btn/slider_stop.png); 
    cursor: pointer;
}
.main_visual .slick_total .pause_btn.play {
    background-image: url(../img/btn/slider_play.png);
}
.main_visual .slick_total .slick-counter {
    display: flex;
    align-items: center;
    margin-left: 10px;
    background-color: rgba(0,0,0,.2);
    border-radius: 20px;
    padding: 0 10px;
    color: #fff;
    font-size: 20px;
}
.main_visual .slick_total .slick-counter .current {
    font-weight: 700;
}
.main_visual .slick_total span {
    display: block;
    margin: 0 6px;
    font-weight: 500;
}
.main_visual .slick_total .slider_btn {
    display: block;
    width:17px;
    height: 37px;
    background-position: center center;
    background-repeat: no-repeat;
    font-size: 0;
    color: transparent;
    margin: 0 5px;
}

.main_visual .main_v_slider .slick-arrow {
    background: url(../img/main/slide_arrow.png) no-repeat center;
    width: 40px;
    height: 40px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    z-index: 8;
    font-size: 0;
}

.main_visual .main_v_slider .slick-arrow.slick-prev {
    left: 30px;
}

.main_visual .main_v_slider .slick-arrow.slick-next {
    right: 30px;
    transform: translateY(-50%) rotate(-180deg);
}
/*  // 메인슬라이더 // */


/*  ------------------------  상단배너 */
.top_banner .bn_top{
    margin: 24px 0;
}

.top_banner .bn_bot {
    display: flex;
}

.top_banner .bn_bot>div+div {
    margin-left: 10px;
}

.top_banner .bn_bot .left {
    /* width: 50%; */
}

.top_banner .left>ul {
    border: solid 1px #ececec;
}

.top_banner .left .more_link {
    display: block;
    padding: 16px 20px 14px;
    font-size: 16px;
    font-weight: 500;
    color: #252525;
    background: url('../img/ico/more_boxico.png') no-repeat right 20px center;
}

.top_banner .left>ul>li+li {
    border-top: solid 1px #ececec;
}

.top_banner .left .notice {
    padding: 7px 20px 23px;
}

.top_banner .left .notice li a {
    display: block;
    font-size: 13px;
    color: #454545;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*  // 상단배너 // */

/*  ------------------------  판매자 미니샵 */
.cate_list {
    padding-top:80px

}
.cate_list .prd_wrap {
    position: relative;
}
.cate_list .slide_button {
    position: absolute;
    top: 0;
    right: 0;
}
.cate_list .slide_button button {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 8px;
}
.cate_list .slide_button button img {
    display: block;
}
.cate_list .slide_button button + button::before {
    position: absolute;
    top: 50%;
    left: -3px;
    transform: translateY(-50%);
    width: 1px;
    height: 13px;
    background: #b0b0b0;
    content: '';
}

.cate_list .slider_wrap {
    display: ;
}
.cate_list .slick-track {
    margin-top: 1px;

}
/* .cate_list .slick-slide>div {
    border: 1px solid #ececec;
    box-sizing: border-box;
    margin-top: -1px;
    margin-left: -1px;

} */

.cate_list .slider_wrap .slide-item {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 25px 0;
    position: relative;
    cursor: pointer;
    border: 1px solid #ececec;
    box-sizing: border-box;
    /* margin-top: -1px; */
    /* margin-left: -1px; */
}

.cate_list .slide-item a {
    display: none;
    position: absolute;
    top: 0px;
    left: 0;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    background: #1c5cb0;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.23);
    z-index: 2;
}

.cate_list .slide-item:hover a {
    display: flex;
}

.cate_list .slide-item a span {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    padding-bottom: 24px;
    background: url('../img/ico/more_icoarrow.png') no-repeat center bottom;
}


.cate_list .slide-item .ico_box {
    max-width: 110px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.cate_list .slide-item p {
    font-size: 15px;
    text-align: center;
    color: #757575;
    margin-top: 8px;
}

.main .slick-arrow {
    width: 40px;
    height: 40px;
    background: url('../img/btn/set_sliderarrow.png') no-repeat center center;
    position: absolute;
    /* bottom: 59%; */
    /* transform: translateY(-50%); */
    z-index: 3;
    font-size: 0;
}

.main .slick-arrow.slick-next {
    transform: translateY(-50%) rotate(180deg);
}
/*  // 판매자 미니샵 // */


/* ----------------- 카테고리 별 인기상품 */
.ct_best {
    padding-top: 80px;
}

.best_category {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 744px;
    margin: 0 auto 20px;
}
.best_category .ct_btn {
    display: block;
    width: 16.667%;
    margin-bottom: 20px;
}

.best_category .ct_btn .ct_ico {
    position: relative;
    display: block;
    width: 84px;
    height: 84px;
    margin: 0 auto;
    border-radius: 50%;
    box-sizing: border-box;
}
.best_category .ct_btn.on .ct_ico::after {
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 3px solid #86624a;
    border-radius: 50%;
    box-sizing: border-box;
    content: '';
}
.best_category .ct_btn .ct_ico span {
    display: block;
    background: no-repeat center/ cover;
    width: 100%; padding-top: 100%;
}
.best_category .ct_btn .ct_txt {
    display: block;
    padding-top: 16px;
    font-size: 18px;
    line-height: 1.2;
} 

/*  // 카테고리 별 인기상품 //*/

/* ---------------------   배너 1 */
.main .banner01 {
    padding-top: 80px;
}
/* // 배너1 // */

/*  --------------------------------   main_post_wrap 메인 게시글  */
.main_post_wrap .slider_item {
    display: flex;
    width: 100%;
}
.main_post_wrap .post_col {
    width: 100%;
    max-width: 302px;
}
.main_post_wrap .post_col.center {
    max-width: 540px;
    margin: 0 28px;
    flex: 0 0 auto;
}
.main_post_wrap .post_item + .post_item {
    margin-top: 40px;
}
.main_post_wrap .post_item a {
    display: block;
}
.main_post_wrap .post_item .img span {
    display: block;
    width: 100%;
    padding-top: 59.603%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.main_post_wrap .post_col.center .post_item .img span {
    padding-top: 68.519%;
}
.main_post_wrap .post_item .txt {
    margin-top: 30px;
}
.main_post_wrap .post_item .writer {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #757575;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.main_post_wrap .post_item .subject {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #252525;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.main_post_wrap .control_box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
}
.main_post_wrap .control_box .arrow_btn {
    display: block;
    width: 30px;
    height: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    font-size: 0;
    color: transparent;
}
.main_post_wrap .control_box .arrow_btn.prev {
    background-image: url(../img/btn/main_post_pr.png)
}
.main_post_wrap .control_box .arrow_btn.next {
    background-image: url(../img/btn/main_post_ne.png)
}
.main_post_wrap .control_box .post_dot ul{
    display: flex;
    align-items: center;
    margin: 0 10px;
}
.main_post_wrap .control_box .post_dot button {
    display: block;
    width: 10px;
    height: 10px;
    text-indent: -9999em;
    background: #000;
    opacity: 0.2;
    border-radius: 50%;
}
.main_post_wrap .control_box .post_dot  li + li  {
    margin-left: 10px;
}
.main_post_wrap .control_box .post_dot .slick-active button {
    background: #86624a;
    opacity: 1;
}
/* // main_post_wrap 메인 게시글 // */

/* ------------------------  추천상품 */


/* 메인 상품진열 공통 */


/* 메인 상품진열 공통 */
.top_ttl {
    color: #f69804;
    margin: 80px auto 20px;
}

.sect .sect_inner_wrap {
    display: flex;
    padding-top: 30px;
    border-top: 1px solid #f69804;
}

.sect .sect_inner_wrap .left {
    margin-right: 65px;
}

.sect .sect_inner_wrap .left .se_tl {
    font-size: 26px;
    font-weight: 700;
    color: #f69804;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.sect .sect_inner_wrap .left .more_btn {
    display: inline-block;
    background: url('../img/ico/more_ico.png') no-repeat right center / 18px;
    font-size: 16px;
    font-weight: 500;
    color: #757575;
    width: 75px;
}

.sect .sect_inner .right {
    width: 87%;
    position: relative;
}

.sect .right .top_list_wrap {
    display: flex;
    margin-bottom: 30px;
    min-height:340px
}

.sect .right .top_list_slide {
    /* width: calc(50% - 5px); */
    width: 510px;
}

.sect .right .top_list_item {
    display: flex;
    justify-content: flex-end;
    /* margin-left: 30px; */
    margin-left: 0.777%;
    width: calc(100% - 510px);
}

.sect .right .top_list_item .item {
    border-radius: 8px;
}

.sect .right .top_list_item .item {
    width: calc(50% - 24px);
    position: relative;
  /* width: 240px; */
}

.sect .right .top_list_item .item .item_ico{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 53px;
    height: 53px;
}

.sect .right .top_list_item .item + .item {
    margin-left:30px;
}

.sect .right .top_list_item .item .thumb_box {
    width: 249px;
    max-width: 100%;
    padding-top: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 8px;
}

.sect .right .top_list_item .item .info_box {
    text-align: left;
}

.sect .right .top_list_item .item .made {
    margin-top: 19px;
    font-size: 14px;
    color: #666;
}

.sect .right .top_list_item .item .top {
    max-height: 52px;
    font-size: 16px;
    font-weight: 600;
    color: #252525;
    line-height: 1.25;
    margin-top: 9px;
    margin-bottom: 10px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: break-all;
}

.sect .right .top_list_item .item span {
    display: inline-block;
}

.sect .right .top_list_item .item .pay {
    font-size: 15px;
    font-weight: 500;
    color: #252525;
}

.sect .right .top_list_item .item .pay strong {
    font-size: 20px;
}

.sect .right .top_list_item .item .above {
    font-size: 15px;
    color: #999;
    margin-left: 8px;
    text-decoration: line-through;
}

.sect .slick-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    display: flex;
    justify-content: center;
}

.sect .slick-dots li+li {
    margin-left: 6px;
}

.sect .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.3;
    border: none;
    font-size: 0;
}

.sect .bot_slide .slick-arrow {
    width: 40px;
    height: 40px;
    background: url('../img/btn/set_sliderarrow.png') no-repeat center center;
    position: absolute;
    /* bottom: 50%; */
    /* transform: translateY(-50%); */
    z-index: 3;
    font-size: 0;
}
.sect .sect_inner .bot_slide_wrap .slide_arrow .slick-arrow.nextArrow {
    background: url('../img/btn/set_sliderarrow2.png') no-repeat center center;
}
.sect .bot_slide .slick-arrow.slick-next {
    transform: translateY(-50%) rotate(180deg);
}


.sect .slick-dots li.slick-active button {
    opacity: 1;
    background: #fff;
}


.sect .sect_inner .bot_slide .slick-list {
    /* width: 100%; */
    /* margin: 0 30px; */
    /* position:relative; */
    margin: 0 -1%;
}
.sect .sect_inner .bot_slide_wrap {
    position: relative;
}
.sect .sect_inner .bot_slide_wrap .slide_arrow {
    width: 100%;
    position:absolute;
    top: 30%;
    transform: translateY(-50%);
}
.sect .sect_inner .bot_slide_wrap .slide_arrow .slick-arrow {
    cursor: pointer;
}
.sect .sect_inner .bot_slide_wrap .slide_arrow .slick-arrow.prevArrow {
    left: -4%;
} 
.sect .sect_inner .bot_slide_wrap .slide_arrow .slick-arrow.nextArrow {
    right: -4%;
}
.sect .sect_inner .bot_slide .slick-track {
    /* width: 100%; */
}
.sect .sect_inner .bot_slide .item {
    /* width: calc(25% - 24px);
    max-width: 241px; */
    /* padding: 0 15px; */
    width: 22.23%;
    padding-left: 0.33%;
    position: relative;
}

.sect .right .bot_slide .item .item_ico{
    position: absolute;
    top: 10px;
    right: 20px;
    width: 53px;
    height: 53px;
}
/* 
.sect .sect_inner .bot_slide .slick-slide + .slick-slide {
    padding-left: 3%;
} */

.sect .sect_inner .bot_slide .item .thumb_box {
    width: 240px;
    height: 240px;
    max-width: 100%;
    max-height: 240px;
    padding-top: 91.96%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 8px;
}

.sect .sect_inner .bot_slide .item .info_box {
    text-align: left;
    width: 95%;
}
.sect .sect_inner .bot_slide .item .made {
    margin-top: 19px;
    font-size: 14px;
    color: #666;
}
.sect .sect_inner .bot_slide .item .top {
    max-height: 52px;
    font-size: 16px;
    font-weight: 600;
    color: #252525;
    line-height: 1.25;
    margin-top: 9px;
    margin-bottom: 10px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: break-all;
}
.sect .sect_inner .bot_slide .item span {
    display: inline-block;
}
.sect .sect_inner .bot_slide .item .pay {
    font-size: 15px;
    font-weight: 500;
    color: #252525;
}
.sect .sect_inner .bot_slide .item .pay strong {
    font-size: 20px;
}
.sect .sect_inner .bot_slide .item .above {
    font-size: 15px;
    color: #999;
    margin-left: 8px;
    text-decoration: line-through;
}

.sect + .sect {
    margin-top: 87px;
}


/* 인증상품  */
.sect.safety_sect .sect_inner_wrap {
    border-color: #009fe9;
}
.sect.safety_sect .sect_inner_wrap .left .se_tl {
    color: #009fe9;
}


/*  중간배너 */
.mid_banner {
    margin: 80px 0;
}
.mid_banner .bnr_slide .item {
    display: flex !important;
}
.mid_banner .bnr_slide .item a {
    display: inline-block;
    margin: 0 5px;
}
.mid_banner .bnr_slide .slick-track {
    display: flex;
}
.mid_banner .slick-arrow {
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    width: 35px;
    height: 35px;
    background-image: url(../img/btn/bnr_slidearrow.png);
    background-color: #477abc;
    border-radius: 50%;
}
.mid_banner .slick-arrow.slick-next {
    right: -10px;
}
.mid_banner .slick-arrow.slick-prev {
    left: -15px;
}


/* 세트상품  */
.sect.set_sect .sect_inner_wrap {
    border-color: #e84270;
}
.sect.set_sect .sect_inner_wrap .left .se_tl {
    color: #e84270;
}

/* 베스트상품  */
.sect.best_sect .sect_inner_wrap {
    border-color: #900982;
}
.sect.best_sect .sect_inner_wrap .left {
    margin-right: 44px;
}
.sect.best_sect .sect_inner_wrap .left .se_tl {
    color: #900982;
}

/* 신상품  */
.sect.new_sect .sect_inner_wrap {
    border-color: #24ad39;
}
.sect.new_sect .sect_inner_wrap .left {
    margin-right: 75px;
}
.sect.new_sect .sect_inner_wrap .left .se_tl {
    color: #24ad39;
}

/* 하단배너 */
.bot_banner {
    margin-top: 50px;
}

/* 고객센터 */
.service_sect {
    margin-top: 20px;
}
.service_sect .inner {
    display: flex;
}

.service_sect .ms_box {
    margin-left: 28px;
}
.service_sect .ms_box .ms_tit {
    font-size: 24px;
    font-weight: 600;
    color: #454545;
    margin-bottom: 15px;
    margin-top: 5px;
}
.service_sect .ms_box .call_txt {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
}
.service_sect .ms_box .ms_bot {
    font-size: 16px;
    color: #757575;
}
.service_sect .ms_box .call_txt2 {
    margin-top: 7px;
}
.service_sect .ms_btn_wrap {
    display:flex;
    margin-top: 19px;
}
.service_sect .ms_btn_wrap .btn {
    display:inline-block;
    font-size: 16px;
    font-weight: 600;
    width: 134px;
    line-height: 46px;
    text-align: center;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    box-sizing: border-box;
}

.service_sect .ms_btn_wrap .btn + .btn{
    margin-left: 6px;
}


/* 더보기 */


.more_box>button {
    display: table;
    margin: 0 auto;
    width: 220px;
    height: 45px;
    line-height: 45px;
    border: solid 1px #dcdcdc;
    outline: none;
    font-size: 14px;
}

.more_item {
    display: none;
}

.more_item.active {
    display: block;
}

.main_service {
    display: flex;
    margin: 40px 0;
    border: 1px solid #ddd;
}

.main_service>div {
    padding: 35px 30px 25px;
}

.main_service>div+div {
    width: 29.16%;
    border-left: solid 1px #ddd;
}

.main_service .ms_box02 ul li.ms_txt {
    font-size: 15px;
    color: #757575;
    margin-top: 20px;
}

.main_service .ms_box03 {
    width: 39.16%;
}

.main_service .noticee li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main_service .noticee li+li {
    margin-top: 12px;
}

.main_service .noticee .subject {
    width: calc(100% - 90px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    padding-right: 20px;
    color: #454545;
}

.main_service .noticee .date {
    width: 90px;
    font-size: 16px;
    color: #999;
}

.main_service .ms_top {
    margin-bottom: 16px;
}

.main_service .ms_top .ms_tit {
    margin: 0;
}

.main_service .more_ms {
    font-size: 14px;
    font-weight: 500;
    color: #252525;
}

.main_service .ms_tit {
    font-size: 20px;
    color: #252525;
    font-weight: bold;
    margin-bottom: 12px;
}

.main_service .call_txt {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    color: #252525;
}

.main_service .time_txt {
    display: flex;
}

.main_service .time_txt * {
    color: #757575;
    line-height: 1.5;
    font-size: 16px;
}

.main_service .call_txt2 {
    display: block;
    color: #757575;
    line-height: 1.3;
    font-size: 16px;
}

.main_service .acc_info {
    font-size: 26px;
    font-weight: bold;
    margin: 5px 0 18px;
    letter-spacing: -0.5px;
    color: #252525;
}

.main_service .bank_user {
    font-size: 16px;
    color: #454545;
}



.more_view {
    position: absolute;
    top: -30px;
    right: 0;
    color: #777777;
    font-size: 16px;
    font-weight: 600;
}

.item_tabmenu .more_view {
    top: 15px;
}

.item_view .item_box {
    border: none;
}

.new_sale_box {
    margin-top: 15px;
    height: 20px;
}

/* 공지사항-고객센터 영역 */

.main_service .ms_box02 {
    color: #252525;
}

.main_service .ms_box02 ul li {
    margin: 12px 0;
    font-size: 14px;
}

.main_service .ms_box02 ul li:after {
    content: "";
    display: block;
    clear: both;
}

.main_service .ms_box02 ul li strong {
    display: block;
    float: left;
    width: 30%;
}

.main_service .ms_box02 ul li span {
    display: block;
    float: left;
    width: 70%;
}

/* 공지사항-고객센터 영역 */


@media screen and (max-width: 850px) {
    .top_banner .bn_bot {
        display: block;
    }
    .banner_sec .bn_bot .mid, .banner_sec .bn_bot .right {
        display: inline-block;
        width: calc(50% - 5px);
        
        }
}