/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */

/*
 *  Owl Carousel - Core
 */

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    width: 100%;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-transform: translate(0) scale(1.0, 1.0);
    /* webkit full width issue */
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */

.no-js .owl-carousel {
    display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/*
 *     Owl Carousel - Auto Height Plugin
 */

.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

/*
 *     Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/*
 *     Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 100ms ease;
    transition: -webkit-transform 100ms ease;
    -o-transition: transform 100ms ease;
    transition: transform 100ms ease;
    transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

/*
 *     Navigation
 */

.owl-dots,
.owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-nav {}

.owl-nav .owl-prev {
    left: 0;
}

.owl-nav .owl-next {
    right: 0;
}

.owl-nav [class*=owl-] {
    position: absolute;
    color: #FFF;
    font-size: 14px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 3px;
    top: 50%;
    margin-top: -15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.owl-nav.disabled + .owl-dots {
    margin-top: 0
}

.owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
}
.owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #fff;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background: #47a3e9
}

/*
 *     owl-thumbs
 */

.owl-thumbs {
    display: table;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.owl-thumb-item {
    display: table-cell;
    width: 20%;
    border: none;
    background: none;
    padding: 0;
    opacity: .4;
}

.owl-thumb-item.active {
    opacity: 1;
}
@charset"UTF-8";
#gnb:after,#gnb:before,.gnb .sub_cate .lst_brand .brand_img:after,.gnb>li>a:after{
    content:''
}
.gnb .sub_cate a,.gnb .sub_cate a img{
    max-height:536px
}
.gnb .sub_cate>ul>li>a.on,.gnb .sub_cate>ul>li>a:hover,.gnb>li>a.on{
    font-weight:700
}
.gnb .sub_cate .lst_brand .brand_name,.gnb .thema .shop .txt{
    -webkit-box-orient:vertical;
    -webkit-line-clamp:1;
    word-wrap:break-word;
    white-space:nowrap
}
.gnb .sub_cate .lst_brand .brand_name,.gnb .thema .shop .txt,.search_info .txt_ell,.search_result .result_lst .txt_ell,.srch_cont .u_chkbx label,.tab_home .lst_more a{
    text-overflow:ellipsis;
    overflow:hidden
}
#wrap{
    min-width:1240px
}
#content,.global_width{
    width:1100px;
    margin:0 auto
}
#header .promotion_banner .ctrl_direction,#quick_menu .btn_chatbot a:before,#quick_menu .btn_history .ico_bul,#quick_menu .btn_latest_prd .ico_bul,#quick_menu .btn_pc_top a,#quick_menu .lst_etc .ci,#quick_menu .paginate button span,#quick_menu .slider_container .btn_del,#quick_menu .slider_container p .flag,.btn_gnb_toggle,.chatbot_wrapper .chatbot_cont .btn_close_pop span,.gnb .ico,.gnb .sub_cate .lst_brand .paginate button span,.gnb .sub_cate>ul>li>a:after,.gnb>li>a:after,.lst_home .ico_new,.ly_auto_keyword .bg_dnl,.ly_auto_keyword .bg_dnr,.pop_lastest_prd .btn_area .btn_shopzzim .ico,.pop_lastest_prd .btn_close_pop span,.pop_lastest_prd .date,.pop_lastest_prd .flag_txt .flag,.pop_lastest_prd .lst_item .btn span,.srh_area .bg_rnd,.srh_area .btn_del_srhword,.srh_area .btn_srh,.tab_home .btn_more_home span,.tab_home .lst_more .ico_a11y,.util_menu li .ico{
    overflow:hidden;
    display:inline-block;
    background-repeat:no-repeat;
    background-image:url(../images/main/sp_gnb.png)
}
#header{
    position:relative;
    min-width:980px;
    border-bottom:1px solid #ccc;
    letter-spacing:-.25px;
    z-index:71
}
#header #content,#header .global_width{
    position:relative;
    zoom:1
}
#header #content:after,#header .global_width:after{
    display:block;
    clear:both;
    content:''
}
#header h1{
    float:left;
    margin:20px 53px 0 0
}
#header h1 a{
    display:block;
    width:132px;
    height:57px
}
#header .promotion_banner{
    float:left;
    position:relative;
    width:250px;
    height:90px
}
#header .promotion_banner ul{
    overflow:hidden;
    position:absolute;
    left:55px;
    top:0;
    height:90px
}
#header .promotion_banner .ctrl_direction{
    position:absolute;
    left:55px;
    bottom:11px;
    width:30px;
    height:15px;
    background-position:-200px -52px;
    z-index:10
}
#header .promotion_banner .ctrl_direction button{
    float:left;
    width:15px;
    height:15px
}
#header .header_inner_wrap{
    background-repeat:no-repeat;
    background-size:1600px 144px;
    background-position:50% 0
}
.srh_area{
    float:left;
    position:relative;
    padding-top:27px
}
.srh_area .ui_input{
    float:left;
    position:relative;
    padding:0 51px 0 28px
}
.srh_area .ui_input.is_show .srh_label{
    display:none
}
.srh_area .ui_input.is_show .btn_del_srhword{
    display:block
}
.srh_area .ui_input_inner{
    height:44px;
    background-color:#f0f0f0;
    border-top:2px solid #f0f0f0;
    border-bottom:2px solid #f0f0f0
}
.srh_area .bg_rnd{
    position:absolute;
    top:0;
    left:0;
    width:28px;
    height:48px;
    background-position:-132px 0
}
.srh_area .srh_placeholder{
    overflow:hidden;
    position:absolute;
    left:28px;
    right:51px;
    top:0;
    bottom:0;
    font-size:14px;
    color:#007bc8
}
.srh_area .srh_placeholder dd{
    height:48px;
    line-height:48px
}
.srh_area .srh_placeholder:hover{
    cursor:text
}
.srh_area .input_txt{
    float:left;
    width:382px;
    height:44px;
    padding-right:50px;
    border:0;
    font-size:18px;
    line-height:44px;
    color:#111;
    background-color:transparent
}
.ly_auto_keyword,.srh_area.is_open .ui_input_inner{
    border-bottom:2px solid #009fd9;
    background-color:#fff
}
.srh_area .srh_label{
    display:none;
    position:absolute;
    left:28px;
    top:0;
    padding-top:7px;
    font-size:18px;
    line-height:50px;
    color:#767676
}
.srh_area .btn_del_srhword{
    display:none;
    position:absolute;
    top:21px;
    right:66px;
    width:20px;
    height:20px;
    background-position:-111px -101px;
    z-index:5
}
.srh_area .btn_srh{
    position:absolute;
    top:0;
    right:0;
    width:51px;
    height:48px;
    background-position:-161px 0
}
.srh_area .btn_srh button{
    display:block;
    overflow:hidden;
    width:26px;
    height:26px;
    margin-top:11px;
    line-height:999px
}
.srh_area.is_open{
    z-index:70
}
.srh_area.is_open .ui_input_inner{
    height:55px;
    border-top:2px solid #009fd9
}
.srh_area.is_open .bg_rnd{
    height:59px;
    background-position:-132px -148px
}
.srh_area.is_open .srh_placeholder{
    display:none
}
.srh_area.is_open .ly_auto_keyword,.srh_area.is_open .srh_label{
    display:block
}
.srh_area.is_open .input_txt{
    height:55px;
    line-height:56px
}
.srh_area.is_open .btn_srh{
    height:59px;
    background-position:-161px -148px
}
.srh_area.is_open .btn_srh button{
    margin-top:18px
}
.ly_auto_keyword{
    display:none;
    position:absolute;
    left:24px;
    right:24px;
    top:86px;
    padding-bottom:20px;
    z-index:70
}
.ly_auto_keyword .ly_inner{
    width:507px;
    margin:0 -24px;
    border-left:2px solid #009fd9;
    border-right:2px solid #009fd9;
    background-color:#fff
}
.ly_auto_keyword .bg_dnl,.ly_auto_keyword .bg_dnr{
    position:absolute;
    bottom:-2px;
    height:22px;
    width:24px
}
.ly_auto_keyword .bg_dnl{
    left:-24px;
    background-position:-240px 0
}
.ly_auto_keyword .bg_dnr{
    right:-24px;
    background-position:-266px 0
}
.ly_auto_keyword .u_tabmenu li:first-child a{
    border-left:0
}
.ly_auto_keyword .u_tabmenu li:last-child a{
    border-right:0
}
.ly_auto_keyword .u_tabmenu li.on a{
    color:#007bc8
}
.ly_auto_keyword .u_tabmenu li a{
    height:47px;
    line-height:48px;
    color:#767676;
    border-top:0
}
.ly_auto_keyword .ft_keyword{
    color:#007bc8
}
.ly_auto_keyword .ft_keyword .ico_arr{
    width:6px;
    height:11px;
    margin:-2px 7px 0 5px;
    background-position:-44px -133px;
    vertical-align:middle;
    overflow:hidden;
    display:inline-block;
    background-repeat:no-repeat;
    background-image:url(../img/common/cjmall/p/sp_bul.png)
}
.ly_auto_keyword .srh_time{
    position:absolute;
    top:2px;
    right:70px;
    font-size:13px;
    line-height:38px;
    color:#767676
}
.ly_auto_keyword .btn_delete_kwd{
    position:absolute;
    top:5px;
    right:18px;
    width:29px;
    height:29px;
    font-size:0;
    line-height:0
}
.ly_auto_keyword .ico_x{
    width:11px;
    height:11px;
    line-height:999px;
    background-position:-42px -70px;
    overflow:hidden;
    display:inline-block;
    background-repeat:no-repeat;
    background-image:url(../img/common/cjmall/p/sp_bt_x.png)
}
.ly_auto_keyword .btn_close_all{
    display:inline-block;
    position:relative;
    padding-right:50px;
    font-size:15px;
    line-height:16px;
    color:#767676;
    vertical-align:top
}
.ly_auto_keyword .srh_none p,.search_info a,.search_result .result_lst a{
    font-size:16px;
    color:#4d4d4d
}
.ly_auto_keyword .btn_close_all:active,.ly_auto_keyword .btn_close_all:focus,.ly_auto_keyword .btn_close_all:hover{
    background-color:transparent;
    text-decoration:none
}
.ly_auto_keyword .btn_close_all .ico_x{
    position:absolute;
    right:24px;
    top:50%;
    width:15px;
    height:15px;
    margin-top:-8px;
    background-position:0 -70px
}
.ly_auto_keyword .srh_none{
    display:none;
    padding:56px 0 34px;
    text-align:center
}
.search_result .result_lst li{
    position:relative
}
.search_result .result_lst a{
    display:block;
    padding:2px 145px 0 25px;
    line-height:38px
}
.search_result .result_lst a:active,.search_result .result_lst a:focus,.search_result .result_lst a:hover{
    background-color:#edfaff;
    text-decoration:none
}
.search_result .result_lst .txt_ell{
    display:block;
    white-space:nowrap
}
.search_result .result_lst .btn_input_kwd{
    position:absolute;
    top:5px;
    right:18px;
    width:29px;
    height:29px
}
.btn_gnb_toggle,.search_info .recent_lst li{
    position:relative
}
.search_result .result_lst .btn_input_kwd span{
    width:11px;
    height:11px;
    background-position:0 -121px;
    line-height:999px;
    overflow:hidden;
    display:inline-block;
    background-repeat:no-repeat;
    background-image:url(../img/common/cjmall/p/sp_module.png)
}
.search_result>.result_lst{
    padding-top:6px
}
.search_result .result_bx{
    padding:6px 0;
    background-color:#f9f9f9
}
.search_info{
    padding-top:6px
}
.search_info .popular_lst{
    overflow:hidden
}
.search_info .popular_lst li{
    float:left;
    width:49.9999%;
    height:40px
}
.search_info .recent_lst a{
    padding-right:145px
}
.search_info a{
    display:block;
    padding:3px 30px 0 27px;
    line-height:37px
}
.search_info a:active,.search_info a:focus,.search_info a:hover{
    background-color:#edfaff;
    text-decoration:none
}
.search_info .txt_ell{
    display:block;
    cursor:pointer;
    white-space:nowrap
}
.search_info .recent_dn{
    padding-top:15px;
    margin-top:9px;
    border-top:1px solid #d9d9d9;
    text-align:right
}
.search_info .rank_num{
    display:inline-block;
    width:18px;
    margin-right:9px;
    text-align:center
}
.search_info .txt_blue{
    color:#007bc8
}
.btn_gnb_toggle{
    float:left;
    width:65px;
    height:58px;
    margin-top:-3px;
    background-position:-66px 0
}
.btn_gnb_toggle .gnb_close{
    display:none
}
.btn_gnb_toggle.on{
    position:relative;
    background-position:0 0;
    z-index:55
}
#gnb,#gnb:after,#gnb:before{
    position:absolute;
    display:none
}
.btn_gnb_toggle.on .blind{
    display:none
}
.btn_gnb_toggle.on .gnb_close{
    display:block
}
#gnb{
    left:0;
    top:100%;
    min-width:179px;
    min-height:419px;
    border: 1px solid #726cff;
    background:#fff;
    z-index:80;
}
#gnb:after,#gnb:before{
    width:1px;
    background:#f4f4f4
}
.gnb,.gnb .sub_cate,.gnb>li>a{
    position:relative
}
#gnb.sub_cate_active{
    width:760px
}
#gnb.sub_cate_active:before{
    display:none;
    top:0;
    right:322px;
    bottom:0
}
#gnb.sub_cate_active.sub_depth_cate_active{
    width:978px
}
#gnb.sub_cate_active.sub_depth_cate_active:after{
    display:block;
    right:540px;
    top:32px;
    bottom:37px
}
#gnb.sub_cate_active.nobrand:before,#gnb.sub_cate_thema:before{
    display:none
}
#gnb.sub_cate_active.sub_depth_cate_active.nobrand{
    width:656px
}
#gnb.sub_cate_active.sub_depth_cate_active.nobrand:after{
    right:218px
}
#gnb.sub_cate_active.sub_depth_cate_active .lst_brand{
    left:438px
}
#gnb.sub_cate_active.nobrand{
    width:437px
}
#gnb.sub_cate_thema{
    width:978px
}
.category_wrap{
    clear:both
}
.gnb{
    width:218px;
    padding-bottom:6px;
    border-right:1px solid #eee
}
.gnb>li{
    border-top:1px solid #f4f4f4
}
.gnb>li>a{
    display:block;
    height:29px;
    padding:11px 0 0 41px;
    color:#4d4d4d;
    text-decoration:none;
    font-size:15px;
    line-height: 1;
}
.gnb>li>a.on{
    color:#726cff
}
.gnb>li>a.on:after{
    display:inline-block
}
.gnb>li>a:after{
    display:none;
    width:5px;
    height:9px;
    margin:3px 0 0 6px;
    background-position:-132px -49px;
    vertical-align:top
}
.gnb>li:first-child{
    border:0
}
.gnb>.m1>a{
    height:29px;
    padding-top:15px
}
.gnb>.m1>a .img_ico{
    top:15px
}
.gnb .sub_cate{
    display:none;
    float:left;
    left:436px;
    width:218px;
    height:536px;
    margin:-44px 0 0 -218px;
    border-left:1px solid #eee;
    font-size:14px;
    line-height:18px
}
.gnb .sub_cate>ul{
    padding:22px 0 0 31px
}
.gnb .sub_cate .lst_brand{
    display:none;
    position:absolute;
    top:0;
    left:217px;
    width:632px;
     height:536px;
    padding:0;
    color:#111
}
.gnb .sub_cate .lst_brand .tit{
    display:block;
    padding-top:23px;
    font-size:18px
}
.gnb .sub_cate .lst_brand ul{
    margin-left:-2px;
    font-size:15px
}
.gnb .sub_cate>ul>li>a{
    padding:5px 0;
    font-size:15px
}
.gnb .sub_cate .lst_brand ul li{
    float:left;
    text-align:center
}
.gnb .sub_cate .lst_brand ul li:nth-child(2){
    height:267px;
    background:#fff
}
.gnb .sub_cate .lst_brand ul li:last-child{
    height:266px;
    background:#fff
}
.gnb .sub_cate .lst_brand .brand_img{
    overflow:hidden;
    position:relative;
    width:130px;
    height:73px
}
.gnb .sub_cate .lst_brand .brand_img img{
    position:absolute;
    top:-100%;
    right:0;
    bottom:-100%;
    left:0;
    width:100%;
    height:auto;
    margin:auto
}
.gnb .sub_cate .lst_brand .brand_img:after{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    background:#000;
    opacity:.03
}
.ie8 .gnb .sub_cate .lst_brand .brand_img:after{
    content:none
}
.gnb .sub_cate .lst_brand .brand_name{
    margin-top:8px;
    color:#111;
    display:-webkit-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    width:100%;
    letter-spacing:-.5px
}
.gnb .sub_cate .lst_brand .paginate{
    position:absolute;
    top:19px;
    right:11px;
    width:93px;
    text-align:center
}
.gnb .sub_cate .lst_brand .paginate button{
    position:absolute;
    left:7px;
    top:-6px;
    width:27px;
    height:27px
}
.gnb .sub_cate .lst_brand .paginate button span{
    width:6px;
    height:11px;
    margin-left:10px;
    background-position:-153px -79px;
    line-height:999px;
    display:block
}
.gnb .sub_cate .lst_brand .paginate .btn_next_page{
    left:auto;
    right:8px
}
.gnb .sub_cate .lst_brand .paginate .btn_next_page span{
    background-position:-160px -79px
}
.gnb .sub_cate .lst_brand .paginate .current_status{
    font-size:12px;
    color:#767676
}
.gnb .sub_cate .lst_brand .paginate .current_status strong{
    color:#111
}
.gnb .sub_cate .lst_brand .data_error{
    position:absolute;
    top:50%;
    right:0;
    left:0;
    margin:-44px 0 0;
    text-align:center
}
.gnb .sub_cate .lst_brand .data_error p{
    margin-bottom:27px;
    color:#767676;
    font-size:16px
}
.gnb .sub_cate .lst_brand .data_error .u_btn{
    width:145px;
    background-color:#007bc8;
    border:1px solid #007bc8;
    color:#fff
}
.gnb .sub_cate a{
    display:block;
    padding:0;
    color:#666;
    text-decoration:none;
    overflow:hidden
}
.gnb .sub_cate a.on,.gnb .sub_cate a:hover{
    color:#726cff
}
.gnb .sub_cate>ul>li>a:after{
    display:none;
    width:5px;
    height:9px;
    margin:4px 0 0 11px;
    background-position:-132px -49px;
    vertical-align:top;
    content:''
}
.gnb .sub_cate>ul>li>a.on:after{
    display:inline-block
}
.gnb .thema{
    margin-bottom:-6px;
    background:#edfaff
}
.gnb .thema>a{
    color:#111
}
.gnb .thema .img_ico{
    background:url(../img/common/cjmall/p/ico_thema_shop.png) no-repeat
}
.gnb .thema .shop{
    left:978px;
    width:699px;
    margin-left:-760px;
    padding:0 30px 22px
}
.gnb .thema .shop ul{
    overflow:hidden;
    margin-left:-2px;
    padding:3px 0 0
}
.gnb .thema .shop ul li{
    float:left;
    width:173px;
    margin-left:2px;
    padding:22px 0 0
}
.gnb .thema .shop a{
    padding:0;
    text-align:center
}
.gnb .thema .shop a>span{
    display:block
}
.gnb .thema .shop a:hover{
    color:#666;
    font-weight:400
}
.gnb .thema .shop .shop_img{
    overflow:hidden;
    position:relative;
    width:173px;
    height:78px;
    margin-bottom:10px
}
.gnb .thema .shop .shop_img img{
    position:absolute;
    top:0;
    right:0;
    left:0;
    width:100%;
    height:auto
}
.gnb .thema .shop .shop_img:after{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    background:#000;
    opacity:.03;
    content:''
}
.ie8 .gnb .thema .shop .shop_img:after{
    content:none
}
.gnb .thema .shop .logo{
    width:173px;
    height:26px
}
.gnb .thema .shop .logo img{
    width:100%
}
.gnb .thema .shop .txt{
    display:-webkit-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    width:100%
}
.gnb>.m2 .sub_cate{
    margin-top:-85px
}
.gnb>.m3 .sub_cate{
    margin-top:-126px
}
.gnb>.m4 .sub_cate{
    margin-top:-167px
}
.gnb>.m5 .sub_cate{
    margin-top:-208px
}
.gnb>.m6 .sub_cate{
    margin-top:-249px
}
.gnb>.m7 .sub_cate{
    margin-top:-290px
}
.gnb>.m8 .sub_cate{
    margin-top:-331px
}
.gnb>.m9 .sub_cate{
    margin-top:-372px
}
.gnb>.m10 .sub_cate{
    margin-top:-413px
}
.gnb>.m11 .sub_cate{
    margin-top:-454px
}
.gnb>.m12 .sub_cate{
    margin-top:-495px
}
.gnb>.m13 .sub_cate{
    margin-top:-536px
}
.gnb>.m14 .sub_cate{
    margin-top:-577px
}
.gnb>.m15 .sub_cate{
    margin-top:-618px
}
.gnb>.m16 .sub_cate{
    margin-top:-659px
}
.gnb .ico,.gnb .img_ico{
    position:absolute;
    left:13px;
    top:11px;
    width:19px;
    height:19px
}
.gnb .m1 .ico{
    background-position:0 -59px
}
.gnb .m2 .ico{
    background-position:-20px -59px
}
.gnb .m3 .ico{
    background-position:-40px -59px
}
.gnb .m4 .ico{
    background-position:-60px -59px
}
.gnb .m5 .ico{
    background-position:-80px -59px
}
.gnb .m6 .ico{
    background-position:-100px -59px
}
.gnb .m7 .ico{
    background-position:-120px -59px
}
.gnb .m8 .ico{
    background-position:-140px -59px
}
.gnb .m9 .ico{
    background-position:-160px -59px
}
.gnb .m10 .ico{
    background-position:-180px -59px
}
.gnb .sub_depth_cate{
    display:none;
    float:left;
    position:relative;
    left:406px;
    width:217px;
    margin:-53px 0 0 -217px;
    font-size:13px;
    line-height:18px
}
.gnb .sub_depth_cate>ul{
    padding:23px 0 23px 30px
}
.gnb .sub_cate .m2 .sub_depth_cate{
    margin-top:-83px
}
.gnb .sub_cate .m3 .sub_depth_cate{
    margin-top:-113px
}
.gnb .sub_cate .m4 .sub_depth_cate{
    margin-top:-143px
}
.gnb .sub_cate .m5 .sub_depth_cate{
    margin-top:-173px
}
.gnb .sub_cate .m6 .sub_depth_cate{
    margin-top:-203px
}
.gnb .sub_cate .m7 .sub_depth_cate{
    margin-top:-233px
}
.gnb .sub_cate .m8 .sub_depth_cate{
    margin-top:-263px
}
.gnb .sub_cate .m9 .sub_depth_cate{
    margin-top:-293px
}
.gnb .sub_cate .m10 .sub_depth_cate{
    margin-top:-323px
}
.gnb .sub_cate .m11 .sub_depth_cate{
    margin-top:-353px
}
.gnb .sub_cate .m12 .sub_depth_cate{
    margin-top:-383px
}
.gnb .sub_cate .m13 .sub_depth_cate{
    margin-top:-413px
}
.gnb .sub_cate .m14 .sub_depth_cate{
    margin-top:-443px
}
.gnb .sub_cate .m15 .sub_depth_cate{
    margin-top:-473px
}
.gnb .sub_cate .m16 .sub_depth_cate{
    margin-top:-503px
}
.gnb .sub_cate .m17 .sub_depth_cate{
    margin-top:-533px
}
.gnb .sub_cate .m18 .sub_depth_cate{
    margin-top:-563px
}
.tab_home{
    float:left;
    position:relative;
    margin-top:6px;
    padding-right:25px;
    font-size:16px
}
.tab_home .tab_home_more{
    position:absolute;
    height:38px;
    top:10px;
    right:-20px
}
.tab_home .btn_more_home{
    display:block;
    margin:-13px -13px 0 0;
    padding:13px 13px 16px
}
.tab_home .btn_more_home span{
    display:block;
    overflow:hidden;
    width:25px;
    height:25px;
    background-position:-213px 0;
    line-height:999px
}
.tab_home .btn_more_home.on span{
    background-position:-213px -26px
}
.tab_home .btn_more_home.on+.lst_more{
    display:block
}
.tab_home .lst_more{
    display:none;
    position:absolute;
    top:100%;
    right:-10px;
    width:153px;
    border:1px solid #59c9ee;
    background:#fff;
    z-index:110
}
.lst_home li,.util_menu .cart.on{
    position:relative
}
.tab_home .lst_more .ico_a11y{
    float:right;
    width:11px;
    height:7px;
    margin:-7px 16px 0 0;
    background-position:-138px -49px
}
.tab_home .lst_more li{
    border-top:1px solid #f4f4f4
}
.tab_home .lst_more li:first-child{
    border-top:0
}
.tab_home .lst_more a{
    display:block;
    height:50px;
    padding-left:16px;
    color:#111;
    line-height:53px;
    white-space:nowrap;
    text-decoration:none
}
.lst_home_wrap{
    overflow:hidden;
    height:49px
}
.lst_home{
    float:left;
    margin-left:10px;
    line-height:49px
}
.lst_home li{
    float:left;
    margin-left:9px;
    text-align:center
}
.lst_home a{
    float:left;
    color:#111;
    text-decoration:none
}
.lst_home a .m_name{
    float:left;
    height:49px;
    padding:0 10px;
    font-size:16px
}
.lst_home a.new .m_name{
    margin-left:-9px
}
.lst_home a.on .m_name,.lst_home a:hover .m_name{
    font-weight:700;
    border-bottom:2px solid #111;
    box-sizing:border-box
}
.lst_home a .ico_reg{
    float:left;
    margin:14px 1px 0 11px
}
.lst_home a .ico_reg img{
    display:block;
    height:20px
}
.lst_home li:first-child{
    margin-left:0
}
.lst_home .ico_new{
    float:left;
    width:17px;
    height:17px;
    margin:15px 2px 0 -1px;
    background-position:-200px -68px;
    line-height:999px
}
.rn_util_menu {float:right;}
.rn_util_menu .list_util {padding:6px 80px 0 0;}
.rn_util_menu .list_util li {position:relative;float:left;margin-left:38px;}
.rn_util_menu .list_util li:first-child {margin-left:0;}
.rn_util_menu .list_util li img {display:block;margin:0 auto;}
.rn_util_menu .list_util li span {display:block;color:#111;font-size:11px; margin-top:5px;}
.rn_util_menu .list_util li .num_basket {position:absolute;top:-8px;right:-10px;height:17px;padding:0 6px;border-radius:20px;background:#ea493e;color:#fff;font-size:11px;font-weight:bold;}
.util_menu{
    float:right;
    margin:8px 0 0;
    width:200px;
    text-align:right
}
.util_menu ul{
    display:inline-block;
    zoom:1
}
.util_menu ul:after{
    display:block;
    clear:both;
    content:''
}
.util_menu li{
    float:left;
    width:34px;
    margin-left:24px;
    color:#767676;
    font-size:13px;
    text-align:center;
    white-space:nowrap
}
.util_menu li .ico{
    display:block;
    margin:0 auto 5px
}
.util_menu li a{
    display:block;
    color:#767676;
    line-height:1;
    text-decoration:none
}
.util_menu li:first-child{
    margin-left:0
}
.util_menu .cart .blind,.util_menu .cart .num{
    display:none
}
.util_menu .log_in .ico{
    width:22px;
    height:20px;
    background-position:0 -79px
}
.util_menu .log_out{
    width:46px
}
.util_menu .log_out .ico{
    width:24px;
    height:20px;
    background-position:-102px -79px
}
.util_menu .myzone .ico{
    width:20px;
    height:20px;
    background-position:-23px -79px
}
.util_menu .cart{
    width:46px
}
.util_menu .cart .ico{
    width:28px;
    height:21px;
    margin:0 0 4px 7px;
    background-position:-44px -79px
}
.util_menu .cart.on .blind,.util_menu .cart.on .num{
    display:block
}
.util_menu .cart.on .ico{
    background-position:-73px -79px
}
.util_menu .cart.on .num{
    position:absolute;
    left:14px;
    top:-2px;
    width:19px;
    font-size:13px;
    color:#da006b;
    line-height:15px;
    text-align:center;
    font-weight:400
}
@keyframes scale{
    0%,100%{
        transform:scale(1);
        background-color:#f8961d
    }
    16%{
        transform:scale(.6);
        background-color:#f8961d
    }
    18%{
        transform:scale(.7);
        background-color:#f64e54
    }
    32%{
        transform:scale(1);
        background-color:#f64e54
    }
    48%{
        transform:scale(.6);
        background-color:#f64e54
    }
    50%{
        transform:scale(.7);
        background-color:#019bf2
    }
    64%{
        transform:scale(1);
        background-color:#019bf2
    }
    82%{
        transform:scale(.6);
        background-color:#019bf2
    }
    84%{
        transform:scale(.7);
        background-color:#f8961d
    }
}
@keyframes scale-back{
    0%,100%{
        transform:scale(.6);
        background-color:#f64e54
    }
    2%{
        transform:scale(.7);
        background-color:#019bf2
    }
    16%{
        transform:scale(1);
        background-color:#019bf2
    }
    32%{
        transform:scale(.6);
        background-color:#019bf2
    }
    34%{
        transform:scale(.7);
        background-color:#f8961d
    }
    48%{
        transform:scale(1);
        background-color:#f8961d
    }
    64%{
        transform:scale(.6);
        background-color:#f8961d
    }
    66%{
        transform:scale(.7);
        background-color:#f64e54
    }
    82%{
        transform:scale(1);
        background-color:#f64e54
    }
}
.blind,legend{
    visibility:hidden;
    overflow:hidden;
    position:absolute;
    top:0;
    left:0;
    width:1px;
    height:1px;
    font-size:0;
    line-height:0
}
.main-content{
    position:relative;
    margin:40px auto 0;
    width:1081px;
    min-height:478px
}
.main-content h2{
    text-align:center;
    font-size:30px;
    color:#222;
    background:url(../images/180822/common-title-bg.png) center 56% no-repeat
}
.main-content h2>.title{
    display:inline-block;
    padding:0 20px;
    background-color:#fff
}
.styleshop{
    width:1081px;
    height:220px;
    min-height:210px;
    overflow:hidden
}
.styleshop h2{
    margin:0 auto;
    width:1081px;
    font-size:20px;
    height:24px;
    background:url(../images/180822/styleshop-title-bg.png) left 80% no-repeat
}
.styleshop h2 .subtitle{
    font-size:16px;
    color:#888;
    font-weight:400
}
.styleshop .btn-wrap{
    position:absolute;
    display:inline-block;
    right:0;
    height:30px;
    padding-left:15px;
    background-color:#fff
}
.styleshop .btn-wrap .close-btn,.styleshop.on .btn-wrap .more-btn{
    display:none
}
.styleshop.on{
    height:auto
}
.styleshop .styleshop-list{
    margin-top:26px
}
.styleshop .styleshop-list li{
    display:inline-block;
    margin:0 25px 30px 0;
    text-align:center;
    min-height:160px
}
.styleshop .styleshop-list li.line-last-item{
    margin-right:0
}
.styleshop .styleshop-list li a{
    font-size:14px;
    color:#222
}
.styleshop .styleshop-list li a>img{
    display:block;
    margin:0 auto 10px;
    width:125px
}
.goodlucktem{
    height:520px
}
.goodlucktem .bl-hor-card-slide-wrap .slide-contents{
    margin-top:16px
}
.goodlucktem h2 .view-bt{
    display:inline-block;
    vertical-align:middle;
    border:1px solid #e8e8e8;
    padding:7px 9px 8px;
    font-size:14px
}
.goodlucktem h2 .view-bt:hover{
    text-decoration:none;
    font-weight:700
}
.bl-hor-card-slide-wrap{
    overflow:hidden
}
.bl-hor-card-slide-wrap .slide-contents{
    white-space:nowrap;
    margin:18px 0 58px;
    font-size:0
}
.bl-hor-card-slide-wrap .slide-contents li{
    display:inline-block;
    vertical-align:top;
    overflow:hidden;
    width:338px
}
.bl-hor-card-slide-wrap .slide-contents li a{
    display:block;
    position:relative;
    border:1px solid #e5e5e5;
    height:100%;
    color:#222;
    width:338px
}
.bl-hor-card-slide-wrap .slide-contents li a>span{
    display:block;
    width:100%;
    font-size:15px;
    white-space:normal
}
.bl-hor-card-slide-wrap .slide-contents li img{
    max-width:338px!important
}
.bl-hor-card-slide-wrap .slide-contents li a img{
    display:block;
    max-width:338px
}
.bl-hor-card-slide-wrap .slide-contents li a span.won{
    display:inline
}
.bl-hor-card-slide-wrap.type3 .slide-contents li{
    width:338px
}
.bl-hor-card-slide-wrap.type3 .slide-contents li a .label-wrap{
    position:relative;
    text-align:center;
    display:block
}
.bl-hor-card-slide-wrap.type3 .slide-contents li a .label-wrap span{
    overflow:hidden
}
.bl-hor-card-slide-wrap.type3 .slide-contents li a .label-wrap .label-pos-wrap{
    position:absolute;
    top:0;
    left:0;
    padding-bottom:35px;
    padding-top:35px
}
.bl-hor-card-slide-wrap.type3 .slide-contents li a .label-wrap .main-label{
    display:block;
    margin-top:10px;
    padding:0 20px;
    width:298px;
    height:33px;
    font-size:20px;
    letter-spacing:-1px;
    font-weight:700
}
.bl-hor-card-slide-wrap.type3 .slide-contents li a .label-wrap .main-label.no-price{
    margin-top:25px
}
.bl-hor-card-slide-wrap.type3 .slide-contents li a .label-wrap .price-label{
    margin:10px auto 0;
    width:96%;
    height:26px;
    font-size:14px;
    line-height:26px
}
.bl-hor-card-slide-wrap.type3 .slide-contents li a .label-wrap .price-label>span{
    display:inline
}
.bl-hor-card-slide-wrap.type3 .slide-contents li a .label-wrap .price-label>strong{
    font-size:20px;
    vertical-align:bottom
}
.bl-hor-card-slide-wrap.type3 .slide-contents li a img{
    width:338px
}
.bl-hor-card-slide-wrap.type4 .slide-contents li{
    width:247px;
    height:330px
}
.bl-hor-card-slide-wrap.type4 .slide-contents li a{
    color:#000;
    border:0
}
.bl-hor-card-slide-wrap.type4 .slide-contents li a .main-label{
    display:block;
    margin-top:15px;
    height:38px;
    line-height:20px;
    font-size:15px;
    color:#666;
    overflow:hidden
}
.bl-hor-card-slide-wrap.type4 .slide-contents li a .price-label{
    margin-top:12px;
    font-size:15px
}
.bl-hor-card-slide-wrap.type4 .slide-contents li a .price-label>span{
    display:inline
}
.bl-hor-card-slide-wrap.type4 .slide-contents li a img{
    height:247px;
    position:relative
}
.bl-hor-card-slide-wrap .slider-direction{
    margin-bottom:20px;
    text-align:right
}
.scpromo{
    font-size:0;
    min-height:844px
}
.scpromo .scpromo-main-area{
    display:inline-block;
    margin-top:40px;
    margin-right:23px;
    width:640px;
    font-size:14px
}
.scpromo .scpromo-main-area .scpromo-main-banner{
    position:relative;
    display:block;
    width:640px;
    height:396px
}
.scpromo .scpromo-main-area .scpromo-main-banner img{
    width:640px;
    height:396px
}
.scpromo .scpromo-main-area .scpromo-main-banner .img-cover{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%
}
.scpromo .scpromo-main-area .scpromo-main-banner .banner-label{
    position:absolute;
    left:0;
    bottom:32px;
    width:100%;
    color:#fff
}
.scpromo .scpromo-main-area .scpromo-main-banner .banner-label span{
    display:block;
    height:23px;
    font-size:17px;
    text-align:center;
    overflow:hidden
}
.scpromo .scpromo-main-area .scpromo-main-banner .banner-label span.main-label{
    height:33px;
    font-size:25px;
    font-weight:700
}
.scpromo .minicard-area{
    display:block;
    border:1px solid #e5e5e5;
    font-size:0
}
.scpromo .minicard-area .minicard{
    display:inline-block;
    width:212px;
    height:308px;
    border-right:1px solid #e5e5e5;
    vertical-align:top;
    text-align:center
}
.scpromo .minicard-area .minicard.last,.scpromo .minicard-area .minicard:last-child{
    border-right:0
}
.scpromo .minicard-area .minicard img{
    width:192px;
    margin:10px 0
}
.scpromo .minicard-area .minicard>span{
    display:block;
    padding:0 15px
}
.scpromo .minicard-area .minicard .main-label{
    padding:14px 15px 0;
    height:36px;
    font-size:14px;
    color:#666;
    overflow:hidden;
    text-align:left
}
.scpromo .minicard-area .minicard .price-label{
    margin-top:11px;
    font-size:16px;
    color:#000;
    text-align:left
}
.scpromo .scpromo-slide-area{
    display:inline-block;
    margin-top:40px;
    width:418px;
    vertical-align:top;
    overflow:hidden
}
.scpromo .scpromo-slide-area .slide-contents{
    white-space:nowrap
}
.scpromo .scpromo-slide-area .slide-contents li{
    display:inline-block;
    margin-bottom:12px;
    width:418px;
    min-height:674px;
    vertical-align:top
}
.scpromo .scpromo-slide-area .slide-contents li .large-text-banner{
    display:block;
    position:relative;
    border:none
}
.scpromo .scpromo-slide-area .slide-contents li .large-text-banner>a{
    display:block
}
.scpromo .scpromo-slide-area .slide-contents li .large-text-banner img{
    width:100%;
    max-width:416px;
    height:310px;
    max-height:310px
}
.scpromo .scpromo-slide-area .slide-contents li .large-text-banner span{
    display:block;
    padding:0 19px;
    height:21px;
    font-size:15px;
    color:#222;
    overflow:hidden
}
.promotion .promo-content .small-text-banner .main-label,.scpromo .scpromo-slide-area .slide-contents li .large-text-banner .main-label{
    padding-top:15px;
    font-weight:700
}
.promotion .promo-content .small-text-banner .sub-label,.scpromo .scpromo-slide-area .slide-contents li .large-text-banner .sub-label{
    padding-bottom:15px
}
.scpromo .scpromo-slide-area .slider-indicator{
    margin-top:5px
}
.promotion{
    font-size:0;
    min-height:622px
}
.promotion .promo-content{
    display:inline-block;
    margin:40px 30px 0 0;
    width:278px
}
.promotion .promo-content.content-center{
    width:401px;
    background-color:#fdf0f6;
    vertical-align:top;
    overflow:hidden
}
.promotion .promo-content.content-right{
    margin-right:0
}
.promotion .promo-content .small-text-banner{
    display:block;
    position:relative
}
.promotion .promo-content .small-text-banner img{
    width:278px;
    height:172px
}
.promotion .promo-content .small-text-banner span{
    display:block;
    height:21px;
    font-size:15px;
    color:#222;
    overflow:hidden
}
.promotion .promo-content.content-center{
    padding:47px 32px 14px;
    min-height:423px
}
.promotion .promo-content.content-center .slide-contents{
    white-space:nowrap
}
.promotion .promo-content.content-center .slide-contents li{
    display:inline-block;
    background:#fff
}
.promotion .promo-content.content-center .slide-contents li a{
    display:block
}
.promotion .promo-content.content-center .slide-contents li img{
    display:block;
    margin:59px 0 13px;
    width:400px;
    height:248px
}
.promotion .promo-content.content-center .slide-contents li span{
    display:block;
    width:400px;
    height:24px;
    font-size:18px;
    color:#222;
    text-align:center;
    overflow:hidden
}
.promotion .promo-content.content-center .slide-contents li span.main-label{
    margin-bottom:4px;
    font-size:28px;
    height:45px;
    font-weight:700
}
.promotion .promo-content.content-center .slider-direction{
    text-align:center
}
.category-product{
    min-height:572px
}
.category-product .menu-separator{
    position:absolute;
    display:block;
    top:164px;
    border-bottom:1px solid #ccc;
    width:100%
}
.category-product .category-list{
    white-space:nowrap;
    margin-top:30px;
    font-size:0;
    text-align:center
}
.category-product .category-list li{
    position:relative;
    display:inline-block;
    padding-bottom:6px;
    width:135px;
    text-align:center;
    vertical-align:top
}
.category-product .category-list li.on:after{
    content:url(../images/180822/category-menu-on-ico.png);
    position:absolute;
    left:62px;
    bottom:0
}
.category-product .category-list li a{
    display:block;
    height:95px
}
.category-product .category-list li a span{
    font-size:15px;
    color:#222
}
.category-product .category-list li a .category-icon{
    display:block;
    margin:0 auto;
    width:40px;
    height:46px;
    background:url(../images/180822/category-menu-icon.png) 40px no-repeat
}
.category-product .category-list li.on a .category-icon{
    background:url(../images/180822/category-menu-icon-hover.png) 40px no-repeat
}
.category-product .category-list li.CateSect01 a .category-icon{
    background-position:-10px -10px
}
.category-product .category-list li.CateSect02 a .category-icon{
    background-position:-70px -10px
}
.category-product .category-list li.CateSect03 a .category-icon{
    background-position:-130px -10px
}
.category-product .category-list li.CateSect04 a .category-icon{
    background-position:-190px -10px
}
.category-product .category-list li.CateSect05 a .category-icon{
    background-position:-250px -10px
}
.category-product .category-list li.CateSect06 a .category-icon{
    background-position:-310px -10px
}
.category-product .category-list li.CateSect07 a .category-icon{
    background-position:-370px -10px
}
.category-product .category-list li.CateSect08 a .category-icon{
    background-position:-430px -10px
}
.category-product .slide-contents{
    display:none;
    margin:30px 0 40px
}
.category-product .slide-contents.on{
    display:block
}
.category-product .slide-contents li{
    margin-right:32px
}
.category-product .slide-contents li:last-child{
    margin:0
}
.slider-container .slider-direction button{
    width:32px;
    height:32px;
    line-height:32px;
    font-size:0;
    padding:0;
    border:1px solid #CCC;
    background-color:#FFF
}
.slider-container .slider-direction button a{
    display:block;
    width:100%;
    height:100%
}
.slider-container .slider-direction button.slider-next.last:before,.slider-container .slider-direction button.slider-prev.first:before,.slider-container .slider-direction button:disabled{
    opacity:.5
}
.slider-container .slider-direction span.slider-pager{
    height:32px;
    line-height:32px;
    font-size:14px;
    font-weight:700;
    color:#222;
    padding:0 10px;
    letter-spacing:1px;
    vertical-align:middle;
    display:inline-block
}
.main-visual .main-slide{
    height:390px
}
.main-visual .main-slide div{
    width:100%;
    height:100%
}
.main-visual .bx-wrapper{
    margin:0;
    border:none
}
.main-visual .bx-wrapper .bx-controls-direction a{
    background:0 0!important;
    text-indent:unset;
    font-size:40px;
    z-index:1
}
.main-visual .bx-wrapper .bx-prev{
    left:0
}
.main-visual .bx-wrapper .bx-next{
    right:0
}
.main-visual .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager{
    width:100%;
    bottom:30px;
    text-align:center
}
.main-visual .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto{
    bottom:30px;
    right:460px;
    z-index:1
}
.main-visual .bx-wrapper .bx-pager.bx-default-pager a{
    background:rgba(0,0,0,.5)
}
.bx-wrapper{
    -webkit-box-shadow:none!important;
    -moz-box-shadow:none!important;
    box-shadow:none!important;
    margin-bottom:0!important
}
.ab-div{
    position:absolute;
    bottom:0
}
.cate_side{
    background:#fff;
    float:left;
    margin-top:30px;
    position:absolute;
    padding:10px;
    width:180px;
    border:1px solid #dddce1
}
.cate_side.is_fixed{
    position:fixed;
    top:0;
    right:0;
    left:0;
    z-index:20;
    width:auto
}
.cate_side.is_fixed .cate_side_in{
    position:relative;
    width:1240px;
    margin:0 auto
}
.cate_side.is_fixed .side{
    position:absolute;
    top:0;
    left:130px;
    width:20%;
    min-width:210px;
    padding:13px 0 3px;
    background:#fff
}
.cate_side .block_box p{
    padding:10px 10px 10px 0;
    color:#007bc8;
    font-weight:700;
    font-size:14px;
    position:relative
}
.cate_side .block_box i{
    border:solid #000;
    border-width:0 1px 1px 0;
    display:inline-block;
    padding:3px;
    position:absolute;
    right:10px
}
/*.up{
    transform:rotate(-135deg);
    -webkit-transform:rotate(-135deg)
}
.down{
    transform:rotate(45deg);
    -webkit-transform:rotate(45deg)
}*/
.cate_side .cate_menu{
    padding-bottom:12px
}
.cate_side .cate_menu .tit_cate{
    padding-top:6px
}
.cate_side .btn_more_cate{
    height:35px;
    margin:6px 0 8px;
    border-color:#c5c5c5;
    font-size:0
}
.cate_side .btn_more_cate span{
    position:relative;
    margin-top:2px;
    color:#767676;
    font-size:13px
}
.cate_side .btn_more_cate .txt_close{
    display:none
}
.cate_side .btn_more_cate .ico{
    display:inline-block;
    position:relative;
    width:7px;
    height:7px;
    margin:5px 0 0 4px;
    vertical-align:top
}
.cate_side .btn_more_cate .ico:after,.cate_side .btn_more_cate .ico:before{
    position:absolute;
    background:#999;
    content:''
}
.cate_side .btn_more_cate .ico:after{
    top:3px;
    left:0;
    right:0;
    height:1px
}
.cate_side .btn_more_cate .ico:before{
    top:0;
    bottom:0;
    left:3px;
    width:1px
}
.cate_side .btn_more_cate.active span{
    display:none
}
.cate_side .btn_more_cate.active .txt_close{
    display:inline-block
}
.cate_side .btn_more_cate.active .ico:before{
    display:none
}
.cont_listing{
    position:relative;
    float:right;
    width:80%;
    z-index:1 margin-top: 20px
}
.cont_listing.no_result{
    width:100%;
    float:none;
    margin:0
}
.cont_listing .dm06c{
    margin:20px 10px 30px
}
.cate_menu a{
    display:block;
    padding:6px 0;
    font-size:12px;
    color:#111;
    line-height:18px;
    text-decoration:none
}
.cate_menu a.on,.cate_menu a.tit_cate.on,.cate_menu a.tit_cate:focus,.cate_menu a.tit_cate:hover,.cate_menu a:focus,.cate_menu a:hover{
    color:#007bc8
}
.cate_menu .tit_cate,.cate_menu .tit_cate a{
    line-height:20px;
    display:block;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden
}
.cate_menu a:hover{
    cursor:pointer
}
.cate_menu .tit_cate{
    position:relative;
    margin-bottom:10px;
    padding:0 0 14px;
    font-weight:400;
    font-size:12px;
    color:#007bc8;
    width:150px
}
.cate_menu .tit_cate:after{
    position:absolute;
    bottom:0;
    left:0;
    width:20px;
    height:1px;
    background:#d9d9d9;
    content:''
}
.cate_menu .tit_cate a{
    padding:0;
    font-size:16px;
    width:150px
}
.cate_menu .lst_cate .lst_m_cate{
    padding-top:0;
    padding-left:10px
}
.cate_menu .lst_m_cate{
    padding-top:1px
}
.cate_menu .lst_m_cate a{
    padding:4px 0 5px
}
.cate_menu .lst_s_cate{
    margin-top:2px;
    padding-bottom:2px
}
.cate_menu .lst_s_cate a{
    padding:3px 0;
    font-size:13px;
    color:#767676
}
.cate_menu .lst_s_cate a.on,.cate_menu .lst_s_cate a:focus,.cate_menu .lst_s_cate a:hover{
    color:#007bc8
}
.cate_side.fixed{
    position:fixed!important;
    bottom:20px
}
.srch_cont{
    position:relative;
    z-index:20;
    padding:18px 0 17px;
    border-top:1px solid #e5e5e5
}
.srch_cont:last-child{
    padding-bottom:0
}
.srch_cont .u_ipbx{
    height:28px;
    border:1px solid #d9d9d9
}
.srch_cont .u_ipbx .int{
    width:100%;
    height:18px;
    padding:6px 0 4px;
    box-sizing:content-box;
    border:0;
    font-size:13px;
    line-height:18px;
    color:#767676;
    vertical-align:top
}
.srch_cont .u_chkbx{
    display:block;
    height:auto;
    padding-left:0;
    line-height:18px;
    vertical-align:top
}
.srch_cont .u_chkbx input[type=checkbox]{
    display:inline-block;
    width:13px;
    height:13px;
    margin-top:-11px
}
.srch_cont .u_chkbx input[type=checkbox]:checked+label{
    color:#007bc8
}
.srch_cont .u_chkbx input[type=checkbox]:checked+label:after{
    background-position:-15px -135px
}
.srch_cont .u_chkbx input[type=checkbox]:focus+label:before{
    position:absolute;
    left:0;
    top:0;
    width:13px;
    height:13px;
    border:1px dotted #111;
    z-index:10;
    content:'';
    -webkit-box-sizing:border-box;
    box-sizing:border-box
}
.ie8 .srch_cont .u_chkbx input[type=checkbox]:focus+label:before{
    margin-top:3px
}
.srch_cont .u_chkbx label{
    font-size:13px;
    color:#767676;
    white-space:nowrap
}
.srch_cont .u_chkbx label:after{
    top:1px;
    width:13px;
    height:13px;
    margin-top:0;
    background-position:0 -135px
}
.srch_cont .tit{
    font-size:14px;
    line-height:20px;
    font-weight:400
}
.srch_cont .lst_srch_opt{
    margin-top:9px
}
.srch_cont .lst_srch_opt li{
    margin-top:6px
}
.srch_cont .lst_srch_opt li:first-child{
    margin-top:0
}
.srch_cont .btn_more{
    position:absolute;
    bottom:17px;
    right:0;
    padding-right:10px;
    font-size:13px;
    line-height:20px;
    color:#767676
}
.srch_cont .btn_more .ico{
    position:absolute;
    top:50%;
    right:0;
    width:7px;
    height:7px;
    margin-top:-4px;
    background-position:-81px -125px;
    overflow:hidden;
    display:inline-block;
    background-repeat:no-repeat;
    background-image:url(../../tpl/franchise/default/pc/skin1/images/180822/sp_bul.png)
}
.srch_cont .btn_more.on{
    color:#007bc8
}
.srch_cont .btn_more.on .ico{
    background-position:-72px -125px
}
.srch_cont .price_opt{
    position:relative;
    margin-top:1px;
    margin-left:-20px;
    padding:14px 40px 10px 20px
}
.srch_cont .price_opt .price_bar{
    position:relative;
    width:140px;
    height:6px;
    background:#e5e5e5;
    border-radius:5px
}
.srch_cont .price_opt .price_bar .price{
    position:absolute;
    top:0;
    bottom:0;
    background:#007bc8
}
.srch_cont .inp_srch .btn_delete .ico,.srch_cont .inp_srch .btn_srch .ico,.srch_cont .price_opt .price_bar .ctrl_wrap .ctrl{
    overflow:hidden;
    display:inline-block;
    background-repeat:no-repeat
}
.srch_cont .price_opt .price_bar .ctrl_wrap{
    position:relative;
    width:133px
}
.srch_cont .price_opt .price_bar .ctrl_wrap .ctrl{
    position:absolute;
    top:-4px;
    width:13px;
    height:20px;
    background-position:-25px -78px;
    cursor:pointer;
    background-image:url(../../tpl/franchise/default/pc/skin1/images/180822/sp_module.png)
}
.srch_cont .inp_srch .btn_srch{
    position:absolute;
    top:0;
    right:0;
    width:30px;
    height:30px
}
.srch_cont .inp_srch .btn_srch .ico{
    width:14px;
    height:14px;
    margin-top:7px;
    background-position:-48px -372px;
    background-image:url(../../tpl/franchise/default/pc/skin1/images/180822/sp_ico_fn.png)
}
.srch_cont .inp_srch .btn_delete{
    position:absolute;
    top:0;
    right:28px;
    width:28px;
    height:28px
}
.srch_cont .inp_srch .btn_delete .ico{
    width:9px;
    height:9px;
    margin-top:7px;
    background-position:-70px -70px;
    background-image:url(../../tpl/franchise/default/pc/skin1/images/180822/sp_bt_x.png)
}
.srch_cont .inp_price{
    margin:10px 0 3px;
    line-height:30px;
    zoom:1
}
.srch_cont .inp_price:after{
    display:block;
    clear:both;
    content:''
}
.srch_cont .inp_price>span{
    float:left;
    width:8px;
    font-size:13px;
    color:#959595
}
.srch_cont .inp_price .u_ipbx{
    float:right;
    width:84px;
    padding:0
}
.srch_cont .inp_price .u_ipbx:first-child{
    float:left
}
.srch_cont .inp_price .u_ipbx .int{
    width:74px;
    padding:5px;
    font-family:Arial,Tahomas;
    text-align:right
}
.srch_cont .result_srch{
    position:relative;
    margin:11px 0 3px;
    padding-left:5px;
    padding-right:56px;
    border:1px solid #d9d9d9
}
.srch_cont .result_srch .u_ipbx{
    border:0
}
.srch_cont .result_srch .btn_srch{
    width:28px;
    height:28px;
    border:0
}
.srch_cont .btn_refresh{
    width:100%;
    height:40px;
    margin-top:2px;
    font-size:14px;
    color:#111;
    border:1px solid #c5c5c5
}
.srch_cont:last-child{
    padding:18px 0 17px
}
#navi{
    text-align:left!important
}
.ly_total_opt{
    position:absolute;
    top:-1px;
    left:100%;
    width:453px;
    margin-left:30px;
    padding:24px 24px 20px;
    background:#fff;
    border:1px solid #59c9ee;
    z-index:50
}
.ly_total_opt .tit{
    font-size:16px;
    line-height:24px;
    color:#007bc8
}
.ly_total_opt .opt_menu{
    position:absolute;
    bottom:100%;
    margin-bottom:1px;
    right:0;
    border:1px solid #d9d9d9;
    border-bottom:0
}
.ly_total_opt .opt_menu .lst_menu{
    zoom:1
}
.ly_total_opt .opt_menu .lst_menu:after{
    display:block;
    clear:both;
    content:''
}
.ly_total_opt .opt_menu .lst_menu li{
    float:left;
    width:108px;
    height:35px;
    border-left:1px solid #d9d9d9
}
.ly_total_opt .opt_menu .lst_menu li:first-child{
    border-left:0
}
.ly_total_opt .opt_menu .lst_menu li.on a{
    padding:8px 0 10px;
    color:#007bc8;
    background:#fff
}
.ly_total_opt .opt_menu .lst_menu li a{
    display:block;
    height:20px;
    padding:8px 0 7px;
    font-size:14px;
    color:#767676;
    line-height:20px;
    text-align:center;
    background:#f6f6f6
}
.ly_total_opt .opt_menu .lst_menu li a:active,.ly_total_opt .opt_menu .lst_menu li a:focus,.ly_total_opt .opt_menu .lst_menu li a:hover{
    text-decoration:none
}
.ly_total_opt .opt_area{
    position:relative;
    margin-top:12px;
    padding-top:15px;
    border-top:1px solid #d9d9d9;
    border-bottom:1px solid #d9d9d9
}
.ly_total_opt .opt_area:after{
    position:absolute;
    bottom:0;
    left:0;
    right:30px;
    z-index:10;
    height:26px;
    background:url(../../tpl/franchise/default/pc/skin1/images/180822/pop_gradation.png) 0 -5px repeat-x;
    content:''
}
.ly_total_opt .opt_area>.opt_cont{
    overflow:auto;
    overflow-x:hidden;
    position:relative;
    height:186px
}
.ly_total_opt .lst_opt{
    margin:-5px 0 22px -7px;
    zoom:1
}
.ly_total_opt .lst_opt:after{
    display:block;
    clear:both;
    content:''
}
.ly_total_opt .lst_opt li{
    float:left;
    width:50%;
    margin:6px 0 0
}
.ie7 .ly_total_opt .lst_opt li{
    width:49%
}
.ly_total_opt .u_chkbx{
    margin-left:7px
}
.ly_total_opt .btn_area{
    margin-top:20px;
    font-size:0;
    text-align:center
}
.ly_total_opt .btn_area .u_btn{
    width:80px;
    height:30px;
    margin-left:10px;
    font-size:13px
}
.ly_total_opt .btn_area .u_btn:first-child{
    margin-left:0
}
.ly_total_opt .btn_area .u_btn.btn_srch{
    background-color:#007bc8;
    color:#fff;
    border-color:#007bc8
}
.ly_total_opt .btn_area .u_btn.btn_cls{
    border-color:#c5c5c5;
    color:#4d4d4d
}
.ly_total_opt.ly_total_opt_type2{
    width:720px
}
.ly_total_opt.ly_total_opt_type2 .lst_opt li{
    width:230px
}
