/* Parts Settings
====================================================================================== */
/* Common Hover Effect
------------------------------------------ */
a:hover .ntp-pt_imgHover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  opacity: .7;
}

/* Common Button
------------------------------------------ */
.ntp-pt_btn--gray, .ntp-pt_btn--orange, .ntp-pt_btn--blue, .ntp-pt_btn--green, .ntp-pt_btn--dis, .ntp-pt_btn--cur {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  height: 30px;
  padding: 0 11px;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 28px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
}

.mid.ntp-pt_btn--gray, .mid.ntp-pt_btn--orange, .mid.ntp-pt_btn--blue, .mid.ntp-pt_btn--green, .mid.ntp-pt_btn--dis, .mid.ntp-pt_btn--cur { 
  height: 40px; 
  line-height: 38px; 
}

.radiusTop.ntp-pt_btn--gray, .radiusTop.ntp-pt_btn--orange, .radiusTop.ntp-pt_btn--blue, .radiusTop.ntp-pt_btn--green, .radiusTop.ntp-pt_btn--dis, .radiusTop.ntp-pt_btn--cur {
  border-radius: 4px 4px 0 0;
}

.radiusBtm.ntp-pt_btn--gray, .radiusBtm.ntp-pt_btn--orange, .radiusBtm.ntp-pt_btn--blue, .radiusBtm.ntp-pt_btn--green, .radiusBtm.ntp-pt_btn--dis, .radiusBtm.ntp-pt_btn--cur {
  border-radius: 0 0 4px 4px;
}

.radiusRight.ntp-pt_btn--gray, .radiusRight.ntp-pt_btn--orange, .radiusRight.ntp-pt_btn--blue, .radiusRight.ntp-pt_btn--green, .radiusRight.ntp-pt_btn--dis, .radiusRight.ntp-pt_btn--cur {
  border-radius: 0 4px 4px 0;
}

.radiusLeft.ntp-pt_btn--gray, .radiusLeft.ntp-pt_btn--orange, .radiusLeft.ntp-pt_btn--blue, .radiusLeft.ntp-pt_btn--green, .radiusLeft.ntp-pt_btn--dis, .radiusLeft.ntp-pt_btn--cur {
  border-radius: 4px 0 0 4px;
}

.ntp-pt_btn--gray {
  border: 1px solid #cecece;
  background: #fff;
  background: -webkit-linear-gradient(#fff, #f2f2f2);
  background: linear-gradient(#fff, #f2f2f2);
  color: #333 !important;
}

.ntp-pt_btn--gray:hover {
  background: #f2f2f2;
  background: -webkit-linear-gradient(#f2f2f2, #fff);
  background: linear-gradient(#f2f2f2, #fff);
}

.ntp-pt_btn--orange {
  border-bottom: 1px solid #e79656;
  background: #fda128;
  background: -webkit-linear-gradient(#fda128, #fd8629);
  background: linear-gradient(#fda128, #fd8629);
  color: #fff !important;
}

.ntp-pt_btn--orange:hover {
  background: #fd8629;
  background: -webkit-linear-gradient(#fd8629, #fda128);
  background: linear-gradient(#fd8629, #fda128);
}

.ntp-pt_btn--blue {
  border-bottom: 1px solid #1579de;
  background: #4aa4fc;
  background: -webkit-linear-gradient(#4aa4fc, #3b94f0);
  background: linear-gradient(#4aa4fc, #3b94f0);
  color: #fff !important;
}

.ntp-pt_btn--blue:hover {
  background: #3b94f0;
  background: -webkit-linear-gradient(#3b94f0, #4aa4fc);
  background: linear-gradient(#3b94f0, #4aa4fc);
}

.ntp-pt_btn--green {
  border-bottom: 1px solid #237c0c;
  background: #49c43c;
  background: -webkit-linear-gradient(#49c43c, #39982c);
  background: linear-gradient(#49c43c, #39982c);
  color: #fff !important;
}

.ntp-pt_btn--green:hover {
  background: #39982c;
  background: -webkit-linear-gradient(#39982c, #49c43c);
  background: linear-gradient(#39982c, #49c43c);
}

.ntp-pt_btn--dis {
  border: 1px solid #cecece;
  background: #f2f2f2;
  color: #797979 !important;
  cursor: default !important;
}

.ntp-pt_btn--cur {
  border: 1px solid #4aa4fc;
  background: #4aa4fc;
  color: #fff !important;
  cursor: default !important;
}

/* Common Select
------------------------------------------ */
.ntp-pt_select {
  position: relative;
  height: 30px;
  border: 1px solid #cecece;
  *border-color: transparent;
  border-radius: 4px;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  background: -webkit-linear-gradient(#fff, #f2f2f2);
  background: linear-gradient(#fff, #f2f2f2);
}

.ntp-pt_select:hover {
  background: #f2f2f2;
  background: -webkit-linear-gradient(#f2f2f2, #fff);
  background: linear-gradient(#f2f2f2, #fff);
}

.ntp-pt_select > span {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 6px;
  margin-top: -3px;
  background: url("/resource/images/shared/2018new_sprite_common.png") -190px -20px no-repeat;
  z-index: 1;
}

body.ie7 .ntp-pt_select > span,
body.ie8 .ntp-pt_select > span,
body.ie9 .ntp-pt_select > span {
  display: none;
}

.ntp-pt_select > select {
  display: block;
  position: relative;
  width: 100%;
  height: 28px;
  padding: 0 24px 0 8px;
  *padding: 0;
  border: none;
  box-sizing: border-box;
  overflow: hidden;
  background: transparent;
  *background: #fff;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  outline: none;
  z-index: 2;
}

body.ie7 .ntp-pt_select > select {
  padding: 0;
}

body.ie8 .ntp-pt_select > select,
body.ie9 .ntp-pt_select > select {
  padding-right: 0;
}

.ntp-pt_select > select::-ms-expand {
  display: none;
}

/* Common txtBox
------------------------------------------ */
.ntp-pt_txtBox input {
  display: block;
  width: 100%;
  height: 30px;
  padding: 0 10px;
  *padding: 0;
  border: 1px solid #cecece;
  border-radius: 4px;
  box-sizing: border-box;
  background: #fff;
  font-size: 13px;
  line-height: 21px;
  outline: none;
  vertical-align: middle;
}

.ntp-pt_txtBox input:focus {
  border: 2px solid #4aa4fc;
  padding-right: 9px;
  padding-left: 9px;
  *padding: 0;
}

.ntp-pt_txtBox input::-ms-clear {
  display: none;
}

/* Common checkBox
------------------------------------------ */
.ntp-pt_checkBox--l, .ntp-pt_checkBox--s {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.ntp-pt_checkBox--l > input, .ntp-pt_checkBox--s > input {
  position: absolute;
  top: 0px;
  left: -30px;
}

.ntp-pt_checkBox--l > input:checked + span, .ntp-pt_checkBox--s > input:checked + span {
  background: #4aa4fc !important;
  border-color: #4aa4fc !important;
}

.ntp-pt_checkBox--l > input:checked + span::before, .ntp-pt_checkBox--s > input:checked + span::before {
  display: block;
}

body.ie7 .ntp-pt_checkBox--l, body.ie7 .ntp-pt_checkBox--s,
body.ie8 .ntp-pt_checkBox--l,
body.ie8 .ntp-pt_checkBox--s {
  padding-left: 22px !important;
}

body.ie7 .ntp-pt_checkBox--l > input, body.ie7 .ntp-pt_checkBox--s > input,
body.ie8 .ntp-pt_checkBox--l > input,
body.ie8 .ntp-pt_checkBox--s > input {
  left: 0;
}

body.ie7 .ntp-pt_checkBox--l > span, body.ie7 .ntp-pt_checkBox--s > span,
body.ie8 .ntp-pt_checkBox--l > span,
body.ie8 .ntp-pt_checkBox--s > span {
  display: none;
}

.ntp-pt_checkBox--l > span, .ntp-pt_checkBox--s > span {
  display: block;
  position: absolute;
  left: 0;
  border: 1px solid #cecece;
  border-radius: 4px;
  background: #fff;
  background: -webkit-linear-gradient(#fff, #f2f2f2);
  background: linear-gradient(#fff, #f2f2f2);
}

.ntp-pt_checkBox--l > span::before, .ntp-pt_checkBox--s > span::before {
  content: '';
  display: none;
  position: absolute;
  top: 50%;
  right: 50%;
  background: url("/resource/images/shared/2018new_sprite_common.png") no-repeat;
}

.ntp-pt_checkBox--l:hover > span, .ntp-pt_checkBox--s:hover > span {
  background: #f2f2f2;
  background: -webkit-linear-gradient(#f2f2f2, #fff);
  background: linear-gradient(#f2f2f2, #fff);
}

.ntp-pt_checkBox--l {
  padding: 3px 0 3px 33px;
  line-height: 20px;
}

body.ie7 .ntp-pt_checkBox--l > input,
body.ie8 .ntp-pt_checkBox--l > input {
  top: 1px;
}

.ntp-pt_checkBox--l > span {
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

.ntp-pt_checkBox--l > span::before {
  width: 13px;
  height: 10px;
  margin: -5px -7px 0 0;
  background-position: -150px -105px;
}

.ntp-pt_checkBox--s {
  padding: 0 0 0 22px;
  line-height: 18px;
}

.ntp-pt_checkBox--s > span {
  top: 1px;
  width: 14px;
  height: 14px;
  border-radius: 2px;
}

.ntp-pt_checkBox--s > span::before {
  width: 10px;
  height: 8px;
  margin: -4px -5px 0 0;
  background-position: -170px -105px;
}

/* Common radio
------------------------------------------ */
.ntp-pt_radio--l, .ntp-pt_radio--s {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.ntp-pt_radio--l > input, .ntp-pt_radio--s > input {
  position: absolute;
  top: 0px;
  left: -30px;
}

.ntp-pt_radio--l > input:checked + span, .ntp-pt_radio--s > input:checked + span {
  background: #fff !important;
  border-color: #4aa4fc !important;
}

.ntp-pt_radio--l > span, .ntp-pt_radio--s > span {
  display: block;
  position: absolute;
  left: 0;
  border: 1px solid #cecece;
  border-radius: 50%;
  box-sizing: border-box;
  background: #fff;
  background: -webkit-linear-gradient(#fff, #f2f2f2);
  background: linear-gradient(#fff, #f2f2f2);
}

.ntp-pt_radio--l:hover > span, .ntp-pt_radio--s:hover > span {
  background: #f2f2f2;
  background: -webkit-linear-gradient(#f2f2f2, #fff);
  background: linear-gradient(#f2f2f2, #fff);
}

body.ie7 .ntp-pt_radio--l, body.ie7 .ntp-pt_radio--s,
body.ie8 .ntp-pt_radio--l,
body.ie8 .ntp-pt_radio--s {
  padding-left: 22px !important;
}

body.ie7 .ntp-pt_radio--l > input, body.ie7 .ntp-pt_radio--s > input,
body.ie8 .ntp-pt_radio--l > input,
body.ie8 .ntp-pt_radio--s > input {
  left: 0;
}

body.ie7 .ntp-pt_radio--l > span, body.ie7 .ntp-pt_radio--s > span,
body.ie8 .ntp-pt_radio--l > span,
body.ie8 .ntp-pt_radio--s > span {
  display: none;
}

.ntp-pt_radio--l {
  padding: 1px 0 1px 26px;
  line-height: 19px;
}

.ntp-pt_radio--l > input:checked + span {
  border-width: 7px;
}

.ntp-pt_radio--l > span {
  top: 0;
  width: 21px;
  height: 21px;
}

.ntp-pt_radio--s {
  padding: 0 0 0 22px;
  line-height: 18px;
}

.ntp-pt_radio--s > input:checked + span {
  border-width: 5px;
}

.ntp-pt_radio--s > span {
  top: 1px;
  width: 16px;
  height: 16px;
}

/* Common balloonIcon
------------------------------------------ */
.ntp-pt_balloonIcon {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 17px;
  height: 17px;
  margin-left: 7px;
  background: url("/resource/images/shared/2018new_sprite_common.png") -235px -20px no-repeat;
  vertical-align: -3px;
}

/* Block Settings
====================================================================================== */
/* Content
------------------------------------------ */
.ntp-bl_content {
  margin: 0 20px;
}

.ntp-bl_content--fix {
  min-width: 1000px;
}

.ntp-bl_content--fix .ntp-bl_content__in {
  width: 960px;
}

.ntp-bl_content__in {
  margin: 0 auto;
}

/* Breadcrumbs
------------------------------------------ */
.ntp-bl_breadcrumbs {
  font-size: 12px;
  margin: 15px auto 30px;
}

.ntp-bl_breadcrumbs ol li {
  display: inline;
  margin-left: 8px;
  padding-left: 16px;
  background: url("/resource/images/detail/2014new_arrow-topicpath-bg-02.gif") no-repeat 0 center;
  font-weight: bold;
}

.ntp-bl_breadcrumbs ol li:first-child {
  margin-left: 0;
  padding-left: 0;
  background: none;
}

.ntp-bl_breadcrumbs ol li a:link,
.ntp-bl_breadcrumbs ol li a:visited {
  font-weight: normal;
  text-decoration: none;
}

.ntp-bl_breadcrumbs ol li a:hover,
.ntp-bl_breadcrumbs ol li a:active {
  font-weight: normal;
  text-decoration: underline;
}

/* flow
------------------------------------------ */
.ntp-bl_flow {
  overflow: hidden;
}

.ntp-bl_flow__list {
  float: right;
  margin-bottom: 30px;
  padding-top: 5px;
  overflow: hidden;
}

.ntp-bl_flow__list__item, .ntp-bl_flow__list__item--cr, .ntp-bl_flow__list__item--last, .ntp-bl_flow__list__item--last--cr {
  position: relative;
  padding-right: 78px;
  float: left;
  font-size: 14px;
  font-weight: bold;
  color: #bfbfbf;
}

.ntp-bl_flow__list__item > span, .ntp-bl_flow__list__item--cr > span, .ntp-bl_flow__list__item--last > span, .ntp-bl_flow__list__item--last--cr > span {
  display: block;
  position: absolute;
  top: 50%;
  right: 32px;
  width: 20px;
  height: 17px;
  margin-top: -9px;
  background: url(/resource/images/review/1710_ico_flow02.png) no-repeat;
}

.ntp-bl_flow__list__item--cr {
  color: #2f8eef;
}

.ntp-bl_flow__list__item--cr > span {
  background-image: url(/resource/images/review/1710_ico_flow01.png);
}

.ntp-bl_flow__list__item--last {
  padding-right: 0;
}

.ntp-bl_flow__list__item--last > span {
  display: none;
}

.ntp-bl_flow__list__item--last--cr {
  padding-right: 0;
  color: #2f8eef;
}

.ntp-bl_flow__list__item--last--cr > span {
  display: none;
}

.ntp-bl_flow__ttlBox {
  float: left;
}

/* Page Title & Lead
------------------------------------------ */
.ntp-bl_pgTtl {
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: normal;
  color: #172397;
}

.ntp-bl_pgTtl--longTtl {
  font-size: 20px;
}

.ntp-bl_pgLead {
  font-size: 13px;
  line-height: 1.69231;
}

.ntp-bl_pgLead--notes {
  margin-top: 5px;
  font-size: 11px;
  color: #d80000;
}

/* Error Block
------------------------------------------ */
.ntp-bl_errBlock {
  background: #fadfe1;
  clear: both;
  padding: 12px;
  border-radius: 4px;
  font-size: 13px;
}

.ntp-bl_errBlock p {
  padding-left: 28px;
  line-height: 22px;
}

.ntp-bl_errBlock ul {
  padding-left: 28px;
}

.ntp-bl_errBlock ul li {
  position: relative;
  padding-left: 15px;
  line-height: 22px;
}

.ntp-bl_errBlock ul li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #333;
}

.ntp-bl_errBlock__ttl {
  display: block;
  margin-bottom: 2px;
  font-weight: bold;
  color: #d80000;
}

/* Note Block
------------------------------------------ */
.ntp-bl_noteBlock {
  background: #ebf3fc;
  clear: both;
  padding: 12px;
  border-radius: 4px;
  font-size: 13px;
}

.ntp-bl_noteBlock p {
  padding-left: 28px;
  line-height: 22px;
}

.ntp-bl_noteBlock p + p {
  margin-top: 5px;
}

.ntp-bl_noteBlock__ttl {
  display: block;
  font-weight: bold;
}

/* Section Title
------------------------------------------ */
.ntp-bl_secTtl {
  margin-bottom: 20px;
  font-size: 19px;
  font-weight: 400;
}

/* Pager
------------------------------------------ */
.ntp-bl_pager {
  text-align: right;
  white-space: nowrap;
  font-size: 0;
}

.ntp-bl_pager > div {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: top;
}

.ntp-bl_pager > div > a,
.ntp-bl_pager > div > span {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
  width: 33px;
  height: 32px;
  border-radius: 1px;
  font-size: 13px;
  line-height: 32px;
  text-align: center;
  text-decoration: none;
}

.ntp-bl_pager > div > a + a,
.ntp-bl_pager > div > a + span,
.ntp-bl_pager > div > span + a,
.ntp-bl_pager > div > span + span {
  margin-left: 8px;
}

.ntp-bl_pager > div > a {
  border: 1px solid #cecece;
  background: #fff;
  background: -webkit-linear-gradient(#fff, #f2f2f2);
  background: linear-gradient(#fff, #f2f2f2);
  color: #333!important;
}

.ntp-bl_pager > div > a:hover {
  background: #f2f2f2;
  background: -webkit-linear-gradient(#f2f2f2, #fff);
  background: linear-gradient(#f2f2f2, #fff);
}

.ntp-bl_pager > div > span {
  border: 1px solid #cecece;
  background: #fff;
  background: -webkit-linear-gradient(#fff, #f2f2f2);
  background: linear-gradient(#fff, #f2f2f2);
  color: #333;
}

.ntp-bl_pager > div > span.ntp-bl_pager__cur {
  border-color: #4aa4fc;
  border-right: none;
  border-left: none;
  background: #4aa4fc;
  color: #fff;
}

.ntp-bl_pager__in {
  padding: 0 22px;
}

.ntp-bl_pager__prev > a > span, .ntp-bl_pager__next > a > span {
  position: absolute;
  top: 9px;
  width: 9px;
  height: 14px;
  background: url("/resource/images/shared/2018new_sprite_common.png") no-repeat;
}

.ntp-bl_pager__prev > a > span {
  left: 12px;
  background-position: -150px -20px;
}

.ntp-bl_pager__next > a > span {
  right: 12px;
  background-position: -170px -20px;
}

/* Carousel
------------------------------------------ */
.ntp-bl_carousel {
  margin-top: 50px;
}

.ntp-bl_carousel__ttl {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: normal;
  line-height: 24px;
}

.ntp-bl_carousel__wrap {
  position: relative;
  padding: 0 20px;
}

.ntp-bl_carousel__wrap .owl-theme .owl-controls {
  margin: 0;
}

.ntp-bl_carousel__wrap .owl-theme .owl-controls .owl-prev,
.ntp-bl_carousel__wrap .owl-theme .owl-controls .owl-next {
  width: 37px;
  height: 39px;
  top: auto;
  bottom: 50%;
  background: 0 0 no-repeat;
  cursor: pointer;
}

.ntp-bl_carousel__wrap .owl-theme .owl-controls .owl-prev:hover, .ntp-bl_carousel__wrap .owl-theme .owl-controls .owl-prev:active,
.ntp-bl_carousel__wrap .owl-theme .owl-controls .owl-next:hover,
.ntp-bl_carousel__wrap .owl-theme .owl-controls .owl-next:active {
  background-position: 0 -39px;
}

.ntp-bl_carousel__wrap .owl-theme .owl-controls .owl-prev.disabled,
.ntp-bl_carousel__wrap .owl-theme .owl-controls .owl-next.disabled {
  background-position: 0 -78px;
  cursor: default;
}

.ntp-bl_carousel__wrap .owl-theme .owl-controls .owl-prev {
  left: -20px !important;
  background-image: url("/resource/images/detail/2015new_btn_arrow_01.png") !important;
}

.ntp-bl_carousel__wrap .owl-theme .owl-controls .owl-next {
  right: -20px !important;
  background-image: url("/resource/images/detail/2015new_btn_arrow_02.png") !important;
}

.ntp-bl_carouselItem {
  width: 165px;
  margin: 0 auto;
}

.ntp-bl_carouselItem__head {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
}

.ntp-bl_carouselItem__head img {
  display: block;
  width: 120px;
  height: auto;
  margin: 0 auto 35px;
}

.ntp-bl_carouselItem__star {
  font-size: 13px;
}

.ntp-bl_carouselItem__price {
  margin-top: 15px;
  font-size: 19px;
  font-weight: bold;
  line-height: 20px;
  text-align: right;
  color: #d80000;
}

.ntp-bl_carouselItem__price span {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  font-weight: normal;
  color: #333;
}

.ntp-bl_carouselItem__foot {
  margin-top: 18px;
  text-align: right;
}

/* Loading
------------------------------------------ */
.ntp-bl_loading, .ntp-bl_loading--fix, .ntp-bl_loading--abs {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.ntp-bl_loading--fix {
  position: fixed;
}

.ntp-bl_loading--abs {
  position: absolute;
}

.ntp-bl_loading__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: .7;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=70)';
}

.ntp-bl_loading__overlay img {
  display: block;
  position: absolute;
  top: 50%;
  right: 50%;
  margin: -27px -27px 0 0;
}

/* Modal
------------------------------------------ */
.ntp-bl_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 960px;
  z-index: 10000;
}

.ntp-bl_modal__set {
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 40px;
  overflow: hidden;
  background: #fff;
  z-index: 10;
  -webkit-transform: scale(0.94);
      -ms-transform: scale(0.94);
          transform: scale(0.94);
  -webkit-transition: opacity 300ms ease-out, -webkit-transform 300ms ease-out;
  transition: opacity 300ms ease-out, -webkit-transform 300ms ease-out;
  transition: transform 300ms ease-out, opacity 300ms ease-out;
  transition: transform 300ms ease-out, opacity 300ms ease-out, -webkit-transform 300ms ease-out;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  box-shadow: 0 0 40px rgba(0, 6, 0, 0.2);
  opacity: 0;
  z-index: 10;
}

.ntp-bl_modal__set .js-ntpModalBody {
  position: relative;
  z-index: 10;
}

.ntp-bl_modal__set .js-ntpModalBody__in1 {
  position: relative;
  margin-right: -70px;
  overflow-y: scroll;
}

.ntp-bl_modal__set .js-ntpModalBody__in2 {
  max-height: none;
}

.ntp-bl_modal__set .js-ntpModalBody__in3 {
  position: relative;
}

.ntp-bl_modal__set .js-ntpModalBody__scr {
  display: none;
  position: absolute;
  top: 0;
  right: -25px;
  width: 10px;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  background: #ddd;
  z-index: 100;
}

.ntp-bl_modal__set .js-ntpModalBody__scr__bar {
  position: absolute;
  width: 10px;
  height: 0;
  border-radius: 5px;
  background: #4ba4ff;
}

.ntp-bl_modal__set.js-shown {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  z-index: 15;
  opacity: 1;
}

.ntp-bl_modal__set__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 18px;
  height: 18px;
  background: url("/resource/images/shared/2018new_sprite_common.png") -235px -40px no-repeat;
  cursor: pointer;
}

.ntp-bl_modal__set__close:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  opacity: 0.7;
}

.ntp-bl_modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/resource/images/shared/2018new__modalbg.png");
  z-index: 5;
  opacity: 0;
  -webkit-transition: opacity 300ms ease-out;
  transition: opacity 300ms ease-out;
}

.ntp-bl_modal__bg.js-ntpClsModal {
  cursor: pointer;
}

.ntp-bl_modal__bg.js-shown {
  opacity: 1;
}

.ntp-bl_modal__set .usg1802__otherCouponModal {
  width: 700px;
  position: relative;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__head {
  position: relative;
  padding: 0 0 25px 0;
  font-size: 20px;
  line-height: 30px;
  background: no-repeat 0 50%;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__head span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: url(/resource/images/order/1712_icon_sprite01.png) -120px -240px no-repeat;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main {
  width: 700px;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list {
}

.usg1802__otherCouponModal__main__list > li {
  position: relative;
  min-height: 80px;
  padding: 20px;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  display: flex;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list > li:not(:first-child) {
  margin-top: 16px;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__pic {
  top: 20px;
  left: 10px;
  width: 97px;
  height: 97px;
  margin-right: 24px;
  flex-shrink: 0;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__pic img {
  display: block;
  width: 100%;
  height: auto;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info {
  position: relative;
  width: 100%;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__descript__label {
  margin-bottom: 12px;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__descript__label li {
  display: inline-block;
  padding: 3px 8px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  border-radius: 2px;
  margin-right: 8px;
  white-space: nowrap;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__descript__label li.multiCategory {
  background: #E55C7E;
  color: #fff;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__descript__name {
  font-size: 18px;
  margin-bottom: 16px;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__descript__rate {
  font-size: 16px;
  margin-bottom: 16px;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner__box {
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner__box__data {
  display: flex;
  font-size: 14px;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner__box__data + .usg1802__otherCouponModal__info__inner__box__data {
  margin-top: 6px;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner__box__data dt {
  position: relative;
  flex-shrink: 0;
  font-weight: bold;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner__box__data dt:after {
  content: '\ff1a';
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner__couponBtn {
  flex-shrink: 0;
  margin-left: 16px;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner__couponBtn a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  display: block;
  min-width: 142px;
  text-align: center;
  margin: 0 auto;
  padding: 12px 0;
  text-decoration: none;
  color: #fff;
  border-radius: 4px;
  background: #33ABEE;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner__couponBtn a:hover {
  opacity: 0.5;
}

.ntp-bl_modal__set .usg1802__otherCouponModal {
  width: 700px;
  position: relative;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__head {
  position: relative;
  padding: 0 0 25px 0;
  font-size: 20px;
  line-height: 30px;
  background: no-repeat 0 50%;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__head span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: url(/resource/images/order/1712_icon_sprite01.png) -120px -240px no-repeat;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main {
  width: 700px;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list {
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list > li {
  position: relative;
  min-height: 80px;
  padding: 20px;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  display: flex;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list > li:not(:first-child) {
  margin-top: 16px;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__pic {
  top: 20px;
  left: 10px;
  width: 97px;
  height: 97px;
  margin-right: 24px;
  flex-shrink: 0;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__pic img {
  display: block;
  width: 100%;
  height: auto;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info {
  position: relative;
  width: 100%;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__descript__label {
  margin-bottom: 12px;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__descript__label li {
  display: inline-block;
  padding: 3px 8px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  border-radius: 2px;
  margin-right: 8px;
  white-space: nowrap;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__descript__label li.multiCategory {
  background: #E55C7E;
  color: #fff;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__descript__label li.multiCategory span {
  font-size: 10px;
  font-weight: 300;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__descript__name {
  font-size: 18px;
  margin-bottom: 16px;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__descript__rate {
  font-size: 16px;
  margin-bottom: 16px;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner__box {
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner__box__data {
  display: flex;
  font-size: 14px;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner__box__data + .usg1802__otherCouponModal__info__inner__box__data {
  margin-top: 6px;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner__box__data dt {
  position: relative;
  flex-shrink: 0;
  font-weight: bold;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner__box__data dt:after {
  content: '\ff1a';
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner__couponBtn {
  flex-shrink: 0;
  margin-left: 16px;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner__couponBtn a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  display: block;
  min-width: 142px;
  text-align: center;
  margin: 0 auto;
  padding: 12px 0;
  text-decoration: none;
  color: #fff;
  border-radius: 4px;
  background: #33ABEE;
}

.ntp-bl_modal__set .usg1802__otherCouponModal__main__list .usg1802__otherCouponModal__info__inner__couponBtn a:hover {
  opacity: 0.5;
}

/*-----------------------------------
add_medicine_modal
-----------------------------------*/
/*btn*/

.modal_btn .ntp-pt_btn--modal{
  height:40px;
  padding:5px 4px;
  text-align:left;
  font-size: 11px;
  line-height: 15px;
}

/*-----------------------------------
medicine_modal
-----------------------------------*/
.medicineModal_item{
  font-size:13px;
  width:600px;
}
.modal_title{
  font-size:20px;
  padding-bottom:10px;
}
.modal_item{
  padding-bottom:10px;
}
.modal_item p{
 display:inline-block;
 vertical-align:middle;
}
.modal_item_name{
  margin-left:20px;
  width:490px;
}
.medicine-modalCmn__body__close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.medicine-modalCmn__body__close img {
  display: block;
}
.medicine-modalCmn__body__close img:hover {
  -moz-opacity: 0.7;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  opacity: 0.7;
}
.modal_cls-btn {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  height: 28px;
  padding: 0 11px;
  border: 1px solid #cecece;
  border-radius: 4px;
  background: #fff;
  background: -webkit-linear-gradient(#fff, #f2f2f2);
  background: linear-gradient(#fff, #f2f2f2);
  font-size: 12px;
  line-height: 28px;
  text-align: center;
  text-decoration: none !important;
  color: #333 !important;
  cursor: pointer;
}

.modal_cls-btn:hover {
  background: #f2f2f2;
  background: -webkit-linear-gradient(#f2f2f2, #fff);
  background: linear-gradient(#f2f2f2, #fff);
}
.modal_deliModal__btn {
  text-align: center;
}

.modal_deliModal__btn a {
  width: 90px;
  height: 30px;
  padding: 0;
  margin-top:15px;
  line-height: 28px;
}

/*-----------------------------------
modal_table_scroll
-----------------------------------*/
.scroll_container {
  position: relative;
  padding-top: 20px;
  width: 600px;
}
.scroll_content {
  /*overflow: auto;*/
  width: 600px;
  height: 184px;
}
.scrolltable {
  border-collapse: collapse;
  border: 1px solid #cecece;
}
.scrolltable thead th {
  font-size: 13px;
  font-weight: bold;
  background: #f7f7f7;
  border: solid 1px #cecece;
  padding: 10px 5px;
  vertical-align: middle;
}
.scrolltable tbody td {
  height:80px;
  vertical-align: middle;
  text-align: center;
  position: relative;
  border: 1px solid #cecece;
  z-index: -1;
}
.scrolltable .lotnum{
  width:250px;
}
.scrolltable .no{
  width:79px;
}
.scrolltable .day{
  width:250px;
}
.scrolltable th, .scrolltable td {
  padding: 0 3px 0 3px;
}

/* balloon-src
------------------------------------------ */
.ntp-bl_balloon {
  display: none;
  position: absolute;
  z-index: 10000;
  -webkit-transition: opacity 100ms ease, -webkit-transform 100ms ease;
  transition: opacity 100ms ease, -webkit-transform 100ms ease;
  transition: transform 100ms ease, opacity 100ms ease;
  transition: transform 100ms ease, opacity 100ms ease, -webkit-transform 100ms ease;
  -webkit-transform-origin: 0 100%;
      -ms-transform-origin: 0 100%;
          transform-origin: 0 100%;
  -webkit-transform: scale(0.92);
      -ms-transform: scale(0.92);
          transform: scale(0.92);
  opacity: 0;
}

.ntp-bl_balloon.ntp-bl_balloon__hang .ntp-bl_balloon__arrow {
  top: 0;
  bottom: auto;
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.ntp-bl_balloon.ntp-bl_balloon__hang .ntp-bl_balloon__set {
  top: 14px;
  bottom: auto;
}

.ntp-bl_balloon__src { 
  display: none !important; 
}

.ntp-bl_balloon.no-anim {
  -webkit-transition: none;
  transition: none;
}

.ntp-bl_balloon.is-shown {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.ntp-bl_balloon__cover {
  position: absolute;
  left: 0;
  width: 100px;
  height: 20px;
  margin-left: -50px;
  z-index: 2;
}

.ntp-bl_balloon__arrow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 15px;
  margin-left: -10px;
  background: url(/resource/images/shared/icn/2018new_icon_balloon_arrow.png) 50% 0 no-repeat;
  z-index: 3;
}

.ntp-bl_balloon__set {
  display: none;
  position: absolute;
  bottom: 14px;
  left: 0;
  min-width: 100px;
  padding: 15px;
  background: #fff;
  border: 1px solid #cecece;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  font-size: 13px;
  line-height: 20px;
  z-index: 1;
}

.ntp-bl_balloon__set__icon {
  width: 400px;
}

.ntp-bl_balloon__set__icon__ttl {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: bold;
  line-height: 20px;
}

.ntp-bl_balloon__set__icon__txt {
  font-size: 13px;
  line-height: 20px;
}