
/* --------------------------------------------------
 * product styles
 * -------------------------------------------------- */
.full-pos,
.product-list li.active:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
/* product list */
.product-list-container {
  margin-top: -8px;
}
.product-list-container .selectbox {
  width: 200px;
  margin-left: 1em;
}
.product-list-container .selectbox:first-child {
  float: left;
  margin-left: 0;
}
.product-list {
  zoom: 1;
  position: relative;
  margin: -8px -8px 0;
}
.product-list:before {
  content: '';
  display: block;
}
.product-list:after {
  content: '';
  display: table;
  clear: both;
}
.product-list .item,
.product-list li {
  float: left;
  width: 25%;
  text-align: center;
  text-transform: none;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 1;
}
.product-list li.blur {
  /* Hover Style for all the items: blur */
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  filter: alpha(opacity=50);
  opacity: 0.5;
  z-index: 0;
  filter: blur(0.5px);
  -webkit-filter: blur(0.5px);
  -moz-filter: blur(0.5px);
  -o-filter: blur(0.5px);
  -ms-filter: blur(0.5px);
}
.product-list li.active {
  /* Hover Style for single item */
  position: relative;
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.8);;
  -moz-box-shadow: 0 0 10px rgba(0,0,0,0.8);;
  box-shadow: 0 0 10px rgba(0,0,0,0.8);;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  opacity: 1;
  z-index: 11;
}
.product-list li.active:before {
  content: '';
  z-index: 2;
  border: 1px solid #333;
}
.product-list .thumb {
  display: block;
  position: relative;
  padding-bottom: 100%;
  margin-bottom: 8px;
}
.product-list .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-list .cont {
  display: block;
}
.product-list .item {
  margin-bottom: 40px;
}
.product-list .item.is-blur,
.product-list .item.blur {
  /* Hover Style for all the items: blur */
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  filter: alpha(opacity=50);
  opacity: 0.5;
  z-index: 0;
  filter: blur(0.5px);
  -webkit-filter: blur(0.5px);
  -moz-filter: blur(0.5px);
  -o-filter: blur(0.5px);
  -ms-filter: blur(0.5px);
}
.product-list .item.active,
.product-list .item.is-active {
  /* Hover Style for single item */
  position: relative;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  opacity: 1;
  z-index: 11;
}
.product-list .item.active .product-item,
.product-list .item.is-active .product-item {
  position: relative;
  z-index: 3;
}
.product-list .product-item {
  position: relative;
  text-decoration: none;
  padding: 8px 8px 0;
}
.product-list .product-item-link {
  display: block;
}
.product-list .product-item-link:focus,
.product-list .product-item-link:hover {
  text-decoration: none;
}
.product-name {
  overflow: hidden;
  display: block;
  height: 1.5em;
  margin-bottom: .1em;
  color: #333333;
  font-size: 1.35em;
  font-weight: normal;
  letter-spacing: 0.05em;
}
.product-price {
  display: block;
  margin-bottom: 5px;
  color: #767676;
  font-size: 1.5em;
}
.product-direct-link {
  display: block;
  position: relative;
  padding: 6px 0 7px 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  color: #333333;
  font-size: 14px;
  font-family: 'NotoSans', 'Microsoft YaHei New', 'Microsoft Yahei', '微软雅黑', '冬青黑体', 'Hiragino Sans GB', STHeitiSC, SimHei, Helvetica, sans-serif;
  cursor: pointer;
}
.is-active .product-direct-link,
.product-direct-link:focus,
.product-direct-link:hover {
  color: #191919;
  text-decoration: none;
}
.is-active .product-direct-link:after,
.product-direct-link:focus:after,
.product-direct-link:hover:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: #767676;
}
.product-txt {
  display: block;
  font-size: 1.4em;
}
@media only all and (max-width: 1023px) {
  .product-list-container .sort-area {
    text-align: center;
  }
  .product-list-container .selectbox {
    width: 31%;
  }
  .product-list-container .selectbox:last-child {
    float: right;
  }
  .product-list .item,
  .product-list li {
    width: 33.33333333%;
  }
}
@media only all and (max-width: 599px) {
  .product-list-container .selectbox {
    width: auto;
    margin-left: 0;
  }
  .product-list-container .selectbox:first-child,
  .product-list-container .selectbox:last-child {
    float: none;
  }
  .product-list .item,
  .product-list li {
    width: 50%;
    margin-bottom: 35px;
  }
}
@media only all and (max-width: 384px) {
  .product-list-container .selectbox:first-child {
    float: none;
  }
  .product-list .product-item {
    padding: 5px;
  }
  .product-list {
    margin-left: -5px;
    margin-right: -5px;
  }
  .product-list .cont {
    height: 6.8em;
  }
  .product-name {
    height: 3em;
    line-height: 1.3;
  }
}
@media only all and (min-width: 1440px) {
  .product-list-container .selectbox {
    min-width: 200px;
  }
}
:root .product-list-container-list .item.blur,
:root .product-list-container-list li.blur {
  filter: none;
}
.product-view-container {
  clear: both;
  display: none;
  outline: none;
  margin-bottom: 3.63636364%;
}
.product-view-container .product-view {
  display: table;
  table-layout: fixed;
  width: 100%;
  padding: 0 6.36363636% 0 11.81818182%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.product-view-container .product-view:before,
.product-view-container .product-view:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -1500px;
  width: 3000px;
}
.product-view-container .product-view:before {
  top: -41px;
  border-top: 1px solid #d5d5d5;
}
.product-view-container .product-view:after {
  bottom: 0;
  border-bottom: 1px solid #d5d5d5;
}
.product-view-container .bx-wrapper {
  position: relative;
}
.product-view-container .detail-item-wrap {
  position: relative;
  font-size: 1em;
  padding: 2.72727273% 0 6.36363636% 0;
}
.product-view-container .detail-info-thumb {
  overflow: hidden;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 45%;
  display: table-cell;
  vertical-align: top;
  z-index: 2;
}
.product-view-container .detail-info-thumb .bx-pager-link {
  padding: 0;
}
.product-view-container .detail-info {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 55%;
  display: table-cell;
  vertical-align: middle;
}
.product-view-container .detail-info-box {
  margin-left: 10%;
}
.product-view-container .detail-info .h {
  margin-bottom: 1em;
}
.product-view-container .detail-info .h-ko {
  color: #333333;
  font-size: 2.8em;
}
.product-view-container .detail-info .h-en {
  color: #555555;
}
.product-view-container .detail-info-slider {
  zoom: 1;
}
.product-view-container .detail-info-slider:before {
  content: '';
  display: block;
}
.product-view-container .detail-info-slider:after {
  content: '';
  display: table;
  clear: both;
}
.product-view-container .detail-points-section {
  padding: 0;
}
.product-view-container .detail-points-section li {
  width: auto;
  color: #767676;
  background-color: #eeeeee;
  border-color: #cccccc;
}
.product-view-container .detail-comment-section {
  clear: both;
  font-size: 1.5em;
  line-height: 1.2;
  color: #8d5635;
  font-family: 'NotoSans', 'Microsoft YaHei New', 'Microsoft Yahei', '微软雅黑', '冬青黑体', 'Hiragino Sans GB', STHeitiSC, SimHei, Helvetica, sans-serif;
  padding: 3.63636364% 0 3.63636364% 0;
}
.product-view-container .detail-comment-section .count {
  font-size: 1.7em;
  font-family: 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
}
.product-view-container .detail-comment-section span {
  color: #767676;
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px solid #eeeeee;
}
.product-view-container .detail-comment-section .icon-rating {
  vertical-align: middle;
}
.product-view-container .order-detail .selectbox {
  width: 18%;
  min-width: auto;
}
.product-view-container .order-detail .selectbox-choose {
  width: 100%;
}
.product-view-container .order-detail .selectbox li {
  float: none;
  width: auto;
  text-align: left;
}
.product-view-container .order-detail .selectbox:first-child {
  float: none;
}
.product-view-container .order-volume li {
  text-align: left;
}
.product-view-container .order-price {
  margin-bottom: 0;
}
.product-view-container .func {
  margin-top: 1em;
}
.product-view-container .func .btn {
  width: 49%;
  vertical-align: middle;
  font-size: 1.8em;
  padding: .9em 0 1em 0;
  font-weight: normal;
}
.product-view-container .close-btn {
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
}
@media only all and (max-width: 1023px) {
  .product-view-container .product-view {
    display: block;
    padding: 0 6.36363636%;
  }
  .product-view-container .detail-info-thumb,
  .product-view-container .detail-info {
    width: auto;
    display: block;
    max-width: 640px;
    margin: 0 auto;
  }
  .product-view-container .detail-info {
    margin-top: 5%;
  }
  .product-view-container .detail-info-box {
    margin-left: 0%;
  }
}
@media only all and (max-width: 767px) {
  .product-view-container .detail-info-thumb .icon-label-best {
    width: 50px;
    height: 74px;
    background-size: auto 100%;
  }
  .product-view-container .detail-comment-section {
    font-size: 1.2em;
  }
  .product-view-container .detail-comment-section .count {
    font-size: 1.4em;
  }
  .product-view-container .detail-comment-section span {
    margin-left: 0.5em;
    padding-left: 0.5em;
  }
  .product-view-container .detail-comment-section .icon-rating {
    width: 48px;
    height: 10px;
    background-size: 100% auto;
  }
  .product-view-container .order-detail .detail-colors {
    position: static;
    background: transparent;
  }
  .product-view-container .order-detail .detail-colors .color-chip {
    width: 18%;
  }
  .product-view-container .close-btn {
    top: -30px;
  }
  .product-view-container .close-btn .icon-close {
    width: 40px;
    height: 40px;
  }
}
@media only all and (max-width: 599px) {
  .product-view-container .close-btn .icon-close {
    width: 30px;
    height: 30px;
  }
}
/* 20151214 /zh/products/recommend_test 목록페이지 추가 시작 */
.yell {
  color: #ceb184;
}
.recommend-list .visual .visual-img .visual-mobile {
  display: none;
}
.recommend-list {
  max-width: 1100px;
  margin: 0 auto 1.5em;
}
.recommend-list .visual {
  position: relative;
}
.recommend-list .visual .visual-desc {
  white-space: nowrap;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  color: #ffffff;
  font-size: 1.25em;
  text-align: center;
}
.recommend-list .visual .visual-desc:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.recommend-list .visual .visual-desc .visual-desc-cell {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
}
.recommend-list .visual .visual-desc .visual-desc-cell h2 {
  font-size: 2em;
  font-family: '宋体', 'SimSun', '新宋体', 'NSimSun', serif;
  font-weight: normal;
}
.recommend-list .visual .visual-desc .visual-desc-cell h2 span {
  display: block;
}
.recommend-list .visual .visual-desc .visual-desc-cell .btn {
  margin-top: 1.5em;
  padding: 0.8em 2.5em;
  border: 1px solid #fff;
  color: #fff;
  font-size: 13px;
  text-align: center;
  vertical-align: middle;
  background: transparent;
}
.recommend-list .visual .visual-desc .visual-desc-cell .btn:hover {
  color: #333;
  background-color: #fff;
}
@media only all and (max-width: 767px) {
  .yell {
    color: #fff;
  }
  .recommend-list .visual .visual-img .visual-original {
    display: none;
  }
  .recommend-list .visual .visual-img .visual-mobile {
    display: block;
    width: 100%;
  }
  .recommend-list .visual .visual-desc {
    width: 100%;
  }
  .recommend-list .visual .visual-desc .visual-desc-cell {
    vertical-align: bottom;
    padding-bottom: 2em;
  }
  .recommend-list .visual .visual-desc .visual-desc-cell h2 span {
    font-size: 0.9em;
  }
  .recommend-list .visual .visual-desc .visual-desc-cell .btn {
    margin-top: 1em;
    font-size: 14px;
  }
  .recommend-list .visual .visual-desc.black .visual-desc-cell h2,
  .recommend-list .visual .visual-desc.black .visual-desc-cell .btn {
    color: #333;
  }
  .recommend-list .visual .visual-desc.black .visual-desc-cell .btn {
    border: 1px solid #333;
  }
}
@media only all and (max-width: 320px) {
  .recommend-list .visual .visual-desc .visual-desc-cell {
    padding-bottom: 1.5em;
  }
  .recommend-list .visual .visual-desc .visual-desc-cell h2 {
    font-size: 1.5em;
  }
  .recommend-list .visual .visual-desc .visual-desc-cell .btn {
    margin-top: 0.5em;
  }
}
.__order {
  overflow-x: hidden;
}
/* product detail */
.detail-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 50%;
  bottom: 0;
  font-size: 0.9em;
  z-index: 2;
}
.detail-info-container {
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 50%;
  font-size: 1em;
  background: #444444 url(../image/detail_bg.jpg);
}
.detail-info-slider {
  -webkit-transition: all 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-transition: all 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-transition: all 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: all 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.detail-info-label {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}
.detail-info-label .icon-label {
  width: 75px;
  height: 110px;
  background-image: url(../image/icons_label.png);
  background-repeat: no-repeat;
}
.detail-info-label .icon-label-best {
  background-position: 0 0;
}
.detail-info-thumb {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
}
.detail-info-thumb .bx-pager {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}
.detail-info-thumb .bx-pager-item {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  font-size: 0;
  text-align: center;
}
.detail-info-thumb .bx-pager-item:first-child {
  margin-left: -12px;
}
.detail-info-thumb .bx-pager-link {
  overflow: hidden;
  display: inline-block;
  background: #ffffff;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  text-indent: 20px;
  -webkit-transition: width 0.2s;
  -moz-transition: width 0.2s;
  -o-transition: width 0.2s;
  transition: width 0.2s;
}
.detail-info-thumb .bx-pager-link.active {
  width: 25px;
}
.detail-info-thumb .bx-controls-direction {
  position: absolute;
  top: 50%;
  width: 100%;
}
.detail-info-thumb .bx-controls-direction a {
  position: absolute;
  top: 0;
  display: block;
  font-family: "fontello";
  font-size: 0;
  text-decoration: none;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.detail-info-thumb .bx-controls-direction .disabled {
  display: none;
}
.detail-info-thumb .bx-controls .bx-prev {
  left: 0;
}
.detail-info-thumb .bx-controls .bx-prev:after {
  content: '\e80a';
  font-size: 50px;
}
.detail-info-thumb .bx-controls .bx-next {
  right: 0;
}
.detail-info-thumb .bx-controls .bx-next:after {
  content: '\e80b';
  font-size: 50px;
}
.detail-info-pd {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  padding: 9% 8% 2.1em;
}
.detail-info .h {
  margin-bottom: 2em;
  color: white;
  font: normal 1em/1.25 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
}
.detail-info .h-ko {
  display: block;
  font-weight: normal;
  font-size: 2.6em;
  margin-bottom: .25em;
}
.detail-info .h-en {
  display: block;
  line-height: 1.2;
  color: #999999;
  font-size: 1.8em;
}
.detail-buy {
  clear: both;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  border-top: 1px solid #666;
  text-align: left;
}
.detail-buy .price {
  float: left;
  color: #eeeeee;
  font-size: 2.4em;
  line-height: 1.7;
}
.detail-buy .price:before {
  content: '￥';
}
.detail-buy .func {
  margin-top: 0;
  text-align: right;
}
.detail-buy .func .btn {
  padding-left: 2.42em;
  padding-right: 2.42em;
  font-size: 1.4em;
}
.detail-buy .func .btn:hover {
  color: #191919;
  background: #ffffff;
}
.detail-colors .color-chip-list {
  zoom: 1;
  padding: 14px 0;
  border-bottom: 1px solid #666;
}
.detail-colors .color-chip-list:before {
  content: '';
  display: block;
}
.detail-colors .color-chip-list:after {
  content: '';
  display: table;
  clear: both;
}
.detail-colors .color-chip {
  position: relative;
  float: left;
  width: 10%;
  margin-right: 8px;
  font-size: 12px;
  border: 1px solid transparent;
  border-radius: 1px;
  z-index: 10;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.detail-colors .color-chip.is-current {
  border-color: white;
}
.detail-colors .color-chip:hover {
  border-color: white;
}
.detail-colors .color-chip:hover .color-name {
  display: block;
}
.detail-colors .color-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border: 1px solid #191919;
}
.detail-colors .color-name {
  display: none;
  position: absolute;
  left: 50%;
  top: -36px;
  background: white;
  text-align: center;
  white-space: nowrap;
  width: 110px;
  margin-left: -55px;
  padding: 5px 0;
  border: 1px solid #191919;
  -webkit-animation: colorCode 0.2s linear forwards;
  animation: colorCode 0.2s linear forwards;
}
@keyframes colorCode {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.detail-colors .color-name:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  margin-left: -5px;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: white transparent transparent transparent;
  width: 0;
  height: 0;
}
.detail-phrase {
  margin-top: 0;
  color: #d5d5d5;
  font-size: 1.4em;
  letter-spacing: 0.07em;
}
.detail-bottom {
  position: absolute;
  width: 84%;
  bottom: 20px;
  left: 8%;
  right: 8%;
  text-align: right;
}
.detail-sharing {
  position: absolute;
  right: 0;
  bottom: 85px;
}
.detail-sharing-link {
  display: inline-block;
  width: 1em;
  height: 1em;
  padding: 0 3px;
  margin-left: 5px;
  font-size: 2.4em;
  line-height: 1.2;
  text-align: center;
}
.detail-sharing-link:focus,
.detail-sharing-link:hover {
  color: #fff;
  text-decoration: none;
}
.detail-sharing-link .icon-twitter {
  font-size: .9em;
}
.detail-sharing .sharing-mo {
  display: none;
}
.detail-points {
  zoom: 1;
  padding: 1px 0;
  font-size: 1.4em;
  text-align: left;
}
.detail-points:before {
  content: '';
  display: block;
}
.detail-points:after {
  content: '';
  display: table;
  clear: both;
}
.detail-points-section {
  padding: 1em 0 1.5em 0;
  width: 90%;
}
.detail-points > li {
  display: inline-block;
  margin: .5em .3em 0 0;
  padding: 0.4em 1.2em;
  background-color: #555555;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #666;
  color: #aaaaaa;
  line-height: 1.2;
  vertical-align: middle;
}
.detail-points .vol {
  background: transparent;
}
.detail-concept {
  margin-top: 5em;
  font-size: 1.6em;
}
.detail-concept h2 {
  margin-bottom: 1em;
  color: #191919;
  font-size: 1.67em;
  font-weight: normal;
  font-family: 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
  line-height: 1.3;
  text-align: center;
}
.detail-concept h2 > span {
  white-space: nowrap;
}
.detail-concept-visual {
  margin-bottom: 2.2em;
}
.detail-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 8.5%;
  font-size: 14px;
}
.detail-content h2,
.detail-content h3 {
  margin-bottom: .4em;
  color: #555555;
  font-size: 1.1em;
  color: #333;
  font-weight: normal;
}
.detail-content p {
  margin-top: 0;
  margin-bottom: 1.8em;
  color: #999999;
}
.detail-content ul {
  margin-top: 0;
  margin-bottom: 1.8em;
  color: #999999;
}
.detail-content ul li {
  position: relative;
  padding-left: 13px;
}
.detail-content ul li:before {
  content: '-';
  position: absolute;
  left: 0px;
  margin-top: -3px;
}
.detail-content p + ul {
  margin-top: -1.4em;
}
.detail-content .use-list li {
  zoom: 1;
  padding-left: 230px;
  margin-left: 0;
  margin-bottom: 1.8em;
}
.detail-content .use-list li:before {
  content: '';
  display: block;
}
.detail-content .use-list li:after {
  content: '';
  display: table;
  clear: both;
}
.detail-content .use-list li:before {
  display: none;
}
.detail-content .use-list li > img {
  float: left;
  margin-left: -230px;
  width: 210px;
}
.detail-content .use-list li > h4 {
  color: #333;
  margin-bottom: 0.8em;
}
.detail-content .use-list li > p {
  margin-bottom: 0.8em;
}
.detail-content .color-list {
  zoom: 1;
  border: 1px solid #eee;
  padding: 1em;
  margin-bottom: 1.8em;
}
.detail-content .color-list:before {
  content: '';
  display: block;
}
.detail-content .color-list:after {
  content: '';
  display: table;
  clear: both;
}
.detail-content .color-list li {
  float: left;
  width: 50%;
  padding-left: 0;
  margin: 0;
}
.detail-content .color-list li:before {
  display: none;
}
.detail-content .color-list li p {
  display: inline-block;
  font-size: .9em;
  margin: 0;
}
.detail-content .color-item {
  display: inline-block;
  width: 200px;
  height: 100px;
  vertical-align: bottom;
  margin-right: .5em;
}
.detail-content .color-item span {
  display: inline-block;
  width: 50%;
  height: 100%;
  vertical-align: top;
}
.detail-section {
  margin-top: 5em;
  font-size: 1.8em;
}
.detail-section-header {
  margin-bottom: 40px;
  border-bottom: 1px solid #eeeeee;
  font-family: 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
  text-align: center;
}
.detail-section-header .h {
  padding-bottom: .5em;
  color: #191919;
  font-weight: normal;
  font-size: 1.15em;
}
.detail-video {
  margin-top: 6em;
  font-size: 1.5em;
}
.detail-video .video-link {
  display: block;
  position: relative;
}
.detail-video .flexible-obj {
  background: #000;
}
.detail-video .f-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -48px 0 0 -32px;
  color: white;
  font-size: 64px;
  line-height: 1;
}
.detail-video .video-iframe {
  border: 0;
}
.detail-video .video-player-desc {
  display: none;
  overflow-y: scroll;
  max-height: 135px;
  padding: 2.72727273% 2.72727273%;
  color: #aaaaaa;
  text-align: left;
}
.detail-video .video-player-desc p {
  margin-top: 0;
  margin-bottom: 1em;
}
.detail-video .video-player + .video-player-desc {
  display: block;
}
.detail-comment {
  position: relative;
  padding: 2.5em 0 1em;
  margin-bottom: -30px;
  background: url(../image/btn-stop-mo.jpg) center center no-repeat;
}
.detail-comment-content {
  overflow: hidden;
}
.detail-comment-content .detail-content {
  font-size: 14px;
}
.detail-comment-content .h {
  padding-right: 100px;
  color: #333333;
  font-size: 1.1em;
}
.detail-comment-content p {
  margin-bottom: 1em;
}
.detail-comment-content .user-data {
  color: #aaaaaa;
  font-size: 13px;
}
.detail-comment-content .user-data span {
  position: relative;
  margin-left: 8px;
  padding-left: 10px;
}
.detail-comment-content .user-data span:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 12px;
  background: #cccccc;
}
.detail-comment-content .user-data button {
  padding: 0;
  color: #aaaaaa;
  font-size: 13px;
}
.detail-comment-content .comment-more {
  position: absolute;
  right: 0;
  bottom: 1em;
  padding: 0;
  color: #aaaaaa;
  font-size: 13px;
}
.detail-comment-content .comment-more:after {
  content: '\e800';
  margin-left: 5px;
  font-family: 'fontello';
}
.detail-comment-content .func {
  zoom: 1;
  position: relative;
  margin-top: 1em;
}
.detail-comment-content .func:before {
  content: '';
  display: block;
}
.detail-comment-content .func:after {
  content: '';
  display: table;
  clear: both;
}
.detail-comment-content .func .comment-write {
  float: left;
  max-height: 40px;
  padding: 0.64em 2.42em;
  color: #333333;
  border-color: #333333;
}
.detail-comment-content .func .comment-write:focus,
.detail-comment-content .func .comment-write:hover {
  background: #333333;
  color: #ffffff;
}
.detail-comment-content .func .paging {
  margin-top: 0;
  float: right;
  font-size: 1em;
}
.detail-comment-item {
  position: relative;
  padding: 1em 0;
  border-bottom: 1px solid #eeeeee;
}
.detail-comment-item.is-expanded p {
  height: 62px;
  word-wrap: break-word;
  -webkit-line-clamp: inherit;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-wrap: normal;
}
.detail-comment-item.is-expanded .comment-more:after {
  content: '\e802';
}
.detail-comment-item .icon-rating {
  position: absolute;
  top: 1.2em;
  right: 0;
}
.detail-comment-review {
  padding: 5.12820513%;
  background-color: #eeeeee;
}
.detail-comment-review .review-content {
  padding: 4.28571429%;
  background: #ffffff;
}
.detail-comment-review .review-content-item {
  position: relative;
  padding: 0.5em 20px 0.5em 145px;
  border-top: 1px solid #eeeeee;
}
.detail-comment-review .review-content-item:first-child {
  border-color: #d5d5d5;
}
.detail-comment-review .review-content .h {
  padding: 0;
  font-size: 1.33em;
  font-family: 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
  text-align: center;
}
.detail-comment-review .review-content .label {
  position: absolute;
  top: 50%;
  left: 60px;
  margin-top: -11px;
}
.detail-comment-review .review-content input,
.detail-comment-review .review-content textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.detail-comment-review .selectbox {
  width: 50%;
}
.detail-comment-review .selectbox-option li {
  padding: 0;
}
.detail-comment-review .selectbox-option li:before {
  display: none;
}
.detail-comment-review .selectbox .selector {
  padding: 7px 35px 10px 10px;
  border: 1px solid #cccccc;
  font-size: 1em;
}
.detail-comment-review .selectbox .icon-arr-up,
.detail-comment-review .selectbox .icon-arr-down {
  right: 5px;
}
.detail-comment-review .selectbox label {
  padding-top: 0;
}
.detail-comment-review .icon-rating {
  vertical-align: middle;
}
.detail-comment-review .comment-limit {
  display: block;
  margin-top: 5px;
  color: #555555;
  font-size: 13px;
  text-align: right;
}
.detail-comment-review .func {
  padding-top: 1em;
  margin-top: 0;
  border-top: 1px solid #d5d5d5;
  text-align: right;
}
.detail-comment-layer {
  position: relative;
  z-index: 101;
}
.detail-comment.is-close .icon-arr-up-big:before {
  content: '\e805';
}
.detail-comment .func {
  margin-top: 1em;
}
.detail-comment .func button {
  font-size: 13px;
  padding-left: 2.42em;
  padding-right: 2.42em;
  color: #333333;
  border-color: #333333;
  background: transparent;
}
.detail-comment .func button:hover,
.detail-comment .func button:focus {
  color: #ffffff;
  background: #333333;
}
.detail-comment .h3 {
  color: #8d5635;
  font-size: 15px;
  font-weight: normal;
  font-family: 'NotoSans', 'Microsoft YaHei New', 'Microsoft Yahei', '微软雅黑', '冬青黑体', 'Hiragino Sans GB', STHeitiSC, SimHei, Helvetica, sans-serif;
}
.detail-comment .h3 span {
  position: relative;
  margin-left: 10px;
  padding-left: 10px;
  color: #333333;
}
.detail-comment .h3 span:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 16px;
  margin: auto;
  background: #cccccc;
  z-index: 1;
}
.detail-comment .h3 span .count {
  color: #333333;
}
.detail-comment .h3 .icon-rating {
  vertical-align: middle;
  margin-right: 5px;
}
.detail-comment .h3 .count {
  font-size: 1.73em;
  font-family: 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
}
.detail-comment .no-comment {
  display: block;
  color: #333333;
  font-size: 15px;
  font-family: 'NotoSans', 'Microsoft YaHei New', 'Microsoft Yahei', '微软雅黑', '冬青黑体', 'Hiragino Sans GB', STHeitiSC, SimHei, Helvetica, sans-serif;
}
@media only all and (max-width: 1023px) {
  .detail-info {
    font-size: .85em;
  }
  .detail-colors .color-chip-list {
    padding: 8px 0;
  }
  .detail-colors .color-chip {
    width: 30px;
    margin-right: 7px;
  }
  .detail-sharing {
    bottom: 60px;
  }
  .detail-sharing .sharing-de {
    display: none;
  }
  .detail-buy {
    padding-bottom: 0;
  }
  .detail-points-section {
    padding: 3px 0 8px 0;
  }
  .detail-points > li {
    padding: .3em .8em;
  }
  .detail-concept {
    margin-top: 3.5em;
    font-size: 1.4em;
  }
  .detail-concept-visual {
    overflow: hidden;
    position: relative;
    margin-bottom: 2.2em;
  }
  .detail-concept-visual.visual-left {
    height: 0;
    padding-bottom: 25%;
  }
  .detail-concept .visual-left .detail-concept-img,
  .detail-concept .visual-right .detail-concept-img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    height: 100%;
  }
  .detail-concept .visual-center .detail-concept-img {
    max-width: none;
    width: 120%;
    margin-left: -10%;
  }
  .detail-content {
    font-size: 15px;
  }
  .detail-content .use-list li {
    padding-left: 180px;
  }
  .detail-content .use-list li > img {
    margin-left: -180px;
    width: 160px;
  }
  .detail-content .use-list li > h4 {
    margin-bottom: 0.5em;
  }
  .detail-content .use-list li > p {
    margin-bottom: 0.5em;
  }
  .detail-content .color-item {
    width: 150px;
    height: 75px;
  }
  .detail-video {
    font-size: 1.4em;
  }
  .detail-video .f-icon {
    margin: -20px 0 0 -15px;
    font-size: 30px;
  }
  .detail-video .video-player-desc {
    display: block;
    overflow-y: initial;
    max-height: initial;
  }
  .detail-comment-review .selectbox {
    width: 100%;
  }
}
@media only all and (max-width: 767px) {
  .detail-info {
    font-size: 0.9em;
  }
  .detail-info-pd {
    padding: 15px;
  }
  .detail-info .h {
    margin-bottom: 1.4em;
    font-size: .8em;
  }
  .detail-colors .color-name {
    left: 0;
    margin-left: 0;
  }
  .detail-colors .color-name:after {
    left: 0;
    margin-left: 10px;
  }
  .detail-colors .color-chip {
    width: 34px;
  }
  .detail-colors .color-chip-list {
    padding: 7px 0;
  }
  .detail-sharing {
    bottom: 65px;
  }
  .detail-bottom {
    left: 15px;
    right: 15px;
    bottom: 15px;
    width: auto;
  }
  .detail-buy .func .btn {
    font-size: 14px;
  }
  .detail-video {
    font-size: 1.3em;
  }
  .detail-video .video-player-desc {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .detail-video .video-player-desc br {
    display: none;
  }
  .detail-video .video-player-desc + .video-link {
    margin-top: 4em;
  }
}
@media only all and (max-width: 599px) {
  .detail-info {
    position: relative;
    height: auto;
    padding-bottom: 0;
  }
  .detail-info.has-colorchip {
    padding-top: 50px;
  }
  .detail-info-container {
    height: auto;
    padding-bottom: 0;
  }
  .detail-info-thumb {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
  }
  .detail-info-thumb .bx-controls .bx-prev:after {
    font-size: 30px;
  }
  .detail-info-thumb .bx-controls .bx-next:after {
    font-size: 30px;
  }
  .detail-info-img {
    width: 100%;
  }
  .detail-info .h-en {
    font-size: 2em;
  }
  .detail-phrase {
    margin-bottom: 2em;
  }
  .detail-bottom {
    position: static;
    width: auto;
    font-size: 1em;
    bottom: 7.5%;
  }
  .detail-colors {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: #666;
  }
  .detail-colors .color-chip-list {
    padding: 12px 15px;
    border-bottom: 0;
  }
  .detail-concept {
    margin-top: 10%;
  }
  .detail-concept h2 {
    padding-right: 10%;
    font-size: 1.6em;
    text-align: left;
  }
  .detail-concept h2 br {
    display: block;
  }
  .detail-concept-visual.visual-left,
  .detail-concept-visual.visual-right {
    padding-bottom: 30%;
  }
  .detail-content {
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
  }
  .detail-content .use-list li {
    padding-left: 130px;
  }
  .detail-content .use-list li > img {
    margin-left: -130px;
    width: 110px;
  }
  .detail-content .color-item {
    width: 100px;
    height: 50px;
  }
  .detail-section {
    margin-top: 10%;
  }
  .detail-section-header {
    margin-bottom: 5%;
  }
  .detail-section-header .h {
    font-size: 1.1em;
  }
  .detail-sharing {
    right: 20px;
    bottom: 80px;
  }
  .detail-video {
    margin-top: 3.2em;
  }
  .detail-comment {
    padding: 1em 0 0.5em;
    margin-bottom: 0;
    background-size: cover;
  }
  .detail-comment-content .func .paging {
    font-size: 13px;
  }
  .detail-comment-content .func .paging span {
    margin: 0;
  }
  .detail-comment-review .review-content-item {
    padding: 0.5em 0;
  }
  .detail-comment-review .review-content .label {
    display: block;
    position: static;
    margin-top: 0;
    margin-bottom: 5px;
    color: #555555;
  }
  .detail-comment-review .review-content-item {
    z-index: 10;
  }
  .detail-comment-review .review-content-item-select {
    z-index: 101;
  }
  .detail-comment-review .func {
    zoom: 1;
  }
  .detail-comment-review .func:before {
    content: '';
    display: block;
  }
  .detail-comment-review .func:after {
    content: '';
    display: table;
    clear: both;
  }
  .detail-comment-review .func .btn {
    width: 48.8%;
    padding-left: 2.42em;
    padding-right: 2.42em;
  }
  .detail-comment-review .func .btn:nth-child(1) {
    float: left;
  }
  .detail-comment-review .func .btn:nth-child(2) {
    float: right;
  }
  .detail-comment .h3 {
    font-size: 13px;
  }
  .detail-comment .h3 .count {
    font-size: 1.38em;
  }
  .detail-comment .h3 span {
    display: block;
    margin-left: 0;
    padding-left: 0;
  }
  .detail-comment .h3 span:after {
    display: none;
  }
  .detail-comment .func {
    margin-top: 0.5em;
  }
}
@media only all and (max-width: 384px) {
  .detail-info-pd {
    padding: 15px;
  }
  .detail-info .h-en {
    font-size: 2.4em;
  }
  .detail-bottom {
    left: 4%;
    right: 4%;
  }
  .detail-colors .color-chip {
    margin-right: 8px;
  }
  .detail-concept .h {
    font-size: 1.25em;
  }
  .detail-concept-visual.visual-left,
  .detail-concept-visual.visual-right {
    padding-bottom: 36%;
  }
  .detail-content .use-list li {
    padding-left: 0;
  }
  .detail-content .use-list li > img {
    float: none;
    width: auto;
    margin-left: 0;
    margin-bottom: 0.5em;
  }
  .detail-content .color-list li p {
    display: block;
    margin-top: .5em;
  }
}
@media only all and (min-width: 1280px) {
  .detail-info {
    font-size: 1em;
  }
  .detail-info .h {
    margin-bottom: 3em;
  }
  .detail-info .h-ko {
    font-size: 2.8em;
  }
  .detail-info .h-en {
    font-size: 2em;
  }
  .detail-phrase {
    font-size: 1.6em;
  }
}
.relation-list-container {
  position: relative;
}
.relation-list-container .bx-prev,
.relation-list-container .bx-next {
  overflow: hidden;
  position: absolute;
  top: 50%;
  width: 40px;
  height: 60px;
  margin-top: -30px;
  background: rgba(97, 97, 97, 0.5);
  text-indent: 100px;
  -webkit-transition: background-color 0.1s ease-out;
  -moz-transition: background-color 0.1s ease-out;
  -o-transition: background-color 0.1s ease-out;
  transition: background-color 0.1s ease-out;
}
.relation-list-container .bx-prev.disabled,
.relation-list-container .bx-next.disabled {
  display: none;
}
.relation-list-container .bx-prev:before,
.relation-list-container .bx-next:before {
  position: absolute;
  top: 0;
  left: 0;
  color: #d5d5d5;
  font-size: 36px;
  font-family: "fontello";
  line-height: 1.7;
  text-indent: 0;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
.relation-list-container .bx-prev:hover,
.relation-list-container .bx-next:hover,
.relation-list-container .bx-prev:focus,
.relation-list-container .bx-next:focus {
  background: rgba(0, 0, 0, 0.7);
  text-decoration: none;
}
.relation-list-container .bx-prev:hover:before,
.relation-list-container .bx-next:hover:before,
.relation-list-container .bx-prev:focus:before,
.relation-list-container .bx-next:focus:before {
  color: #fff;
}
.relation-list-container .bx-prev {
  left: 0;
}
.relation-list-container .bx-prev:before {
  content: '\e80a';
}
.relation-list-container .bx-next {
  right: 0;
}
.relation-list-container .bx-next:before {
  content: '\e80b';
}
.relation-list {
  font-size: 14px;
  text-align: center;
}
.relation-item {
  display: inline-block;
  text-align: center;
}
.relation-item .name {
  display: block;
  margin-top: 0.5em;
  font-weight: normal;
}
.relation-link {
  display: block;
}
.relation-link:hover,
.relation-link:focus {
  text-decoration: none;
}
.relation-thumb,
.relation-img {
  display: block;
}
.ritual-section {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.ritual-box-fake {
  height: 0;
  padding-bottom: 43.6%;
}
.ritual-box {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-bottom: 43.6%;
  background: #000;
}
.ritual-box .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.ritual-box .veil {
  position: absolute;
  width: 50%;
  top: 0;
  right: 0;
}
.ritual-box .f-icon {
  position: absolute;
  top: 50%;
  left: 25%;
  margin: -32px 0 0 -32px;
  color: white;
  font-size: 64px;
  line-height: 1;
}
.ritual-box .video-iframe {
  border: 0;
}
.ritual-desc {
  white-space: nowrap;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  color: rgba(255, 255, 255, 0.9);
  font-size: .95em;
  text-align: center;
}
.ritual-desc-cell {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
}
.ritual-desc:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.ritual-desc-cell {
  padding: 0 7%;
}
.ritual-desc h3 {
  color: white;
  font-size: 1.2em;
  font-family: 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
  font-weight: normal;
}
.ritual-desc .hr {
  height: 50px;
  margin-top: 10px;
  background: url(../image/ritual_hr.png) center 30% no-repeat;
}
.ritual-desc p {
  margin: 0;
  color: white;
  color: rgba(255, 255, 255, 0.7);
  font-size: .86em;
}
.ritual-subtitle {
  padding: 1.5em 1em 1em 2em;
  background-color: #f5f5f5;
  font-size: .9em;
}
.ritual-subtitle p {
  margin: 0 0 1em;
}
.ritual-subtitle-box {
  overflow-y: auto;
  max-height: 7.8em;
}
.ritual-subtitle.is-hidden {
  display: none;
}
@media only all and (max-width: 767px) {
  .ritual-box .f-icon {
    margin: -24px 0 0 -24px;
    font-size: 48px;
  }
  .ritual-desc h3 br {
    display: block;
  }
  .ritual-desc .hr,
  .ritual-desc p {
    display: none;
  }
}
@media only all and (max-width: 599px) {
  .ritual-desc {
    font-size: .8em;
  }
}
@media only all and (max-width: 384px) {
  .ritual-box .f-icon {
    margin: -16px 0 0 -16px;
    font-size: 32px;
  }
  .ritual-desc {
    font-size: .64em;
    font-size: 3vw;
  }
}
.order-layer {
  display: none;
  position: fixed;
  width: 580px;
  top: 100px;
  left: 0;
  right: 0;
  margin: auto;
  border: 1px solid #555555;
  padding: 2.5em 2.27272727%;
  background: #ffffff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1001;
}
.no-mediaqueries .order-layer {
  margin-left: -290px;
}
.is-onlayer .order-layer {
  display: block;
}
.order-layer-frame {
  position: relative;
}
.order-layer .h {
  padding-right: 40px;
  padding-bottom: 0.8em;
  border-bottom: 1px solid #333333;
  color: #333333;
  font-weight: normal;
  font-size: 1.8em;
  line-height: 1.4;
  font-family: 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
}
.order-layer .h-zh {
  display: block;
  font-size: 1.44em;
}
.order-layer .h-en {
  color: #333333;
}
.order-layer .func {
  margin-top: 1em;
  font-size: 1.5em;
}
.order-layer .func .btn {
  padding-left: 2.42em;
  padding-right: 2.42em;
  font-weight: normal;
  font-size: 1em;
}
.order-layer .func .btn-disabled {
  color: #aaaaaa;
  border-color: #d5d5d5;
  background-color: #d5d5d5;
}
.order-detail {
  padding-top: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #eeeeee;
}
.order-detail-info {
  color: #999999;
  font-size: 1.3em;
}
.order-detail-info li {
  margin: 5px 0;
}
.order-detail .detail-colors .colors-list {
  zoom: 1;
}
.order-detail .detail-colors .colors-list:before {
  content: '';
  display: block;
}
.order-detail .detail-colors .colors-list:after {
  content: '';
  display: table;
  clear: both;
}
.order-detail .detail-colors .color-chip {
  width: 18%;
  margin-right: 5px;
  border: 0 none;
}
.order-detail .detail-colors .color-box {
  padding-bottom: 35%;
}
.order-detail .detail-colors .color-box:after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.order-detail .detail-colors .color-code {
  display: inline-block;
  vertical-align: middle;
}
.order-detail .detail-colors .color-name {
  -webkit-box-shadow: 1px 1px 1px 1px #cccccc;
  -moz-box-shadow: 1px 1px 1px 1px #cccccc;
  box-shadow: 1px 1px 1px 1px #cccccc;
}
.order-detail .detail-colors .color-name:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 12px;
  height: 7px;
  background: url(../image/icons.png) -65px -51px no-repeat;
  border: 0 none;
}
.order-detail .detail-colors label {
  position: relative;
  display: block;
  border: 1px solid transparent;
}
.order-detail .detail-colors input:checked + label {
  border: 1px solid #c82828;
}
.order-detail .detail-colors input:checked + label .color-box {
  border: 1px solid #c82828;
}
.order-detail .detail-colors input:checked + label .color-box:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 15px;
  height: 15px;
  background: url(../image/icons.png) -49px -60px no-repeat;
}
.order-detail .selectbox ::-webkit-scrollbar {
  width: 8px;
}
.order-detail .selectbox ::-webkit-scrollbar-thumb {
  background: #cccccc;
}
.order-detail .selectbox-qty {
  width: 18%;
}
.order-detail .selectbox-choose {
  width: 100%;
}
.order-detail .selectbox-label {
  margin-left: 5px;
  font-size: 1.5em;
  vertical-align: middle;
}
.order-detail .selectbox-option {
  max-height: 155px;
  scrollbar-face-color: #cccccc;
  scrollbar-shadow-color: #cccccc;
  scrollbar-arrow-color: #ffffff;
}
.order-detail .selectbox .icon-arr-up,
.order-detail .selectbox .icon-arr-down {
  top: 0;
  right: 5px;
  height: 100%;
}
.order-detail .selectbox .icon-arr-up:before,
.order-detail .selectbox .icon-arr-down:before {
  margin-top: 5px;
  vertical-align: middle;
}
.order-detail .selector {
  border: 1px solid #cccccc;
}
.order-detail .selector-text {
  padding-left: 10px;
}
.order-volume {
  overflow: hidden;
  font-size: 1.4em;
}
.order-volume li {
  float: left;
  width: 18%;
  margin-right: 5px;
}
.order-volume-box {
  position: relative;
  display: block;
  width: 100%;
  padding: 5px 10px;
  border: 1px solid #cccccc;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.order-volume label {
  display: block;
  border: 1px solid transparent;
}
.order-volume input:checked + label {
  border: 1px solid #c82828;
}
.order-volume input:checked + label .order-volume-box {
  border: 1px solid #c82828;
}
.order-volume input:checked + label .order-volume-box:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 15px;
  height: 15px;
  background: url(../image/icons.png) -49px -60px no-repeat;
}
.order-price {
  display: block;
  margin-bottom: 1em;
  color: #333333;
  font-weight: bold;
  font-size: 3em;
}
.order-price:before {
  content: '¥';
  margin-right: 10px;
}
.order-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  z-index: 1;
}
.order-close .icon-close {
  width: 40px;
  height: 40px;
}
.order-close .icon-close:before,
.order-close .icon-close:after {
  background-color: #333333;
}
.no-csstransforms .order-close .icon-close:after {
  display: none;
}
@media only all and (max-width: 599px) {
  .order-layer {
    top: 2%;
    width: 96%;
    height: 96%;
    margin-left: 2%;
    margin-right: 2%;
    overflow-y: scroll;
  }
  .order-layer .detail-colors {
    position: static;
    background: transparent;
  }
  .order-layer .h {
    padding-right: 30px;
    font-size: 1.6em;
  }
  .order-layer .func {
    zoom: 1;
    margin-left: -2%;
  }
  .order-layer .func:before {
    content: '';
    display: block;
  }
  .order-layer .func:after {
    content: '';
    display: table;
    clear: both;
  }
  .order-layer .btn {
    width: 48%;
    float: left;
    margin-left: 2%;
  }
  .order-layer .btn-dark:last-child {
    width: 98%;
    margin-top: 2%;
  }
  .order-detail {
    padding-top: 0.8em;
    padding-bottom: 0.8em;
  }
  .order-detail .selectbox-qty {
    width: 27%;
  }
  .order-detail .detail-colors {
    margin-bottom: -5px;
  }
  .order-detail .detail-colors .color-chip {
    width: 27%;
    margin-bottom: 5px;
  }
  .order-volume li {
    width: 27%;
  }
  .order-close .icon-close {
    width: 28px;
    height: 28px;
  }
  .order-price {
    font-size: 2.8em;
    margin-bottom: 0;
  }
}
/* best seller */
.best-seller {
  position: relative;
  z-index: 10;
  margin: 8.18181818% 3.63636364% 8.18181818% 7.27272727%;
  font-size: 1em;
}
.best-seller-visual {
  padding: 5em 0 3em;
  background: #e0beb2;
  text-align: center;
}
.best-seller-item {
  overflow: hidden;
  position: relative;
  display: block;
  float: left;
  vertical-align: top;
  width: 50%;
}
.best-seller-item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
  z-index: 101;
}
.best-seller-item .cover {
  content: '';
  position: absolute;
  top: 100%;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  z-index: 1;
}
.best-seller-item:focus .btn,
.best-seller-item:hover .btn {
  background-color: #333333;
  color: #ffffff;
}
.best-seller-box {
  overflow: hidden;
  position: relative;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.best-seller-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  background: #ddd;
  z-index: 101;
}
.best-seller .h {
  color: #191919;
  font-weight: normal;
  font-size: 2.4em;
  line-height: 1.4;
  font-family: 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
}
.best-seller .h-sub {
  color: #333333;
  font-size: 1.8em;
  font-family: 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
}
.best-seller .cont {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
.best-seller .desc {
  width: 70%;
  margin-top: 0.8em;
  margin-bottom: 0;
  color: #999999;
  font-size: 1.4em;
  letter-spacing: 0;
}
.best-seller .goods {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 300px;
}
.best-seller .goods-desc {
  display: table-cell;
  vertical-align: bottom;
}
.best-seller .goods-thumb {
  display: table-cell;
  position: relative;
  width: 39.3%;
  vertical-align: bottom;
}
.best-seller .goods-thumb img {
  position: absolute;
  bottom: -20px;
  right: 0;
}
.best-seller .goods ul {
  color: #333333;
  font-size: 1.3em;
}
.best-seller .goods ul li {
  position: relative;
  padding-left: 10px;
}
.best-seller .goods ul li:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 3px;
  height: 3px;
  background: #767676;
}
.best-seller .func {
  margin-top: 1.5em;
  font-size: 1.5em;
  text-align: left;
}
.best-seller .btn {
  padding-left: 2.7em;
  padding-right: 2.7em;
  background-color: transparent;
  font-weight: normal;
}
.best-seller .btn:focus,
.best-seller .btn:hover {
  background-color: #333333;
  color: #ffffff;
}
@media only all and (max-width: 1023px) {
  .best-seller {
    margin: 20px 20px 40px 25px;
    font-size: 0.9em;
  }
  .best-seller .cont {
    width: auto;
  }
  .best-seller .h {
    font-size: 2.2em;
  }
  .best-seller .h-sub {
    font-size: 1.6em;
  }
  .best-seller .desc {
    width: auto;
    font-size: 1.5em;
  }
  .best-seller .goods ul {
    font-size: 1.5em;
  }
  .best-seller .goods ul br {
    display: none;
  }
}
@media only all and (max-width: 767px) {
  .best-seller {
    margin: 20px 15px 20px 15px;
    font-size: 0.96em;
  }
  .best-seller .desc {
    font-size: 1.4em;
  }
  .best-seller .goods {
    height: 270px;
  }
  .best-seller .goods-thumb {
    width: 37%;
  }
  .best-seller .goods-thumb img {
    bottom: -10px;
  }
  .best-seller .goods ul {
    font-size: 1.4em;
  }
}
@media only all and (max-width: 599px) {
  .best-seller {
    margin: 20px 0 20px 15px;
    font-size: 1em;
  }
  .best-seller-visual {
    padding: 3em 12% 2em;
  }
  .best-seller-item {
    float: none;
    width: 100%;
  }
  .best-seller-item:last-child:after {
    display: none;
  }
  .best-seller-box {
    border: 0 none;
  }
  .best-seller-box:before {
    display: none;
  }
  .best-seller .cont {
    position: static;
  }
  .best-seller .desc {
    width: auto;
    padding-right: 20px;
  }
  .best-seller .goods {
    zoom: 1;
    position: static;
    display: block;
    height: auto;
  }
  .best-seller .goods:before {
    content: '';
    display: block;
  }
  .best-seller .goods:after {
    content: '';
    display: table;
    clear: both;
  }
  .best-seller .goods-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
  }
  .best-seller .goods-thumb {
    display: block;
    float: right;
    width: 35%;
    padding-right: 20px;
  }
  .best-seller .goods-thumb img {
    position: relative;
  }
}
@media only all and (max-width: 384px) {
  .best-seller .desc {
    font-size: 1.4em;
  }
  .best-seller .goods-desc {
    width: 55%;
  }
  .best-seller .goods-thumb {
    width: 40%;
    padding-right: 10px;
  }
}
@media only all and (min-width: 1280px) {
  .best-seller {
    font-size: 1em;
  }
}
/* new/issue */
.newissue {
  position: relative;
  display: table;
  table-layout: fixed;
  width: 100%;
  padding: 1.81818182% 0;
  border-bottom: 1px solid #ddd;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.newissue:hover,
.newissue:focus {
  text-decoration: none;
}
.newissue-section {
  overflow: hidden;
}
.newissue-section:first-child .newissue {
  padding-top: 0;
}
.newissue-item {
  outline: 0 none;
}
.newissue-item:focus .newissue,
.newissue-item:hover .newissue {
  border-color: #333333;
}
.newissue-item:focus .icon-more:after,
.newissue-item:hover .icon-more:after,
.newissue-item:focus .icon-more:before,
.newissue-item:hover .icon-more:before {
  background: #333333;
}
.newissue-thumb {
  display: table-cell;
  width: 50%;
  vertical-align: top;
}
.newissue-desc {
  display: table-cell;
  width: 50%;
  padding: 1.2em 5.18181818% 0;
  font-size: 1.8em;
  vertical-align: top;
}
.newissue-detail {
  position: relative;
}
.newissue-detail-bg {
  position: absolute;
  top: 0;
  left: 5%;
  right: 0;
  bottom: 0;
  width: 200%;
  height: 100%;
  margin: auto;
}
.newissue-detail-bg img {
  position: absolute;
  top: 0;
  left: -50%;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: initial;
}
.newissue-detail .l-wrap {
  z-index: 10;
}
.newissue-video {
  margin-top: 4.54545455%;
}
.newissue-cont {
  position: relative;
  width: 100%;
  height: 797px;
}
.newissue-cont:after {
  display: inline-block;
  content: '';
  height: 100%;
  vertical-align: middle;
}
.newissue-cont .btn-close {
  position: absolute;
  top: 20px;
  right: 30px;
  margin: auto;
  padding: 0;
  z-index: 99;
}
.newissue-cont .btn-close .icon-close {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.newissue-cont .btn-close:hover .icon-close:before,
.newissue-cont .btn-close:focus .icon-close:before {
  top: -1px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.newissue-cont .btn-close:hover .icon-close:after,
.newissue-cont .btn-close:focus .icon-close:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.newissue-cont .icon-close {
  width: 35px;
  height: 35px;
}
.alt .newissue-cont .icon-close:before,
.alt .newissue-cont .icon-close:after {
  background: #333333;
}
.newissue-cell {
  display: inline-block;
  position: relative;
  left: 50%;
  width: 50%;
  font-size: 2.6em;
  vertical-align: middle;
}
.newissue-cell .h {
  color: #ffffff;
  font-weight: normal;
  font-size: 1em;
  font-family: 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
}
.newissue-cell .h span {
  display: block;
  margin-top: 1.4em;
  font-size: 0.77em;
}
.alt .newissue-cell .h {
  color: #000000;
}
.newissue-cell .h3 {
  margin-top: 1.2em;
  color: #333333;
  font-weight: 700;
  font-size: 0.7em;
}
.newissue-cell .h3 + .p {
  margin-top: 0.5em;
}
.newissue-cell .p {
  margin-top: 2em;
  color: #999999;
  font-size: 0.5em;
}
.alt .newissue-cell .p {
  color: #555555;
}
.newissue-cell .yku-link {
  position: relative;
  display: block;
  z-index: 2;
}
.newissue-cell .youku-iframe {
  overflow: hidden;
  border: 0 none !important;
}
.newissue-cell .func {
  font-size: 15px;
  margin-top: 2.5em;
  text-align: left;
}
.newissue-cell .func .btn {
  padding: 0.6em 2.6em;
  color: #FFF;
  border-color: #FFF;
  background-color: transparent;
}
.newissue-cell .func .btn:hover,
.newissue-cell .func .btn:focus {
  color: #333;
  background-color: #FFF;
}
.alt .newissue-cell .func .btn:hover,
.alt .newissue-cell .func .btn:focus {
  color: #FFF;
  background-color: #333;
}
.alt .newissue-cell .func .btn {
  color: #000000;
  border-color: #000000;
}
.no-media .newissue-cell {
  padding-top: 0;
}
.newissue-list {
  margin-top: 15px;
  color: #555555;
  font-size: 0.57em;
}
.newissue-list li {
  position: relative;
  padding-left: 95px;
  margin-top: 1.5em;
}
.newissue-list li .icon-hydro-aid {
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 66px;
  height: 66px;
  margin: auto;
  background-image: url(../image/btn-stop-mo.png);
  background-repeat: no-repeat;
}
.newissue-list li:first-child {
  margin-top: 0;
}
.newissue-list li:first-child .icon-hydro-aid {
  background-position: 0 0;
}
.newissue-list li:first-child + li .icon-hydro-aid {
  background-position: 0 -97px;
}
.newissue-list li:first-child + li + li .icon-hydro-aid {
  background-position: 0 -193px;
}
.newissue-list strong {
  display: block;
  margin-bottom: 0.5em;
  color: #333333;
  font-weight: normal;
}
.newissue .sort {
  display: inline-block;
  width: 45px;
  padding: 1px 2px;
  margin-bottom: 2em;
  border: 1px solid #cccccc;
  color: #aaaaaa;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0;
}
.newissue .sort-new {
  background: #cccccc;
  color: #ffffff;
}
.newissue .h {
  color: #191919;
  font-weight: normal;
  font-size: 1.4em;
  font-family: 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
}
.newissue .h-sub {
  display: block;
  color: #333333;
  font-weight: normal;
  font-family: 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
}
.newissue .p {
  font-size: 0.75em;
}
.newissue .more {
  position: absolute;
  bottom: 7.27272727%;
  right: 10px;
  width: 35px;
  height: 35px;
  color: #191919;
  font-size: 1.3em;
}
@media only all and (max-width: 1023px) {
  .newissue {
    display: block;
    padding: 0;
    border: 0 none;
  }
  .newissue-section {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 0 none;
  }
  .newissue-thumb {
    display: block;
    width: 100%;
  }
  .newissue-thumb img {
    width: 100%;
  }
  .newissue-desc {
    display: block;
    width: auto;
    padding: 1em 4.6875% 5em;
  }
  .on .newissue-desc {
    padding-bottom: 2em;
  }
  .newissue-cont {
    height: auto;
  }
  .newissue-cont .btn-close {
    top: -5em;
    right: 0;
  }
  .newissue-cont .icon-close {
    width: 30px;
    height: 30px;
  }
  .newissue-detail {
    padding: 7em 0 1em;
    margin-bottom: 0;
    background-image: none;
    border-bottom: 0 none;
  }
  .newissue-detail-bg {
    display: none;
  }
  .newissue-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 0;
  }
  .newissue-video img {
    width: 100%;
    max-width: initial;
  }
  .newissue-cell {
    left: 0;
    width: auto;
    padding-top: 56.17%;
    padding-left: 0;
  }
  .newissue-cell .h {
    margin-top: 0.8em;
  }
  .newissue-cell .p {
    margin: 1em 0 1.5em;
  }
  .newissue-cell .func {
    margin-top: 0;
  }
  .hydro-aid .newissue-cell {
    padding-top: 0;
  }
  .newissue-list {
    margin-bottom: 1.5em;
  }
  .newissue-list li {
    min-height: 73.5px;
  }
  .newissue .sort {
    margin-bottom: 0.7em;
  }
  .newissue .more {
    right: 4.6875%;
    bottom: 1.5em;
    width: 25px;
    height: 25px;
  }
  .newissue .p {
    display: none;
  }
}
@media only all and (max-width: 599px) {
  .newissue-desc {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1.6em;
  }
  .newissue-desc .h {
    font-size: 1.375em;
  }
  .newissue-cell {
    font-size: 1.6em;
  }
  .newissue-cell .h {
    font-size: 1.375em;
  }
  .newissue-cell .p {
    font-size: 0.875em;
  }
  .newissue-list {
    font-size: 0.875em;
  }
  .newissue-list li {
    padding-left: 80px;
  }
  .newissue .more {
    right: 15px;
    bottom: 1.5em;
  }
}
@media only all and (min-width: 1280px) {
  .newissue-detail-bg {
    left: 0;
  }
  .newissue .icon-close {
    width: 50px;
    height: 50px;
  }
  .newissue .more {
    right: 30px;
    width: 50px;
    height: 50px;
  }
}
/* product map */
.product-map {
  position: relative;
  padding-top: 300px;
}
.product-map.is-done {
  padding-top: 260px;
}
.product-map .ing-loading {
  z-index: 2;
}
.product-map .ing-loading:after {
  background-position: center center;
}
@media only all and (max-width: 599px) {
  .product-map {
    padding-top: 240px;
  }
  .product-map.is-done {
    padding-top: 200px;
  }
  .product-map .ing-loading {
    z-index: 2;
  }
  .product-map .ing-loading:after {
    background-position: center 0;
  }
}
.ordering-top {
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 300px;
}
.ordering-top.is-fixed {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 160px;
  background-position: center 70%;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.no-boxshadow .ordering-top.is-fixed {
  border-bottom: 1px solid #999999;
}
.ordering-top.is-fixed .ordering-header {
  height: 100px;
}
.ordering-top.is-fixed .ordering-header .h {
  float: left;
  margin-right: 1em;
  margin-bottom: 0;
}
.ordering-top.is-fixed .ordering-guide {
  text-align: left;
}
.ordering-top.is-fixed .ordering-guide .p {
  margin: 0;
}
.ordering-top.is-fixed .ordering-guide .br {
  display: block;
}
.ordering-top.is-fixed .func {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -1.3em;
}
.is-done .ordering-top {
  height: 260px;
}
.ordering-done {
  display: none;
}
.ordering-header {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  top: 0;
  left: 0;
  z-index: 10;
  height: 240px;
  margin-bottom: 2em;
  background: #999999 url(../image/productmap_bg.jpg) no-repeat center 40%;
  color: #ffffff;
  font-size: 1.4em;
  text-align: center;
}
.ordering-header-pd {
  height: 100%;
  white-space: nowrap;
}
.ordering-header-pd-cell {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
}
.ordering-header-pd:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.ordering-header-pd-cell {
  position: relative;
  width: 100%;
}
.ordering-header .h {
  margin-bottom: .3em;
  color: #ffffff;
  font: normal 2.86em/1.3 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
  letter-spacing: -0.06em;
}
.ordering-header .p {
  margin-top: 0;
  line-height: 1.7;
  letter-spacing: -0.03em;
}
.ordering-header .func {
  margin-top: 1.3em;
}
.ordering-tab {
  max-width: 380px;
  margin: 0 auto;
  font-size: 1.8em;
  font-family: 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}
.ordering-tab li {
  width: 45%;
  margin: 0 1.6%;
  display: inline-block;
}
.ordering-tab a {
  display: block;
  padding: .2em 1em;
  border-bottom: 2px solid #999999;
  color: #999999;
}
.ordering-tab a:hover,
.ordering-tab a:focus {
  text-decoration: none;
  color: #555555;
  border-bottom-color: #555555;
}
.ordering-tab .is-current a {
  border-bottom: 2px solid #333333;
  color: #333333;
}
.ordering-body {
  min-height: 200px;
  margin-top: 2em;
}
.ordering-list {
  zoom: 1;
  margin: -6px;
}
.ordering-list:before {
  content: '';
  display: block;
}
.ordering-list:after {
  content: '';
  display: table;
  clear: both;
}
.ordering-list-wrap {
  display: none;
}
.ordering-item {
  float: left;
  width: 33.33333333%;
  vertical-align: top;
  font-size: 12px;
  line-height: 1.3;
}
.ordering-item-pd {
  position: relative;
  overflow: hidden;
  margin: 6px;
}
.ordering-item-pd:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 100%;
  background-color: #333333;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.is-ready .ordering-item {
  cursor: pointer;
}
.ordering-item.is-selected .ordering-thumb:before {
  content: 'selected';
}
.opacity .ordering-item.is-selected .ordering-item-pd:after {
  opacity: 0.5;
}
.opacity .ordering-item.is-selected .ordering-thumb:before,
.opacity .ordering-item.is-selected .ordering-thumb:after {
  opacity: 1;
}
.no-opacity .ordering-item.is-selected .ordering-item-pd {
  outline: 1px solid #000;
}
.no-opacity .ordering-item.is-selected .ordering-thumb:before {
  visibility: visible;
}
.no-opacity .ordering-item.is-selected .ordering-thumb:after {
  visibility: visible;
}
.ordering-n {
  overflow: hidden;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: #786457 url(../image/productmap_n_bg.jpg);
  color: #ffffff;
  font-family: 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
  font-size: 1.5em;
  line-height: 36px;
  vertical-align: middle;
  font-weight: normal;
  text-align: center;
}
.ordering-thumb {
  position: relative;
  float: left;
  width: 42%;
  color: #ffffff;
  text-align: center;
}
.ordering-thumb:before,
.ordering-thumb:after {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
  opacity: 0;
}
.ordering-thumb:before {
  content: 'select';
  top: 0;
  padding-top: 60%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  vertical-align: middle;
}
.ordering-thumb:after {
  top: 30%;
  font-size: 28px;
  font-family: 'fontello';
  content: '\e818';
}
.is-disabled .ordering-thumb:before,
.is-disabled .ordering-thumb:after {
  display: none;
}
.no-opacity .ordering-thumb:before,
.no-opacity .ordering-thumb:after {
  visibility: hidden;
}
.no-opacity .ordering-thumb:after {
  top: 0;
}
.ordering-img {
  display: block;
}
.ordering-cont {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  border: 1px solid #d5d5d5;
  width: 100%;
  height: 100%;
  padding-left: 42%;
  white-space: nowrap;
  -webkit-transition: border 0.3s;
  -moz-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s;
}
.ordering-cont-cell {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
}
.ordering-cont:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.ordering-cont-cell {
  position: relative;
  width: 82%;
  padding-left: 8.5%;
  height: 66%;
}
.ordering-category {
  color: #767676;
}
.ordering-check {
  position: absolute;
  visibility: hidden;
}
.ordering-label {
  overflow: hidden;
  display: block;
  margin-top: 3.5%;
  margin-left: -0.1em;
  color: #555555;
  font-family: 'Times New Roman', '宋体', 'SimSun', '新宋体', 'NSimSun', '华文细黑', 'STSong', 'STSongti-SC', '\534E\6587\5B8B\4F53', serif;
  font-size: 1.27em;
}
.ordering-keywords {
  position: absolute;
  top: 100%;
  margin-top: -1.2em;
  display: block;
  color: #999999;
}
.ordering-item:focus .ordering-item-pd,
.no-touch .ordering-item.is-ready:hover .ordering-item-pd {
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
}
.ordering-item:focus .ordering-cont,
.no-touch .ordering-item.is-ready:hover .ordering-cont {
  border-color: #555555;
}
.ordering-item.is-selected .ordering-item-pd:after {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.ordering-item.is-selected .ordering-thumb {
  color: #ffffff;
  text-align: center;
}
.ordering-item.is-selected .ordering-thumb:before {
  content: 'selected';
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  opacity: 1;
}
.ordering-item.is-selected .ordering-thumb:after {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  opacity: 1;
}
@media only all and (max-width: 1023px) {
  .ordering-top {
    height: 285px;
  }
  .ordering-top.is-fixed {
    height: 120px;
    background-position: center 70%;
  }
  .ordering-top.is-fixed .ordering-header {
    height: 75px;
  }
  .ordering-top.is-fixed .ordering-header .h {
    margin-top: .45em;
  }
  .ordering-top.is-fixed .ordering-guide .p {
    visibility: hidden;
    height: 3em;
    margin-bottom: 0;
  }
  .ordering-top.is-fixed .func {
    position: absolute;
    top: 50%;
    right: 0;
  }
  .ordering-header {
    margin-bottom: 17px;
    font-size: 1.3em;
  }
  .ordering-header .h {
    font-size: 2em;
  }
  .ordering-body {
    margin-top: 0;
  }
  .ordering-tab {
    max-width: 320px;
    font-size: 1.6em;
  }
  .ordering-item {
    font-size: 11px;
  }
}
@media only all and (max-width: 767px) {
  .ordering-list {
    margin: -8px;
  }
  .ordering-item {
    width: 50%;
    font-size: 12px;
  }
  .ordering-item-pd {
    margin: 8px;
  }
}
@media only all and (max-width: 599px) {
  .ordering-top {
    height: 240px;
  }
  .ordering-top.is-fixed {
    height: 120px;
  }
  .is-done .ordering-top {
    height: 180px;
  }
  .ordering-header {
    height: 180px;
    margin-bottom: 20px;
    background-size: auto 100%;
    font-size: 1.25em;
  }
  .ordering-header .h {
    font-size: 1.67em;
  }
  .is-fixed .ordering-header {
    background-size: auto 300%;
    background-position: center 80%;
  }
  .ordering-header .br {
    display: block;
  }
  .ordering-tab {
    margin-bottom: 12px;
    font-size: 1.4em;
  }
  .ordering-tab li {
    width: 40%;
  }
  .ordering-list {
    margin: 0;
  }
  .ordering-item {
    float: none;
    width: auto;
  }
  .ordering-item-pd {
    margin: 0 0 10px;
  }
  .ordering-item-pd:after {
    width: 120px;
  }
  .ordering-thumb {
    width: 120px;
  }
  .ordering-cont {
    padding-left: 120px;
  }
  .ordering-cont-cell {
    height: 84px;
  }
}
@media only all and (max-width: 384px) {
  .ordering-tab {
    max-width: none;
    margin-left: 15px;
    margin-right: 15px;
    overflow: hidden;
  }
  .ordering-tab li {
    float: left;
    width: 50%;
    margin: 0;
  }
  .ordering-tab li:first-child a {
    margin-left: 0;
    margin-right: 5px;
  }
  .ordering-tab a {
    margin-left: 5px;
  }
  .ordering-item {
    font-size: 11px;
  }
  .ordering-item-pd {
    margin-bottom: 8px;
  }
  .ordering-cont-cell {
    width: 78%;
    padding-left: 12%;
  }
  .ordering-keywords {
    margin-top: -1.6em;
  }
}
@media only all and (min-width: 1280px) {
  .ordering-list {
    margin: -8px;
  }
  .ordering-item {
    font-size: 13px;
  }
  .ordering-item-pd {
    margin: 8px;
  }
  .ordering-cont-cell {
    height: 8em;
  }
  .ordering-label {
    margin-bottom: 10%;
  }
}
/*20151210 add*/
.detail-content.width_100 {
  max-width: 100% !important;
  padding: 0;
}
.blog_add_box:after {
  content: '';
  clear: both;
  display: block;
}
.blog_add_box .blog_add {
  float: left;
  width: 50%;
  vertical-align: top;
}
.blog_add_box .blog_add .blog_list {
  position: relative;
  overflow: hidden;
  margin: 6px;
}
.blog_add_box .blog_add .blog_list .img_thumb {
  position: relative;
  float: left;
  width: 32%;
  color: #ffffff;
  text-align: center;
}
.blog_add_box .blog_add .blog_list .blog_cont {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  padding-left: 35%;
}
.blog_add_box .blog_add .blog_list .blog_cont h3 {
  margin-bottom: .4em;
}
.blog_add_box .blog_add .blog_list .blog_cont p {
  line-height: 1.4;
}
@media only all and (max-width: 1023px) {
  .blog_add_box .blog_add {
    float: none;
    width: 100%;
    padding-top: 1.5em;
    border-top: 1px solid #eeeeee;
  }
  .blog_add_box .blog_add:first-child {
    padding-top: 0;
    border-top: 0;
  }
  .blog_add_box .blog_add .blog_list {
    margin: 6px 0;
  }
  .blog_add_box .blog_add .blog_list .img_thumb {
    float: none;
    width: 48%;
    text-align: left;
  }
  .blog_add_box .blog_add .blog_list .blog_cont {
    position: relative;
    width: 100%;
    padding-left: 0;
  }
  .blog_add_box .blog_add .blog_list .blog_cont h3 {
    margin: 0.5em 0;
  }
}
/*20160202 add*/
.detail-comment-review .review-content input.intadd {
  width: auto;
}
.detail-comment-review .review-content .validate-input-wrap.add {
  position: absolute;
  bottom: 106.5%;
  left: 65%;
}
.detail-comment-content .detail-comment-item.comment-add .comment-more {
  display: none;
}
.detail-comment-content .func.left-add {
  text-align: center;/*2017-04-27*/
}
.detail-comment-item.comment-add {
  padding: 1.5em 4.5em;
  background: #f9f9f9;
}
.detail-comment-item.comment-add h3 {
  margin-bottom: 0;
}
.detail-comment-item.comment-add h3:after {
  content: '';
  position: absolute;
  top: 1.6em;
  left: 3.3em;
  bottom: 0;
  width: 8px;
  height: 7px;
  border-left: 2px solid #cbcbcb;
  border-bottom: 2px solid #cbcbcb;
}
.detail-comment-item.comment-add span.th {
  display: block;
  margin-bottom: 0.8em;
  color: #555;
}
.detail-comment-content .func .paging {
  padding-bottom: 1em;
}
@media only all and (max-width: 1023px) {
  .detail-comment-review .review-content .validate-input-wrap.add {
    position: absolute;
    left: 0;
    bottom: 5px;
  }
}
.detail-comment-layer .detail-comment-review textarea#user-comment {
  font-family: 'Microsoft YaHei New', 'Microsoft Yahei', '微软雅黑', '冬青黑体', 'Hiragino Sans GB', STHeitiSC, SimHei, Helvetica, sans-serif !important;
}



/* video */
.detail-video {
    margin-top: 6em;
    font-size: 1.0em
}

.detail-video .video-link {
    display: block;
    position: relative
}

.detail-video .flexible-obj {
    background: #000
}

.detail-video .f-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -48px 0 0 -32px;
    color: white;
    font-size: 64px;
    line-height: 1
}

.detail-video .video-iframe {
    border: 0
}

.detail-video .video-player-desc {
    display: none;
    overflow-y: scroll;
    max-height: 135px;
    padding: 2.72727273% 2.72727273%;
    color: #aaa;
    text-align: left
}

.detail-video .video-player-desc p {
    margin-top: 0;
    margin-bottom: 1em;
}

.detail-video .video-player+.video-player-desc {
    display: block
}

/* slick 초기화 css */
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}


/* Dots */
.renewal .l-pdt-inner .slick-dotted.slick-slider {margin-bottom: 30px}
.renewal .l-pdt-inner .slick-dots {position:absolute; bottom:6px; display: block; width: 100%; padding: 0; margin:0; margin-top:-5%; list-style: none; text-align: center}
.renewal .l-pdt-inner .slick-dots li {position: relative; display: inline-block; background:url(../image/bg_btn_rolling.png) no-repeat 0 0; margin: 0 5px; padding: 0; cursor: pointer}
.renewal .l-pdt-inner .slick-dots li.slick-active {background:url(../image/bg_btn_rolling_on.png) no-repeat 0 0}
.renewal .l-pdt-inner .slick-dots li.slick-active button {width:24px}
.renewal .l-pdt-inner .slick-dots li button {font-size: 0; line-height: 0; display: block; width: 10px; height: 10px; cursor: pointer; color: transparent; border: 0; outline: none; text-indent:-9999px}
.renewal .l-pdt-inner .slick-dots li button:hover,
.renewal .l-pdt-inner .slick-dots li button:focus {outline: none}
.renewal .l-pdt-inner .slick-dots li button:hover:before,
.renewal .l-pdt-inner .slick-dots li button:focus:before {opacity: 1}
.renewal .l-pdt-inner .slick-dots li button:before {font-family: 'slick'; font-size: 6px; line-height: 20px; position: absolute; top: 0; left: 0; width: 10px; height: 10px; content: '•'; text-align: center; opacity: .25; color: black; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale}
.renewal .l-pdt-inner .slick-dots li.slick-active button:before {opacity: .75; color: black}


.renewal .l-pdt-detail .slick-dotted.slick-slider {margin-bottom: 30px}
.renewal .l-pdt-detail .slick-dots {position:absolute; bottom:6px; display: block; width: 100%; padding: 0; margin:0; margin-top:-5%; list-style: none; text-align: center}
.renewal .l-pdt-detail .slick-dots li {position: relative; display: inline-block; background:url(../image/bg_btn_rolling.png) no-repeat 0 0; margin: 0 5px; padding: 0; cursor: pointer}
.renewal .l-pdt-detail .slick-dots li.slick-active {background:url(../image/bg_btn_rolling_on.png) no-repeat 0 0}
.renewal .l-pdt-detail .slick-dots li.slick-active button {width:24px}
.renewal .l-pdt-detail .slick-dots li button {font-size: 0; line-height: 0; display: block; width: 10px; height: 10px; cursor: pointer; color: transparent; border: 0; outline: none; text-indent:-9999px}
.renewal .l-pdt-detail .slick-dots li button:hover,
.renewal .l-pdt-detail .slick-dots li button:focus {outline: none}
.renewal .l-pdt-detail .slick-dots li button:hover:before,
.renewal .l-pdt-detail .slick-dots li button:focus:before {opacity: 1}
.renewal .l-pdt-detail .slick-dots li button:before {font-family: 'slick'; font-size: 6px; line-height: 20px; position: absolute; top: 0; left: 0; width: 10px; height: 10px; content: '•'; text-align: center; opacity: .25; color: black; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale}
.renewal .l-pdt-detail .slick-dots li.slick-active button:before {opacity: .75; color: black}


.renewal a:hover {text-decoration:none}

/* product_renewal */
.en-letter {letter-spacing:1px}
.renewal > div {width:100%; background:url(../image/bg_top_product.png) repeat-x center 0}
/* .l-renewal .l-header, .l-renewal .l-wrap {max-width:1280px; padding:0 90px} 2017-04-06 */
.renewal .l-pdt-wrap {box-sizing:border-box; position:relative; width:100%; margin:0 auto; padding:8px 90px 50px; background:url(../image/bg_product.png) repeat-x center 100%; color:#555}
.renewal .l-pdt-inner {position:relative; max-width:1100px; margin:0 auto; font-size:15px; text-align:center}
.renewal .color-chip {position:relative; display:inline-block; border-radius:50%; box-sizing:border-box}
.renewal .l-pdt-detail .detail-video .f-icon {margin:-21px 0 0 -20px; font-size:40px}

.renewal .pdt-show {position:relative}
.renewal .pdt-show .info-box {position:absolute; top:25px; left:0; max-width:27%; min-height:auto; text-align:left; z-index:21} /* 2017-01-20수정 */
.renewal .pdt-show .pdt-tit-box {padding:36px 0 27px}
.renewal .pdt-show .pdt-tit {line-height:50px; font-size:38px; color:#191919; font-weight:normal; font-family:'Buri',serif}
.renewal .pdt-show .sum-name {display:block; margin-top:11px; line-height:21px; font-family:'Buri',serif; font-size:18px; font-weight:normal}
.renewal .pdt-show .btn-detail {display:inline-block; line-height:1.2em; margin-top:21px; padding-right:22px; border-bottom:1px solid #555; background:url(../image/btn-stop-mo.png) no-repeat 100% 50%; font-size:16px}
.renewal .pdt-show .color-box + .btn-detail {margin-top:42px}
.renewal .pdt-show .badge {position:absolute; top:0; left:0; display:inline-block; line-height:19px; padding:0 12px; border:1px solid #555; background:#fff; font-size:11px}

.renewal .l-pdt-detail {position:relative; max-width:1280px; margin:0 auto; padding:0 90px; font-size:15px; color:#555; box-sizing:border-box}
.renewal .l-pdt-inner .color-box ul {margin-left:-6px}
.renewal .l-pdt-inner .color-box ul:after {content:""; display:block; clear:both}
.renewal .l-pdt-inner .color-box li {position:relative; float:left; margin:0 6px}
.renewal .l-pdt-inner .color-chip {width:28px; height:28px}
.renewal .l-pdt-inner .color-chip:hover {border:1px solid #555}
.renewal .l-pdt-inner .color-chip:hover + .color-name {display:inline-block}
.renewal .l-pdt-inner .color-name {display:none; position:absolute; bottom:31px; left:50%; width:92px; padding:2px; margin-left:-48px; background:#fff; border:1px solid #555; font-size:13px; text-align:center; z-index:5}
.renewal .l-pdt-inner .color-name:after {position:absolute; bottom:-6px; left:50%; margin-left:-5px; content:""; display:inline-block; width:10px; height:6px; background:url(../image/bg_product_arrow.png) no-repeat 0}
.renewal .l-pdt-inner .detail-box > ul > li {display:table; width:100%}
.renewal .l-pdt-inner .detail-box > ul > li.color-box {display:none}
.renewal .l-pdt-inner .info-tit {display:table-cell; width:18%; padding-right:10px; font-weight:normal; vertical-align: top; box-sizing:border-box; text-align:left; padding-right:10px} /* 2017-01-20수정 */
.renewal .l-pdt-inner .info-desc {display:table-cell; vertical-align: top; width:82%} /* 2017-01-20수정 */

.renewal .pdt-rolling {position:relative; display:inline-block; width:100%; text-align:center}
.renewal .pdt-rolling .btn-rolling-wrap {position:absolute; left:50%; bottom:-6px; margin-left:-23px; z-index:10}
.renewal .pdt-rolling .btn-rolling + .btn-rolling {margin-left:8px}
.renewal .pdt-rolling .btn-rolling span {display:inline-block}
.renewal .pdt-rolling .pdt-img {position:relative; overflow:hidden; width:580px; height:580px; margin:0 auto 30px; z-index:20}
.renewal .pdt-rolling .pdt-img:after {content:""; display:block; clear:both}
.renewal .pdt-rolling .img-box {float:left}
.renewal .pdt-rolling .pdt-shadow-img {position:absolute; left:0; bottom:7px; width:100%; height:159px; z-index:1}
.renewal .pdt-rolling .pdt-shadow-img img {width:auto; height:100%}

.renewal .pdt-detail-info {position:relative; display:table; width:100%; z-index:5}
.renewal .pdt-detail-info .detail-box {display:table-cell; vertical-align:middle; text-align:left}
/* .renewal .pdt-detail-info .detail-box li:after {content:""; display:block; clear:both} */ /* 2017-01-20수정 */
.renewal .pdt-detail-info .detail-list {width:48.9%}
.renewal .pdt-detail-info .detail-guide {width:51.1%; padding-left:20px}
.renewal .pdt-detail-info .space {margin-top:22px}
.renewal .pdt-detail-info .detail-guide > ul {border-top:1px solid #ddd}
.renewal .pdt-detail-info .detail-guide > ul > li {margin-top:0; border-bottom:1px solid #ddd}
.renewal .pdt-detail-info .detail-guide > ul > li.on .acc-tit {background:url(../image/icon_minus.png) no-repeat 100% 50%}
.renewal .pdt-detail-info .acc-box {display:none}
.renewal .pdt-detail-info .acc-tit {displaY:block; padding:14px 0; background:url(../image/btn-stop-mo.png) no-repeat 100% 50%; color:#555}
.renewal .pdt-detail-info .acc-tit:hover {text-decoration:none}
.renewal .pdt-detail-info .color-box {display:none}
.renewal .pdt-detail-info.two-info .detail-list .color-box + li {margin-top:14px}/* 2017-01-23수정 */
.renewal .pdt-detail-info.two-info .detail-list .color-box + li + li {margin-top:28px}/* 2017-01-23수정 */
.renewal .pdt-detail-info.two-info .detail-box {vertical-align:top}
.renewal .pdt-detail-info.two-info .detail-list li {margin-top:14px} /* 2017-01-23수정 */
.renewal .pdt-detail-info.two-info .detail-list li + li {margin-top:28px} /* 2017-01-23수정 */

.renewal .l-pdt-inner .sns-box {position:absolute; bottom:28px; right:0; display:inline-block; z-index:23}/*2017-04-27*/
.renewal .sns-box a {display:inline-block; width:36px; height:36px; text-indent:-9999px}
.renewal .sns-box a + a {margin-left:5px}
.renewal .sns-box .facebook {background:url(../image/icon_facebook.png) no-repeat 0 0}
.renewal .sns-box .facebook:hover {background:url(../image/btn-stop-mo.png) no-repeat 0 0}
.renewal .sns-box .twitter {background:url(../image/icon_twitter.png) no-repeat 0 0}
.renewal .sns-box .twitter:hover {background:url(../image/icon_twitter_on.png) no-repeat 0 0}

.renewal .pdt-desc-wrap .sec-box:first-child .sec-tit {border-top:0}
.renewal .pdt-desc-wrap .sec-tit {line-height:1.3em; margin-bottom:19px; padding-top:56px; border-top:1px solid #eee; color:#191919; font-size:30px; font-family:'Buri',serif; font-weight:normal}
.renewal .pdt-desc-wrap .detail-video {margin-top:0}
.renewal .pdt-desc-wrap .detail-video img {width:100%}
.renewal .pdt-desc-wrap .detail-video .video_img_mobile {display:none}
.renewal .pdt-desc-wrap .beauty-way .sec-tit {margin-bottom:23px; padding-top:0; border:0}

.renewal .pdt-tab.on {position:fixed; top:0; left:0; width:100%; padding:0 90px; box-sizing:border-box; z-index:99}
.renewal .pdt-tab h2 {font-size:15px; font-weight:normal}
.renewal .pdt-tab ul {max-width:1100px; margin-left:-640px; margin:0 auto}
.renewal .pdt-tab ul:after {content:""; display:block; clear:both}
.renewal .pdt-tab li {display:none; float:left; width:20%}/*2017-04-19*/
.renewal .pdt-tab li:first-child a {border-left:1px solid #ddd}
.renewal .pdt-tab a {display:block; height:50px; line-height:50px; border:1px solid #ddd; border-left:0; background:#fff; color:#555; text-align:center}
.renewal .pdt-tab li.on a {background:#caa58e; color:#fff; border:1px solid #caa58e}
.renewal .pdt-tab li.on + li a {border-left:1px solid #ddd}
.renewal .pdt-tab.four_list li {width:25%}/*2017-04-19*/
.renewal .pdt-tab.three_list li {width:33.3%}
.renewal .pdt-tab.three_list li:first-child {width:33.4%}
.renewal .pdt-tab.two_list li {width:50%}

.renewal .sec-box {padding-bottom:60px}
.renewal .sec-box .sub-txt {line-height:26px; margin:0 0 26px; font-size:18px}
.renewal .sec-box .line {display:block; margin:0}

.renewal .pdt-feature .sec-tit {margin-bottom:16px}
.renewal .pdt-feature .btn-view-detail {margin-top:30px; text-align:center}
.renewal .pdt-feature .btn-view-detail a {display:inline-block; width:224px; height:48px; line-height:48px; border:1px solid #333; color:#333; font-size:15px; font-weight:bold; text-align:center}
/*2017-04-27 수정 feature-wrap*/
.renewal .l-pdt-detail .feature-wrap {margin-top:30px}
.renewal .l-pdt-detail .feature-wrap .row-box {display:table}
.renewal .l-pdt-detail .feature-wrap .row-box + .row-box {margin-top:30px}
.renewal .l-pdt-detail .feature-wrap .feature-img {display:table-cell; vertical-align:top; width:38.2%}
.renewal .l-pdt-detail .feature-wrap .feature-txt {display:table-cell; vertical-align:middle; width:61.8%; padding:0 0 0 44px}
.renewal .l-pdt-detail .feature-wrap .txt-tit {display:block; margin-bottom:10px; font-size:21px; color:#191919; font-weight:400}
.renewal .l-pdt-detail .feature-wrap .txt-desc {display:block}
.renewal .l-pdt-detail .feature-wrap .txt-info-gray {display:block}
.renewal .txt-info-gray {color:#999}
.renewal .txt-info-gray i {vertical-align:middle}

.renewal .color-shade.sec-box .sub-txt {margin-bottom:25px}
.renewal .color-shade .sec-tit {margin-bottom:17px}

.renewal .color-type-view {height:142px; margin-bottom:30px; background-size:cover; background:url(../image/img_color_system.gif) no-repeat 50% center}
.renewal .type-box {overflow:hidden; display:table; width:100%}
.renewal .show-type {display:table-cell; vertical-align:middle; width:38.2%}
.renewal .show-type img {display:none; width:100%}
.renewal .show-type img.on {display:block}
.renewal .view-type-wrap {display:table-cell; vertical-align:middle; padding-left:45px}
.renewal .view-type-wrap .grouping:after {display:block; content:""; clear:both}
.renewal .view-type-wrap .is-mobile .slick-list {display:none}
.renewal .view-type:after {content:""; display:block; clear:both}
.renewal .view-type .color-list {float:left; width:20%; padding:18px 0; text-align:center}
.renewal .view-type .color-list.on .color-name {color:#191919; }
.renewal .view-type .color-list.on .color-chip {border:1px solid #cca790; box-sizing:border-box}
.renewal .view-type .color-list.on .color-chip:after {content:""; display:block; width:100%; height:100%; position:absolute; top:0; left:0; border:3px solid #fff; box-sizing:border-box; border-radius:50%}
.renewal .view-type .color-list.on .color-num {line-height:42px}
.renewal .view-type .color-system-type {display:table; width:100%}
.renewal .view-type .color-chip {display:table-cell; vertical-align:middle; width:46px; height:46px}
.renewal .view-type .color-chip.on + .color-name {color:#191919}
.renewal .view-type .color-num {display:block; line-height:46px; font-size:21px; color:#fff}
.renewal .view-type .color-name {display:table-cell; vertical-align:middle;  padding-left:12px; line-height:19px; text-align:left; cursor:pointer}
.renewal .view-type .slick-dots {position:absolute; top:0; left:-9999px; overflow:hidden; width:0px; height:0px}
.renewal .view-type .next-group {padding-left:20%}
.renewal .view-type .next-group .color-list {width:25%}

.renewal .sec-box .txt-list {margin:0}
.renewal .sec-box .txt-list strong {font-weight:normal}
.renewal .user-way .user-txt {line-height:1.6em; margin:0}
.renewal .user-step {padding:26px 0 42px}
.renewal .user-step ul:after {content:""; display:block; clear:both}
.renewal .user-step ul {border-top:1px solid #c5c5c5}
.renewal .user-step li {float:left; width:33.3%; text-align:center}
.renewal .user-step li.on .step-txt:before {background:url(../image/bg_step_circle_on.png) no-repeat 0 0}
.renewal .user-step li.on .step-txt {color:#a58a7a}
.renewal .user-step .step-txt {position:relative; display:inline-block; padding-top:18px; color:#888}
.renewal .user-step .step-txt:before {content:""; position:absolute; top:-7px; left:50%; display:inline-block; width:15px; height:15px; margin-left:-7px; background:url(../image/bg_step_circle.png) no-repeat 0 0}
.renewal .user-step.four-step li {width:25%}

.renewal .sec-sub-tit {padding-top:22px; font-size:26px; color:#191919; font-weight:normal}

.renewal .beauty-way {position:relative; margin-top:50px}
.renewal .beauty-step .tab-wrap .beauty-step-list {display:none}
.renewal .beauty-step .tab-wrap .beauty-step-list.on {display:block}
.renewal .beauty-step .sum-title {display:block; margin:20px 0 18px; font-size:22px}
.renewal .beauty-step .sum-title + .beauty-step-way {margin-top:0}
.renewal .beauty-step .beauty-step-way {overflow:hidden; max-width:1120px; margin:10px -10px 0}
.renewal .beauty-step .beauty-step-way:after {content:""; display:block; clear:both}
.renewal .beauty-step .beauty-step-way .way-thumb {float:left;  margin:0 10px}
.renewal .beauty-step .beauty-step-way .way-thumb > p {margin:10px 0 0; line-height:23px}
.renewal .beauty-step .beauty-step-list {position:static; text-align:left}
.renewal .beauty-step .slick-prev,
.renewal .beauty-step .slick-next {position:absolute; top:9px; width:17px; height:33px; z-index:10}
.renewal .beauty-step .slick-prev:before,
.renewal .beauty-step .slick-next:before {content:""}
.renewal .beauty-step .slick-prev {left:inherit; right:60px; background:url(../image/btn-stop-mo.png) no-repeat 0 0}
.renewal .beauty-step .slick-next {right:18px; background:url(../image/btn-stop-mo.png) no-repeat 0 0}
.renewal .beauty-step .way_disc {margin:13px 0 0}
.renewal .beauty-step .thumb-title {display:block; margin-top:15px; line-height:24px; font-size:21px; font-weight:normal; color:#191919}
.renewal .beauty-step .thumb-title.list {font-size:18px}
.renewal .beauty-step .way-thumb > p.line {margin:0}
.renewal .beauty-step-box {position:relative}
.renewal .beauty-step-box + .beauty-step-box {margin-top:44px}
.renewal .beauty-step-box .tab-list {margin:0 10px 14px}
.renewal .beauty-step-wrap + .beauty-step-wrap {margin-top:33px}
.renewal .beauty-way-desc {margin-top:33px}
.renewal .beauty-way-desc .beauty-step-box {display:table; width:100%; margin-top:43px}
.renewal .beauty-way-desc .beauty-step-way {display:table-cell; vertical-align:middle; padding-left:7px}
.renewal .beauty-way-desc .beauty-way-img {display:table-cell; vertical-align:middle; width:49.2%}
.renewal .beauty-way-desc .beauty-way-img img {width:100%}
.renewal .beauty-way-desc .step-num {display:block; color:#191919}
.renewal .beauty-way-desc .thumb-title {margin:0 0 10px}
.renewal .beauty-way-desc .way-thumb + .way-thumb {margin-top:41px}

.renewal .btn-view-beauty {margin-top:19px; text-align:right}
.renewal .btn-view-beauty a {display:inline-block; line-height:29px; padding-right:38px; background-size:29px; background:url(../image/bg_btn_beauty_open.png) no-repeat 100% 50%; font-size:21px; color:#555}
.renewal .btn-view-beauty a.on {background:url(../image/bg_btn_beauty_close.png) no-repeat 100% 50%}

.renewal .video-title {position:absolute; top:90px; right:30px; color:#fff; text-align:right; font-family:'Buri',serif}
.renewal .video-title > span {display:block}
.renewal .video-title .name-ko {line-height:29px; font-size:26px}
.renewal .video-title .name-en {margin-top:2px; font-size:16px}

.renewal .face-care-box {margin:43px auto 33px;  background:url(../image/btn-stop-mo.png) no-repeat center 0; background-size:contain}
.renewal .face-care-box .care-thumb {display:inline-block; vertical-align:middle; width:49%; text-align:center; box-sizing:border-box}
.renewal .face-care-box .left-cont {padding:30px 17% 55px 10%}
.renewal .face-care-box .right-cont {padding:30px 9% 55px 17%}
.renewal .face-care-box p {margin:0}
.renewal .face-care-box .thumb-title {margin:18px 0 12px}

.renewal .tab-list {margin-bottom:14px}
.renewal .tab-list ul:after {content:""; display:block; clear:both}
.renewal .tab-list ul li {float:left}
.renewal .tab-list ul li a {font-size:21px; color:#888}
.renewal .tab-list ul li + li {margin-left:20px; padding-left:20px; background:url(../image/btn-stop-mo.gif) no-repeat 0 50%}
.renewal .tab-list ul li.active a {color:#191919}

.renewal .pdt-together .relation-list-container {margin-left:-10px; margin-right:-10px; background:none}
.renewal .pdt-together .sec-tit {text-align:center}
.renewal .pdt-together.sec-box {padding-bottom:0}

/* to-be 디자인일 경우 css (to-be 디자인으로 바뀔 시 하위 css 주석삭제필요) */
/* .renewal .pdt-together .relation-thumb {display:block; background:url(../images/bg_product_together.png) no-repeat 0 0; background-size:cover} */
.renewal .pdt-together .relation-item .name {font-family:'NotoSans'; text-align:center}
.renewal .pdt-together .relation-item {margin:0 7.5px}
.renewal .pdt-together .relation-item .relation-img {width:100%; max-width:263px}

.renewal .pdt-together .relation-list .slick-disabled {display:none !important}
.renewal .pdt-together .relation-list .slick-prev {display:block; overflow:hidden; top:50%; left:-40px; width:40px; height:60px; margin-top:-30px; text-indent:-999px; -webkit-transition:background-color .1s ease-out; -moz-transition:background-color .1s ease-out; -o-transition:background-color .1s ease-out; transition:background-color .1s ease-out; z-index:1}
.renewal .pdt-together .relation-list .slick-prev:before {content:'\e80a'; position: absolute; top: 0; left: 0; color: #d5d5d5; font-size: 36px; font-family: "fontello"; line-height: 1.7; text-indent: 0; -webkit-transition: color .2s ease-out; -moz-transition: color .2s ease-out; -o-transition: color .2s ease-out; transition: color .2s ease-out}
.renewal .pdt-together .relation-list .slick-next {display:block; overflow:hidden; top:50%; right:-40px; width:40px; height:60px; margin-top:-30px; text-indent:-999px; -webkit-transition:background-color .1s ease-out; -moz-transition:background-color .1s ease-out; -o-transition:background-color .1s ease-out; transition:background-color .1s ease-out; z-index:1}
.renewal .pdt-together .relation-list .slick-next:before {content:'\e80b'; position: absolute; top: 0; left: 0; color: #d5d5d5; font-size: 36px; font-family: "fontello"; line-height: 1.7; text-indent: 0; -webkit-transition: color .2s ease-out; -moz-transition: color .2s ease-out; -o-transition: color .2s ease-out; transition: color .2s ease-out}
.renewal .pdt-together .relation-list .slick-prev:hover,
.renewal .pdt-together .relation-list .slick-next:hover{background: rgba(0,0,0,0.7); text-decoration: none}

.renewal .pdt-together .relation-list .slick-track a {display:block; color:#888}
.renewal .pdt-together .relation-list a:hover {text-decoration:none}
.renewal .pdt-together .relation-list .name-eng {display:block; width:100%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; color:#888}
.renewal .pdt-together .relation-list .name-tit {display:block; color:#555; font-size:18px; font-weight:normal; width:100%; margin:14px 0 2px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap}

/* as-is 디자인일 경우 css (to-be 디자인으로 바뀔 시 해당 css 삭제필요) */
.renewal .pdt-together .relation-thumb {display:block}
.renewal .pdt-together .slick-slider {max-width:940px; margin:0 auto}
.renewal .pdt-together .relation-list-container {display:block; background:url(../image/btn-stop-mo.jpg) no-repeat 50% 96%}
.renewal .pdt-together .relation-list .name-eng {display:none}
.renewal .pdt-together .relation-list .name-tit {margin-top:0; font-family:'Buri',serif; font-size:14px}
/* //as-is 디자인일 경우 css (to-be 디자인으로 바뀔 시 해당 css 삭제필요) */

.renewal .slick-slider {text-align:center}
.renewal .slick-track {display:inline-block}

.renewal .ingredient {padding:0 0 20px}
.renewal .ingredient p {height:160px; line-height:24px; margin:0; font-size:14px; color:#555; overflow-y:scroll}

.renewal .buy-store .store-desc {margin:17px 0 16px}
.renewal .buy-store .store-cate {width:100%; margin-bottom:10px}
.renewal .buy-store .store-cate:after {display:block; content:""; clear:both}
.renewal .buy-store .store-list {margin-left:-10px}
.renewal .buy-store .store-list:after {display:block; content:""; clear:both}
.renewal .buy-store .store-list li {float:left; width:143px; height:30px; margin:0 0 10px 10px; line-height:28px; background:#fff; border:1px solid #555; box-sizing:border-box; text-align:center}
.renewal .buy-store .store-list li a {display:block}
.renewal .buy-store .find-tit {float:left; text-align:center}
.renewal .buy-store .find-tit + .find-tit {margin-left:10px}
.renewal .buy-store .find-tit a {display:inline-block; width:143px; height:30px; line-height:30px; background:#555; color:#fff; font-weight:normal}

/* 효능효과 */
.renewal .sum-title {display:block; margin-bottom:5px; line-height:26px; color:#191919; font-size:21px; font-weight:400}
.renewal .bullet {display:block}
.renewal .bullet i {display:inline-block; vertical-align:middle}
.renewal .title-box {margin-bottom:30px}
.renewal .graph-box .value {font-family:'Buri',serif; color:#000}
.renewal .graph-box .value em {padding-right:2px; line-height:1em; color:#000}
.renewal .sec-tit.bd-none {border-top:0}

.renewal .effect-img {text-align:center}
.renewal .effect-graph-in-wrap + .effect-graph-in-wrap,
.renewal .effect-graph-wrap + .effect-graph-wrap {margin-top:50px}
.renewal .anti-care .title-box {margin-bottom:72px}

.renewal .graph-cate {position:absolute; bottom:0; right:0}
.renewal .graph-cate:after {content:""; display:block; clear:both}
.renewal .graph-cate .cate {float:left; margin:0}
.renewal .graph-cate .cate i {position:relative; top:2px; margin-right:10px; display:inline-block; width:16px; height:16px; background-size:16px}
.renewal .graph-cate .cate + .cate {padding-left:30px}
.renewal .graph-cate .circle {background:url(../image/bg_graph_line_circle.png) no-repeat 0 0}
.renewal .graph-cate .rectangular {background:#caa58e}

.renewal .circle-graph.graph-box {text-align:center}
.renewal .circle-graph .graph-list {position:relative; display:inline-block; vertical-align:top; width:160px}
.renewal .circle-graph .graph-list + .graph-list {margin-left:57px}
.renewal .circle-graph .effect-box {position:relative; display:table; width:160px; height:160px; margin:0 auto; box-sizing:border-box}
.renewal .circle-graph .effect-box canvas {position:absolute; top:0; left:0}
.renewal .circle-graph .effect-txt {display:table-cell; vertical-align:middle; line-height:inherit !important}
.renewal .circle-graph .effect-title {display:table; width:100%; margin:0 0 18px; line-height:22px; color:#ab7655; font-size:21px}
.renewal .circle-graph .effect-title > span {display:table-cell; vertical-align:middle; line-height:22px; font-size:21px}
.renewal .circle-graph .effect-title.line-two {height:50px; margin-bottom:13px}
.renewal .circle-graph .value {font-size:21px; font-weight:normal}
.renewal .circle-graph .value em {font-size:40px}
.renewal .circle-graph .effect-desc {margin:17px auto 0; line-height:20px}

.renewal .control-graph {margin-top:15px; background:#f7f7f7; padding:45px 60px}
.renewal .control-graph:after {content:""; display:block; clear:both}
.renewal .control-graph .sum-title {margin-bottom:20px; font-size:21px}
.renewal .control-graph .graph-list {display:inline-block; width:100%; box-sizing:border-box}
.renewal .control-graph .cont-top {display:table; width:100%}
.renewal .control-graph .control-tit {display:table-cell; vertical-align:middle; width:90%; padding-right:10px; font-size:16px}
.renewal .control-graph .control-txt {margin:0; display:inline-block}
.renewal .control-graph .value {display:table-cell; vertical-align:bottom; font-size:18px; text-align:right}
.renewal .control-graph .value em {font-size:30px}
.renewal .control-graph .graph-cont + .graph-cont {margin-top:24px}
.renewal .control-box {margin-top:9px}
.renewal .controller-back {position:relative; width:100%; height:6px; background:#dcdcdc}
.renewal .controller-back:before {content:""; display:inline-block; position:absolute; top:-5px; left:0; width:16px; height:16px; background:url(../image/btn-stop-mo.png); border-radius:50%; box-sizing:border-box; z-index:5}
.renewal .controller {display:inline-block; position:absolute; top:0; left:0; height:6px; background:url(../image/bg_graph_percent.png) repeat-x 0 0; background-size:cover}

.renewal .control-graph.col-two {padding:20px 0 30px; font-size:0}
.renewal .control-graph.col-two .graph-list {width:50%; padding:25px 6.2% 25px 5.5%}

.renewal .control-graph.full .sum-title {display:inline-block; padding-right:5px}
.renewal .control-graph.full .graph-list + .graph-list {margin-top:45px}

.renewal .stick-graph {position:relative}
.renewal .stick-graph.caption-have {padding-top:40px}
.renewal .stick-graph:after {content:""; display:block; clear:both}
.renewal .stick-graph .value-num {position:absolute; bottom:-8px; left:0; width:40px; text-align:center}
.renewal .stick-graph .value-num span {display:block}
.renewal .stick-graph .value-num span + span {margin-top:29px}
.renewal .stick-graph .graph-area {float:left; height:308px; background:url(../image/bg_stick_graph.png) repeat-x 50% 100%; box-sizing:border-box}
.renewal .stick-graph .graph-area:after {content:""; display:block; clear:both}
.renewal .stick-graph .graph-area.graph-left {width:60%; padding-left:13%}
.renewal .stick-graph .graph-area.graph-left .graph-list {width:33.3%}
.renewal .stick-graph .graph-area.graph-right {width:40%; padding-right:13%}
.renewal .stick-graph .graph-area.graph-right .graph-list {width:50%}
.renewal .stick-graph .graph-list {float:left; position:relative; width:20%; height:100%; text-align:center; box-sizing:border-box}
.renewal .stick-graph .stick-box {position:absolute; height:100%; width:10px; left:50%; bottom:0; margin-left:-5px}
.renewal .stick-graph .stick {position:absolute; left:0; bottom:0; width:10px; background:#cba58e}
.renewal .stick-graph .stick:after {position:absolute; content:""; top:0; left:50%; width:18px; height:9px; margin:-5px 0 0 -9px; background:url(../image/btn-stop-mo.png) no-repeat}
.renewal .stick-graph .stick-tit {position:absolute; width:54%; left:50%; margin-left:-26%; line-height:24px; color:#ab7655; font-size:21px; text-align:center; opacity:0}
.renewal .stick-graph .graph-value {position:absolute; bottom:0; left:50%; margin-left:-16px; font-family:'Buri',serif; font-size:22px; color:#000; opacity:0}

.renewal .stick-graph.caption-have .graph-area {position:relative}
.renewal .stick-graph.caption-have .caption-title {position:absolute; top:-20px; left:50%; display:block; width:50%; height:39px; background:#f7f7f7; color:#191919; text-align:center; line-height:39px; border-radius:20px; font-size:18px; font-weight:normal}
.renewal .stick-graph.caption-have .graph-left {width:50%; padding:0 7% 0 12%}
.renewal .stick-graph.caption-have .graph-left .caption-title {margin-left:-20%}
.renewal .stick-graph.caption-have .graph-right {width:50%; padding:0 12% 0 7%}
.renewal .stick-graph.caption-have .graph-right .caption-title {margin-left:-31%}
.renewal .stick-graph.caption-have .graph-right .graph-list {width:33.3%}
.renewal .stick-graph.caption-have .stick-tit {width:72%; margin-left:-36%}

.renewal .semi-circle-graph {text-align:center}

/* 2017-01-23수정 */
@media (width: 1280px) and (min-height: 648px) and (orientation: landscape) {
	.renewal .control-graph.col-two .graph-list {width:49.9%}
	.renewal .pdt-tab.on {top:48px}
}
@media (width: 800px) and (min-height: 1128px) and (orientation: portrait) {
	.renewal .control-graph.col-two .graph-list {width:49.9%}
	.renewal .pdt-tab.on {top:48px}
}

@media only all and (max-width:1101px) {
	.renewal .pdt-detail-info .detail-list {width:48%}
	.renewal .pdt-detail-info .detail-guide {width:52%; padding-left:1%}
	.renewal .buy-store .find-tit + .find-tit {margin-left:9px}
	.renewal .buy-store .find-tit a,
	.renewal .buy-store .store-list li {width:138px; height:29px; line-height:27px}
	.renewal .buy-store .store-list {margin-left:-9px}
	.renewal .buy-store .store-list li {margin:0 0 9px 9px}
	.renewal .ingredient {padding-top:6px}
	.renewal .view-type-wrap {padding-left:0}

}

@media only all and (max-width:1024px) {
/*     .l-renewal .l-header, .l-renewal .l-wrap {padding:0 72px} 2017-04-06 */
	.renewal .l-pdt-inner {max-width:1024px}
	.renewal .l-pdt-inner .info-tit {width:20%} /* 2017-01-20수정 */
	.renewal .l-pdt-inner .info-desc {width:80%} /* 2017-01-20수정 */
	.renewal .l-pdt-detail {max-width:1024px; padding:0 72px}
	.renewal .l-pdt-wrap {padding:6px 72px 33px; background-size:cover}
	.renewal .pdt-detail-info {margin-top:8px}
	.renewal .pdt-show .info-box {max-width:32%}
	.renewal .pdt-show .pdt-tit {margin-bottom:2px; line-height:50px; font-size:36px}
	.renewal .pdt-show .sum-name {font-size:17px}
	.renewal .pdt-show .btn-detail {margin-top:19px; font-size:15px}
	.renewal .pdt-show .color-box + .btn-detail {margin-top:43px}
	.renewal .pdt-rolling .pdt-img {overflow:hidden; width:480px; height:480px; margin-bottom:0}
	.renewal .pdt-rolling .pdt-shadow-img {bottom:-56px}

	.renewal .slick-dots {bottom:26px}
	.renewal .slick-dotted.slick-slider {margin-bottom:0}
	.renewal .sns-box {bottom:20px}

	.renewal .pdt-tab.on {padding:0 72px}
	.renewal .sec-box .sub-txt {line-height:26px; margin-bottom:26px}
	.renewal .sec-box .txt-list strong {display:block}
	.renewal .sec-sub-tit {font-size:24px}

	.renewal .l-pdt-detail .feature-wrap .feature-img {width:42.2%}
	.renewal .l-pdt-detail .feature-wrap .feature-txt {padding:0 3px 0 30px}

	.renewal .show-type {width:39.3%}
	.renewal .color-type-view {height:114px}
	.renewal .view-type-wrap {padding-left:9px}
	.renewal .view-type .color-chip {width:37px; height:37px}
	.renewal .view-type .color-num {line-height:37px; font-size:16px}
	.renewal .view-type .color-list.on .color-num {line-height:34px}
	.renewal .view-type .color-list {padding:14px 0}
	.renewal .view-type .color-name {line-height:16px; padding-left:8px}

	.renewal .user-way .user-txt {padding-right:35px}
	.renewal .user-step {padding:30px 0 44px}

	.renewal .pdt-together .relation-item {margin:0 7px}
	.renewal .pdt-together .relation-list .name-tit {margin:11px 0 0}

	.renewal .beauty-step .beauty-step-way {margin-top:24px}
	.renewal .beauty-step .thumb-title.list {font-size:21px}
	.renewal .beauty-way-desc .beauty-step-box {margin-top:24px}
	.renewal .beauty-way .sec-tit + .beauty-step {margin-top:-9px}

	.renewal .face-care-box {margin:40px auto 27px}
	.renewal .face-care-box .care-thumb img {width:140px; height:140px}
	.renewal .face-care-box .left-cont {padding:15px 17% 24px 0}
	.renewal .face-care-box .right-cont {padding:15px 0 24px 17%}

}

@media only all and (max-width:890px) {
	.renewal .l-pdt-inner .info-tit {width:75px}
	.renewal .l-pdt-wrap {padding:8px 50px 43px}
	.renewal .l-pdt-detail {max-width:890px; padding:0 50px}
	.renewal .pdt-tab.on {padding:0 50px}
	.renewal .pdt-rolling .pdt-img {width:400px; height:400px}
	.renewal .pdt-rolling .pdt-shadow-img {bottom:-69px}
	.renewal .pdt-show .pdt-tit {line-height:33px; font-size:25px}
	.renewal .pdt-show .btn-detail {margin-top:15px}
	.renewal .view-type-wrap {padding:0}
	.renewal .show-type {width:35%}

}

@media only all and (max-width: 767px) {
	.l-renewal .l-header, .l-renewal .l-wrap {padding:0 15px}
	.renewal .l-pdt-wrap {padding:17px 0 30px}
	.renewal .l-pdt-detail {padding:0; font-size:13px}
	.renewal .l-pdt-inner {font-size:13px}

	.renewal .pdt-tab.on {padding:0}
	.renewal .pdt-tab a {height:38px; line-height:38px; font-size:13px}
	.renewal .pdt-tab li.on a {font-weight:normal}

	.renewal .pdt-show .pdt-tit-box {padding:33px 0 13px}
	.renewal .pdt-show .info-box {position:relative; top:0; width:100%; max-width:100%; padding:0 15px; min-height:auto; box-sizing:border-box;}
	.renewal .pdt-show .pdt-tit {margin-bottom:3px; line-height:25px; font-size:18px}
	.renewal .info-box .sum-name {display:block; margin-top:5px; line-height:15px; font-size:12px}
	.renewal .pdt-show .color-box {display:none}
	.renewal .pdt-show .btn-detail {margin-top:6px; padding-right:19px; font-size:13px}
	.renewal .pdt-show .color-box + .btn-detail {margin-top:4px}

	.renewal .pdt-desc-wrap .color-shade .sec-tit {padding:28px 0 5px}
	.renewal .pdt-desc-wrap .beauty-way .sec-tit {margin-bottom:11px}

	.renewal .pdt-detail-info {display:block; width:auto; margin:30px 15px 0; border-top:1px solid #ddd}
	.renewal .pdt-detail-info.two-info .detail-list .color-box + li {margin:0 0 8px}
	.renewal .pdt-detail-info.two-info .detail-list .color-box + li + li {margin:0 0 8px}
	.renewal .pdt-detail-info.two-info .detail-list li {margin:0 0 8px} /* 2017-01-23수정 */
	.renewal .pdt-detail-info.two-info .detail-list li + li {margin:0 0 8px} /* 2017-01-23수정 */
	.renewal .pdt-detail-info.two-info .detail-list .color-box li {margin-bottom:0}
	.renewal .pdt-detail-info .acc-tit {padding:10px 0 11px; background-size:20px !important}
	.renewal .pdt-detail-info .detail-box {display:block; width:100%}
	.renewal .pdt-detail-info .detail-guide {padding:0}
	.renewal .pdt-detail-info .detail-list > ul > li {margin:0 0 8px}
	.renewal .pdt-detail-info .detail-list {padding:10px 0 4px}
	.renewal .pdt-detail-info .color-box {display:block}

	.renewal .pdt-rolling {margin-top:-13px}
	.renewal .pdt-rolling .btn-rolling-wrap {bottom:100px}
	.renewal .pdt-rolling .pdt-img {width:290px; height:290px; margin-bottom:0}
	.renewal .pdt-rolling .pdt-shadow-img {overflow:hidden; bottom:-86px}
	.renewal .pdt-rolling .pdt-shadow-img img {position:absolute; top:0; left:50%; max-width:inherit; margin-left:-659px}

	.renewal .pdt-desc-wrap .sec-tit {line-height:25px; margin:0 15px; padding:28px 0 8px; font-size:18px}
	.renewal .pdt-feature .btn-view-detail a {width:161px; height:37px; line-height:37px; font-size:15px}

	.renewal .sns-box {bottom:-6px; right:15px}
	.renewal .sns-box a {width:30px; height:30px}
	.renewal .sns-box .facebook, .renewal .sns-box .twitter {background-size:contain}
	.renewal .sns-box .facebook:hover, .renewal .sns-box .twitter:hover {background-size:contain}
	.renewal .sec-box {padding-bottom:30px}
	.renewal .sec-box .sub-txt {line-height:19px; margin-bottom:12px; padding:0 15px; font-size:13px}

	.renewal .l-pdt-detail .feature-wrap {margin:0; padding:15px 15px 0}
	.renewal .l-pdt-detail .feature-wrap .feature-img {display:block; width:100%}
	.renewal .l-pdt-detail .feature-wrap .feature-img img {width:100%}
	.renewal .l-pdt-detail .feature-wrap .feature-txt {display:block; width:100%; padding:0}
	.renewal .l-pdt-detail .feature-wrap .txt-tit {margin:13px 0 4px; line-height:17px; font-size:14px}
	.renewal .l-pdt-detail .feature-wrap .row-box {display:block}
	.renewal .l-pdt-detail .feature-wrap .row-box + .row-box {margin-top:22px}

	.renewal .color-type-view {height:103px; margin-bottom:15px}
	.renewal .view-type .color-system-type {display:block; text-align:center}
	.renewal .color-shade.sec-box {padding-bottom:16px}
	.renewal .color-shade.sec-box .sub-txt {margin-bottom:22px}
	.renewal .type-box {display:block}
	.renewal .show-type {display:block; width:77.7%; padding:0; margin:0 auto 27px}
	.renewal .view-type-wrap {overflow:hidden}
	.renewal .view-type-wrap .is-pc {display:none}
	.renewal .view-type-wrap .is-mobile .slick-list {display:block}
	.renewal .view-type {display:block; width:100%; padding-right:0}
	.renewal .view-type {margin:0 auto; text-align:center}
	.renewal .view-type .slick-list {overflow:visible}
	.renewal .view-type .color-list {padding:0}
	.renewal .view-type .color-list.on .color-num {line-height:47px}
	.renewal .view-type .color-list.on .color-name {display:block}
	.renewal .view-type .color-chip {display:block; width:49px; height:49px; margin:0 auto}
	.renewal .view-type .color-name {display:none; line-height:18px; padding:6px 0 0; text-align:center}
	.renewal .view-type .color-num {line-height:49px}

	.renewal .stick-graph .graph-area {float:none; height:246px; background-size:contain}
	.renewal .stick-graph .graph-area.graph-left,
	.renewal .stick-graph .graph-area.graph-right {width:100%; padding:0 10%}
	.renewal .stick-graph .graph-area.graph-right {margin-top:25px}
	.renewal .stick-graph .graph-area.graph-right .graph-list {width:33%}
	.renewal .stick-graph .stick-tit {width:100%; margin-left:-50%; font-size:14px; line-height:17px}
	.renewal .stick-graph .graph-value {width:100%; margin-left:-50%; font-size:17px}

	.renewal .stick-graph.caption-have {padding-top:25px}
	.renewal .stick-graph.caption-have .graph-left {width:100%; padding:0 7% 0 12%}
	.renewal .stick-graph.caption-have .graph-right {margin-top:45px}
	.renewal .stick-graph.caption-have .graph-left .caption-title,
	.renewal .stick-graph.caption-have .graph-right .caption-title {margin-left:-25%}

	.renewal .user-step {padding:18px 15px 19px}
	.renewal .user-step li {text-align:left}
	.renewal .user-step li .step-txt:before {top:-6px; width:10px; height:10px; background-size:10px}
	.renewal .user-step li.on .step-txt:before {background-size:10px}
	.renewal .user-step li:first-child span:before {left:0; margin-left:0}
	.renewal .user-step li:last-child span:before {left:auto; right:-1px; margin-left:0}
	.renewal .user-step .ta-left {text-align:left}
	.renewal .user-step .ta-center {text-align:center}
	.renewal .user-step .ta-right {text-align:right}
	.renewal .user-step .step-txt {padding-top:6px}
	.renewal .user-way .user-txt {margin:0; padding:0 15px}

	.renewal .beauty-way {margin-top:26px}
	.renewal .beauty-step {margin:0; padding:15px 15px 0}

	.renewal .relation-list a {font-size:12px}
	.renewal .relation-list .name-tit {margin-top:6px; font-size:13px}

	.renewal .l-pdt-inner .color-box li {height:23px; margin:0}
	.renewal .l-pdt-inner .detail-list .color-box li + li {margin-left:11px}/* 2017-01-23수정 */
	.renewal .l-pdt-inner .color-chip {width:23px; height:23px}
	.renewal .l-pdt-inner .chip-inner, .renewal .l-pdt-inner .color-chip:hover > .chip-inner {background-size:contain}
	.renewal .l-pdt-inner .info-tit {width:10%} /* 2017-01-20수정 */
	.renewal .l-pdt-inner .info-desc {width:90%} /* 2017-01-20수정 */
	.renewal .l-pdt-inner .color-box .info-tit {line-height:23px}
	.renewal .l-pdt-inner .color-box ul {display:table-cell; width:90%; margin:0; height:23px}/* 2017-01-23수정 */
	.renewal .l-pdt-inner .color-name {width:80px; bottom:31px; margin-left:-40px; padding:2px 1px; font-size:11px; box-sizing:border-box}
	.renewal .l-pdt-inner .detail-box > ul > li.color-box {display:table; margin-bottom:6px}/* 2017-01-23수정 */

	.renewal .l-pdt-inner .slick-dotted.slick-slider {margin-bottom:0}
	.renewal .l-pdt-inner .slick-dots {bottom:1px}
	.renewal .l-pdt-inner .slick-dots li button:before {width:6px; height:6px}
	.renewal .l-pdt-inner .slick-dots li {margin:0 3px}
	.renewal .l-pdt-inner .slick-dots li button {width:6px; height:6px}
	.renewal .l-pdt-inner .slick-dots li, .renewal .slick-dots li.slick-active {background-size:contain}
	.renewal .l-pdt-inner .slick-dots li.slick-active button {width:15px; height:6px}

	.renewal .l-pdt-detail .slick-dotted.slick-slider {margin-bottom:0}
	.renewal .l-pdt-detail .slick-dots {bottom:1px}
	.renewal .l-pdt-detail .slick-dots li button:before {width:6px; height:6px}
	.renewal .l-pdt-detail .slick-dots li {margin:0 3px}
	.renewal .l-pdt-detail .slick-dots li button {width:6px; height:6px}
	.renewal .l-pdt-detail .slick-dots li, .renewal .slick-dots li.slick-active {background-size:contain}
	.renewal .l-pdt-detail .slick-dots li.slick-active button {width:15px; height:6px}

	.renewal .detail-video .video-player-desc p {font-size:13px}
	.renewal .detail-video .video-player-desc {padding:2.72727273% 15px 0}
	.renewal .detail-video .video-player-desc br {display:none}
	.renewal .l-pdt-detail .detail-video .f-icon {margin:-15px 0 0 -15px; font-size:30px}

	.renewal .pdt-together .relation-list-container {margin-top:15px; margin-left:0; margin-right:0}
	.renewal .pdt-together .relation-list .slick-prev {left:10px}
	.renewal .pdt-together .relation-list .slick-next {right:10px}
	.renewal .pdt-together .relation-list .name-tit {margin:5px 0 1px; font-size:13px}
	.renewal .pdt-together .relation-list .name-eng {font-size:12px}
	.renewal .pdt-together .sec-tit {margin-bottom:11px}
	.renewal .pdt-together .relation-thumb {width:140px; height:153px; margin:0 auto}

	.renewal .sec-box .line {display:inline}
	.renewal .txt-info-gray {display:block}

	.renewal .ingredient p {height:auto; max-height:245px; line-height:18px; font-size:12px}
	.renewal .ingredient {padding-top:2px}

	.renewal .buy-store .store-cate {width:98%; margin-bottom:15px; padding-right:2%}
	.renewal .buy-store .find-tit {width:47%}
	.renewal .buy-store .find-tit + .find-tit {margin-left:6%}
	.renewal .buy-store .store-cate .find-tit a {box-sizing:border-box; width:100%; height:auto; padding:8px 3px 7px; line-height:20px}
	.renewal .buy-store .store-list {width:98%; margin-left:0; padding-right:2%}
	.renewal .buy-store .store-list ul {margin-left:-6%}
	.renewal .buy-store .store-list li {width:44%; height:auto; margin:0 0 15px 6%; line-height:auto; border-color:#333}
	.renewal .buy-store .store-list li a {padding:8px 5px 7px !important; line-height:19px}
	.renewal .user-step.four-step li {width:25%}
	.renewal .user-step.four-step li + li {padding-left:2%; box-sizing:border-box}

	.renewal .tab-list ul li a {font-size:13px}
	.renewal .tab-list ul li + li {background-size:1px 7px}

	.renewal .sec-sub-tit {padding-top:0; font-size:14px}
	.renewal .beauty-way .sec-tit + .beauty-step {margin-top:-27px}
	.renewal .beauty-way .detail-video {margin-top:-8px}
	.renewal .beauty-step-box .tab-list {margin-bottom:6px}
	.renewal .beauty-step .sum-title {margin:7px 0; font-size:13px}
	.renewal .beauty-step .way_disc {margin:10px 0 0}
	.renewal .beauty-step-box + .beauty-step-box {margin-top:15px}
	.renewal .beauty-step .beauty-step-way .way-thumb > p {line-height:18px}
	.renewal .beauty-step .slick-slide {text-align:left}
	.renewal .beauty-step .slick-slide img {display:inline-block; width:100%}
	.renewal .beauty-step .slick-dots {position:relative; bottom:0}
	.renewal .beauty-step .slick-dots li {width:auto}
	.renewal .beauty-step .slick-dots li + li {margin:0 3px}
	.renewal .beauty-step .slick-dots {margin:0}
	.renewal .beauty-step .beauty-step-way {margin-top:6px}
	.renewal .beauty-step .thumb-title {margin-top:15px; font-size:13px; line-height:18px}
	.renewal .beauty-step .beauty-step-way .way-thumb .thumb-title + p {margin-top:3px}
	.renewal .beauty-step .line {display:block}
	.renewal .beauty-step .thumb-title.list {font-size:13px}

	.renewal .beauty-step .face-care-box.care-pc {display:none}
	.renewal .beauty-step .face-care-box {background:none; margin:6px 0 22px}
	.renewal .beauty-step .face-care-box .care-thumb img {width:100%; height:100%}
	.renewal .beauty-step .face-care-box .thumb-title {margin:15px 0 3px}

	.renewal .beauty-way-desc .beauty-step-box {display:block; width:100%; margin-top:7px}
	.renewal .beauty-way-desc .beauty-step-way {display:block}
	.renewal .beauty-way-desc .beauty-way-img {border:1px solid #dfdfdf; box-sizing:border-box}
	.renewal .beauty-way-desc .thumb-title {margin:6px 0 8px}
	.renewal .beauty-way-desc .step-num {margin-bottom:3px}
	.renewal .beauty-way-desc .way-thumb + .way-thumb {margin-top:19px}

	.renewal .video-title {top:50px; right:14px}
	.renewal .video-title .name-ko {line-height:15px; font-size:14px}
	.renewal .video-title .name-en {margin-top:0; font-size:12px}

	.renewal .pdt-desc-wrap .pdt-effect .sec-tit {margin-bottom:0}
	.renewal .sum-title {margin-bottom:9px; line-height:20px; font-size:15px}
	.renewal .title-box .sub-txt {padding:0}
	.renewal .title-box {padding:0 15px}
	.renewal .bullet {margin-left:6px; line-height:13px; text-indent:-3px; font-size:10px}

	.renewal .circle-graph .graph-list + .graph-list {margin-left:18px}
	.renewal .circle-graph .effect-title {margin-bottom:8px; line-height:18px; font-size:14px}
	.renewal .circle-graph .effect-title span {line-height:18px; font-size:14px}
	.renewal .circle-graph .value {position:relative; top:3px; font-size:15px}
	.renewal .circle-graph .value em {font-size:24px}
	.renewal .circle-graph .graph-list {width:80px; }
	.renewal .circle-graph .effect-box {width:80px; height:80px}

	.renewal .control-graph.col-two .graph-list {width:100%; padding:0}
	.renewal .control-graph .sum-title {margin-bottom:4px; font-size:16px}
	.renewal .control-graph,
	.renewal .control-graph.col-two {padding:21px 15px 29px}
	.renewal .control-graph.full .graph-list + .graph-list,
	.renewal .control-graph .graph-list + .graph-list {margin-top:30px}
	.renewal .control-graph .value {font-size:14px}
	.renewal .control-graph .value em {font-size:24px}
	.renewal .controller-back,
	.renewal .controller {height:5px}
	.renewal .controller-back:before {width:13px; height:13px; top:-4px; background-size:contain}
	.renewal .control-graph .control-txt {line-height:18px; font-size:13px}
	.renewal .control-graph.full .sum-title {display:block; margin-bottom:9px}
	.renewal .control-box {margin-top:9px}
	.renewal .control-graph .graph-cont + .graph-cont {margin-top:11px}

	.renewal .circle-graph .effect-box canvas,
	.renewal .circle-graph .effect-txt {width:80px !important; height:80px !important}
	.renewal .circle-graph .effect-desc {margin-top:7px; line-height:17px; font-size:12px}
	.renewal .circle-graph .effect-title,
	.renewal .circle-graph .effect-title.line-two {height:38px; margin-bottom:7px}

	.renewal .stick-graph.caption-have .caption-title {top:-14px; height:31px; line-height:31px; font-size:14px}

	.renewal .graph-cate {position:static; margin-top:22px}
	.renewal .graph-cate .cate + .cate {padding-left:14px}
	.renewal .graph-cate .cate i {width:13px; height:13px; margin-right:8px; background-size:contain; top:1px}
	.renewal .line-graph img {display:block; width:290px; height:259px; margin:0 auto}
	.renewal .line-graph img + img {margin-top:25px}

	.renewal .pc-graph {display:none}
	.renewal .semi-circle-graph {width:290px; height:95px; margin:0 auto}

	.renewal .effect-graph-in-wrap + .effect-graph-in-wrap,
	.renewal .effect-graph-wrap + .effect-graph-wrap {margin:0}

	.renewal .btn-view-beauty {display:none}
	.renewal .beauty-step {height:auto !important; overflow:inherit !important}

	/* as-is 디자인일 경우 css (to-be 디자인으로 바뀔 시 해당 css 삭제필요) */
	.renewal .pdt-together .relation-item .name {width:auto}
	.renewal .pdt-together .relation-list-container {background-position:50% 100%}
	/* //as-is 디자인일 경우 css (to-be 디자인으로 바뀔 시 해당 css 삭제필요) */

}

@media screen and (max-width:767px) {
	.renewal .type-box {display:block}
	.renewal .show-type {display:block; width:290px; height:190px; margin:0 auto 26px; padding-right:0; text-align: center}
	.renewal .view-type-wrap {display:block; width:100%; padding-right:0}
}

/* 2017-01-20수정 */
@media (max-width:500px) {
	.renewal .l-pdt-inner .info-tit {width:15%}
	.renewal .l-pdt-inner .info-desc {width:85%}
}

@media (max-width:450px) {
	.renewal .pdt-desc-wrap .detail-video .video-link {overflow:hidden; height:180px}
	.renewal .pdt-desc-wrap .detail-video img {position:absolute; top:0; left:50%; width:inherit; height:100%; max-width:inherit; margin-left:-75%}
	.renewal .pdt-desc-wrap .flexible-obj {padding-bottom:56.5%}
	.renewal .pdt-together .relation-item {margin:0 3px}
}

@media (max-width:374px) {
	.renewal .pdt-together .slick-slider {text-align:center}
	.renewal .pdt-together .slick-slide {width:170px}
	.renewal .pdt-together .slick-dots {position:relative; display:inline-block; width:inherit; margin:13px auto 0}
	.renewal .pdt-together .slick-dots:after {display:block; content:""; clear:both}
	.renewal .pdt-together .slick-dots > li {float:left; margin:0 2px; background:none}
	.renewal .pdt-together .slick-dots button {overflow:hidden; width:5px; height:5px; text-indent:-999px; margin:0; padding:0; cursor:pointer; background:url(../image/bg_btn_rolling.png) no-repeat 0 0; background-size:contain}
	.renewal .pdt-together .slick-dots .slick-active button {width:12px; height:5px; background:url(../image/bg_btn_rolling_on.png) no-repeat 0 0; background-size:contain}

	/* as-is 디자인일 경우 css (to-be 디자인으로 바뀔 시 해당 css 삭제필요) */
	.renewal .pdt-together .relation-list-container {background-position:50% 87%}
	/* //as-is 디자인일 경우 css (to-be 디자인으로 바뀔 시 해당 css 삭제필요) */
}


@media (max-width: 320px) {
	.renewal .pdt-together .slick-slide {opacity:0.4; filter:alpha(opacity=40)}
	.renewal .pdt-together .slick-slide.slick-current {opacity:1; filter:alpha(opacity=100)}

	.renewal .pdt-together .relation-list .name-tit,
	.renewal .pdt-together .relation-list .name-eng {opacity:0}
	.renewal .pdt-together .relation-list .slick-current .name-tit,
	.renewal .pdt-together .relation-list .slick-current .name-eng {opacity:1}

}

@media (min-width: 768px) {
	.renewal .face-care-box.care-mobile {display:none}
	.renewal .mobile-graph {display:none}
}

@media \0screen {
	.renewal {min-width:1280px}
	.renewal .face-care-box.care-mobile {display:none !important}
	.renewal .mobile-graph {display:none !important}
	/* 2017-01-12 수정 */
	.renewal .beauty-step .slick-next,
	.renewal .beauty-step .slick-prev {top:-6px}
}

/* 설안팩 */
.renewal .radiance-mask .title-box {margin-bottom:42px}
.renewal .radiance-mask .effect-graph-wrap {margin-top:35px}
.renewal .radiance-mask .effect-graph-wrap + .effect-graph-wrap {margin-top:93px}
.renewal .radiance-mask .pdt-effect .sum-title {margin-bottom:8px; font-size:22px}
.renewal .radiance-mask .buy-store .store-desc {display:none}

@media only all and (max-width: 767px) {
	.renewal .radiance-mask .title-box {margin-bottom:21px}
	.renewal .radiance-mask .effect-graph-wrap {margin-top:5px}
	.renewal .radiance-mask .effect-graph-wrap + .effect-graph-wrap {margin-top:23px}
	.renewal .radiance-mask .circle-graph .effect-title {width:77%; margin:0 auto 7px}
	.renewal .radiance-mask .pdt-effect .sum-title {font-size:15px}
}

/* 수율크림 */
.renewal .hydroAid .title-box {margin-bottom:38px}
.renewal .hydroAid .sum-title {font-size:22px}
.renewal .hydroAid .pdt-effect .sub-txt {margin-bottom:40px}
.renewal .hydroAid .pdt-feature .f-icon {display:none}
.renewal .hydroAid .buy-store .store-desc {display:none}

@media only all and (max-width:1024px) {
	.renewal .hydroAid .sec-box .txt-list + .txt-list {margin-top:24px}
}
@media only all and (max-width: 767px) {
	.renewal .hydroAid .pdt-desc-wrap .pdt-effect .sec-tit {padding-bottom:4px}
	.renewal .hydroAid .title-box .sub-txt {margin-bottom:25px}
	.renewal .hydroAid .title-box {margin-bottom:20px}
}

@media only all and (max-width: 450px) {
	.renewal .hydroAid .pdt-feature .video {position:relative; overflow:hidden; height:180px}
}


/* 윤조에센스 */
.renewal .activation-serum .title-box {position:relative; margin-bottom:0}
.renewal .activation-serum .line-graph {margin-top:45px}
.renewal .activation-serum .pdt-effect .sub-txt {margin-bottom:40px}
.renewal .activation-serum .pdt-effect .sec-tit {margin-bottom:9px}
.renewal .activation-serum .effect-graph-wrap + .effect-graph-wrap {margin-top:36px}
.renewal .activation-serum .buy-store .store-desc {display:none}

@media only all and (max-width:1024px) {
	.renewal .activation-serum .sum-name {width:75%; line-height:21px}
}

@media only all and (max-width: 767px) {
	.renewal .activation-serum .pdt-effect .sub-txt {margin-bottom:19px}
	.renewal .activation-serum .pdt-effect .sec-tit {margin-bottom:0}
	.renewal .activation-serum .line-graph {margin-top:13px}
	.renewal .activation-serum .effect-graph-wrap + .effect-graph-wrap {margin-top:36px}
}


/* 자음생크림 */
.renewal .concentrated .pdt-effect .sec-tit.bd-none {margin-bottom:44px}
.renewal .concentrated .effect-graph-wrap + .effect-graph-wrap {margin-top:6px}
.renewal .concentrated .buy-store .store-desc {display:none}

@media only all and (max-width: 767px) {
	.renewal .concentrated .pdt-effect .sec-tit.bd-none {margin-bottom:8px}
	.renewal .concentrated .anti-care .effect-img {width:291px; height:161px; margin:0 auto 29px}
	.renewal .concentrated .anti-care .title-box {margin-bottom:22px}
	.renewal .concentrated .effect-graph-wrap + .effect-graph-wrap {margin-top:0}
}

/* 진설아이크림 */
.renewal .timetreasure .pdt-desc-wrap .pdt-effect .sec-tit {margin-bottom:38px}
.renewal .timetreasure .title-box { margin-bottom:38px}
.renewal .timetreasure .buy-store .store-desc {display:none}

@media only all and (max-width:890px) {
	.renewal .timetreasure .circle-graph .graph-list + .graph-list {margin-left:10px}
}

@media only all and (max-width: 767px) {
	.renewal .timetreasure .pdt-desc-wrap .pdt-effect .sec-tit {margin-bottom:8px}
	.renewal .timetreasure .title-box {margin-bottom:12px}
	.renewal .timetreasure .circle-graph .graph-list + .graph-list {margin-left:0}
	.renewal .timetreasure .circle-graph.graph-box {width:320px; margin:0 auto}
	.renewal .timetreasure .circle-graph .graph-list {padding:8px 20px}
}


/* 자여진에센스 */
.renewal .capsulized-serum .title-box .bullet {margin-top:19px}
.renewal .capsulized-serum .title-box {margin-bottom:14px}
.renewal .capsulized-serum .semi-circle-graph {margin-top:44px}
.renewal .capsulized-serum .buy-store .store-desc {display:none}

@media only all and (max-width: 767px) {
	.renewal .capsulized-serum .semi-circle-graph {height:210px; margin-top:22px}
	.renewal .capsulized-serum .title-box .bullet {margin-top:0}
	.renewal .capsulized-serum .effect-graph-wrap + .effect-graph-wrap .bullet {margin-top:11px}
	.renewal .capsulized-serum .control-graph .control-txt {width:60%}
}

/* 자정미백에센스 */
.renewal .snowise .pdt-effect .sec-tit {margin-bottom:5px}
.renewal .snowise .pdt-feature .f-icon {display:none}
.renewal .snowise .title-box {margin-bottom:44px}
.renewal .snowise .buy-store .store-desc {display:none}

@media only all and (max-width: 767px) {
	.renewal .snowise .semi-circle-graph {height:122px}
	.renewal .snowise .title-box {margin-bottom:39px}
	.renewal .snowise .beauty-way .beauty-step {margin-top:-27px}
}

@media only all and (max-width: 450px) {
	.renewal .snowise .pdt-feature .video {position:relative; overflow:hidden; height:180px}
}


/* 퍼펙팅쿠션 */
.renewal .perfecting-cushion .view-type .next-group {padding-left:40%}
.renewal .perfecting-cushion .view-type .next-group .color-list {width:33.3%}

@media only all and (max-width:890px) {
	.renewal .perfecting-cushion .pdt-show .info-box {width:29%}
}

@media only all and (max-width: 767px) {
	.renewal .perfecting-cushion .pdt-show .info-box {width:auto}
}

/* 자음생크림 라이트 */
@media only all and (max-width:1024px) {
	.renewal-light .info-box {max-width:29%}
}

/* 중국 - 윤조에센스 2017-04-06 */
.en-letter {letter-spacing:0em;}
.detail-info-container {height:auto; padding:0; background:none;}
.detail-buy {margin-top:70px; padding:0; border-top:0;}
.detail-buy .func .btn {width:180px; height:44px; font-size:15px; font-weight:normal; background-color:#555;}

.renewal .pdt-show .info-box {max-width:35%;}
.renewal .pdt-show .pdt-tit {font-family:'Times New Roman','宋体','SimSun','新宋体','NSimSun','华文细黑','STSong','STSongti-SC','\534E\6587\5B8B\4F53',serif; letter-spacing:-0.025em;}
.renewal .pdt-show .btn-detail {font-family:'Microsoft Yahei','微软雅黑','冬青黑体','Hiragino Sans GB',STHeitiSC,SimHei,Helvetica,sans-serif; letter-spacing:-0.025em;}
.renewal .pdt-show .pdt-tit-box {padding:62px 0 31px;}
.renewal .pdt-show .sum-name {margin-top:15px;}


.renewal .detail-points:after {content:''; display:block; clear:both;}
.renewal .l-pdt-inner .info-tit {font-family:'Microsoft Yahei','微软雅黑','冬青黑体','Hiragino Sans GB',STHeitiSC,SimHei,Helvetica,sans-serif; vertical-align:middle;}
.renewal .l-pdt-inner .info-desc {font-family:'Microsoft Yahei','微软雅黑','冬青黑体','Hiragino Sans GB',STHeitiSC,SimHei,Helvetica,sans-serif;}
.renewal .l-pdt-inner .vol {float:left; padding:3px 13px; border:1px solid #ccc;}
.renewal .l-pdt-inner .vol + .vol {margin-left:6px;}
.renewal .l-pdt-inner .vol.on {border-color:#555; background-color:#fff;}


.renewal .sns-box a {width:36px; height:36px;}
.renewal .sns-box .wechat {background:url(../image/btn-stop-mo.png) no-repeat 0 0;}
.renewal .sns-box .weibo {background:url(../image/icon_weibo.png) no-repeat 0 0;}
.renewal .sns-box .douban {background:url(../image/icon_douban.png) no-repeat 0 0;}
.renewal .sns-box .wechat:focus, .renewal .sns-box .wechat:hover {background:url(../image/btn-stop-mo.png) no-repeat 0 0}
.renewal .sns-box .weibo:focus, .renewal .sns-box .weibo:hover {background:url(../image/icon_weibo_on.png) no-repeat 0 0}
.renewal .sns-box .douban:focus, .renewal .sns-box .douban:hover {background:url(../image/icon_douban_on.png) no-repeat 0 0}

.renewal .pdt-tab li {width:25%;}
.renewal .pdt-tab a {font-family:'Microsoft Yahei','微软雅黑','冬青黑体','Hiragino Sans GB',STHeitiSC,SimHei,Helvetica,sans-serif;}
.renewal .detail-section-wrap {max-width:940px; margin:0 auto;}/*2017-04-27 add*/

/*
.renewal .pdt-desc-wrap .sec-tit {font-family:'Times New Roman','宋体','SimSun','新宋体','NSimSun','华文细黑','STSong','STSongti-SC','\534E\6587\5B8B\4F53',serif; font-weight:700; letter-spacing:-0.025em;}
.renewal .sec-box .sub-txt {font-family:'Microsoft Yahei','微软雅黑','冬青黑体','Hiragino Sans GB',STHeitiSC,SimHei,Helvetica,sans-serif; letter-spacing:-0.025em;}
.renewal .feature-wrap .txt-tit {font-size:20px; font-family:'Microsoft Yahei','微软雅黑','冬青黑体','Hiragino Sans GB',STHeitiSC,SimHei,Helvetica,sans-serif; letter-spacing:-0.025em;}
.renewal .feature-wrap .txt-desc {font-family:'Microsoft Yahei','微软雅黑','冬青黑体','Hiragino Sans GB',STHeitiSC,SimHei,Helvetica,sans-serif;}
.renewal .color-type-view {margin-bottom:40px;}
.renewal .type-box {width:auto; padding:0 40px;}
.renewal .show-type {width:33%;}
.renewal .view-type-wrap {padding-left:90px;}
.renewal .perfecting-cushion .view-type .color-list {width:25%;}
.renewal .perfecting-cushion .view-type .next-group .color-list {width:34%;}
.renewal .perfecting-cushion .view-type .next-group {padding-left:28%;}
.renewal .view-type .color-list + .color-list {margin-left:15px;}
.renewal .view-type .color-name {font-family:'Microsoft Yahei','微软雅黑','冬青黑体','Hiragino Sans GB',STHeitiSC,SimHei,Helvetica,sans-serif; letter-spacing:0;}
.renewal .view-type .color-num {font-size:20px; font-family:'Buri',serif; }
.renewal .txt-info-gray {word-break:keep-all;}
.renewal .user-way .user-txt {font-family:'Microsoft Yahei','微软雅黑','冬青黑体','Hiragino Sans GB',STHeitiSC,SimHei,Helvetica,sans-serif; letter-spacing:0;}
.renewal .pdt-together .relation-thumb {margin:0 0px;}
.renewal .detail-section {margin-top:0;}
.renewal .detail-section-header .h {text-align:left; font-family:'Times New Roman','宋体','SimSun','新宋体','NSimSun','华文细黑','STSong','STSongti-SC','\534E\6587\5B8B\4F53',serif; font-weight:700; letter-spacing:-0.025em;}
.renewal .detail-section-wrap {padding-top:60px; border-top:1px solid #eee;}
.renewal .detail-comment-content .func.left-add {text-align:center;}
.renewal .detail-comment-content .btn {padding:0.64em 4.4em; font-size:1.1em;}
.renewal .pdt-together .relation-list-container {background:none;}
.renewal .pdt-together .list .name-tit {font-size:18px; font-family:'Microsoft Yahei','微软雅黑','冬青黑体','Hiragino Sans GB',STHeitiSC,SimHei,Helvetica,sans-serif; letter-spacing:-0.025em;}
.renewal .pdt-together .list {text-align:center;}
.renewal .pdt-together .list .name-eng {display:block; color:#999; font-size:15px; font-family:'Microsoft Yahei','微软雅黑','冬青黑体','Hiragino Sans GB',STHeitiSC,SimHei,Helvetica,sans-serif; letter-spacing:-0.025em;}
.renewal .pdt-together .relation-item .name {margin-top:15px;}
.renewal .pdt-together .list .name-tit {font-weight:normal;}
.renewal .view-type .color-list.on .color-name {color:#555;}
.renewal .pdt-tab .tab-line br {display:none;}


@media only all and (max-width:1070px) and (min-width:768px) {
	.renewal .perfecting-cushion .view-type .color-list {width:25%;}
	.renewal .perfecting-cushion .view-type .next-group .color-list {width:36%;}
	.renewal .perfecting-cushion .view-type .next-group {padding-left:29%;}
}

*/
@media only all and (max-width: 767px) {
.footer {margin-top:0 !important;}
.renewal .pdt-tab a {font-size:12px;}
.renewal .pdt-tab .tab-line {line-height:18px;}
.renewal .pdt-tab .tab-line br {display:block;}
.renewal .pdt-show .pdt-tit {font-weight:700;}
.renewal .pdt-show .info-box{max-width:60%;}
.renewal .pdt-show .pdt-tit-box {padding:22px 0 12px;}
.renewal .pdt-show .sum-name {margin-top:7px;}
.renewal .sns-box a {width:28px; height:28px; background-size:28px !important;}
.renewal .sns-box a + a {margin-left:2px;}
.renewal .sec-box {padding-bottom:27px;}
.renewal .l-pdt-inner .vol {padding:1px 4px; font-size:12px;}
.renewal .detail-buy {margin-top:12px; padding-top:15px; border-top:1px solid #ddd;}
.renewal .detail-buy .func {text-align:center;}
.renewal .detail-buy .func .btn {width:162px; height:38px; font-size:13px;}
.renewal .l-pdt-detail .slick-dots li, .renewal .slick-dots li.slick-active {background-size:contain !important;}
/*
.renewal .feature-wrap .txt-tit {font-size:14px;}
.renewal .color-shade.sec-box .sub-txt {margin-bottom:29px;}
.renewal .slick-dotted.slick-slider {margin:0 auto;}
.renewal .color-shade.sec-box {padding-bottom:23px;}
.renewal .view-type-wrap {padding-left:0px;}
.renewal .view-type .color-num {font-size:16px;}
.renewal .perfecting-cushion .view-type .next-group {padding-left:0%;}
.renewal .view-type .color-list + .color-list {margin-left:0px;}
.renewal .type-box {padding:0 0px;}
.renewal .view-type .color-list .color-num {font-family:'Buri',serif;}
.renewal .view-type .color-list.on .color-name {font-family:'Microsoft Yahei','微软雅黑','冬青黑体','Hiragino Sans GB',STHeitiSC,SimHei,Helvetica,sans-serif; letter-spacing:-0.025em;}

.renewal .txt-info-gray {word-break:normal;}
.renewal .detail-section-wrap {padding-top:0; border-top:none;}
.renewal .detail-section {margin-top:0;}
.renewal .detail-section-header .h {padding-top:31px; font-size:18px; border-top:1px solid #eee;}
.renewal .detail-section {padding:0 15px 0;}
.renewal .detail-comment-content .func.left-add {text-align:center;}
.renewal .detail-comment-content .btn {padding:0.64em 3.4em; font-size:1em;}
.renewal .pdt-together .relation-list-container {background:none;}
.renewal .pdt-together .relation-thumb {height:163px; margin:0 auto;}
.renewal .pdt-together .list .name-tit {color:#191919; font-size:13px;}
.renewal .pdt-together .list .name-eng {color:#999; font-size:12px;font-family: 'Dotum','Notosans',serif;}
.renewal .pdt-together .sec-tit {margin-bottom:0;}
.renewal .pdt-together .relation-list-container {margin-top:2px; margin-bottom:35px;}
*/
}
/*
@media only all and (max-width: 450px) {
.renewal .show-type {width:237px;}
}
*/
.order-detail .selectbox-qty {width:21%;}

.renewal .detail-section-header .h {text-align:center;}

/* 170427 주문하기 버튼 hover */
.detail-buy .func .btn:hover {color:#fff; background:#555;}


/*
20170228 8개 제품상세 상단 dynamic 확대 기능 추가
*/
/* 기본 */
.area-dy-product {overflow:hidden;}
/* 상품이미지 */
.list-dy-product {overflow:visible !important; position:relative;}
.list-dy-product.zoom:before {display:block; position:absolute; bottom:0; left:0; z-index:1; width:100%; font-size:14px; color:#999; text-align:center; content:'Mouse over to zoom';}
.list-dy-product.off:before {display:none;}
.box-dy-product {overflow:hidden; position:relative;}
.box-dy-product .dy-zoom-info {display:block; position:absolute; top:0; left:0; right:0; bottom:0; z-index:1000; width:236px; height:220px; margin:auto; background-position:0 -30px;}
.box-dy-product .dy-360-info {display:block; position:absolute; top:0; left:0; right:0; bottom:0; z-index:1000; width:236px; height:220px; margin:auto; background-position:-240px -30px;}
.btn-dy-close button:before,
.area-dy-360 .btn-default button:before,
.area-dy-pop .btn-dy-zoom > *:before,
.btn-dy-360-pop button:after,
.btn-dy-zoom-pop button:after,
.box-dy-product .dy-zoom-info,
.box-dy-product .dy-360-info {display:none;background-image:url(../image/sp_dynamic.png); background-repeat:no-repeat; background-size:480px 250px;}
.list-dy-product > * {display:none; overflow:hidden; position:relative; width:100%; text-align:center;}
.list-dy-product > * img {width:100%;}
.list-dy-product > * > * {margin:0; padding:0;}
.list-dy-product > * .add-dy-Img {display:none; position:absolute; top:0; left:0; right:0; bottom:0; z-index:1; width:100%; height:100%; margin:auto;}
.list-dy-product > *.on {display:block;}
.list-dy-product > *.ready {position:absolute; top:0; z-index:1; width:100%; text-align:center;}
.btn-dy-360-pop,
.btn-dy-zoom-pop {position:absolute; top:0; left:0; z-index:1000;}
.off.btn-dy-zoom-pop,
.off.btn-dy-360-pop,
.off.area-dy-product .btn-dy-360-pop,
.off.area-dy-product .btn-dy-zoom-pop {display:none;}
.btn-dy-360-pop button,
.btn-dy-zoom-pop button {display:block; overflow:hidden; position:relative; z-index:5000; width:60px; height:0; padding-top:60px; border:none; background-color:transparent; text-indent:-9999px;}
.btn-dy-360-pop button.off,
.btn-dy-zoom-pop button.off {display:none;}
.btn-dy-360-pop button:before,
.btn-dy-zoom-pop button:before {display:block; position:absolute; top:50%; left:50%; width:48px; height:48px; margin:-24px 0 0 -24px; border-radius:48px; background-color:#666; content:'';}
.btn-dy-360-pop button:after,
.btn-dy-zoom-pop button:after {display:block; -webkit-transition:all 0.3s ease-out; transition:all 0.3s ease-out; position:absolute; top:50%; left:50%; background-repeat:no-repeat; content:'';}
.btn-dy-360-pop button:after {width:26px; height:22px; margin:-13px 0 0 -11px; background-position:-120px 0;}
.btn-dy-zoom-pop button:after {width:16px; height:16px; margin:-8px 0 0 -8px; background-position:0 0;}
.btn-dy-close button:hover:before,
.btn-dy-zoom-pop button:hover:after {-webkit-transform:rotate(90deg); transform:rotate(90deg);}
/* 썸네일 */
.box-thumb-dy {position:relative; z-index:1000; margin-top:10px; font-size:0; text-align:center; vertical-align:top;}
.box-thumb-dy > button.dy-btn-arrow {display:inline-block; overflow:hidden; position:relative; width:60px; height:60px; vertical-align:top;}
.box-thumb-dy > button.dy-btn-arrow span {display:block; overflow:hidden; position:relative; width:100%; height:0; padding-top:60px; text-indent:-9999px;}
.box-thumb-dy > button.dy-btn-arrow span:before,
.box-thumb-dy > button.dy-btn-arrow span:after {display:block; position:absolute; top:50%; left:50%; width:2px; height:14px; background-color:#111; content:'';}
.box-thumb-dy > button.dy-btn-arrow.type-prev span:before,
.box-thumb-dy > button.dy-btn-arrow.type-next span:after {-webkit-transform:rotate(45deg); transform:rotate(45deg); margin-top:-11px; margin-left:-1px;}
.box-thumb-dy > button.dy-btn-arrow.type-prev span:after,
.box-thumb-dy > button.dy-btn-arrow.type-next span:before {-webkit-transform:rotate(-45deg); transform:rotate(-45deg); margin-top:-2px; margin-left:-1px;}
.box-thumb-dy > button.dy-btn-arrow.type-next span:before {margin-top:-11px;}
.box-thumb-dy > button.dy-btn-arrow.type-next span:after {margin-top:-1px;}
.list-dy-arrow li.li_next:hover,
.box-thumb-dy > button.dy-btn-arrow.type-prev:hover span {-webkit-animation:iconMove1 .5s ease-in alternate infinite; animation:iconMove1 .5s ease-in alternate infinite;}
.list-dy-arrow li.li_prev:hover,
.box-thumb-dy > button.dy-btn-arrow.type-next:hover span {-webkit-animation:iconMove2 .5s ease-in alternate infinite; animation:iconMove2 .5s ease-in alternate infinite;}
/* 썸네일 리스트 */
.thumb-dy-product {display:inline-block;}
.thumb-dy-product > * {display:inline-block; overflow:hidden; width:62px; height:62px; margin:0 4px;}
.thumb-dy-product > * button {display:block; -webkit-box-sizing:border-box; box-sizing:border-box; width:100%; height:100%; border:1px solid rgba(0,0,0,.2); background-color:#fff; background-repeat:no-repeat; background-size:100% 100%;}
.thumb-dy-product > * button span {display:block; overflow:hidden; position:relative; width:100%; height:0; padding-top:100%; text-indent:-9999px;}
.thumb-dy-product > * button,
.list-dy-select.type-1 li button,
.area-dy-layer .list-dy-select li button,
.list-dy-select.type-1 li a,
.area-dy-layer .list-dy-select li a,
.area-dy-select.type-1 .dy-view-list button:before,
.area-dy-layer .area-dy-select .dy-view-list button:before,
.area-dy-texture .dy-view-list button:before,
.area-dy-select.type-1 .dy-view-list button:after,
.area-dy-layer .area-dy-select .dy-view-list button:after,
.area-dy-texture .dy-view-list button:after {-webkit-transition:all 0.2s ease-in; transition:all 0.2s ease-in;}
.thumb-dy-product > * button:hover  {border-color:rgba(0,0,0,.6);}
.thumb-dy-product > *.on button {border-color:#111;}
.thumb-dy-product > * img {width:100%;}
/* 컬러칩 */
.area-dy-select.type-1,
.area-dy-layer .area-dy-select {position:relative;}
.area-dy-layer .area-dy-select {margin-top:30px; text-align:center;}
.list-dy-select.type-1,
.area-dy-layer .list-dy-select {overflow:hidden; max-height:32px; width:100%; margin:0 auto; padding-top:10px; font-size:0;}
.list-dy-select.type-1,
.area-dy-layer .list-dy-select,
.list-dy-select.type-1 li,
.area-dy-layer .list-dy-select li {-webkit-transition:all 0.3s ease-in; transition:all 0.3s ease-in;}
.list-dy-select.type-1.on,
.area-dy-layer .list-dy-select.on {max-height:300px;}
.list-dy-select.type-1 li,
.area-dy-layer .list-dy-select li {display:inline-block; margin:2px; padding:10px; border:2px solid transparent;}
.list-dy-select.type-1 li button,
.area-dy-layer .list-dy-select li button,
.list-dy-select.type-1 li a,
.area-dy-layer .list-dy-select li a {display:block; overflow:hidden; width:23px; height:23px; background-color:#fff;}
.list-dy-select.type-1 li.on,
.area-dy-layer .list-dy-select li.on {border-color:#111;}
.list-dy-select.type-1 li button img,
.area-dy-layer .list-dy-select li button img,
.list-dy-select.type-1 li a img,
.area-dy-layer .list-dy-select li a img {width:100%; border:none;}
.list-dy-select.type-1.type-circle li,
.area-dy-layer .list-dy-select.type-circle li {overflow:hidden; border-radius:100%;}
/*.list-dy-select.type-1.type-circle li button {overflow:hidden; border-radius:100%;}*/
.area-dy-texture .dy-view-list,
.area-dy-select.type-1 .dy-view-list,
.area-dy-layer .area-dy-select .dy-view-list {width:400px; margin:10px 0; text-align:center;}
.area-dy-texture .dy-view-list button,
.area-dy-select.type-1 .dy-view-list button,
.area-dy-layer .area-dy-select .dy-view-list button {display:inline-block; overflow:hidden; position:relative; padding-right:25px; line-height:30px; color:#338ed4;}
.area-dy-texture .dy-view-list button:before,
.area-dy-select.type-1 .dy-view-list button:before,
.area-dy-layer .area-dy-select .dy-view-list button:before,
.area-dy-texture .dy-view-list button:after,
.area-dy-select.type-1 .dy-view-list button:after,
.area-dy-layer .area-dy-select .dy-view-list button:after {display:block; position:absolute; top:11px; width:2px; height:8px; background-color:#338ed4; content:'';}
.area-dy-texture .dy-view-list button:before,
.area-dy-select.type-1 .dy-view-list button:before,
.area-dy-layer .area-dy-select .dy-view-list button:before {-webkit-transform:rotate(-45deg); transform:rotate(-45deg); right:16px;}
.area-dy-texture .dy-view-list button:after,
.area-dy-select.type-1 .dy-view-list button:after,
.area-dy-layer .area-dy-select .dy-view-list button:after {-webkit-transform:rotate(45deg); transform:rotate(45deg); right:11px;}
.area-dy-texture .dy-view-list.on button:before,
.area-dy-select.type-1 .dy-view-list.on button:before,
.area-dy-layer .area-dy-select .dy-view-list.on button:before {-webkit-transform:rotate(45deg); transform:rotate(45deg); right:16px;}
.area-dy-texture .dy-view-list.on button:after,
.area-dy-select.type-1 .dy-view-list.on button:after,
.area-dy-layer .area-dy-select .dy-view-list.on button:after {-webkit-transform:rotate(-45deg); transform:rotate(-45deg); right:11px;}

/* pop */
.area-dy-layer {display:none; position:absolute; top:0; left:0; z-index:1000; width:100%; height:100%; min-height:620px;}
.area-dy-layer:before {display:block; position:fixed; top:0; left:0; width:100%; height:100%; background-color:rgba(0,0,0,.5); content:'';}
/*.area-dy-layer:before {display:fixed; top:0; left:0; z-index:99; width:100%; height:100%; background-color:rgba(0,0,0,.5); content'';}*/
.area-dy-pop {-webkit-box-sizing:border-box; box-sizing:border-box; position:absolute; top:0; left:0; right:0; bottom:0; z-index:100; width:100%; max-width:1100px; height:100%; /*max-height:900px;*/ margin:auto; padding:0; background-color:#fff; text-align:center;} /* 20170303 jo */
.area-dy-pop-product {height:100%;}
.area-dy-pop .area-dy-slide {overflow:hidden; position:relative; height:100%; text-align:center;}
.area-dy-pop .list-dy-product {height:100%;}
.area-dy-pop .list-dy-product:before {display:none;}
.area-dy-pop .list-dy-product > *,
.area-dy-pop .list-dy-product > * > * {height:100%;}
.area-dy-pop .list-dy-product > * img {position:absolute; top:0; left:0; right:0; bottom:0; width:auto; height:100%; margin:auto; vertical-align:middle;} /* 20170303 jo */
.area-dy-pop .box-thumb-dy {position:absolute; top:50%; right:40px; width:62px; margin-top:-153px; text-align:center;}
.area-dy-pop .box-thumb-dy > button.dy-btn-arrow {display:none;}
.area-dy-pop .list-dy-select {width:auto; max-height:none;}
.area-dy-pop .list-dy-select li {margin:0; padding:15px; border-radius:100%;}
.area-dy-pop .list-dy-select li.off {display:none;}
.area-dy-pop .list-dy-select li button,
.area-dy-pop .list-dy-select li a {width:28px; height:28px; border-radius:100%;}
.area-dy-pop .dy-view-list {display:none;}
.area-dy-pop .area-dy-select {position:absolute; bottom:0; left:0; width:100%; margin-top:0; margin-bottom:0; padding-bottom:50px; padding-top:50px; border-bottom:none;}
.area-dy-pop .product-colorchip-info {position:absolute; top:0; left:0; width:100%; font-size:14px; color:#111; text-align:center;}
.area-dy-pop .thumb-dy-product > * {margin:0;}
.btn-dy-zoom {position:absolute; bottom:0px; left:20px; z-index:1; font-size:0; vertical-align:top;}
.btn-dy-zoom > *,
.area-dy-360 .btn-default button {display:inline-block; overflow:hidden; position:relative; width:40px; height:0; padding-top:38px; border:1px solid rgba(0,0,0,.2); background-color:transparent; text-indent:-9999px;}
.btn-dy-zoom .dy-zoom-out,
.btn-dy-zoom .dy-reset {border-left:none;}
.btn-dy-zoom .dy-reset,
.area-dy-360 .btn-default button {height:40px; padding:0; font-size:12px; color:#111; text-align:center; text-indent:0; vertical-align:top;}
.btn-dy-zoom .dy-zoom-in:before,
.btn-dy-zoom .dy-zoom-in:after,
.btn-dy-zoom .dy-zoom-out:before {display:block; position:absolute; top:50%; left:50%; width:15px; height:1px; margin-left:-8px; background-color:#111; content:'';}
.btn-dy-zoom .dy-zoom-in:after {width:1px; height:15px; margin-top:-7px; margin-left:-1px;}
.btn-dy-close {position:absolute; top:30px; right:20px; z-index:10; width:40px; height:40px;}/* 20170303 */
.btn-dy-close button {overflow:hidden; width:40px; height:40px; margin:0; padding:0; border:none; background-color:transparent; text-indent:-9999px;}
/*.area-dy-pop .btn-dy-zoom {bottom:40px; left:0; width:100%; height:40px; text-align:center;}20170228*/
.area-dy-pop .btn-dy-zoom {top:49px; left:30px; width:100%; height:40px; text-align:left;}
.area-dy-pop .btn-dy-zoom > *,
.area-dy-360 .btn-default button {width:30px;height:30px;/* 20170302 As is width:40px;height:40px; */margin:0 5px; padding-top:0; border:none; border-radius:30px; background-color:#999; color:#fff; text-indent:-9999px;}
.btn-dy-close button:before {-webkit-transition:all 0.3s ease-out; transition:all 0.3s ease-out;}
.btn-dy-close button:before,
.area-dy-360 .btn-default button:before,
.area-dy-pop .btn-dy-zoom > *:before {display:block; position:absolute; content:'';}
.area-dy-pop .btn-dy-close button:before {top:10px; left:10px; width:15px; height:15px;background-position: -60px 0;background-size: 325px 180px;}/* 20170303 */
.area-dy-pop .btn-dy-zoom > *:before,
.area-dy-360 .btn-default button:before {top:50%; left:50%; width:15px; height:15px; margin:-8px 0 0 -8px; background-color:transparent; background-size: 240px 125px;}/* 20170303 */
.area-dy-pop .btn-dy-zoom > .dy-zoom-in:before {background-position:-119px 0;}/* 20170303 */
.area-dy-pop .btn-dy-zoom > .dy-zoom-out:before {background-position:-139px 0;}/* 20170303 -30 */
.area-dy-pop .btn-dy-zoom > .dy-reset:before,
.area-dy-360 .btn-default button:before {background-position:-160px 0;}/* 20170303 */
.area-dy-pop .btn-dy-zoom > *:after,
.area-dy-layer .btn-dy-zoom-pop {display:none;}

/* 좌우 화사표 모션*/
@-webkit-keyframes iconMove1 {
	form {transform:translate3d(0,0,0); opacity:.0;}
	to {transform:translate3d(-5px,0,0); opacity:.5;}
}
@keyframes iconMove1 {
	form {transform:translate3d(0,0,0); opacity:.0;}
	to {transform:translate3d(-5px,0,0); opacity:.5;}
}
@-webkit-keyframes iconMove2 {
	form {transform:translate3d(0,0,0); opacity:.0;}
	to {transform:translate3d(5px,0,0); opacity:.5;}
}
@keyframes iconMove2 {
	form {transform:translate3d(0,0,0); opacity:.0;}
	to {transform:translate3d(5px,0,0); opacity:.5;}
}

.zoomContainer {z-index:100;}
@media only all and (max-width: 560px) {
	.area-dy-layer {min-height:380px;}
	.area-dy-select.type-1 .dy-view-list,
	.area-dy-layer .area-dy-select .dy-view-list,
	.list-dy-select.type-1,
	.area-dy-layer .list-dy-select {width:100%; text-align:center;}
	.list-dy-select.type-1,
	.area-dy-layer .list-dy-select {display:-webkit-box; display:box; overflow-y:hidden; overflow-x:scroll; -webkit-overflow-scrolling:touch; max-height:none;}
	.area-dy-product .list-dy-select.type-1 li,
	.area-dy-layer .area-dy-product .list-dy-select li {display:-webkit-box; display:box; -webkit-box-orient:vertical; box-orient:vertical; -webkit-box-pack:center; box-pack:center; display:-ms-flexbox; -ms-flex-align:center; -ms-flex-pack:center; -ms-box-orient:horizontal;}
	.list-dy-select.type-1.on,
	.area-dy-layer .list-dy-select.on {display:block; overflow:hidden; text-align:left;}
	.list-dy-select.type-1.on li,
	.area-dy-layer .list-dy-select.on li {display:inline-block;}
		/*.area-dy-pop .list-dy-product > * {height:auto;}*/ /* 20170303 jo */
	.area-dy-pop .list-dy-product > * img {width:100%; height:auto;}
	.area-dy-pop .area-dy-slide {overflow:hidden; height:100%;} /* 20170303 jo */
	.area-dy-pop {top:0; left:0; max-width:none; width:100%; margin-left:0;}
	.btn-dy-zoom {bottom:auto; top:10px;}
	.area-dy-pop .box-thumb-dy {position:relative; top:auto; right:auto; width:100%; margin-top:20px; text-align:center;}
	/* 20170303 jo
	.btn-dy-zoom .dy-zoom-in,
	.btn-dy-zoom .dy-zoom-out {display:none;} */
	.list-dy-arrow,
	.list-dy-product:before {display:none;}
	.list-dy-select.type-1,
	.area-dy-layer .list-dy-select {-webkit-box-sizing:border-box; box-sizing:border-box; padding:0 10px;}
	.area-dy-pop-product .box-360 img {width:100%;}
}

/* // 기본 */
.product-simplewrap {max-width:900px; margin:0 auto;}

/* dynamic_ssulwhasoo */
.box-thumb-dy > button.dy-btn-arrow {display:none;}
.area-dy-product {overflow:inherit;}
.area-dy-product:not(.area-dy-layer) .thumb-dy-product > * {width:10px; height:10px; margin:0 5px; border-radius:10px;}
.area-dy-product:not(.area-dy-layer) .thumb-dy-product > * {-webkit-transition:all 0.2s linear; transition:all 0.2s linear;}
.area-dy-product:not(.area-dy-layer) .thumb-dy-product > *.on {width:24px;}
.area-dy-product:not(.area-dy-layer) .thumb-dy-product > * button,
.area-dy-product:not(.area-dy-layer) .thumb-dy-product > * a {position:relative; border:none; width:100%; height:100%; background:none; background-color:#999;}
.area-dy-product:not(.area-dy-layer) .thumb-dy-product > * button:after,
.area-dy-product:not(.area-dy-layer) .thumb-dy-product > * a:after {display:block; position:absolute; top:0; left:0; width:100%; height:100%; background-color:#999; content:'';}
.box-dy-product {width:100%;}
.btn-dy-zoom-pop {display:none; left:auto; right:0;}
.renewal .l-pdt-inner .color-box .list-dy-select.type-1 {margin:0 auto; font-size:0;}
.renewal .l-pdt-inner .color-box .list-dy-select.type-1 li {display:inline-block; float:none; padding:15px; -webkit-border-radius:62px; border-radius:62px;}
.renewal .l-pdt-inner .color-box .list-dy-select.type-1 li.on {border:2px solid #000;}
.product-colorchip-info {margin-top:25px; font-size:14px; color:#111; text-align:center;}
.area-dy-select.type-1 {margin-bottom:50px; padding-bottom:30px; border-bottom:1px solid #c8c8c8;}
.renewal .l-pdt-inner .color-name {bottom:42px; min-width:92px; width:auto; white-space:nowrap;}
.list-dy-arrow {display:none;}
.list-dy-arrow li {position:absolute; top:50%; width:40px; height:26px; margin-top:-13px;}
.list-dy-arrow li button {overflow:hidden; width:40px; height:0; margin:0; padding:26px 0 0 0; background:url(../image/sp_arrow.png) no-repeat; text-indent:-9999px;}
.list-dy-arrow.type-1 li.li_prev,
.list-dy-arrow.type-1 li.li_next {display:none;}
.list-dy-arrow li.li_prev {left:0;}
.list-dy-arrow li.li_next {right:0;}
.list-dy-arrow li.li_prev button {background-position:0 0;}
.list-dy-arrow li.li_next button {background-position:-40px 0;}
.list-dy-select.type-1,
.area-dy-layer .list-dy-select {max-height:62px;}
/*.area-dy-slide {margin-bottom:25px;}*/
.renewal .l-pdt-inner .list-dy-select li.on .color-chip {border: 1px solid #555;}
.area-dy-select {position:relative; z-index:10000;}

.renewal .area-dy-slide {position: relative; display: inline-block; width: 100%; text-align: center;}
.renewal .list-dy-product {position: relative; overflow: hidden; width: 580px; height: 580px; margin: 0 auto 30px; z-index: 20;}
.renewal .area-dy-slide .pdt-shadow-img {position: absolute; left: 0; bottom: 7px; width: 100%; height: 159px; z-index: 1;}
.renewal .area-dy-slide .pdt-shadow-img img {width: auto; height: 100%;}

@media only all and (max-width: 560px) {
	.btn-dy-zoom-pop {display:block; right:auto; left:-12px; top:auto; bottom:-38px;}
	/*.renewal .pdt-show .color-box {display:block;}*/
	.pdt-tit-box + .area-dy-select,
	.list-dy-product.zoom:before {display:none;}
	.renewal .l-pdt-inner .color-chip:hover + .color-name {display:none;}
	.renewal .l-pdt-inner .color-box ul {display:-webkit-box; display:box;}
	.renewal .l-pdt-inner .color-box .list-dy-select.type-1 {width:100%; height:auto;}
	.renewal .l-pdt-inner .color-box .list-dy-select.type-1 li {display:-webkit-box; display:box; height:auto; padding:10px;}
	/*.pdt-shadow-img {display:none;}*/
	.btn-dy-360-pop button:before,
	.btn-dy-zoom-pop button:before {width:30px; height:30px; margin:-15px 0 0 -15px; border-radius:30px; background-color:#999;}
	.btn-dy-zoom-pop button:after {width:8px; height:8px; margin:-4px 0 0 -4px; background-size:240px 125px;;}
	.renewal .area-dy-slide {position: relative; display: inline-block; width: 100%; margin-top: -13px; text-align: center;}
	.renewal .area-dy-slide .list-dy-product {width: 290px; height: 290px; margin-bottom: 0;}
	.renewal .area-dy-slide .img-box {float: left;}
	.renewal .area-dy-slide .pdt-shadow-img {overflow: hidden; bottom: -86px;}
	.renewal .area-dy-slide .pdt-shadow-img img {position: absolute; top: 0; left: 50%; max-width: inherit; width: auto; height: 100%; margin-left: -659px;}
}

	/* 20170303 jo add */
	.renewal .area-dy-slide .pdt-shadow-img img {position: absolute; top: 0; left: 50%; max-width: inherit; width: auto; height: 100%; margin-left: -659px;}
	.area-dy-pop .list-dy-product {position:absolute; top:0; left:0; width:100%; margin-top:0;}
	.area-dy-pop .btn-dy-zoom {top: 49px; left: 30px; width: 100%; height: 40px; text-align: left;}
	.area-dy-pop .btn-dy-zoom>*,
	.area-dy-360 .btn-default button {display:inline-block; width:30px; height: 30px; margin: 0 5px; padding-top: 0; border: 0; border-radius: 30px; background-color: #999; color: #fff; text-indent: -9999px;}
	.btn-dy-close {position: absolute; top: 30px; right: 20px; z-index: 10; width: 40px; height: 40px;}

/* 기존 product.css seo 추가 */
.detail-concept {margin-top:3.5em;font-size:1.8em;}
.detail-concept h2 {margin-bottom:1em;color: #191919;font-size: 1.12em;font-weight: normal;font-family: 'Buri', serif;line-height: 1.3;text-align: center;}
.detail-concept h2 > span {white-space: nowrap;}
.detail-concept-visual {margin-bottom: 2.2em;}
.detail-content {position: relative;padding: 0 8.5%;font-size: 18px;}
.detail-content h2,
.detail-content h3 {margin-bottom: .4em;color: #555555;font-size: 1em;color: #333;}
.detail-content p {margin-top: 0;margin-bottom: 1.8em;color: #555555;}
.detail-content ul {margin-top: 0;margin-bottom: 1.8em;color: #999999;}
.detail-content ul li {position: relative;padding-left: 13px;}
.detail-content ul li:before {content: '-';position: absolute;left: 0px;margin-top: -3px;}
.detail-content p + ul {margin-top: -1.4em;}
.detail-section {margin-top: 3.5em;font-size: 1.8em;}
.detail-section-header {margin-bottom: 40px;border-bottom: 1px solid #eeeeee;font-family: 'Buri', serif;text-align: center;}
.detail-section-header .h {padding-bottom: .5em;color: #191919;font-weight: normal;font-size: .75em;}
.renewal .pdt-together.sec-box {margin-top: 60px;}

@media only all and (min-width:768px) {
	.renewal .pdt-together .sec-tit {margin-left:90px;margin-right:90px;padding-bottom:.5em;border-top:none;border-bottom:1px solid #eee;font-size:1.4em;}
}
@media only all and (max-width: 599px){
	.detail-concept { margin-top: 10%;}
	.detail-content {padding-left: 0;padding-right: 0;font-size: 14px;}
	.detail-concept h2 {padding-right: 10%;font-size: .9em;text-align: left;}
	.detail-section-header {margin-bottom: 5%;}
	.detail-section {margin-top: 10%;}
}
@media only all and (max-width: 767px){
	.renewal .pdt-together.sec-box {margin-top: 30px;}
}

/* 20170317 모바일뷰 +,- 삭제 */
.area-dy-pop .btn-dy-zoom > .dy-zoom-in,
.area-dy-pop .btn-dy-zoom > .dy-zoom-out {display:none;}

/* 20170322 리스트 더보기 삭제 */
.dy-view-list {display:none;}
.titArea {
  padding: 41px 0 45px 0;
  text-align: center;
  font-family: 'BuriSB';
}

.titArea .tit {
  margin: 0;
  color: #000;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 400;
}

.titArea .desc {
  margin: 14px 0 0 0;
  color: #000;
  font-size: 24px;
  line-height: 1.1;
}

.mo-ver,
.mo320-ver,
.mo-link {
  display: none;
}
/* 메인 KV */

.kv-best-seller {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.kv-best-seller .slick-wrap {
  position: relative;
  height: 600px;
  margin: 0 auto;
}

.kv-best-seller .slick-wrap .items {
  height: 600px;
  background-size: cover;
  background-position: 50% 0;
  background-repeat: no-repeat;
}

.kv-best-seller .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 27px;
  height: 50px;
  background-position: 0 0;
  background-repeat: 0 0;
  overflow: hidden;
  text-indent: -9999px;
  font-size: 0;
  line-height: 0;
  z-index: 1;
}

.kv-best-seller .slick-prev {
  left: 17px;
  background-image: url(../image/btn-kv-white-l.png);
}

.kv-best-seller .slick-next {
  right: 17px;
  background-image: url(../image/btn-kv-white-r.png);
}

.kv-best-seller .slick-dots {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  margin: 0 auto;
  text-align: center;
}

.kv-best-seller .slick-dots li {
  display: inline-block;
  padding: 0 5px;
  font-size: 0;
  line-height: 0;
}

.kv-best-seller .slick-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 5px;
  text-indent: -9999px;
  -webkit-transition: width .3s;
  -moz-transition: width .3s;
  -o-transition: width .3s;
  transition: width .3s;
}

.kv-best-seller .slick-dots .slick-active button {
  width: 25px;
}

.kv-best-seller .btn-control {
  position: absolute;
  bottom: 16px;
  left: 50%;
  width: 18px;
  height: 18px;
  padding: 0;
  background-repeat: no-repeat;
  background-position: 0 0;
  overflow: hidden;
  text-indent: -9999px;
  z-index: 1;
}

.kv-best-seller .btn-control.dot1 {
  margin-left: 23px;
}

.kv-best-seller .btn-control.dot2 {
  margin-left: 33px;
}

.kv-best-seller .btn-control.dot3 {
  margin-left: 43px;
}

.kv-best-seller .btn-control.dot4 {
  margin-left: 53px;
}

.kv-best-seller .btn-control.dot5 {
  margin-left: 63px;
}

.kv-best-seller .btn-control.dot6 {
  margin-left: 73px;
}

.kv-best-seller .btn-control.dot7 {
  margin-left: 83px;
}

.kv-best-seller .btn-control.dot8 {
  margin-left: 93px;
}

.kv-best-seller .btn-control.dot9 {
  margin-left: 103px;
}

.kv-best-seller .btn-control.dot10 {
  margin-left: 113px;
}

.kv-best-seller .btn-control.play {
  background-image: url(../image/btn-play-pc.png);
}

.kv-best-seller .btn-control.stop {
  background-image: url(../image/btn-stop-pc.png);
}

.grp-line-box {
  border: 1px solid #ccc;
  border-top: 0 none;
}

.best-seller-list {
  margin: 0;
  border: 0 none;
}

.best-seller-list:before {
  background: 0 none;
}

.best-seller-list .best-seller-item {
  border: 1px solid #ccc !important;
  box-sizing: border-box;
  height: 458px;
  margin-top: 16px;
}

.best-seller-list .best-seller-item:nth-child(even) {
  border-left: none !important;
}

.best-seller-list .best-seller-inner {
  height: 100%;
}

.best-seller-list .best-seller-item:nth-child(2n+1) .best-seller-inner {
}

.best-seller-list .best-seller-inner .link {
  padding: 37px 50px 0;
  height: 100%;
  box-sizing: border-box;
}

.best-seller-item {
  border: 0 none !important;
}

.best-seller-item .title-area:after {
  content: "";
  display: block;
  clear: both;
}

.best-seller-item .title-area .num {
  position: relative;
  top: -9px;
  left: 3px;
  float: left;
  margin: 0 22px 0 -6px;
  color: #191919;
  font-size: 68px;
  font-family: Buri, serif;
  font-weight: 400;
  line-height: 1.1;
}

.best-seller-item .title-area .main-title {
  margin: 0;
  color: #191919;
  font-family: 'Buri';
  font-size: 25px;
  font-weight: 400;
}

.best-seller-item .title-area .main-title .sub-title {
  display: block;
  height: 44px;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #999;
}

.best-seller-item .desc-text {
  margin-top: 28px;
  padding-right: 205px;
  font-size: 18px;
  color: #666;
}

.best-seller-item .desc-list {
  margin-top: 12px;
  padding-right: 213px;
  height: auto;
}

.best-seller-item .desc-list li {
  /* padding-right: 200px; */
  font-size: 14px;
  font-weight: 600;
  color: #999;
}

.best-seller-item .desc-list li:before {
  display: none;
}

.best-seller-item .best-seller-inner .img {
  right: 25px;
  bottom: 120px;
  width: 200px;
}

.best-seller-item .best-seller-inner .desc-text {
  height: 10.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}

.best-seller-item .best-seller-inner .box {
  border: 1px solid #555;
  color: #555;
  font-size: 16px;
  font-weight: 500;
  line-height: 37px;
  /* 20200724 롤아웃 : product detail button 수정 */
  bottom: 29px;
  left: 51px;
  letter-spacing: -1px;
  width: 180px;
}

.best-seller-item .best-seller-inner .box-gray {
  color: #fff;
  margin-left: 138px;
}

.best-seller-inner .desc-list li {
  padding-left: 0;
}

.best-seller-first {
  margin: 0 74px;
  padding: 48px 0 50px 0;
}

.best-seller-first:after {
  content: "";
  display: block;
  clear: both;
}

.best-seller-first .best-seller-item {
  width: 100%;
}

.best-seller-first .best-seller-item:after {
  background: 0 none;
}

.best-seller-first .best-seller-item .cover {
  display: none;
}

.best-seller-first .link {
  position: relative;
  padding: 0 0 0 100px;
}

.best-seller-first .best-seller-item .title-area .num {
  position: absolute;
  top: -9px;
  left: -3px;
  margin: 0;
  font-size: 76px;
}

.best-seller-first .best-seller-item .title-area .main-title {
  margin-left: 0;
  font-size: 25px;
  letter-spacing: -2px;
}

.best-seller-first .best-seller-item .title-area .main-title .sub-title {
  height: 50px;
  margin: 4px 0 0 2px;
  color: #999;
  font-size: 20px;
  letter-spacing: -1.5px;
  line-height: 1.3;
}

.best-seller-first .best-seller-item .desc-text {
  height: auto;
  margin-top: 20px;
  padding: 0;
  color: #555;
  font-size: 18px;
  letter-spacing: 0px;
  width: 400px;
  line-height: 1.5;
}

.best-seller-first .best-seller-item .desc-list {
  margin: 14px 0 0 3px;
}

.best-seller-first .best-seller-item .desc-list li {
  padding-left: 0;
  padding-right: 0;
  color: #999;
  font-size: 16px;
  letter-spacing: -1.5px;
  line-height: 1.7;
}

.best-seller-first .best-seller-item .desc-list li:before {
  display: none;
}

.best-seller-first .best-seller-inner .box {
  /* left: 98px; */
  bottom: 0;
  /* width: 196px; */
  height: 48px;
  font-size: 16px;
  /* line-height: 48px; */
  /* 20200724 롤아웃 : product detail button 수정 */
  left: 100px;
  width: 200px;
  line-height: 47px;
  letter-spacing: -0.5px;
  font-weight: 500;
  margin: 0;
}

.best-seller-first .best-seller-inner .box-gray {
  left: 173px;
  bottom: 0;
}

.best-seller-inner .desc-text {
  height: 140px;
}

.best-seller-first .inner-wrap:after {
  content: "";
  display: block;
  clear: both;
}

.best-seller-first .left-box {
  float: left;
  width: 59%;
}

.best-care-info {
  float: left;
  width: 41%;
}

.best-care-info>ul>li {
  min-height: 110px;
  position: relative;
  margin-top: 9px;
  font-family: Buri, serif;
  line-height: 1.1;
}

.best-care-info>ul>li a {
  padding: 0;
}

.best-care-info>ul>li:first-child {
  margin-top: 0;
}

.best-care-info>ul>li img {
  position: absolute;
  top: 0;
  left: 0;
}

.best-care-info>ul>li .txt {
  margin: 0;
  padding: 0 0 0 130px;
  color: #666;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: -1.5px;
}

.best-care-info>ul>li .txt strong {
  font-weight: bold;
  font-family: BuriSB, serif;
}

.best-care-info>ul>li .txt sup {
  vertical-align: top;
  line-height: 22px;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  margin: 0 auto;
}
/* 윤조 제품 롤링배너 */

.best-prd-rolling {
  overflow: hidden;
  /*min-height:276px;*/
  margin: 0 31px;
  padding: 60px 0 80px;
  border-top: 1px solid #cfcfcf;
}

.best-prd-rolling .sub-tit {
  margin: 0 0 40px 0;
  color: #191919;
  font-size: 32px;
  font-family: 'BuriSB';
  line-height: 1.1;
  font-weight: normal;
  text-align: center;
}

.kv-best-prd {
  position: relative;
  width: 100%;
}

.kv-best-prd .slick-wrap {
  position: relative;
  margin: 0 60px;
}

.kv-best-prd .slick-wrap .slick-list {
  overflow: hidden;
  margin-left: 6px;
}

.kv-best-prd .items {
  text-align: center;
}

.kv-best-prd .items a:hover {
  text-decoration: none;
}

.kv-best-prd .items a.link {
  display: block;
}

.kv-best-prd .items img {
  display: inline-block;
  max-width: none;
  width: 100%;
}

.kv-best-prd .items .tit {
  display: block;
  margin-top: 20px;
  color: #767676;
  font-size: 16px;
  font-family: Buri, serif;
}

.kv-best-prd .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  z-index: 1;
  width: 18px;
  height: 34px;
  background-position: 0 0;
  background-repeat: 0 0;
  overflow: hidden;
  text-indent: -9999px;
  font-size: 0;
  line-height: 0;
  z-index: 1;
}

.kv-best-prd .slick-prev {
  left: -60px;
  /* background-image: url(../images/btn-kv-gray-l.png); */
}

.kv-best-prd .slick-next {
  right: -60px;
  /* background-image: url(../images/btn-kv-gray-r.png); */
}

.kv-best-prd .slick-dots {
  display: none;
  position: absolute;
  right: 0;
  bottom: -40px;
  left: 0;
  margin: 0 auto;
  text-align: center;
}

.kv-best-prd .slick-dots li {
  display: inline-block;
  padding: 0 5px;
  font-size: 0;
  line-height: 0;
}

.kv-best-prd .slick-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  overflow: hidden;
  background: #ccc;
  border-radius: 5px;
  text-indent: -9999px;
  -webkit-transition: width .3s;
  -moz-transition: width .3s;
  -o-transition: width .3s;
  transition: width .3s;
}

.kv-best-prd .slick-dots .slick-active button {
  width: 25px;
  background: #555;
}

.kv-best-prd .btn-control {
  position: absolute;
  bottom: -43.5px;
  left: 50%;
  width: 18px;
  height: 18px;
  padding: 0;
  background-repeat: no-repeat;
  background-position: 0 0;
  overflow: hidden;
  text-indent: -9999px;
  z-index: 1;
  background-size: cover;
}

.kv-best-prd .btn-control.dot1 {
  margin-left: 23px;
}

.kv-best-prd .btn-control.dot2 {
  margin-left: 33px;
}

.kv-best-prd .btn-control.dot3 {
  margin-left: 43px;
}

.kv-best-prd .btn-control.dot4 {
  margin-left: 53px;
}

.kv-best-prd .btn-control.dot5 {
  margin-left: 63px;
}

.kv-best-prd .btn-control.dot6 {
  margin-left: 73px;
}

.kv-best-prd .btn-control.dot7 {
  margin-left: 83px;
}

.kv-best-prd .btn-control.dot8 {
  margin-left: 93px;
}

.kv-best-prd .btn-control.dot9 {
  margin-left: 103px;
}

.kv-best-prd .btn-control.dot10 {
  margin-left: 113px;
}

.kv-best-prd .btn-control.play {
  /* background-image: url(../image/btn-play-mo.png); */
}

.kv-best-prd .btn-control.stop {
  /* background-image: url(../image/btn-stop-mo.png); */
}

@media only all and (max-width:1111px) {
  /* 베스트셀러 제품 */
  .best-seller-item .title-area .num {
      margin-right: 18px;
      font-size: 64px;
  }
  .best-seller-item .title-area .main-title {
      font-size: 32px;
  }
  .best-seller-item .title-area .main-title .sub-title {
      margin: 10px auto 0;
  }
  .best-seller-item .desc-text,
  .best-seller-item .desc-list li {
      padding-right: 150px;
  }
  .best-seller-item .desc-text {
      font-size: 16px;
  }
  .best-seller-item .desc-list li {
      font-size: 12px;
  }
  .best-seller-item .desc-list {
      height: 60px;
  }
  .best-seller-item .best-seller-inner .img {
      bottom: 123px;
      width: 200px;
      right: 27px;
  }
  .best-seller-first .best-seller-item .title-area .main-title {
      font-size: 30px;
  }
  .best-seller-first .best-seller-item .title-area .main-title .sub-title {
      font-size: 16px;
  }
  .best-seller-first .best-seller-item .desc-text {
      font-size: 18px;
  }
  .best-seller-first .best-seller-item .desc-list li {
      font-size: 14px;
  }
  .best-seller-first .link {
      padding-left: 110px;
  }
  /* 20200724 롤아웃 : product detail button 수정 */
  .best-seller-item .best-seller-inner .box {
      left: 50%;
      margin-left: -175px;
      width: 350px;
  }
  .best-seller-first .best-seller-inner .box {
      /* width: 160px; */
      /* left: 110px; */
      /* font-size: 16px; */
      line-height: 49px;
      /* 20200724 롤아웃 : product detail button 수정 */
      width: 190px;
      font-size: 14px;
      left: 100px;
      margin: 0;
  }
  .best-seller-first .best-seller-inner .box-gray {
      left: 145px;
  }
  .best-care-info>ul>li .txt {
      font-size: 15px;
      line-height: 24px;
  }
  .best-seller-first .best-seller-item .title-area .num {
      font-size: 64px;
  }
}

@media only all and (max-width:1023px) {
  .titArea {
      border-top: 1px solid #ccc;
  }
}

@media only all and (max-width:900px) {
  /* 베스트셀러 제품 */
  .best-seller-item .title-area .main-title {
      font-size: 30px;
  }
  .best-seller-item .title-area .num {
      font-size: 32px;
      position: static;
      float: none;
      margin-left: 0;
      margin-right: 6px;
      vertical-align: bottom;
      line-height: 0.9;
  }
  .best-seller-item .title-area .main-title {
      font-size: 26px;
  }
  .best-seller-first .best-seller-item .best-seller-inner {
      margin: 0;
      padding: 0 0 100px 0;
  }
  .best-seller-first .link {
      padding-left: 0;
  }
  .best-seller-first .best-seller-item .title-area .num {
      position: static;
      float: none;
      font-size: 34px;
      margin-right: 5px;
      line-height: 1;
      vertical-align: bottom;
  }
  .best-seller-first .best-seller-item .title-area .main-title .sub-title {
      margin-left: 0;
  }
  .best-seller-first .left-box {
      float: none;
      width: 100%;
      text-align: center;
  }
  /* 20200724 롤아웃 : product detail button 수정 */
  .best-seller-item .best-seller-inner .box {
      left: 30px;
      margin-left: 0;
      width: calc(100% - 60px);
  }
  .best-seller-first .best-seller-inner .box {
      left: 0;
      bottom: -100px;
      /* width: 48.5%; */
      /* 20200724 롤아웃 : product detail button 수정 */
      width: calc(100% - 2px);
  }
  .best-seller-first .best-seller-inner .box-gray {
      bottom: 0;
      left: auto;
      right: 0;
      margin-left: 0;
  }
  .best-care-info {
      float: none;
      width: 100%;
      margin-top: 27px;
  }
  .best-care-info>ul {
      margin: 0 -5px;
  }
  .best-care-info>ul:after {
      content: "";
      display: block;
      clear: both;
  }
  .best-care-info>ul>li {
      float: left;
      width: 33.33%;
      margin-top: 0;
      text-align: center;
  }
  .best-care-info>ul>li .boxing {
      margin: 0 5px;
  }
  .best-care-info>ul>li img {
      position: static;
      width: 100%;
  }
  .best-care-info>ul>li .txt {
      margin-top: 20px;
      /*margin-top:10px;*/
      padding: 0;
      font-size: 20px;
      line-height: 28px;
      /*font-size:10px; line-height:14px;*/
      text-align: center;
  }
  .best-seller-item .best-seller-inner .img {
      right: 20px;
  }
  /* 윤조 제품 롤링배너 */
  .kv-best-prd .items .tit {
      font-size: 13px;
  }
}

@media only all and (max-width:767px) {
  .grp-line-box {
      border: 0 none;
  }
  .best-seller-list {
      border-bottom: 1px solid #e2e2e2;
  }
  .best-seller-item {
      float: none;
      width: 100%;
  }
  .best-seller-list .best-seller-item {
      margin-top: 0;
      border-bottom: none !important;
  }
  .best-seller-list .best-seller-item:nth-child(2n+1) .best-seller-inner {
      margin: 0;
  }
  .best-seller-list .best-seller-item:nth-child(even) {
      border-left: 1px solid #ccc !important;
  }
  .best-seller-list .best-seller-inner {
      margin: 0;
      border: 0 none;
      /* border-top: 1px solid #ccc; */
  }
}

@media only all and (max-width:599px) {
  /* common */
  .titArea {
      padding: 25px 0 20px 0;
  }
  .titArea .tit {
      margin: 0;
      font-size: 30px;
      font-family: 'Buri';
  }
  .titArea .desc {
      margin-top: 10px;
      font-size: 13px;
      line-height: 19px;
  }
  .mo-ver,
  .mo320-ver {
      display: block;
  }
  .pc-ver {
      display: none;
  }
  /* 메인 KV */
  .kv-best-seller {
      padding-bottom: 20px;
  }
  .kv-best-seller .slick-wrap {
      height: 220px;
  }
  .kv-best-seller .slick-wrap .items {
      height: 220px;
  }
  .kv-best-seller .slick-arrow {
      top: auto;
      bottom: -25px;
      width: 5px;
      height: 10px;
      background-size: cover;
      background-position: center;
  }
  /* .kv-best-seller .slick-prev {
left: 15px;
background-image: url(../images/main-kv-arr-l.png);
}
.kv-best-seller .slick-next {
right: 15px;
background-image: url(../images/main-kv-arr-r.png);
} */
  .kv-best-seller .slick-dots {
      bottom: -19px;
  }
  .kv-best-seller .slick-dots li {
      padding: 0 4px;
  }
  .kv-best-seller .slick-dots button {
      width: 8px;
      height: 8px;
      background: #e7e7e7;
  }
  .kv-best-seller .btn-control {
      bottom: 1px;
      width: 10px;
      height: 10px;
      background-size: cover;
  }
  .kv-best-seller .btn-control.dot1 {
      margin-left: 5.156vw;
  }
  .kv-best-seller .btn-control.dot2 {
      margin-left: 7.344vw;
  }
  .kv-best-seller .btn-control.dot3 {
      margin-left: 9.531vw;
  }
  .kv-best-seller .btn-control.dot4 {
      margin-left: 11.719vw;
  }
  .kv-best-seller .btn-control.dot5 {
      margin-left: 13.906vw;
  }
  .kv-best-seller .btn-control.dot6 {
      margin-left: 16.094vw;
  }
  .kv-best-seller .btn-control.dot7 {
      margin-left: 18.281vw;
  }
  .kv-best-seller .btn-control.dot8 {
      margin-left: 20.469vw;
  }
  .kv-best-seller .btn-control.dot9 {
      margin-left: 22.656vw;
  }
  .kv-best-seller .btn-control.dot10 {
      margin-left: 24.844vw;
  }
  .kv-best-seller .btn-control.play {
      background-image: url(../image/btn-play-mo.png);
  }
  .kv-best-seller .btn-control.stop {
      background-image: url(../image/btn-stop-mo.png);
  }
  /* 베스트셀러 제품 */
  .grp-line-box {
      margin: 0 15px;
  }
  .best-seller-list {
      margin: 0;
  }
  .best-seller-list .best-seller-inner {
      margin: 0;
      border: 0 none;
      /* border-top: 1px solid #e2e2e2; */
  }
  .best-seller-list .best-seller-inner .link {
      padding: 29px 15px 78px;
      text-align: center;
  }
  .best-seller-item .title-area .num {
      position: static;
      float: none;
      display: block;
      margin: 0 auto;
      font-size: 24px;
      line-height: 1.6;
  }
  .best-seller-item .title-area .main-title {
      color: #000;
      font-size: 23px;
      font-family: BuriSB, serif;
      font-weight: normal;
  }
  .best-seller-item .title-area .main-title .sub-title {
      height: 30px;
      margin: 10px 0 0 0;
      font-size: 11px;
      letter-spacing: 0;
      color: #999;
  }
  .best-seller-item .desc-text {
      margin-top: 8px;
      padding-right: 0;
      /*font-family:BuriMD,serif;*/
      font-size: 13px;
      color: #666;
      height: auto;
  }
  .best-seller-item .best-seller-inner .desc-text {
      height: 4.5em;
      -webkit-line-clamp: 3;
  }
  .best-seller-first .best-seller-item .left-box .desc-text {
      height: 3em;
      -webkit-line-clamp: 2;
  }
  .best-seller-item .desc-list {
      margin-top: 5.5px;
      padding-right: 0;
      height: auto;
  }
  .best-seller-item .desc-list li {
      font-family: 'AritaL';
      padding-right: 0;
      font-size: 11px;
      color: #999;
      font-weight: 400;
  }
  .best-seller-item .best-seller-inner .img {
      position: static;
      display: inline-block;
      width: 200px;
  }
  .best-seller-item .best-seller-inner .box {
      left: 15px;
      font-size: 11px;
      line-height: 34px;
  }
  .best-seller-item .best-seller-inner .box-gray {
      left: auto;
      right: 15px;
  }
  .best-seller-first {
      margin: 34px 0;
      padding: 0;
  }
  .best-seller-first .best-seller-item {
      width: 100%
  }
  .best-seller-first .best-seller-item .best-seller-inner {
      padding: 0 0 67px 0;
  }
  .best-seller-first .link {
      position: static;
      padding: 0;
  }
  .best-seller-first .best-seller-item .title-area .num {
      font-size: 24px;
  }
  .best-seller-first .best-seller-item .title-area .main-title {
      color: #191919;
      font-size: 22px;
  }
  .best-seller-first .best-seller-item .title-area .main-title .sub-title {
      height: 26px;
      margin: 10px 0 0 0;
      font-size: 12px;
      letter-spacing: 0;
  }
  .best-seller-first .best-seller-item .desc-text {
      margin-top: 7px;
      font-size: 14px;
      letter-spacing: -1px;
      line-height: 18px;
      font-family: 'Buri';
  }
  .best-seller-first .best-seller-item .desc-list {
      height: 30px;
      margin: 6px 0 0 0;
      padding-right: 0;
  }
  .best-seller-first .best-seller-item .desc-list li {
      padding-left: 0;
      font-size: 11px;
      letter-spacing: -1px;
      line-height: 1.5;
  }
  /* 20200724 롤아웃 : product detail button 수정 */
  .best-seller-item .best-seller-inner .box {
      border-color: #aaa;
      bottom: 22.5px;
      color: #666;
      font-size: 14px;
      left: 15px;
      letter-spacing: 0;
      line-height: 34px;
      width: calc(100% - 30px);
  }
  .best-seller-first .best-seller-inner .box {
      left: 0;
      bottom: 0;
      height: 33px;
      border: 1px solid #aaa;
      line-height: 32px;
      /* 20200724 롤아웃 : product detail button 수정 */
      width: calc(100% - 2px);
  }
  .best-seller-first .best-seller-inner .box-gray {
      left: auto;
      right: 0;
      border: 1px solid #555;
  }
  .best-care-info {
      margin-top: 23px;
  }
  .best-care-info>ul>li .txt {
      margin-top: 8.5px;
      font-size: 10px;
      line-height: 14px;
  }
  .best-care-info>ul>li .txt sup {
      line-height: 12px;
  }
  /* 윤조제품 롤링배너 */
  .best-prd-rolling {
      margin: 0;
      padding: 10px 0 30px 0;
      border: 0 none;
  }
  .best-prd-rolling .sub-tit {
      margin-bottom: 30px;
      font-size: 17px;
  }
  .kv-best-prd {
      padding-bottom: 44px;
  }
  .kv-best-prd .slick-wrap {
      margin: 0 30px;
  }
  .kv-best-prd .slick-wrap .slick-list {
      margin: 0 -4px;
  }
  .kv-best-prd .items a.link {
      margin: 0 4px;
  }
  .kv-best-prd .items img {
      width: 100%;
  }
  .kv-best-prd .items .tit {
      margin-top: 20px;
      font-size: 9px;
  }
  .kv-best-prd .slick-arrow {
      width: 9px;
      height: 17px;
      margin: -8px 0 0 0;
      background-size: cover;
  }
  .kv-best-prd .slick-prev {
      left: -20px;
  }
  .kv-best-prd .slick-next {
      right: -20px;
  }
  .kv-best-prd .slick-dots {
      bottom: -46px;
  }
  .kv-best-prd .slick-dots li {
      padding: 0 3px;
  }
  .kv-best-prd .slick-dots button {
      width: 6px;
      height: 6px;
  }
  .kv-best-prd .slick-dots .slick-active button {
      width: 6px;
  }
  .kv-best-prd .btn-control {
      bottom: -3px;
      width: 10px;
      height: 10px;
  }
  .kv-best-prd .btn-control.dot2 {
      margin-left: 5.156vw;
  }
  .kv-best-prd .btn-control.dot3 {
      margin-left: 7.344vw;
  }
  .kv-best-prd .btn-control.dot4 {
      margin-left: 9.531vw;
  }
  .kv-best-prd .btn-control.dot5 {
      margin-left: 11.719vw;
  }
  .kv-best-prd .btn-control.dot6 {
      margin-left: 13.906vw;
  }
  .kv-best-prd .btn-control.dot7 {
      margin-left: 16.094vw;
  }
  .kv-best-prd .btn-control.dot8 {
      margin-left: 18.281vw;
  }
  .kv-best-prd .btn-control.dot9 {
      margin-left: 20.469vw;
  }
  .kv-best-prd .btn-control.dot10 {
      margin-left: 22.656vw;
  }
}

@media only all and (max-width:320px) {
  /* 베스트셀러 제품 */
  .mo320-ver {
      display: none;
  }
}

.kv-best-seller .btn-control.dot4 {
  margin-left: 30px;
}