.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex-s {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-align-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-align-e {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-align-s {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-justify-a {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex-justify-b {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-justify-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.one {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.two {
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.three {
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  min-width: 1200px;
}

ul, li, p {
  padding: 0;
  margin: 0;
  list-style: none;
}

input {
  outline: none;
}

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

.header {
  width: 100%;
  height: 60px;
  background: #fff;
}

.header .logo {
  width: 158px;
  height: 20px;
  margin-left: 14px;
}

.header .nav li {
  font-size: 16px;
  font-weight: 500;
  line-height: 60px;
  margin: 0 15px;
}

.header .right {
  font-size: 14px;
}

.header .right .ser_input {
  width: 140px;
  height: 28px;
  border: 1px solid #000;
  border-radius: 14px;
  padding: 0 12px;
}

.header .right .infoBtn {
  margin-right: 21px;
}

.header .right .cart {
  line-height: 0;
  margin-right: 20px;
  position: relative;
}

.header .right .cart img {
  width: 20px;
  height: auto;
}

.header .right .cart .tips {
  position: absolute;
  top: -2px;
  left: 16px;
  font-size: 12px;
}

.jsNHeaderWrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 8;
}

.dim {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup_layout .dim {
  display: block;
}

.cart_section_popup.open {
  display: block;
}

.cart_section_popup {
  display: none;
  position: fixed;
  z-index: 999999;
  top: 66px;
  right: 30px;
}

.cart_section_popup_inner {
  padding: 20px 18px;
  width: 310px;
  background: #fff;
  border: 1px solid #b8b8b8;
  border-radius: 0px;
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cart_group_title {
  margin-bottom: 20px;
}

.cart_group {
  border-bottom: 1px solid #000;
}

.cart_items {
  max-height: 220px;
  overflow-y: auto;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.cart_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #c9c9c9;
}

.cart_item:last-child {
  border-bottom: none;
}

.cart_product_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
}

.cart_product_img img {
  display: block;
  width: 100%;
}

.cart_product_info {
  margin-left: 12px;
  width: calc(100% - 50px);
}

.cart_product_name {
  margin-bottom: 16px;
}

.cart_product_etc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cart_subtotal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 22px 0;
}

.cart_btn_group {
  margin-top: 20px;
}

.cart_popup_btn + .cart_popup_btn {
  margin-top: 10px;
}

/** cart layer */
.cart-layer {
  top: 59px;
  -webkit-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.16);
  border: 0;
  max-width: 365px;
  width: 100%;
}

.cart-layer .cart_section_popup_inner {
  border: 0;
  padding: 30px 24px 23px;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cart-layer__btn {
  display: block;
  width: 100%;
  padding: 13px 0 12px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  border-radius: 0px;
  text-align: center;
}

.cart-layer__btn--white {
  background: #fff;
  color: #000;
}

.cart-layer .cart_items {
  border-top: 0;
  border-bottom: 0;
}

.cart-layer .cart_subtotal {
  padding: 16px 0 0;
  font-size: 12px;
  font-weight: 500;
}

.cart-layer .cart_btn_group {
  margin-top: 30px;
}

.cart-layer .cart_group {
  border-bottom: 0;
}

.cart-layer .cart_item {
  border-bottom: 1px solid #e0e0e0;
  font-size: 12px;
  font-weight: 500;
}

.cart-layer .cart_popup_btn + .cart_popup_btn {
  margin-top: 9px;
}

.cart-layer .cart_product_name {
  margin-bottom: 10px;
}

.cart-layer .cart_product_info {
  position: relative;
}

.cart-layer .cart_product_etc span:nth-child(2) {
  position: absolute;
  right: 0;
  top: 0;
}

.cart-layer__btn {
  display: block;
  width: 100%;
  padding: 13px 0 12px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  border-radius: 0px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.cart-layer__btn--white {
  background: #fff;
  color: #000;
}

.n-search {
  width: 181px;
  height: 36px;
  margin: 12px 25px 12px 0;
  position: relative;
}

.n-search__top {
  /* position: fixed; */
  top: 0;
  right: 0;
  /* width: 636px; */
  height: 1px;
  -webkit-transition: width 0.6s ease, height 0.6s ease;
  transition: width 0.6s ease, height 0.6s ease;
}

/* Close btn */
.close-btn {
  position: relative;
  width: 25px;
  height: 25px;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}

.close-btn::before,
.close-btn::after {
  content: '';
  display: block;
  width: 13px;
  height: 1.2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -6.5px;
  cursor: pointer;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.close-btn::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.has-noti .n-search__top {
  top: 44px;
}

.search-on .n-search__top {
  position: fixed;
  width: 100%;
  height: 60px;
  z-index: 4;
}

.n-search__top::before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.has-noti .n-search__top::before {
  top: 44px;
}

.notice-popup[style="opacity: 0;"] ~ .has-noti .n-search__top::before {
  top: 0;
}

.search-on .n-search__top::before {
  opacity: 1;
  visibility: visible;
}

.n-search-popup-close {
  position: fixed;
  top: 17.5px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.has-noti ~ .n-search-popup-close {
  top: 71.5px;
}

.notice-popup[style="opacity: 0;"] ~ .has-noti ~ .n-search-popup-close {
  top: 27.5px;
}

.search-on ~ .n-search-popup-close {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  opacity: 1;
  visibility: visible;
}

.n-search__form {
  width: 181px;
  height: 36px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #000;
  border-radius: 18px;
  overflow: hidden;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  position: absolute;
  top: 0;
  left: 50%;
  /* margin: 22px 0; */
  margin-bottom: 12px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.search-on .n-search__form {
  width: 580px;
  margin-top: 12px;
}

.n-search__input {
  width: 100%;
  height: 34px;
  line-height: 34px;
  border: none;
  padding: 0;
  margin: 0;
  text-indent: 15px;
}

.n-search-popup-bg {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.46);
  opacity: 0;
  visibility: hidden;
  z-index: 6;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.search-on ~ .n-search-popup-bg {
  opacity: 1;
  visibility: visible;
}

.n-search-popup {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  min-width: 1200px;
  height: 375px;
  background: #fff;
  /* z-index: 6; */
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.has-noti ~ .n-search-popup {
  top: 124px;
}

.search-on ~ .n-search-popup {
  opacity: 1;
  visibility: visible;
}

.search-on ~ .n-search-popup > .n-search-popup__content {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.n-search-popup__content {
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
  padding-top: 45px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.n-search-popup__left {
  min-width: 171px;
  max-width: 200px;
}

.n-search-popup__title {
  font-size: 14px;
  font-weight: 500;
  color: #acacac;
  line-height: 13px;
  margin-bottom: 24px;
}

.hot-keyword {
  padding-top: 11px;
}

.hot-keyword__item {
  margin-bottom: 13px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.hot-keyword__item:hover {
  opacity: .6;
}

.hot-keyword__link,
.collection-cate__name {
  font-size: 12px;
  font-weight: 500;
  color: #000;
}

.n-search-popup__right {
  width: 346px;
}

.collection-cate__list {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

.collection-cate__item {
  width: 25%;
  margin-bottom: 30px;
  text-align: center;
}

.collection-cate__thumb {
  border-radius: 50%;
  display: inline-block;
  width: 69px;
  margin-bottom: 4px;
  padding: 2px;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.6s ease;
  transition: border-color 0.6s ease;
}

.collection-cate__item:hover .collection-cate__thumb {
  border-color: #343434;
}

.collection-cate__img {
  border-radius: 50%;
  width: 63px;
  height: 63px;
}

.footer {
  padding: 50px 60px 40px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #e5e5e5;
}

.footer .footer_nav .footer_section {
  width: 25%;
}

.footer .footer_nav .footer_section .footer_title {
  padding: 10px 0;
  cursor: default;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  background: none;
}

.footer .footer_nav .footer_section .footer_items li {
  margin: 1px 0;
  display: block;
  padding: 1px 0;
  font-size: 13px;
  color: #343434;
}

.footer .footer_nav .footer_section .sns_items li {
  margin-left: 10px;
}

.footer .footer_nav .footer_section .sns_items li .icon {
  width: 22px;
  height: auto;
}

.footer .footer_nav .footer_section .sns_items li:first-child {
  margin-left: 0;
}

.footer .footer_nav .footer_section .footer_group {
  max-width: 280px;
  display: block;
  padding-right: 20px;
  cursor: pointer;
  font-size: 12px;
  color: #343434;
  line-height: 1.5em;
}

.footer .copyright {
  padding: 58px 0 0;
  font-size: 15px;
}

.footer .copyright .font_title {
  min-width: 250px;
  max-width: 250px;
  font-size: 16px;
  font-weight: normal;
}

.footer .copyright p {
  font-size: 11px;
}

.main .index-banner {
  height: 940px;
}

.main .index-banner .swiper-wrapper .swiper-slide a {
  display: block;
  width: 100%;
  height: 940px;
  background-size: auto 100%!important;
}

.logon {
  width: 545px;
  margin: 78px auto 278px;
}

.logon .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 45px;
}

.logon .item {
  width: 100%;
  margin-top: 20px;
}

.logon .item .z_title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 4px;
}

.logon .item input {
  font-size: 12px;
  width: 100%;
  height: 26px;
  border: 1px solid;
  padding: 0 11px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.logon .item .codeBtn {
  width: 270px;
  height: 28px;
  color: #fff;
  background: #000;
  border-color: #000;
  margin: 0;
  margin-left: 20px;
}

.logon .logon_bottom {
  margin-top: 40px;
}

.logon .input-box-check label {
  text-align: left;
  /* margin: 20px 0 11px; */
  color: #000;
  line-height: 1;
  font-size: 12px;
  width: 100%;
  position: relative;
}

.logon .input-box-check + .input-box-check {
  margin-top: 8px;
}

.logon .input-box-check label,
.logon .input-box-check span,
.logon .input-box-check span a,
.logon .input-box-check span u {
  line-height: 1;
}

.logon .input-box-check span {
  width: calc(100% - 22px);
  line-height: 1.5;
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: -2px;
}

.logon .input-box-check input[type="checkbox"] {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
}

.logon .input-box-check:after {
  content: '';
  display: block;
  clear: both;
}

.logon .input-box-check-layer {
  position: relative;
  width: 14px;
  height: 14px;
  float: left;
  margin-right: 8px;
}

.logon .input-box-check-layer:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid #2b2e34;
  z-index: 1;
}

.logon .input-box-check-layer:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 8px;
  height: 8px;
  background: #000;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}

.logon .input-box-check input[type="checkbox"]:checked + .input-box-check-layer:after {
  opacity: 1;
}

.logon .login_bt {
  color: #fff;
  width: 180px;
  height: 28px;
  background: #000;
  border-color: #000;
  margin-top: 20px;
}
/*# sourceMappingURL=style.css.map */