﻿* {
    font-family: 'Noto Sans KR', sans-serif;
}

.remove-default {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.border-common {
    border: 1px solid #f3f3f3;
}

.border-input {
    border: 1px solid #d9d9d9;
}

.lineHeight-common {
    line-height: normal;
}

* {
    -webkit-text-size-adjust: none;
}

input[type=submit] {
    -webkit-appearance: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

button, html [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: none;
}

input, textarea, button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input, textarea, button, select {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}



html {
    overflow-y: scroll;
    width: 100%;
}

body,
div,
span,
nav,
header,
footer,
section,
article,
p,
h1,
h2,
h3,
h4,
h5,
h6,
img,
ol,
ul,
dl,
form,
input,
select,
fieldset,
label,
table,
a {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

::-webkit-input-placeholder { /* 크롬 4–56 */
    background: #fff
}

:-moz-placeholder { /* 파이어폭스 4–18 */
    background: #fff
}

::-moz-placeholder { /* 파이어폭스 19–50 */
    background: #fff
}

:-ms-input-placeholder { /* 인터넷 익스플로러 10+ */
    background: #fff
}

::placeholder { /* 파이어폭스 51+, 크롬 57+ */
    background: #fff
}

table {
    /*border-collapse: collapse;*/
    border-spacing: 0;
}

legend {
    font-size: 0;
    display: none
}

ol,
ul,
li {
    list-style-type: none;
}

img {
    border: none;
    vertical-align: top;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

    .video-container iframe, .video-container object, .video-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


input[type=tel] {
    width: 100%;
    height: 33px;
    line-height: 33px;
    font-size: 15px;
    border-radius: 2px;
}

input[type=number] {
    height: 33px;
    line-height: 33px;
    margin-bottom: 3px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 2px;
}


body {
    font-weight: 300;
    font-size: 16px;
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 28px;
}

.ml_10 {
    margin-left: 10px;
}

.container {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans KR', sans-serif;
}

a {
    color: #575757;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: color 0.1s linear 0s;
    -moz-transition: color 0.1s linear 0s;
    -o-transition: color 0.1s linear 0s;
    transition: color 0.1s linear 0s;
}

    a:hover,
    a:active,
    a:focus {
        color: #575757;
        outline: 0;
        text-decoration: none;
    }

    a img {
        border: none;
    }

    a > img {
        vertical-align: bottom;
    }

img {
    max-width: 100%;
}

strong {
    font-weight: 500;
}


hr {
    border-style: dashed;
    border-color: #3C3F45;
    border-bottom: none;
    border-left: none;
    border-right: none;
    margin: 50px 0;
}


button {
    background: none;
    border: none;
    cursor: pointer;
    overflow: visible;
    white-space: nowrap;
}

input:focus,
textarea:focus,
input[type="text"]:focus {
    outline: 0;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #7F8289;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #7F8289;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #7F8289;
}

/* ==================================================
   Margin Bottom Sets
================================================== */

.margin-0 {
    margin-bottom: 0 !important;
}

.margin-10 {
    margin-bottom: 10px !important;
}

.margin-15 {
    margin-bottom: 15px !important;
}

.margin-20 {
    margin-bottom: 20px !important;
}

.margin-30 {
    margin-bottom: 30px !important;
}

.margin-40 {
    margin-bottom: 40px !important;
}

.margin-50 {
    margin-bottom: 50px !important;
}

.margin-60 {
    margin-bottom: 60px !important;
}

.margin-70 {
    margin-bottom: 70px !important;
}

.margin-80 {
    margin-bottom: 80px !important;
}


#video-background {
    /*  making the video fullscreen  */
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
}



@-webkit-keyframes circle {
    0% {
        -webkit-transform: rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
    }

    50% {
        -webkit-transform: rotateY(180deg);
        -webkit-animation-timing-function: ease-out;
    }

    100% {
        -webkit-transform: rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
    }
}

@-moz-keyframes circle {
    0% {
        -moz-transform: rotateY(0deg);
    }

    50% {
        -moz-transform: rotateY(180deg);
        -moz-animation-timing-function: ease-out;
    }

    100% {
        -moz-transform: rotateY(0deg);
        -moz-animation-timing-function: ease-in;
    }
}

@-ms-keyframes circle {
    0% {
        -ms-transform: rotateY(0deg);
        -ms-animation-timing-function: ease-in;
    }

    50% {
        -ms-transform: rotateY(180deg);
        -ms-animation-timing-function: ease-out;
    }

    100% {
        -ms-transform: rotateY(0deg);
        -ms-animation-timing-function: ease-in;
    }
}

@-o-keyframes circle {
    0% {
        -o-transform: rotateY(0deg);
        -o-animation-timing-function: ease-in;
    }

    50% {
        -o-transform: rotateY(180deg);
        -o-animation-timing-function: ease-out;
    }

    100% {
        -o-transform: rotateY(0deg);
        -o-animation-timing-function: ease-in;
    }
}

@keyframes circle {
    0% {
        transform: rotateY(0deg);
        animation-timing-function: ease-in;
    }

    50% {
        transform: rotateY(180deg);
        animation-timing-function: ease-out;
    }

    100% {
        transform: rotateY(0deg);
        animation-timing-function: ease-in;
    }
}


div {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

p {
    line-height: 1.875;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

a {
    color: #595959;
    text-decoration: none
}

    a, a:hover, a:visited, a:active, a:link {
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
    line-height: 1.2;
}

    h1::selection,
    h2::selection,
    h3::selection,
    h4::selection,
    h5::selection,
    h6::selection {
    }

.form-control {
    color: #353535;
}

section {
    display: block;
    position: relative;
    box-sizing: border-box;
}

.clear {
    clear: both;
}

.clearfix::before, .clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

.button {
    width: 163px;
    height: 47px;
    background: transparent;
    border: solid 2px #c4ab9f;
    text-align: center;
}

    .button a {
        display: block;
        font-size: 18px;
        color: #b49383;
        line-height: 44px;
    }

    .button:hover {
        background: #c4ab9f;
    }

        .button:hover a {
            color: #FFFFFF;
        }


.fill_height {
    height: 100%;
}

.super_container {
    width: 100%;
    overflow: hidden;
}

.button {
    width: 163px;
    height: 47px;
    background: transparent;
    border: solid 2px #c4ab9f;
    text-align: center;
}

    .button a {
        display: block;
        font-size: 18px;
        color: #b49383;
        line-height: 44px;
    }

    .button:hover {
        background: #c4ab9f;
    }

        .button:hover a {
            color: #FFFFFF;
        }

.section_subtitle {
    font-size: 36px;
}

.section_title {
    margin-top: 10px;
}

    .section_title h1 i {
        float: right;
        padding-right: 15px;
        color: #7d7d7d
    }


/*********************************
3. Header
*********************************/
.header {
    width: 100%;
    height: 55px;
    background-color: #fff;
    position: fixed;
    top: 0;
    z-index: 99;
    border-bottom: 1px solid #d5d5d5;
}


.logo {
    position: absolute;
    left: 50%;
    height: 60px;
}

    .logo a {
        font-size: 0;
       height: 55px;
        width: 130px;
        display: block;
        margin-left: -65px;
        vertical-align:middle
    }

        .logo a img {
            width: 130px;
            padding-top: 8px;
        }


.main_nav {
    margin-right: 20px
}

    .main_nav ul li:not(:last-child) {
        margin-right: 30px;
    }

    .main_nav ul li:not(:last-child) {
        margin-right: 20px;
    }

    .main_nav ul li a {
        font-size: 19px;
        font-weight: 500;
        color: #575757;
        text-transform: uppercase;
    }

        .main_nav ul li a:hover {
            color: #b49383;
        }

.nav-up {
    top: -55px;
}

.btn_search {
    position: absolute;
    top: 20px;
    right: 0;
    color: #000;
    font-size: 20px
}

.active2 {
    position: absolute;
    right: 0
}

.menu_toggle {
    display: block;
}

.hamburger_lines {
    display: block;
    position: absolute;
    left: 0px;
    width: 100%;
    height: 3px;
    background: #000;
    -webkit-transition: all 800ms ease;
    -moz-transition: all 800ms ease;
    -ms-transition: all 800ms ease;
    -o-transition: all 800ms ease;
    transition: all 800ms ease;
    transform-origin: center center;
}

.line_1 {
    top: 0px;
}

.line_2 {
    top: 7px;
}

.line_3 {
    top: 14px;
}
.mem_step {
    width: 100%;
    height: 60px;
    background: #fff;
}

    .mem_step:after {
        clear: both;
        display: block;
        content: ''
    }

    .mem_step img {
        float: left;
        margin: 10px 0 0 0;
        height: 45px;
    }

    .mem_step p {
        min-width: 300px;
        font-size: 15px;
        padding: 8px 0 0 0;
        line-height: 1.5
    }

.mem_title {
    font-size: 13px;
    color: #ff4e00;
}

    .mem_title em {
        color: #b6b5b5;
        font-weight: 900;
        font-style: normal;
        margin-left: 10px;
    }

.mem_step strong {
    font-size: 20px;
}
/*********************************
4. Menu
*********************************/
.accordionGroups {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    margin: 0 auto;
    height: auto;
    background: rgba(0,0,0,.1);
    border-radius: 0;
    display: none;
    width: 100%;
}

.box_lnb {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 0;
}

.lnb {
    overflow: hidden;
    overflow-y: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    height: 100%;
    color: #4D4D4D;
}

.btn_hidden {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 20px;
    color: #000
}

.top_btn {
    position: absolute;
    right: 0;
    top: 15px;
}

    .top_btn ul li {
        float: left;
        color: #fff;
    }

        .top_btn ul li img {
            width: 30px;
            padding-left: 5px;
        }

        .top_btn ul li:first-child {
        }

.cart_num {
    position: absolute;
    right: 0px;
    top: 0px;
    background: #76bc06;
    width: 14px;
    height: 14px;
    color: #fff;
    border-radius: 7px;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
}

.top_btn ul li i {
    width: 30px;
    padding: 0 6px 0 0;
    color: #000;
    font-size: 20px;
}

.top_btn ul li:last-child i {
    border-right: none;
    padding-left: 5px;
}

nav {
    z-index: 2;
    margin-top: 55px;
}

.navs > li {
    margin: 7px 0;
    margin-right: 0px;
    text-align: center;
}

    .navs > li > a {
        color: #575757;
        text-align: center;
        text-decoration: none;
        font-size: 15px;
        border-bottom: 2px solid transparent;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
        display: block;
        font-weight: 500
    }

.menu.active {
    visibility: visible;
    opacity: 1;
}

.menu_content {
    width: 100%;
    height: 100%;
    position: relative;
    background: #c4ab9f;
}

    .menu_content ul li {
        display: block;
    }

        .menu_content ul li a {
            display: block;
            text-transform: uppercase;
            color: rgba(0,0,0,1);
            letter-spacing: 0.075em;
        }

    .menu_content ul:hover li a {
        color: rgba(0,0,0,1);
    }

    .menu_content ul li a:hover {
        color: rgba(0,0,0,1);
    }

.accordion {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 0;
    background: #eaeaea;
}

    .accordion > li:last-child {
        border-bottom: 1px solid #ccc;
    }

    .accordion .link {
        cursor: pointer;
        display: block;
        padding: 0 10px 0 10px;
        height: 48px;
        line-height: 48px;
        color: #4D4D4D;
        font-size: 15px;
        font-weight: 400;
        border-bottom: 1px solid #eaeaea;
        position: relative;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
        background: #fff;
    }

    .accordion li em {
        font-style: normal;
        font-size: 11px;
        color: #818181;
        margin-left: 10px;
        font-weight: 400
    }

    .accordion li i {
        position: absolute;
        top: 17px;
        left: 12px;
        font-size: 16px;
        color: #595959;
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }

        .accordion li i.fa-chevron-down {
            right: 12px;
            left: auto;
        }

    .accordion li.open .link {
        font-weight: 400
    }

    .accordion li.open i {
        color: #95bd0e
    }

        .accordion li.open i.fa-chevron-down {
            -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            transform: rotate(180deg);
        }

    .accordion li.default .submenu {
        display: block;
    }

.submenu {
    display: none;
    background: #f2f2f2;
}

    .submenu:after {
        clear: both;
        display: block;
        content: ''
    }

    .submenu li {
        width: 50%;
        float: left;
    }

        .submenu li:last-child {
        }

    .submenu a {
        display: block;
        text-decoration: none;
        color: #4d4d4d;
        padding: 10px;
        padding-left: 30px;
        -webkit-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
        font-size: 14px;
        border-bottom: 1px solid #fff;
        font-weight:400
    }

        .submenu a:hover {
            background: none;
            color: #95bd0e;
        }

        .submenu a.on {
            background: none;
            color: #95bd0e;
        }

    .submenu li:nth-child(2n) a {
        border-left: 1px solid #fff;
    }
.search_word  {
    width:100%;
    padding:20px 0;
    padding-bottom:20px;
    background:#fff
}
.search_word:after {
    clear:both;
    display:block;
    content:''
}



.search_word li {
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 9px 0 8px 0;
    float: left;
    font-size: 14px;
    text-align: center;
    margin-right:5px
}
.search_word_hi {
    height: 60px;
    background: #f2f2f2;
    border-top: 1px solid #cbcbcb;
    border-bottom: 1px solid #cbcbcb;
}

.word_input {
    margin: 10px;
    background: #fff;
    border: 2px solid #d5d5d5;
    line-height: 2;
    text-indent: 5px
}

    .word_input input {
        width: 80%;
    }

    .word_input button {
        float: right;
        background: none;
        border: none;
        margin: 8px;
        color: #595959
    }

.post_section {
    margin: 0 15px
}

.box_white {
    background: #fff;
}


.con_2 {
    padding: 0 15px 5px 15px;
    position: relative;
}

    .con_2 .tab {
        width: 50%;
        color: #6a6a6a;
        text-align: center;
        position: relative;
        float: left;
        padding: 8px 0;
        font-size: 15px;
        border: 1px solid #eaeaea;
        cursor: pointer;
        background: #f2f2f2;
    }

    .con_2 .con_list {
        width: 100%;
        clear: both;
        display: none;
    }

.tab_on {
    border: 1px solid #95bd0e;
    background: #fff;
}

.searchForm {
    background: #f2f2f2;
    height: 60px;
    border-bottom: 1px solid #eaeaea
}

.search_area {
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    margin: 0 auto;
    height: auto;
    background: #fff;
    border-radius: 0;
}

.form_se {
    height: 55px;
    width: 100%;
    text-align: center;
    padding-top: 9px;
    background: #95bd0e;
}

.sear_p {
    line-height: 36px;
    background: #fff;
    margin: 0 15px 0 15px;
    color: #111;
    height: 36px;
}

    .sear_p:after {
        clear: both;
        display: block;
        content: ''
    }

.form_se:after {
    clear: both;
    display: block;
    content: ""
}

.search_area input[type=text], .search_result input[type=text] {
    width: 70%;
    float: left;
    text-indent: 15px;
    background: #fff !important;
    border-radius: 20px;
    font-size: 17px;
    font-weight: 300;
    color: #111;
    height:35px;
    line-height:35px;
}

.form_se span {
    float: right;
}


.form_se a {
    float: left;
    display: block;
    text-align: center;
    font-size: 19px;
    width: 40px;
}

    .form_se a .fa-times {
        border-left: 1px solid #ccc;
        padding-left: 15px;
        padding-right: 8px;
    }

.btn_search {
    display: block
}
.auto_word {

}
    .auto_word li {
        padding: 0 5px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        color: #a0a0a0;
        border-bottom: 1px solid #eaeaea;
        width: 100%;
    }


.search_word li {
    padding: 5px 5px;
    font-size: 14px;
    color: #a0a0a0;
    position: relative;
    width: calc(50% - 3px);
    text-align:left;
    margin-bottom:4px;
}
.search_word li:nth-child(2n) {
    margin-right: 0
}



.search_word li button {
    float: right;
}

.search_word li i {
    float: right;
    padding-right: 5px;
    color: #cdcdcd;
    margin-top: 5px;
}

.search_word li em{
    float:right;
}



btn_word {
    padding: 15px 0;
    background: #fff;
}

    .btn_word li {
        float: left;
        padding: 0 0;
        text-align: center;
        font-size: 14px;
        color: #111;
        margin-right: 5px;
    }

        .btn_word li:last-child {
            float: right;
            margin-right: 0;
        }

    .btn_word:after {
        clear: both;
        display: block;
        content: "";
    }

#visual {
}

.viSimpleSlider {
    width: 100%;
    position: relative;
    background-color: #eee;
}


.main_content {
    background: #f1f1f1;
}

.sec_title {
    background: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 18px;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #cacaca;
    position: relative;
    color:#575757
}

.sec_bg {
    background: #f1f1f1;
    text-align: center;
    height: 10px;
    border-top: 1px solid #cacaca;
    border-bottom: 1px solid #eaeaea;
}

.bb_none {
    border-bottom: none !important
}

.sec_title em {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    position: absolute;
    right: 32px;
    top: 12px;
}

.sec_title i {
    font-size: 20px;
    color: #000;
    position: absolute;
    right: 15px;
    top: 14px;
}

.main_goods {
    margin-bottom: 10px
}

    .main_goods:after {
        clear: both;
        display: block;
        content: ''
    }

    .main_goods > li {
        float: left;
        width: 50%;
    }

        .main_goods > li > div {
            background: #fff;
            margin: 10px 5px 0 10px;
            border: 1px solid #e6e6e6;
        }

            .main_goods > li > div img {
                width: 100%
            }

        .main_goods > li:nth-child(2n) > div {
            margin: 10px 10px 0 5px;
        }

        .main_goods > li > div h3 {
            line-height: 1.4;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-size: 15px;
            color: #272727;
          /*  border-top: 1px solid #e6e6e6;*/
            padding: 10px 10px 0 10px;
            font-weight: 400
        }

        .main_goods > li > div strong {
            color: #595959;
            font-size: 16px;
            display: block;
            text-align: right;
            padding-right: 10px;
            padding-bottom: 5px;
            padding-top: 5px;
            letter-spacing: -1px;
            font-family: 'AppleSDGothicNeo-Regular','DroidSansFallback';
        }

            .main_goods > li > div strong em {
                background: #95bd0e;
                width: 16px;
                height: 16px;
                border-radius: 8px;
                display: inline-block;
                text-align: center;
                line-height: 14px;
                margin-right: 5px;
            }

                .main_goods > li > div strong em > i {
                    color: #fff;
                    font-size: 10px;
                }

.main_best {
    background: #fff;
    border-bottom: 1px solid #ccc;
}

    .main_best li {
        text-align: center
    }

        .main_best li a {
            display: inline-block;
            padding: 10px 0;
        }

        .main_best li.active a {
            border-bottom: 3px solid #95bd0e;
        }

.swiper-container-2 {
    overflow: hidden;
}

footer {
    background: #fff;
    margin-bottom: 60px;
}
.foot_logo {
    margin-top:15px;
    text-align:center
}



.foot_logo img{
    width:180px;
    margin:0 auto

}

.foot_link {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

    .foot_link:after {
        clear: both;
        display: block;
        content: ''
    }

    .foot_link a {
        float: left;
        width: 50%;
        text-align: center;
        padding: 10px 0;
        display: inline-block;
        font-weight: 400
    }

        .foot_link a:first-child {
            border-right: 1px solid #ccc;
            color: #95bd0e;
        }

.foot_link2 {
    margin: 5px 0
}

    .foot_link2:after {
        clear: both;
        display: block;
        content: ''
    }

    .foot_link2 a {
        float: left;
        width: 50%;
        text-align: center;
        padding: 10px 0;
        display: inline-block;
        font-weight: 400;
    }

        .foot_link2 a:last-child {
            color: #95bd0e;
        }

address {
    text-align: center;
    padding: 0 10px;
    font-size: 12px;
    margin: 15px auto;
}

    address p {
        color: #999;
        line-height: 1.2;
    }

.mt_10 {
    margin-top: 10px !important;
}

.call_no {
    background: #95bd0e;
    color: #fff;
}

    .call_no:after {
        clear: both;
        display: block;
        content: ''
    }

    .call_no div {
        width: 50%;
        margin: 10px 0;
        padding-left: 35px;
        float: left;
        background: url('/img/bg/bg_phone.png') no-repeat 5px 0px;
        background-size: 30px;
    }

        .call_no div a {
            color: #fff
        }

        .call_no div:last-child {
            border-left: 1px solid #fff;
            margin-left: -1px;
        }

    .call_no h2 {
        font-size: 15px;
    }

    .call_no strong {
        font-size: 18px;
        display: block;
        font-family: 'AppleSDGothicNeo-Regular','DroidSansFallback';
        font-weight: 900;
        line-height: 1
    }

    .call_no p {
        font-size: 10px;
        line-height: 1;
        color: #fff
    }

.side_no div:first-child {
    background: none;
    font-size: 25px;
    padding-left: 15px;
}

    .side_no div:first-child h2 {
        font-size: 25px;
    }

.copy {
    text-align: center;
    line-height: 1;
    font-size: 12px;
    padding-bottom: 20px;
    color:#999
}

#fix_btn {
    position: fixed;
    bottom: 0;
    z-index: 99;
    width: 100%;
}

.fix {
    position: relative;
    box-sizing: border-box;
    height: 55px;
    border-top: 1px solid #dfdfdf;
    background: #fff;
}

    .fix:after {
        clear: both;
        content: "";
        display: block;
    }

    .fix i {
        font-size: 17px !important;
        padding-bottom: 5px;
    }

    .fix a {
        display: block;
        float: left;
        position: relative;
        box-sizing: border-box;
        width: 25%;
        height: 100%;
        font-size: 13px;
        color: #666;
        letter-spacing: 0;
        text-align: center;
        padding-top: 12px;
        line-height: 1;
    }

.side_menu .side_head {
    background: #95bd0e;
    height: 55px;
    line-height: 55px;
    font-size: 15px
}

.side_head em {
    padding: 3px 10px;
    color: #fff;
    font-style: normal
}


.side_head strong {
    margin-left: 15px;
    border: 1px solid #f1ffc3;
    padding: 4px 5px;
    color: #fff;
}

    .side_head strong i {
        margin-right: 3px;
    }

.btn_close {
    color: #fff;
    font-size: 20px;
    float: right;
    margin: 17px 15px 0 0
}

.direct_bth {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

    .direct_bth:after {
        clear: both;
        display: block;
        content: ''
    }

    .direct_bth > li {
        width: 25%;
        float: left;
        text-align: center;
        color: #4D4D4D;
        font-size: 15px;
        font-weight: 400;
        background: #fff;
        border-right: 1px solid #eaeaea;
        padding: 12px 0 10px 0;
        line-height: 1.5;
        cursor: pointer
    }

        .direct_bth > li.active {
            color: #95bd0e !important;
        }

            .direct_bth > li.active a {
                color: #95bd0e !important;
            }

            .direct_bth > li.active i {
                color: #95bd0e;
            }

        .direct_bth > li:last-child {
            border-right: none
        }

        .direct_bth > li i {
            font-size: 20px;
            color: #ccc
        }

.store_info {
    margin: 10px
}

    .store_info h3 {
        font-size: 18px;
        color: #444;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .store_info p {
        color: #9e9e9e;
        line-height: 1.2;
        font-size: 13px
    }

.goods_title {
    margin-top: 55px;
}

.view_img {
    padding-bottom: 10px
}

    .view_img:after {
        clear: both;
        display: block;
        content: ''
    }

    .view_img > li {
        float: left;
        width: 50%;
    }

        .view_img > li > div {
            background: #fff;
            margin: 10px 5px 0 10px;
            border: 1px solid #e6e6e6;
        }

            .view_img > li > div img {
                width: 100%
            }

        .view_img > li:nth-child(2n) > div {
            margin: 10px 10px 0 5px;
        }

        .view_img > li > div h3 {
            line-height: 1.2;
            /*    overflow: hidden;
            text-overflow: ellipsis;
              border-top: 1px solid #e6e6e6;
          white-space: nowrap;*/
            font-size: 15px;
            color: #272727;
            padding: 10px 10px 0 10px;
            height: 50px;
            font-weight:400
        }


        .view_img > li > div > strong {
            color: #595959;
            font-size: 16px;
            display: block;
            text-align: left;
            padding-left: 10px;
            padding-bottom: 5px;
            padding-top: 5px;
            letter-spacing: -1px;
            font-family: 'AppleSDGothicNeo-Regular','DroidSansFallback';
        }

            .view_img > li > div > strong > em {
                background: #95bd0e;
                width: 16px;
                height: 16px;
                border-radius: 8px;
                display: inline-block;
                text-align: center;
                line-height: 14px;
                margin-right: 5px;
            }

                .view_img > li > div > strong > em > i {
                    color: #fff;
                    font-size: 10px;
                }

.view_list {
    padding-bottom: 10px
}

    .view_list:after {
        clear: both;
        display: block;
        content: ''
    }

    .view_list > li {
        float: none;
        width: 100%;
    }

        .view_list > li > div {
            background: #fff;
            margin: 0 0 10px 0;
            border-top: 1px solid #e6e6e6;
            border-bottom: 1px solid #d5d5d5;
            border-left: none;
            border-right: none;
            position: relative;
        }

            .view_list > li > div img {
                width: 120px;
                float: left;
                margin: 10px;
            }

        .view_list > li:first-child > div {
            border-top: none
        }

        .view_list > li:last-child > div {
            margin-bottom: 0
        }

        .view_list > li:nth-child(2n) > div {
            margin: 0 0 10px 0;
        }

        .view_list > li > div h3 {
            line-height: 1.2;
            font-size: 15px;
            color: #272727;
            border-top: none;
            padding: 15px 10px 0 0;
            height: 45px;
            font-weight:400
        }

        .view_list > li > div > strong {
            color: #595959;
            font-size: 16px;
            display: block;
            text-align: left;
            padding-left: 10px;
            padding-bottom: 5px;
            padding-top: 5px;
            letter-spacing: -1px;
            font-family: 'AppleSDGothicNeo-Regular','DroidSansFallback';
        }

            .view_list > li > div > strong > em {
                background: #95bd0e;
                width: 16px;
                height: 16px;
                border-radius: 8px;
                display: inline-block;
                text-align: center;
                line-height: 13px;
                margin-right: 5px;
            }

                .view_list > li > div > strong > em > i {
                    color: #fff;
                    font-size: 10px;
                }

    .view_list .icon_3 {
        position: absolute;
        right: 0;
        bottom: 0;
    }

.icon_3 {
    margin-top: 3px;
    margin-right: 10px;
    margin-bottom: 10px;
    float: right;
}

    .icon_3 a {
        font-size: 18px;
        color: #95bd0e !important;
        display: block;
        float: left;
        width: 34px;
        height: 34px;
        line-height: 34px;
        border: 1px solid #95bd0e;
        text-align: center;
        border-radius: 17px;
        margin: 0 2px 5px 0
    }

        .icon_3 a:nth-child(2) {
            font-size: 13px;
        }

    .icon_3:after {
        clear: both;
        display: block;
        content: "";
    }

.title_area {
    font-size: 17px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #d5d5d5
}

.btn_menu i {
    color: #6e767b;
}

.sub_map {
    height: 40px;
    line-height: 40px;
    position: absolute;
    left: 15px;
    top: 0;
    border-right: 1px solid #d5d5d5;
    padding-right: 15px;
    font-size: 17px;
    color: #6e767b !important;
}

.sub_map_talk {
    height: 40px;
    line-height: 40px;
    position: absolute;
    left: 15px;
    top: 0;
    border-right: 1px solid #d5d5d5;
    padding-right: 10px;
    font-size: 17px;
    color: #6e767b !important;
}

.view_how {
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: 15px;
    top: -40px;
    border-left: 1px solid #d5d5d5;
    padding-left: 15px;
    font-size: 17px;
    color: #6e767b
}

.content {
    background: #f1f1f1
}

.sub_menu {
    position: absolute;
    background: #fff;
    width: 100%;
    color: #575757;
    z-index: 20;
    font-size: 15px;
}

    .sub_menu li {
        float: left;
        width: 50%;
        text-indent: 10px;
        color: #575757;
        border-right: 1px solid #eaeaea;
        border-bottom: 1px solid #eaeaea;
        font-size: 15px;
    }

    .sub_menu ul:after {
        clear: both;
        content: '';
        display: block
    }

    .sub_menu li:nth-child(2n) {
        border-right: none;
        margin-left: -1px;
    }

    .sub_menu li a {
        display: block;
    }

.sub_menu_close {
    margin-top: -1px;
    background: #f6f6f6;
    height: 40px;
    border-top: 1px solid #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
}

    .sub_menu_close a {
        border: 1px solid #bebebe;
        line-height: 1.7;
        border-radius: 5px;
        padding: 1px 7px;
        float: right;
        margin: 7px 10px 0 0;
        font-size: 12px;
        font-weight: 500;
        color: #999;
        background: #fff
    }

.event_sub_menu {
    position: absolute;
    background: #fff;
    width: 100%;
    color: #575757;
    z-index: 20;
    font-size: 15px;
}

    .event_sub_menu li {
        float: left;
        width: 50%;
        text-indent: 10px;
        color: #575757;
        border-right: 1px solid #eaeaea;
        border-bottom: 1px solid #eaeaea;
        font-size: 15px;
    }

    .event_sub_menu ul:after {
        clear: both;
        content: '';
        display: block
    }

    .event_sub_menu li:nth-child(2n) {
        border-right: none;
        margin-left: -1px;
    }

    .event_sub_menu li a {
        display: block;
    }

.event_sub_menu_close {
    margin-top: -1px;
    background: #f6f6f6;
    height: 40px;
    border-top: 1px solid #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
}

    .event_sub_menu_close a {
        border: 1px solid #bebebe;
        line-height: 1.7;
        border-radius: 5px;
        padding: 1px 7px;
        float: right;
        margin: 7px 10px 0 0;
        font-size: 12px;
        font-weight: 500;
        color: #999;
        background: #fff
    }

.cateshow {
    font-size: 15px;
    color: #575757;
    font-style: normal;
    margin-left: 5px;
}

.goods_detail {
    background: #fff;
}

.goods_img {
    margin: 55px 12px 0 12px;
    text-align: center;
    border-bottom: 1px solid #5c5c5c
}

    .goods_img img {
        width: 100%;
        max-width: 500px;
        margin: 1px auto
    }

.line_area {
    height: 12px;
    background: #f1f1f1;
    border-top: 1px solid #d6d6d6;
    border-bottom: 1px solid #fff;
}

.goods_explan {
    margin: 0 12px;
}

    .goods_explan > ul {
        padding: 10px 0;
        border-top: 1px solid #d6d6d6;
    }

        .goods_explan > ul:first-child {
            font-weight: 400;
            font-size: 18px;
        }

            .goods_explan > ul:first-child li {
                line-height: 1.4
            }

                .goods_explan > ul:first-child li:last-child {
                    font-size: 16px;
                    color: #ed1c24;
                }

                    .goods_explan > ul:first-child li:last-child strong {
                        font-size: 18px;
                        color: #ed1c24;
                        font-size: 20px;
                        margin-left: 28px;
                        font-family: 'AppleSDGothicNeo-Regular','DroidSansFallback';
                    }

                    .goods_explan > ul:first-child li:last-child em {
                        font-size: 14px;
                        font-style: normal
                    }

        .goods_explan > ul:last-child {
            font-weight: 300;
            font-size: 15px;
        }

            .goods_explan > ul:last-child span {
                margin-left: 20px;
            }

            .goods_explan > ul:last-child li {
                font-weight: 300;
                line-height: 1.5
            }

.goodsview, .goodsview th, .goodsview td {
    border-collapse: collapse;
}

.goodsview {
    border-top: 1px solid#000;
    border-bottom: 1px solid #b7b7b7;
}

    .goodsview tr th {
        padding-left: 5px;
        width: 30%;
        text-align: left;
        border-left: 0;
        font-weight: 300;
        font-size: 13px;
        background: #f3f3f3;
        border-bottom: 1px solid #b7b7b7;
        line-height: 1.3
    }

    .goodsview tr td {
        width: 70%;
        background: #fff;
        color: #4d4d4d;
        text-align: left;
        font-weight: 300;
        font-size: 13px;
        border-bottom: 1px solid #b7b7b7;
        line-height: 1.3
    }

    .goodsview tr td {
        background: #fff;
        color: #4d4d4d;
        padding: 13px 2px 13px 3px;
        text-align: left;
    }

.detail {
    border-bottom: 1px solid #d6d6d6;
}

    .detail:after {
        clear: both;
        display: block;
        content: ""
    }

    .detail li {
        width: 50%;
        float: left;
        font-size: 16px;
        text-align: center;
        color: #999;
        font-weight: 400
    }

        .detail li a {
            height: 45px;
            line-height: 45px;
            display: block;
            color: #666;
            background: #fff;
        }

            .detail li a.on {
                border-bottom: 2px solid #95bd0e;
                color: #575757 !important
            }

.goods_detail article {
    background: #fff
}

.tab_view1 {
    margin: 10px 10px 75px 10px;
}

    .tab_view1 img {
        width: 100%;
    }

.tab_view3 {
    margin: 15px 12px 100px 12px;
    padding-bottom: 80px;
}

    .tab_view3 h3 {
        font-size: 15px;
        border-bottom: 1px solid #5c5c5c;
        padding-bottom: 8px;
        font-weight:400
    }

    .tab_view3 h4 {
        font-size: 15px;
        padding-top: 10px;
        padding-bottom: 8px;
        color: #272727;
        font-weight: 400
    }

    .tab_view3 ul {
        font-size: 13px;
    }

        .tab_view3 ul li {
            line-height: 1.4;
            color: #666
        }

.mt_20 {
    margin-top: 20px
}

.mt_30 {
    margin-top: 30px
}

.btn_gray {
    background: #f3f3f3;
    color: #333;
    font-size: 14px;
    padding: 3px 7px;
    float: right;
}

.goodsview, .goodsview th, .goodsview td {
    border-collapse: collapse;
}

.tbl_deliver {
    width: 100%;
    border-top: 1px solid#000;
    border-bottom: 1px solid #b7b7b7;
}

    .tbl_deliver tr th {
        padding-left: 5px;
        text-align: center;
        border-left: 0;
        font-weight: 300;
        font-size: 14px;
        background: #f3f3f3;
        border-bottom: 1px solid #b7b7b7;
        border-right: 1px solid #b7b7b7;
        line-height: 1.3;
        padding: 13px 2px 13px 3px;
    }

        .tbl_deliver tr th:last-child {
            border-right: none
        }

    .tbl_deliver tr td {
        background: #fff;
        color: #4d4d4d;
        text-align: center;
        font-size: 14px;
        border-bottom: 1px solid #b7b7b7;
        border-right: 1px solid #b7b7b7;
        line-height: 1.3;
        padding: 13px 2px 13px 3px;
    }

        .tbl_deliver tr td:last-child {
            border-right: none
        }

.fix_goods {
    position: fixed;
    width: 100%;
    bottom: 0;
    background: #eeeeee;
    z-index: 997;
}

.view_btn {
    width: 100%;
}

    .view_btn li {
        float: left;
        width: 50%;
    }

.btn_share {
    width: 100%;
    font-size: 17px;
    float: left;
    background: #7b746c;
    color: #fff;
    text-align: center;
    height: 50px;
    line-height: 50px;
}

.btn_order {
    width: 100%;
    font-size: 17px;
    float: left;
    background: #95bd0e;
    color: #fff;
    text-align: center;
    height: 50px;
    line-height: 50px;
}

.bottom_btn {
    position: relative;
}

.btn_bottom {
    position: absolute;
    top: -22px;
    left: 50%;
    width: 74px;
    height: 22px;
    margin-left: -37px;
    background: #adadad;
    color: #fff;
    font-size: 22px;
    text-align: center;
    border-radius: 20px 20px 0 0
}

    .btn_bottom i {
        position: absolute;
        top: 0;
        left: 50%;
        margin-left: -7px;
    }

.box_w {
    background: #fff;
    margin: 0 12px;
}

.cart_option_layer {
    margin: 12px 12px 12px 12px;
    border: 1px solid #dedede;
    background: #fff;
    padding: 0 10px
}

.optionselect {
    margin: 10px 0 10px 10px;
    height: 35px;
    line-height: 35px;
    text-indent: 10px;
    width: 95%;
}

.option_layer {
    margin: 0 12px 0 12px;
    padding: 10px 0;
}

    .option_layer select {
        background: #fff;
        width: 100%;
        line-height: 2;
        padding: 5px 0;
        border: 1px solid #dedede
    }

.num_plus {
    margin: 10px 0;
    float: left;
}

    .num_plus input {
        float: left;
        text-align: center;
        border: 1px solid #eaeaea;
        font-size: 1em;
        width: 35px;
        line-height: 35px;
        font-weight: bold;
        font-size: 20px;
    }

        .num_plus input:nth-child(2) {
            border-left: none;
            border-right: none;
            font-size: 17px;
        }

input[type="checkbox"] {
    display: none;
}

.pro_price {
    float: right;
    font-size: 18px;
    margin: 10px 0 0 0;
}

    .pro_price span {
        font-family: 'AppleSDGothicNeo-Regular','DroidSansFallback';
    }

    .pro_price i {
        color: #ccc;
        font-size: 20px;
    }

.option_select {
    max-height: 300px;
    overflow-y: scroll;
   /* border-top: 1px solid #dedede*/
}

.option_total_count {
    font-size: 20px;
    font-weight: 500;
    margin: 5px 12px;
    padding-bottom: 10px;
    font-family: 'Avenir-Heavy',sans-serif;
}

    .option_total_count strong {
        color: #f82424;
        float: right;
        padding-bottom: 10px;
        font-family: 'AppleSDGothicNeo-Regular','DroidSansFallback';
    }

.cart_area {
    background: #fff;
}

.gray_bg {
    background: #f1f1f1;
    padding: 5px 10px;
}

.white_bg {
    background: #fff;
    padding: 15px 10px;
}

.pl_10 {
    padding-left: 10px
}

input[type="text"] {
    text-indent: 10px;
}

input[type="password"] {
    text-indent: 10px
}

input[type="checkbox"] {
    display: none
}

    input[type="checkbox"] + label span {
        display: inline-block;
        width: 25px;
        height: 25px;
        vertical-align: middle;
        background: url(/img/check_off.png) left 0 no-repeat;
        background-size: 25px;
        cursor: pointer;
        margin-right: 5px;
    }

    input[type="checkbox"]:checked + label span {
        background: url(/img/check_on.png) left 0 no-repeat;
        background-size: 25px;
    }

.goods_info {
    margin-top: 10px;
}

.goods_code {
    font-size: 12px;
    border: 1px solid #95bd0e;
    padding: 1px 3px;
    color: #95bd0e;
    line-height: 1;
    margin-right: 2px;
    letter-spacing: -1px;
    margin-top: 3px;
    display: inline-block
}

.goods_ch {
    font-size: 12px;
    border: 1px solid #95bd0e;
    padding: 1px 5px;
    color: #95bd0e;
    line-height: 1;
    margin-right: 2px;
    letter-spacing: -1px;
    margin-top: 3px;
    display: inline-block;
    margin-left: 5px;
}

.etc_info {
    font-size: 12px;
    border: 1px solid #ccc;
    padding: 1px 3px;
    color: #999;
    margin-top: 1px;
    line-height: 1;
    letter-spacing: -1px;
    margin-top: 3px;
    display: inline-block
}

.icon_sub {
    /* background: url(/img/bg/icon_sub.gif) 145px 5px no-repeat;
    background-size: 10px;*/
    font-size: 13px;
    color: #969696;
    letter-spacing: -1px;
    line-height: 1.8;
    float:left;
    width:calc(100% - 130px);
    margin-left:10px;
}

.btn_close_goods {
    width: 25px;
    height: 25px;
    float: right;
    background: url(/img/btn_close.gif) right 10px no-repeat;
    background-size: 15px;
}

.fl {
    float: left !important;
}

.fr {
    float: right !important;
}

.cart_list:after {
    clear: both;
    display: block;
    content: ''
}

.cart_list > li {
    float: none;
    width: 100%;
}

    .cart_list > li > div {
        background: #fff;
        padding-right: 15px;
        border-top: 1px solid #e6e6e6;
        border-left: none;
        border-right: none;
        position: relative;
    }

    .cart_list > li:last-child > div {
        border-bottom: 1px solid #e6e6e6;
    }

    .cart_list > li > div img {
        width: 120px;
        float: left;
        margin: 14px 10px 10px -15px;
    }

    .cart_list > li:last-child > div {
        margin-bottom: 0
    }

    .cart_list > li > div h3 {
        line-height: 1.2;
        font-size: 15px;
        color: #272727;
        border-top: none;
        padding: 10px 10px 0 0;
        font-weight:400
    }

    .cart_list > li > div > strong {
        color: #595959;
        font-size: 16px;
        display: block;
        text-align: left;
        padding-left: 10px;
        padding-bottom: 5px;
        padding-top: 5px;
        font-family: 'AppleSDGothicNeo-Regular','DroidSansFallback';
        letter-spacing: -1px;
    }

        .cart_list > li > div > strong > em {
            background: #95bd0e;
            width: 16px;
            height: 16px;
            border-radius: 8px;
            display: inline-block;
            text-align: center;
            line-height: 14px;
            margin-right: 5px;
        }

            .cart_list > li > div > strong > em > i {
                color: #fff;
                font-size: 10px;
            }

.cart_check {
    float: left;
    display: inline;
    position: relative;
    left: 10px;
    top: 10px
}

.selectbox {
    position: relative;
    width: 80px;
    border: 1px solid #eaeaea;
    z-index: 1;
    float: right;
    top: 0;
    margin-bottom: 20px;
}

    .selectbox:before {
        content: "";
        position: absolute;
        top: 50%;
        right: 10px;
        width: 0;
        height: 0;
        margin-top: -1px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ccc
    }

    .selectbox label {
        position: absolute;
        top: 1px;
        left: 30px;
        color: #999;
        z-index: -1;
    }

    .selectbox select {
        width: 100%;
        height: auto;
        line-height: normal;
        font-family: inherit;
        border: 0;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
.selectbox2 {
    position: relative;
    width: 100%;
    z-index: 1;
    float: right;
    top: 0;
}

    .selectbox2:before {
        content: "";
        position: absolute;
        top: 50%;
        right: 10px;
        width: 0;
        height: 0;
        margin-top: -1px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ccc
    }

    .selectbox2 label {
        position: absolute;
        top: 1px;
        left: 30px;
        color: #999;
        z-index: -1;
    }

    .selectbox2 select {
        width: 100%;
        height: auto;
        line-height: normal;
        font-family: inherit;
        border: 0;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

.cart_pay {
    background: #f8f8f8;
    border-bottom: 1px solid #e6e6e6;
}

.btn_clear {
    float: left;
    padding: 0px 15px;
    background: #fff;
    color: #686868;
    font-size: 14px;
    border: 1px solid #eaeaea;
    margin: 17px 0 0 15px
}

    .btn_clear i {
        padding-right: 5px;
    }

.btn_clear_choise {
    float: left;
    padding: 0px 15px;
    background: #fff;
    color: #686868;
    font-size: 14px;
    border: 1px solid #eaeaea;
    margin: 0 0 0 15px;
}

    .btn_clear_choise i {
        padding-right: 5px;
    }

.cart_pay ul {
    float: right;
    padding: 10px 15px 10px 0;
}

    .cart_pay ul li {
        text-align: right;
        font-size: 17px;
        line-height: 1.4
    }

        .cart_pay ul li span {
            width: 80px;
            color: #272727;
            display: inline-block;
            text-align: right
        }

        .cart_pay ul li:last-child {
            font-size: 14px;
            color: #6f6f6f;
        }

        .cart_pay ul li:first-child span {
            width: 80px;
            color: #272727;
        }

        .cart_pay ul li em {
            display: inline-block;
            font-style: normal;
            margin-left: 20px;
            text-align: right;
            font-family: 'AppleSDGothicNeo-Regular','DroidSansFallback';
            letter-spacing: -1px;
        }


        .cart_pay ul li:first-child em {
            color: #ed1c24;
            font-family: 'AppleSDGothicNeo-Regular','DroidSansFallback';
            font-size: 17px;
            letter-spacing: -1px;
            text-align: right;
        }

.all_count {
    background: #575a62;
    padding: 13px;
    color: #fff
}

all_count li:after {
    clear: both;
    display: block;
    content: "";
}

.all_count li span {
    float: left;
}

.all_count li {
    font-size: 17px;
}

    .all_count li:nth-child(2n) {
        font-size: 14px;
        padding-bottom: 10px;
        color: #ccc
    }

    .all_count li:nth-child(3n) {
        padding-top: 10px;
        border-top: 1px solid #a9aaac;
    }

.pb_0 {
    padding-bottom: 0 !important
}

.all_count li em {
    float: right;
    font-size: 17px;
    letter-spacing: -1px;
    font-style: normal;
}

.all_count li strong {
    font-family: 'AppleSDGothicNeo-Regular','DroidSansFallback';
}

.all_count li:after {
    clear: both;
    display: block;
    content: "";
}

.btns {
    padding: 30px 15px;
}

    .btns ul:after {
        clear: both;
        display: block;
        content: ''
    }

    .btns li {
        width: 50%;
        float: left;
    }

        .btns li a {
            margin: 0 5px;
            text-align: center;
            color: #fff;
            display: block;
            line-height: 50px;
            font-size: 17px;
        }

.btn_orange {
    background: #ff5400;
}

.btn_green {
    background: #95bd0e;
}

.btn_brown {
    background: #7b746c;
}

.order_area {
    background: #fff;
}

.line_title {
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    text-align: left;
    position: relative;
    border-bottom: 1px solid #d5d5d5;
}

.order_num {
    font-size: 12px;
    color: #999;
    padding-left: 5px;
}

.mt_0 {
    margin-top: 0 !important
}

.pt_10 {
    padding-top: 10px !important
}

.order_list {
}

    .order_list:after {
        clear: both;
        display: block;
        content: ''
    }

    .order_list > li {
        float: none;
        width: 100%;
    }

        .order_list > li > div {
            background: #fff;
            margin: 0 0 0 0;
            border-bottom: 1px solid #d5d5d5;
            border-left: none;
            border-right: none;
            position: relative;
        }

            .order_list > li > div img {
                width: 120px;
                float: left;
                margin: 10px;
            }

            .order_list > li > div h3 {
                line-height: 1.2;
                font-size: 15px;
                color: #272727;
                border-top: none;
                padding: 15px 10px 0 0
            }

            .order_list > li > div > strong {
                color: #595959;
                font-size: 16px;
                display: block;
                text-align: left;
                padding-left: 10px;
                padding-bottom: 5px;
                padding-top: 5px;
                letter-spacing: -1px;
                font-family: 'AppleSDGothicNeo-Regular','DroidSansFallback';
            }

                .order_list > li > div > strong > em {
                    background: #95bd0e;
                    width: 16px;
                    height: 16px;
                    border-radius: 8px;
                    display: inline-block;
                    text-align: center;
                    line-height: 14px;
                    margin-right: 5px;
                }

                    .order_list > li > div > strong > em > i {
                        color: #fff;
                        font-size: 10px;
                    }

.deli_info {
    margin: 12px;
}

.add_info {
    padding: 12px 0 16px;
}

    .add_info li {
        position: relative;
        padding-left: 28%;
        line-height: 1.3;
        font-size: 14px;
        color: #686868;
        margin-bottom: 10px;
    }

        .add_info li span {
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            color: #686868;
            font-weight: normal;
            line-height: 1.5;
        }

        .add_info li label {
            position: absolute;
            top: 7px;
            left: 0;
            color: #5E636D;
            font-weight: normal;
            line-height: 1.5;
        }
.paper_info {
    padding: 10px
}
.paper_info p{
line-height:1.4;
font-size:15px;
margin-bottom:10px;
}

    .paper_info li {
        position: relative;
        padding-left:40%;
        line-height: 1.3;
        font-size: 14px;
        color: #686868;
        margin-bottom: 10px;
    }

        .paper_info li span {
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            color: #686868;
            font-weight: normal;
            line-height: 1.5;
        }

        .paper_info li em {
            position: absolute;
            top: 7px;
            left: 0;
            color: #5E636D;
            font-weight: normal;
            line-height: 1.5;
            font-style:normal
        }

.input_area .input_txt {
    width: 100%;
    height: 36px;
    border: 0;
    color: #686868;
    font-size: 14px;
    text-indent: 8px;
}

.add_info li div.line {
    background: #fff;
    border: 1px solid #d6d7d8;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    box-sizing: border-box;
}

.mr_10 {
    margin-right: 10px
}

.explan {
    background: #fbfbfb;
    border: 1px solid #dadada;
    padding: 3px 10px;
    color: #848484;
    font-size: 12px;
}

    .explan li {
        margin: 5px;
        line-height: 1.2;
    }

        .explan li span {
            color: #000
        }

.user_info {
    display: table;
    width: 100%;
    table-layout: fixed;
}

    .user_info .in_td {
        display: table-cell;
    }

.sel_box {
    display: block;
    position: relative;
    height: 40px;
    border: 1px solid #d6d7d8;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

    .sel_box select {
        width: 100%;
        padding: 0 0 0 10px;
        border: 0;
        font-size: 14px;
        color: #757C8A;
        background: #fff;
        letter-spacing: -1px;
        height: 40px;
        line-height: 40px;
        font-family: inherit;
        border: 0;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .sel_box:before {
        content: "";
        position: absolute;
        top: 50%;
        right: 10px;
        width: 0;
        height: 0;
        margin-top: -1px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ccc
    }

    .sel_box label {
        padding-left: 15px;
        position: absolute;
        top: 7px;
        left: 0;
        color: #5E636D;
        font-weight: normal;
        line-height: 1.5;
    }

.op_box {
    position: relative;
    width: 100%;
    height:30px;
    border: 1px solid #95bd0e;
    z-index: 1;
    top: 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    overflow: hidden;
    margin-top:-5px
}

    .op_box select {
        width: 100%;
        height: auto;
        line-height: normal;
        font-family: inherit;
        border: 0;
        padding-right: 20px;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .op_box:before {
        content: "";
        position: absolute;
        top: 50%;
        right: 5px;
        width: 0;
        height: 0;
        margin-top: -1px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ccc
    }

    .op_box label {
        padding-left: 15px;
        padding-right: 20px;
    }

    .op_box label {
        position: absolute;
        left: 0;
        top: 0;
        color: #999;
        z-index: -1;
    }

.user_info .in_td.bar {
    width: 15px;
    text-align: center;
    color: #797d88;
    padding-left: 0 !important;
}

    .user_info .in_td.bar span {
        position: relative;
        top: 1px;
    }

.input_area {
    background: #fff;
    border: 1px solid #d6d7d8;
    border-radius: 2px;
    box-sizing: border-box;
    height: 40px;
    line-height: 40px;
}

    .input_area input {
        height: 37px;
        line-height: 36px;
        width: 80%;
    }

    .input_area select {
        height: 39px;
        line-height: 39px;
    }

.user_info .in_td.address {
    display: table-cell;
    width: 34%;
    text-align: center;
}

.btn_type2 {
    width: 100%;
    height: 39px;
    font-size: 14px;
    letter-spacing: -1px;
    display: inline-block;
    background: #95bd0e;
    border-radius: 2px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    margin-top: -1px
}

.address .input_area {
    margin-bottom: 7px;
}

.payment {
    padding: 20px 15px 20px 15px;
    position: relative;
}

    .payment .tab {
        width: 33.1%;
        color: #6a6a6a;
        text-align: center;
        position: relative;
        float: left;
        padding: 8px 0;
        font-size: 15px;
        border: 1px solid #eaeaea;
        cursor: pointer;
        background: #f2f2f2;
    }

    .payment .pay_con {
        width: 100%;
        clear: both;
        display: none;
        margin-top: 15px
    }

.tab_on {
    border: 1px solid #95bd0e;
    background: #fff;
}

.pay_lst_chk:after {
    clear: both;
    content: '';
    display: block
}

.mb_20 {
    margin-bottom: 20px !important
}

.card_free {
    font-size: 13px;
    color: #666;
    float: right;
    text-decoration: underline;
    padding-right: 5px;
}

.pay_lst_chk li {
    float: left;
    width: 25%;
    text-align: center;
    position: relative;
    width: calc(25% - 6px);
    width: -webkit-calc(25% - 6px);
    background: #f1f1f1;
    border: 1px solid #f1f1f1;
    margin: 7px 7px 0 0;
}
.pay_lst_chk li button {
    width:100%;
}



.pay_lst_chk li:nth-child(4n) {
        margin-right: 0
    }

    .pay_lst_chk li a {
        display: -webkit-box;
        min-height: 33px;
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-pack: center;
    }

    .pay_lst_chk li strong {
        margin-top: 0;
        font-size: 13px;
        color: #999;
        white-space: nowrap;
        display: block;
        line-height: 1;
        padding-bottom: 5px;
    }

    .pay_lst_chk li label {
        display: block;
        padding: 12px 0 0;
        padding-right: 0px;
        width: 100%;
        height: 100%;
        font-size: 10px;
        color: #333;
        text-align: center;
        box-sizing: border-box;
        word-break: break-all;
    }

.sp_cart {
    background: url('/img/pay.png') no-repeat;
    display: inline-block;
    background-size: 608px;
    width: 55px;
    height: 35px;
}
.no_bank {
    display: inline-block;
    background-size: 608px;
    width: 100%;
    height: 35px;
}

.pay_lst_chk li.selected {
    border: 1px solid #95bd0e;
    background: #fff
}

.ico_hana {
    background-position: -10px -33px;
    background-size: 400px;
}

.selected .ico_hana {
    background-position: -10px 0px;
}

.ico_samsung {
    background-position: -110px -33px;
    background-size: 400px;
}

.selected .ico_samsung {
    background-position: -110px 0;
}

.ico_sin {
    background-position: -210px -33px;
    background-size: 400px;
}

.selected .ico_sin {
    background-position: -210px 0px;
}

.ico_hundai {
    background-position: -233px -22px;
    background-size: 310px;
}

.selected .ico_hundai {
    background-position: -233px 10px;
}

.ico_lotte {
    background-position: -10px -108px;
    background-size: 400px;
}

.selected .ico_lotte {
    background-position: -10px -75px;
}

.ico_bc {
    background-position: -105px -110px;
    background-size: 400px;
}

.selected .ico_bc {
    background-position: -105px -77px;
}

.ico_kb {
    background-position: -210px -110px;
    background-size: 400px;
}

.selected .ico_kb {
    background-position: -210px -77px;
}

.ico_kaka {
    background-position: -310px -110px;
    background-size: 400px;
}

.selected .ico_kaka {
    background-position: -310px -76px;
}

.ico_k {
    background-position: -10px -180px;
    background-size: 400px;
}

.selected .ico_k {
    background-position: -10px -148px;
}

.ico_city {
    background-position: -107px -180px;
    background-size: 400px;
}

.selected .ico_city {
    background-position: -107px -148px;
}

.ico_nh {
    background-position: -209px -180px;
    background-size: 400px;
}

.selected .ico_nh {
    background-position: -209px -147px;
}

.ico_gaungju {
    background-position: -308px -180px;
    background-size: 400px;
}

.selected .ico_gaungju {
    background-position: -308px -147px;
}

.ico_see {
    background-position: -10px -255px;
    background-size: 400px;
}

.selected .ico_see {
    background-position: -10px -223px;
}

.ico_buk {
    background-position: -107px -255px;
    background-size: 400px;
}

.selected .ico_buk {
    background-position: -107px -222px;
}

.ico_post {
    background-position: -215px -255px;
    background-size: 400px;
}

.selected .ico_post {
    background-position: -215px -223px;
}
.ico_woori {
    background-position: -308px -255px;
    background-size: 400px;
}

.selected .ico_woori {
    background-position: -308px -220px;
}

.mt_15 {
    margin-top: 15px;
}

.add_info {
    padding: 20px 0 5px 0;
    position: relative;
}

    .add_info .tab {
        width: 50%;
        color: #6a6a6a;
        text-align: center;
        position: relative;
        float: left;
        padding: 8px 0;
        font-size: 15px;
        border: 1px solid #eaeaea;
        cursor: pointer;
        background: #f2f2f2;
    }

    .add_info .add_list {
        width: 100%;
        clear: both;
        display: none;
    }

.cash_info {
    padding: 12px 0 16px;
}

    .cash_info li {
        position: relative;
        padding-left: 110px;
        line-height: 1.3;
        font-size: 14px;
        color: #686868;
        margin-bottom: 10px;
    }

        .cash_info li span {
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            color: #686868;
            font-weight: normal;
            line-height: 1.6;
        }

        .cash_info li label {
            position: absolute;
            top: 7px;
            left: 0;
            color: #5E636D;
            font-weight: normal;
            line-height: 1.5;
        }

.p1_5 {
    padding-left: 5px !important
}

.free_card_area {
    border: 1px solid #eaeaea;
    padding: 15px;
    margin-bottom: 15px;
}

    .free_card_area h3 {
        font-size: 15px;
        text-align: center;
        margin-bottom: 10px;
    }

.card-sale-desc {
    border-top: 1px solid #e4e4e4;
    margin: 0 -8px;
    padding: 0 8px;
    overflow: hidden;
}

    .card-sale-desc li {
        padding: 5px 0;
        border-bottom: 1px dotted #ddd;
    }

        .card-sale-desc li strong {
            font-size: 14px;
            font-weight: normal;
            color: #111;
            display: block;
            margin-bottom: 5px;
        }

        .card-sale-desc li span {
            font-size: 13px;
            color: #777;
            display: block;
            line-height: 20px;
        }

        .card-sale-desc li:last-child {
            border-bottom: 0;
        }

input, button, select, optgroup, textarea {
    line-height: normal
}

.box-content {
    background: #fff;
}

.tbl_order {
    width: 100%;
    border-top: 1px solid #111111;
    border-bottom: 1px solid #c5c5c5;
    background: #fff;
}

    .tbl_order td {
        border-bottom: 1px solid #d6d6d8;
        text-align: left;
        line-height: 50px;
        color: #333;
        font-size: 14px;
    }

    .tbl_order th {
        height: 50px;
        padding: 10px 15px;
        color: #333;
        font-size: 14px;
        border-bottom: 1px solid #d6d6d8;
    }

.tbl_zip {
    width: 100%;
    background: #fff;
}

    .tbl_zip td {
        border-bottom: 1px solid #d6d6d8;
        text-align: left;
        line-height: 1.4;
        color: #333;
        height: 40px;
        font-size: 15px;
    }

.zip_scroll {
    margin: 0 10px 50px 10px
}

.order_box {
    background: #fff;
}

    .order_box h3 {
        margin: 0 15px;
        line-height: 45px;
        font-size: 16px;
        color: #111;
    }

.btn_cancle {
    float: right;
    display: inline-block;
    width: 25px;
    height: 60px;
    vertical-align: middle;
    background-size: 25px;
    cursor: pointer;
    margin-right: 5px;
    background: url(/img/btn_close.gif) no-repeat 0 20px;
    background-size: 20px;
}

.pop_title_area {
    height: 60px;
    line-height: 60px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #d5d5d5;
    font-size: 20px;
    font-weight: 500;
}

.tab_type {
    margin: 15px;
}

    .tab_type ul:after {
        clear: both;
        display: block;
        content: ''
    }

    .tab_type ul li {
        width: 50%;
        float: left;
        text-align: center;
        position: relative;
        float: left;
        font-size: 15px;
        cursor: pointer;
        background: #f2f2f2;
    }

        .tab_type ul li a {
            padding: 8px 0;
            border: 1px solid #eaeaea;
            display: block;
        }

            .tab_type ul li a.on {
                border: 1px solid rgb(149, 189, 14);
                background: rgb(255, 255, 255);
                color: rgb(149, 189, 14);
            }

.zip_info {
    margin: 20px 15px
}

.btn_search_zip {
    float: right;
    background: #95bd0e;
    color: #fff;
    display: inline-block;
    padding: 0 12px;
    line-height: 39px;
    height: 39px;
}

.txt_green {
    color: #95bd0e
}

.w80 {
    width: 80%;
}

.txt_h4 {
    line-height: 1.3;
    font-size: 15px;
    color: #686868;
    margin-top: 15px;
    margin-bottom: 10px;
}

.txt_12 {
    font-size: 14px;
    color: #999;j
}

.zip_list {
    margin: 15px
}

.radio_tab li {
    margin-bottom: 10px
}

.buld {
    position: relative;
}

    .buld li {
        position: relative;
        line-height: 1.3;
        font-size: 15px;
        color: #686868;
        margin-bottom: 10px;
    }

    .buld .input_txt {
        width: 100%;
        height: 33px;
        border: 0;
        color: #686868;
        font-size: 15px;
        text-indent: 8px;
    }

.goods_stop {
    font-size: 12px;
    border: 1px solid #ff0000;
    padding: 1px 3px;
    color: #ff0000;
    line-height: 1;
    margin-right: 2px;
    letter-spacing: -1px;
    margin-top: 3px;
    display: inline-block;
}

.pay_ing {
    text-align:center;
    margin:10px auto
}

    .pay_ing em {
    font-style:normal
    }

.view_list .search_result {
    padding: 10px;
    padding-bottom:0;
}


.view_img .search_result {
    padding: 10px;
    padding-bottom:0
}

.no_cart {
    margin: 0 auto;
    text-align: center;
    font-size: 15px;
    color: #ccc;
    background:#fff
}
    .no_cart p {
        line-height: 20px;
        font-size: 20px;
        color:#999;
        font-weight:300
    }



.no_cart .fa-shopping-cart {
        margin: 30px 0 10px 0;
        font-size: 70px;
        color: #eaeaea;
    }

.mgb_100 {
    margin-bottom: 100px !important;
}
@media (min-width: 639px) {
    .main_goods {
        margin: 0 6px;
    }

        .main_goods > li {
            width: 25%;
            float: left;
        }

        .main_goods:after {
            clear: both;
            display: block;
            content: ""
        }

        .main_goods li div {
            margin: 10px 5px 5px 5px
        }

        .main_goods li:nth-child(2n) div {
            margin: 10px 5px 5px 5px
        }

    .view_img {
        margin: 0 6px;
    }

        .view_img > li {
            width: 25%;
            float: left;
        }

        .view_img:after {
            clear: both;
            display: block;
            content: ""
        }

        .view_img li div {
            margin: 10px 5px 0 5px
        }

        .view_img li:nth-child(2n) div {
            margin: 10px 5px 0 5px
        }

    .view_list {
        margin: 0 6px;
    }

        .view_list > li {
            width: 50%;
            float: left;
        }

        .view_list:after {
            clear: both;
            display: block;
            content: ""
        }

        .view_list li > div {
            margin: 10px 5px 0 5px;
            border: 1px solid #e6e6e6
        }

        .view_list li:nth-child(2n) div {
            margin: 10px 5px 0 5px;
        }

        .view_list > li:first-child > div {
            border-top: 1px solid #e6e6e6
        }

    .call_no div {
        padding-left: 55px;
        background-size: 50px;
    }
    
    .call_no strong {
        font-size: 22px;
    }

    .call_no p {
        font-size: 12px;
        line-height: 1;
        color: #fff;
    }
}


.sear_word {
    color: #76bc06
}

.no_good {
    background:#fff;
    padding:50px 0
}



.no_good p{
    text-align:center;
    color:#ccc
}



    .no_good p i{
font-size:50px;
color:#eaeaea
    }


.frame_area {
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.in_frame {
    overflow-y: scroll;
    padding: 0;
    margin: 0;
    border: 0;
    display: block;
    border: none;
    height: 100vh;
    width: 100vw;
}

body {
    margin: 0 !important;
    width:100%;
    height:100%
}

html, body {
    background: transparent !important;
    background-color: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-backface-visibility: visible;
}




    .box_height {
        height: 1000px;
        background:#fff;
    }




@media (max-width: 1440px) {

    .box_height {
        height: 797px;
    }
}



@media (max-width: 1024px) {

    .box_height {
        height: 566px;
    }
}



@media (max-width: 768px) {

    .box_height {
        height: 425px;
    }
}

@media (max-width: 425px) {

    .box_height {
        height: 235px;
    }
}

@media (max-width: 414px) {

    .box_height {
        height: 229px;
    }
}

@media (max-width: 375px) {

    .box_height {
        height:207px;
    }
}
@media (max-width: 360px) {

    .box_height {
        height: 199px;
    }
}



@media (max-width: 320px) {

    .box_height {
        height: 177px;
    }
}

