#container {
  margin: 0 auto;
  padding-top: 90px;
}

/**************************************** header start *************************************************/
#headerContainer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 2;
}

/********************* 置頂訊息 start **************************/
.topInfo {
  position: relative;
  background: #fff7ec;
  color: #fff;
  height: 2.5em;
  margin-top: -2.5em;
  overflow: hidden;
}
.topInfo li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.topInfo li.active {
  opacity: 1;
  z-index: 1;
}
.topInfo li a,
.topInfo li a:hover {
  color: currentColor;
}
.topInfo li a {
  padding: 0 1em;
  white-space: nowrap;
}
.topInfo li a:not(.countdown):hover {
  text-decoration: underline;
}

/*********** 倒數區塊 start ***************/
a.countdown {
  display: flex;
  align-items: center;
}
a.countdown span,
a.countdown strong,
a.countdown em {
  display: inline-block;
}
a.countdown .title {
  margin-right: 0.8em;
  padding-right: 0.8em;
  border-right: 1px solid;
  color: #f4733a;
}
a.countdown .title + .info {
  margin-right: 0.8em;
  color: #f4733a;
}
a.countdown .title + .info:empty {
  display: none;
}
a.countdown .ct {
  color: #f0a89c;
}
a.countdown em {
  line-height: 1em;
  font-style: normal;
  font-weight: bold;
  width: 1em;
  text-align: center;
  border-radius: 0.14em;
  color: #f4733a;
  xfont-size: 16px;
  xvertical-align: middle;
  xpadding: 0.3em 0;
  xbackground: linear-gradient(
    to bottom,
    #fff 49%,
    #f6f6f6 50%,
    #d6d6d6 52%,
    #e8e8e8 56%,
    #e0e0e0 57%
  );
}
a.countdown em.day_0,
a.countdown em.hour_0,
a.countdown em.min_0,
a.countdown em.sec_0 {
  margin-left: 1px;
}
a.countdown em.hide {
  display: none;
}
@media screen and (max-width: 767px) {
  .topInfo {
    font-size: 0.85em;
  }
  .topInfo._countdown {
    height: 4em;
    margin-top: -4em;
  }
  a.countdown {
    display: block;
  }
  a.countdown .title + .info {
    margin-left: 0.6em;
    padding-left: 0.8em;
    border-left: 1px solid;
  }
  a.countdown .ct {
    display: block;
  }
  a.countdown .title {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
  a.countdown .ct {
    margin: 0.5em 0 0;
  }
}
/*********** 倒數區塊 end ***************/
/********************* 置頂訊息 end *************************/

#headerContainer header {
  max-width: 1200px;
  margin: 0 auto;
}
#headerContainer header:after {
  clear: both;
  content: "";
  display: block;
}

#headerContainer header h1 {
  float: left;
  width: 171px;
  margin: 20px 0 15px 2.5%;
}
#headerContainer header h1 a {
  display: block;
  height: 0;
  padding-top: 32.16%;
  font-size: 0;
  background-image: url(../images/logo.png?V2);
  background-repeat: no-repeat;
  background-size: contain;
}

#headerContainer header nav {
  float: right;
  padding: 0 2.5% 0 2.5%;
  width: calc(100% - 201px);
}
#headerContainer header nav .navCT {
  padding-top: 50px;
}
#headerContainer header nav .navCT:after {
  clear: both;
  content: "";
  display: block;
}
#headerContainer header nav .navCT ul {
  list-style: none;
}

/******************************** 右側會員選單 start ************************************/
#headerContainer header nav .navCT .memberNav {
  float: right;
}
#headerContainer header nav .navCT .memberNav:after {
  clear: both;
  content: "";
  display: block;
}
#headerContainer header nav .navCT .memberNav > li {
  float: left;
  font-size: 12px;
}
#headerContainer header nav .navCT .memberNav > li + li {
  margin-left: 12px;
}
#headerContainer header nav .navCT .memberNav > li > a {
  cursor: pointer;
}
#headerContainer header nav .navCT .memberNav > li > a:first-child {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 2px 0 22px;
  max-width: 10em;
  white-space: nowrap;
  overflow: hidden;
}
#headerContainer header nav .navCT .memberNav .txt_over {
  display: inline-block;
  margin-right: .1rem;
  width: 55%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#headerContainer header nav .navCT .memberNav > li > a:first-child:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 17px;
  margin-right: 2px;
  vertical-align: middle;
  line-height: 1em;
  background: url(https://www.nordic.com.tw/images/memberNav.svg) no-repeat;
  transition: background-position 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#headerContainer header nav .navCT .memberNav > li.member > a:before {
  background-position: 0 0;
}
#headerContainer header nav .navCT .memberNav > li.search > a:before {
  background-position: 33.33% 0;
}
#headerContainer header nav .navCT .memberNav > li.fav > a:before {
  background-position: 66.66% 0;
}
#headerContainer header nav .navCT .memberNav > li.cart > a:before {
  background-position: right 0;
}
#headerContainer header nav .navCT .memberNav > li.member.open > a:before,
#headerContainer header nav .navCT .memberNav > li.member:hover > a:before {
  background-position: 0 bottom;
}
#headerContainer header nav .navCT .memberNav > li.search.open > a:before,
#headerContainer header nav .navCT .memberNav > li.search:hover > a:before {
  background-position: 33.33% bottom;
}
#headerContainer header nav .navCT .memberNav > li.fav:hover > a:before {
  background-position: 66.66% bottom;
}
#headerContainer header nav .navCT .memberNav > li.cart:hover > a:before {
  background-position: right bottom;
}

#headerContainer header nav .navCT .memberNav > li.member > a:after,
#headerContainer header nav .navCT .memberNav > li.search > a:after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border: 15px solid transparent;
  border-top: none;
  border-bottom-color: rgba(244, 244, 244, 0.97);
  display: none;
}
#headerContainer header nav .navCT .memberNav > li.member.open > a:after,
#headerContainer header nav .navCT .memberNav > li.search.open > a:after {
  display: block;
}

/******************** 會員 展開 layer start *******************/
#headerContainer header nav .navCT .memberNav > li.member {
  position: relative;
}
.subMemberLayer {
  position: absolute;
  left: 50%;
  top: 40px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #f4f4f4;
  white-space: nowrap;
  border-radius: 3px;
  border-bottom: 1px solid rgba(100, 100, 100, 0.1);
  z-index: 1;
  display: none;
}
#headerContainer header nav .navCT .memberNav > li.member.open .subMemberLayer {
  display: block;
}
.subMemberLayer ul {
  list-style: none;
  margin: 10px 20px;
  text-align: center;
}
.subMemberLayer ul li a {
  display: block;
  padding: 6px 0;
}
/******************** 會員 展開 layer end *******************/

/******************** 搜尋 展開 layer start *******************/
.subSearchLayer {
  position: absolute;
  left: 0;
  top: 90px;
  width: 100%;
  background: rgba(244, 244, 244, 0.97);
  border-bottom: 1px solid rgba(100, 100, 100, 0.1);
  z-index: 1;
  display: none;
}
#headerContainer header nav .navCT .memberNav > li.search.open .subSearchLayer {
  display: block;
}
.ssContainer {
  max-width: 1200px;
  margin: 0 auto;
}
.ss {
  padding: 2% 6.66%;
}

.ss .byKeyword > em,
.ss .byPrice > em {
  font-size: 15px;
  display: block;
  font-style: normal;
}

/********** 依關鍵字 start ************/
.ss .byKeyword .inputContainer {
  margin: 2% 0 0 14.42%;
  width: 70.19%;
}
.ss .byKeyword .inputContainer .input {
  display: inline-block;
  width: 100%;
  border: none;
  border-radius: 4px;
  font-size: 20px;
  padding: 0.5em 0.1em;
  line-height: 1em;
  text-align: center;
}
/********** 依關鍵字 end ************/

/********** 依價格 start ************/
.ss .byPrice {
  margin: 3% auto 1.5%;
  padding-top: 3%;
  border-top: 1px solid #ccc;
}
/********** 依價格 end ************/

.subSearchLayer .closeBtn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.subSearchLayer .closeBtn:before,
.subSearchLayer .closeBtn:after {
  position: absolute;
  content: "";
  right: 0;
  top: 10px;
  width: 22px;
  height: 2px;
  background: #999;
  border-radius: 1px;
}
.subSearchLayer .closeBtn:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.subSearchLayer .closeBtn:after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.subSearchLayer .closeBtn:hover:before,
.subSearchLayer .closeBtn:hover:after {
  background: #666;
}
/******************** 搜尋 展開 layer end *******************/

/******************** 暗戀清單 & 購物車 message start *******************/
#headerContainer header nav .navCT .memberNav > li.fav,
#headerContainer header nav .navCT .memberNav > li.cart {
  position: relative;
  z-index: 1;
}
#headerContainer header nav .navCT .memberNav > li.fav > a,
#headerContainer header nav .navCT .memberNav > li.cart > a {
  color: #333;
  font-weight: bold;
}
#headerContainer header nav .navCT .memberNav > li.fav > a:after,
#headerContainer header nav .navCT .memberNav > li.cart > a:after {
  position: absolute;
  content: "";
  left: -2px;
  bottom: 6px;
  border: 10px solid transparent;
  border-top: none;
  border-bottom-color: #666;
  display: none;
}
#headerContainer header nav .navCT .memberNav > li.fav > a.showMessage:before {
  background-position: -36px bottom;
}
#headerContainer header nav .navCT .memberNav > li.cart > a.showMessage:before {
  background-position: -54px bottom;
}
#headerContainer header nav .navCT .memberNav > li.fav > a.showMessage:after,
#headerContainer header nav .navCT .memberNav > li.cart > a.showMessage:after {
  display: block;
}
#headerContainer header nav .navCT .memberNav > li.fav .message,
#headerContainer header nav .navCT .memberNav > li.cart .message {
  position: absolute;
  right: 0;
  top: 35px;
  background: #666;
  color: #fff;
  white-space: nowrap;
  font-size: 12px;
  font-weight: bold;
  border-radius: 3px;
  border-bottom: 1px solid rgba(100, 100, 100, 0.1);
  display: none;
}
#headerContainer header nav .navCT .memberNav > li.fav .message .messageCT,
#headerContainer header nav .navCT .memberNav > li.cart .message .messageCT {
  margin: 20px;
}
/******************** 暗戀清單 & 購物車 message end *******************/
/******************************** 右側會員選單 end ************************************/

/************************ 右上會員獨享商品 & 可用購物金 & 全民紅利點數 start *****************************/
.memberExtra {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  max-width: 1200px;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0.9em 30px 0 0;
  font-size: 13px;
  pointer-events: none;
}
.memberExtra li {
  pointer-events: auto;
}
.memberExtra li + li {
  margin-left: 1.5em;
}
.memberExtra li a {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.memberExtra li a:before {
  content: "";
  display: block;
  height: 15px;
  margin-right: 0.3em;
  background-image: url(https://www.nordic.com.tw/images/memberExtra.svg);
  background-repeat: no-repeat;
}
.memberExtra li.memberCard a:before {
  width: 21px;
}
.memberExtra li.c1 a:before {
  background-position: left top;
}
.memberExtra li.c2 a:before {
  background-position: left center;
}
.memberExtra li.c3 a:before {
  background-position: left bottom;
}
.memberExtra li.availableCoupon a:before,
.memberExtra li.bonus a:before {
  width: 15px;
}
.memberExtra li.availableCoupon a:before {
  background-position: right top;
}
.memberExtra li.bonus a:before {
  background-position: right -15px;
}
/************************ 右上會員獨享商品 & 可用購物金 & 全民紅利點數 end *******************************/

/************************* 主選單 start ****************************/
#headerContainer header nav .navCT .mainNav {
  float: left;
}
#headerContainer header nav .navCT .mainNav:after {
  clear: both;
  content: "";
  display: block;
}
#headerContainer header nav .navCT .mainNav > li {
  float: left;
}
#headerContainer header nav .navCT .mainNav > li > a {
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 1em;
  padding: 3px 1.3em 1.44em;
  cursor: pointer;
  color: #000;
}
#headerContainer header nav .navCT .mainNav > li > a:not([href]):after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 15px solid transparent;
  border-top: none;
  border-bottom-color: rgba(244, 244, 244, 0.97);
  display: none;
}
#headerContainer header nav .navCT .mainNav > li.open > a,
#headerContainer header nav .navCT .mainNav > li:hover > a {
  color: #999;
}
#headerContainer header nav .navCT .mainNav > li.open > a:not([href]):after {
  display: block;
}

/*************** 次選單 start ****************/
.subNavLayer {
  position: absolute;
  left: 0;
  top: 90px;
  width: 100%;
  background: rgba(244, 244, 244, 0.97);
  border-bottom: 1px solid rgba(100, 100, 100, 0.1);
  display: none;
}
#headerContainer header nav .navCT .mainNav > li.open .subNavLayer {
  display: block;
}

.snContainer {
  max-width: 1200px;
  margin: 0 auto;
}
.sn, .sn2 {
  padding: 4.16% 6.66%;
  overflow: hidden;
}

.w_100_s {
  width: 100% !important;
}

@media screen and (min-width: 1024px) {
  .sn2 {
    padding: 4.16% 12%;
    overflow: hidden;
  }
  .m\:p_left_4 {
    padding-left: 4%;
  }
  .m\:p_left_8 {
    padding-left: 8%;
  }
}

/***** 項目區 start *****/
.sn .ct {
  float: left;
  width: 50%;
  overflow: hidden;
  color: #333;
}
.sn .ct > ul {
  float: left;
  width: 18%;
}
.sn .ct > ul + ul {
  margin-left: 15%;
}
.sn .ct > ul.wide {
  width: 67%;
}
.sn .ct > ul.full {
  width: 100%;
}
.sn .ct > ul.narrow {
  width: 34%;
}
.sn .ct > ul > li {
}
.sn .ct > ul > li + li {
  margin-top: 2em;
}
.sn .ct > ul > li > a {
  position: relative;
  display: inline-block;
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
  min-width: 4em;
  font-size: 18px;
  font-weight: bold;
  line-height: 1em;
  color: currentColor;
}
.sn .ct > ul > li > a:after {
  position: absolute;
  left: 0;
  bottom: -3px;
  display: block;
  content: "";
  width: 0;
  height: 3px;
  background: #ccc;
  transition: width 0.2s;
}
.sn .ct > ul > li > a[href]:hover {
  color: #999;
}
.sn .ct > ul > li > a[href]:hover:after {
  width: 100%;
}
.sn .ct ul li ul {
  margin-top: 1.2em;
}
.sn .ct ul li ul li {
  font-size: 12px;
  line-height: 1.6em;
}
.sn .ct ul li ul li + li {
  margin-top: 1em;
}
.sn .ct ul li ul li a {
  display: block;
}
/***** 項目區 end *****/

/***** banner start *****/
.sn .banner {
  float: right;
  width: 46%;
  margin-left: 4%;
}
.sn .banner a {
  display: block;
}
.sn .banner img {
  display: block;
  width: 100%;
  border: none;
}
.sn .banner .slick-dots {
  bottom: -22px;
}
/***** banner end *****/
/*************** 次選單 end ******************/
/************************* 主選單 end ******************************/

/************************* header 活動小按鈕 start ******************************/
.btnEvent {
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 60px;
  height: 60px;
  font-size: 0;
  background: url(https://www.nordic.com.tw/images/btn_2018xmas.gif) no-repeat;
  border-radius: 50%;
}
@media screen and (max-width: 1023px) {
  .btnEvent {
    bottom: auto;
    top: 48px;
    transition: top 0.2s;
  }
  header.open + .btnEvent {
    top: 125px;
  }
}
/************************* header 活動小按鈕 end ******************************/
/**************************************** header end *************************************************/

/**************************************** main start *************************************************/
main {
  position: relative;
  z-index: 1;
}

/********************** kv start ***************************/
.kvContainer {
  margin: 0 auto;
  max-width: 1200px;
}
.kv {
  position: relative;
  overflow: hidden;
}
.kv,
.kvCT li.slick-slide a {
  padding-top: 33.33%;
}
.kvCT {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.kvCT li.slick-slide a {
  position: relative;
  display: block;
}
.kvCT li.slick-slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
.kvCT li.slick-slide img:nth-child(2) {
  display: none;
}
/************************ kv end **************************/

/************************ 主要內容 start **************************/
.mainContainer {
  margin: 0 auto;
  max-width: 1200px;
}

/************* midBlock start ********************/
.midBlock {
  margin: 1.5% 2.5% 0;
}
.midBlock:after {
  content: "";
  clear: both;
  display: block;
}
.midBlock .bc {
  float: left;
}
.midBlock .share {
  position: relative;
  float: right;
  margin: 10px 10px 0 0;
  z-index: 4;
}
.midBlock .share:before {
  content: "";
  display: block;
  width: 19px;
  height: 18px;
  background: url(https://www.nordic.com.tw/images/productDetailAside.svg) no-repeat -38px 0;
  cursor: pointer;
  transition: background-position 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.midBlock .share ul {
  position: absolute;
  right: -15px;
  top: 35px;
  padding: 10px;
  background: #f4f4f4;
  border-radius: 3px;
  border-bottom: 1px solid #d2d2d2;
  overflow: hidden; /* 修正社群分享以透明型式出現於視窗左上 bug */
  transform: scale(
    0
  ); /* 修正原本使用 display:none; 會導致社群外掛寬高被設為 0, 造成視覺上消失 */
}
.midBlock .share ul:before {
  position: absolute;
  right: 15px;
  top: -10px;
  content: "";
  border: 10px solid transparent;
  border-top: none;
  border-bottom-color: #f4f4f4;
}
.midBlock .share ul li + li {
  margin-top: 8px;
}
.midBlock .share ul li.fb {
  overflow: hidden;
}
.midBlock .share ul li.twitter,
.midBlock .share ul li.pin {
  margin-top: 5px;
}
.midBlock .share.active ul {
  overflow: visible; /* 對應上方修正 */
  transform: none; /* 對應上方修正 */
}
.midBlock .share:hover:before,
.midBlock .share.active:before {
  background-position: -38px bottom;
}
/************* midBlock end ********************/

.mainContainer > section:not(:first-child) {
  margin-top: 5%;
}
.mainContainer > section > h2 {
  text-align: center;
  line-height: 1em;
}

/************ 瀏覽路徑(麵包屑) start ************/
.bc {
  overflow: hidden;
  font-size: 12px;
}
.bc li {
  float: left;
  position: relative;
  margin: 10px 8px 0 0;
}
.bc li {
  padding-right: 18px;
}
.bc li:before,
.bc li:after {
  position: absolute;
  content: "";
  display: block;
  right: 0;
  width: 8px;
  height: 1px;
  background: #999;
}
.bc li:before {
  top: 2px;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.bc li:after {
  top: 13px;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.bc li:last-child {
  color: #333;
  margin-right: 0;
  padding-right: 0;
}
.bc li:last-child:before,
.bc li:last-child:after {
  display: none;
}
/************ 瀏覽路徑(麵包屑) end ************/
/************************ 主要內容 end **************************/
/**************************************** main end *************************************************/

/**************************************** footer start *************************************************/
footer {
  position: relative;
  margin-top: 5%;
  z-index: 0;
}
.footerCTContainer {
  background: #f4f4f4;
}
.footerCT {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
}

/****************** 開合按鈕 start *************************/
.footerCT .toggleBtn {
  padding: 5px 0;
  cursor: pointer;
}
.footerCT .toggleBtn span {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto;
}
.footerCT .toggleBtn span:before,
.footerCT .toggleBtn span:after {
  position: absolute;
  content: "";
  left: 7px;
  top: 14px;
  width: 15px;
  height: 3px;
  border-radius: 3px;
  background: #999;
}
.footerCT .toggleBtn span:before {
  -webkit-transform: translateX(-5px) rotate(45deg);
  transform: translateX(-5px) rotate(45deg);
}
.footerCT .toggleBtn span:after {
  -webkit-transform: translateX(5px) rotate(-45deg);
  transform: translateX(5px) rotate(-45deg);
}
.footerCT .toggleBtn:hover span:before,
.footerCT .toggleBtn:hover span:after {
  background: #666;
}
.footerCT.open .toggleBtn span {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
/****************** 開合按鈕 end *************************/

.footerCT section {
  display: none;
}

/****************** 連結們 start *************************/
.footerCT section .link {
  margin: 3% 4% 0;
  overflow: hidden;
}
.footerCT section .link > li {
  float: left;
  width: 20%;
  padding-right: 20px;
}
.footerCT section .link > li:last-child {
  padding-right: 0;
}
.footerCT section .link > li > a {
  font-size: 15px;
  font-weight: bold;
  color: #000;
}
.footerCT section .link > li > a[href] {
  color: currentColor;
  display: block;
}
.footerCT section .link > li > a[href]:hover {
  color: #000;
}
.footerCT section .link li ul {
  margin-top: 2em;
}
.footerCT section .link li ul li + li {
  margin-top: 0.5em;
}

.footerCT section .link li.followUs ul {
  margin-top: 1.2em;
}
.footerCT section .link li.followUs ul li {
  margin: 10px 8px 0 0;
  float: left;
}
.footerCT section .link li.followUs ul li:last-child {
  margin-right: 0;
}
.footerCT section .link li.followUs ul li a {
  display: block;
  width: 27px;
  height: 25px;
  font-size: 0;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background: url(https://www.nordic.com.tw/images/snsLogo.svg) no-repeat;
  transition: background-position 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.footerCT section .link li.followUs ul li.fb a {
  background-position: 0 0;
}
.footerCT section .link li.followUs ul li.ig a {
  background-position: -27px 0;
}
.footerCT section .link li.followUs ul li.pin a {
  background-position: -54px 0;
}
.footerCT section .link li.followUs ul li.yt a {
  background-position: -81px 0;
}
.footerCT section .link li.followUs ul li.line a {
  background-position: -108px 0;
}
.footerCT section .link li.followUs ul li.fb a:hover {
  background-position: 0 bottom;
}
.footerCT section .link li.followUs ul li.ig a:hover {
  background-position: -27px bottom;
}
.footerCT section .link li.followUs ul li.pin a:hover {
  background-position: -54px bottom;
}
.footerCT section .link li.followUs ul li.yt a:hover {
  background-position: -81px bottom;
}
.footerCT section .link li.followUs ul li.line a:hover {
  background-position: -108px bottom;
}

.footerCT section .link li:not(.followUs) ul li a[href]:only-child {
  position: relative;
  display: block;
  left: 0;
  transition: left 0.2s;
}
.footerCT section .link li:not(.followUs) ul li a:only-child:hover {
  left: 5px;
}
/****************** 連結們 end *************************/

/****************** 訂閱電子報 start *************************/
.footerCT section .subscribe {
  margin: 3% auto 0;
  width: 35%;
}
.footerCT section .subscribe .input {
  width: calc(100% - 105px);
  border: none;
  padding: 7px;
  border-radius: 3px;
}
.footerCT section .subscribe .formBtn {
  margin-left: 5px;
}
.footerCT section .subscribe p {
  margin: 5px auto 0;
  font-size: 12px;
  line-height: 1.6em;
  color: #999;
}
.footerCT section .subscribe p a {
  text-decoration: underline;
}
/****************** 訂閱電子報 end *************************/

/****************** 認證 start *************************/
.footerCT section .certify {
  margin-top: 3%;
  padding-bottom: 3%;
  text-align: center;
}
.footerCT section .certify li {
  display: inline-block;
  margin: 0 20px;
  vertical-align: middle;
}
.footerCT section .certify li.twca {
  width: 70px;
}
.footerCT section .certify li.sosa {
  width: 32px;
}
.footerCT section .certify li.sosaTrust {
  width: 120px;
}
.footerCT section .certify li.jutLiving {
  width: 140px;
}

#twcaseal:before,
.footerCT section .certify li a:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.footerCT section .certify li a {
  display: block;
  white-space: nowrap;
  text-indent: 100%;
  font-size: 0;
}
#twcaseal {
  position: relative;
}
#twcad1,
#twcad2,
#twcad3 {
  position: absolute;
}
#twcad3 {
  /** 綠勾 **/
  right: 0;
  top: 0;
}
#twcad1 {
  /** 已認證 **/
  right: 0;
  bottom: 0;
}
#twcad2 {
  /** 詳細說明 **/
  left: 0;
  top: 100%;
}
#twcaseal:before {
  background-image: url(https://www.nordic.com.tw/images/certify_twca.gif);
  padding-top: 55.97%;
}
.footerCT section .certify li.sosa a:before {
  background-image: url(https://www.nordic.com.tw/images/certify_sosa.png);
  padding-top: 121.87%;
}
.footerCT section .certify li.sosaTrust a:before {
  background-image: url(https://www.nordic.com.tw/images/certify_sosaTrust.png);
  padding-top: 26.66%;
}
.footerCT section .certify li.jutLiving a:before {
  background-image: url(https://www.nordic.com.tw/images/jutLivingLogo.png);
  padding-top: 15.71%;
}
/****************** 認證 end *************************/

footer .copyright {
  text-align: center;
  color: #999;
  padding: 20px 0;
}
/**************************************** footer end *************************************************/

/**************************************** toTop start *************************************************/
.toTop {
  position: fixed;
  right: 30px;
  bottom: 0;
  z-index: 2;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: transform 0.2s;
  transition: all 0.2s;
}
.toTop.show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.toTop .top {
  padding: 15px 20px 10px;
  border-radius: 3px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: #f4f4f4;
  cursor: pointer;
  transition: background 0.2s;
}
.toTop .top span {
  position: relative;
  display: block;
  width: 22px;
  height: 20px;
  margin: 0 auto;
  border-top: 3px solid #999;
}
.toTop .top span:before,
.toTop .top span:after {
  position: absolute;
  content: "";
  left: 4px;
  top: 7px;
  width: 15px;
  height: 3px;
  border-radius: 3px;
  background: #999;
}
.toTop .top span:before {
  -webkit-transform: translateX(-5px) rotate(-45deg);
  transform: translateX(-5px) rotate(-45deg);
}
.toTop .top span:after {
  -webkit-transform: translateX(5px) rotate(45deg);
  transform: translateX(5px) rotate(45deg);
}
.toTop .top:hover {
  background: #ccc;
}
.toTop .top:hover span {
  border-top-color: #fff;
}
.toTop .top:hover span:before,
.toTop .top:hover span:after {
  background: #fff;
}

.toTop a {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  width: 100%;
  padding: 10px 15px;
  text-align: center;
  background: #f4f4f4;
  border-radius: 3px;
  transition: all 0.2s;
  display: none;
}
.toTop a.show {
  display: block;
}
.toTop a:hover {
  background: #ccc;
  color: #fff;
}
/**************************************** toTop end *************************************************/

@media screen and (max-width: 1300px) {
  /************************************** header start ********************************************/
  /******************* 右側會員選單 start ********************/
  /*********** 搜尋 展開 layer start *************/
  .subSearchLayer {
    top: 50px;
  }
  /*********** 搜尋 展開 layer end *************/
  /******************* 右側會員選單 end *********************/

  /*********************** 右上會員獨享商品 & 可用購物金 & 全民紅利點數 start***********************/
  .memberExtra {
    position: static;
    width: auto;
    transform: none;
  }
  /*********************** 右上會員獨享商品 & 可用購物金 & 全民紅利點數 end***********************/
  /**************************************** header end *********************************************/
}

@media screen and (min-width: 1024px) and (max-width: 1300px) {
  /************************************** header start ********************************************/
  #headerContainer header nav {
    padding-left: 4%;
  }
  #headerContainer header nav .navCT {
    padding-top: 0;
  }

  /******************* 右側會員選單 start ********************/
  #headerContainer header nav .navCT .memberNav {
    margin-top: 10px;
  }
  /******************* 右側會員選單 end *********************/

  /************* 右上會員獨享商品 & 可用購物金 & 全民紅利點數 start *************/
  .memberExtra {
    padding-right: 0;
  }
  .memberExtra li:last-child {
    border-right: 1px solid #999;
    margin-right: 20px;
    padding-right: 20px;
  }
  /************* 右上會員獨享商品 & 可用購物金 & 全民紅利點數 end *************/

  /****************** 主選單 start ********************/
  #headerContainer header nav .navCT .mainNav {
    clear: both;
  }
  /*********** 次選單 start **********/
  /***** 項目區 start *****/
  .sn .ct > ul > li > a {
    font-size: 15px;
  }
  /***** 項目區 end *****/
  /********** 次選單 end **********/
  /******************* 主選單 end *********************/
  /**************************************** header end *********************************************/
}

@media screen and (max-width: 1023px) {
  #container {
    padding-top: 47px;
  }

  /**************************************** header start *********************************************/
  #headerContainer header {
    max-width: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;     padding-bottom: 0px;
  }

  #headerContainer header h1 {
    float: none;
    width: 120px;
    margin: 0 0 0 10px;
  }

  #headerContainer header nav {
    float: none;
    width: auto;
    padding: 0;
  }
  #headerContainer header nav .navCT {
    position: absolute;
    left: 0;
    top: 47px;
    width: 100%;
    height: 0;
    padding-top: 0;
    background: #fff;
  }

  #headerContainer header.open nav .navCT {
    height: calc(100vh - 47px);
  }
  #headerContainer header.open nav .navCT .memberExtra {
    display: flex;
  }
  #headerContainer header.open nav .navCT .mainNav {
    display: block;
  }

  /****************************** 右側會員選單 start *********************************/
  #headerContainer header nav .navCT .memberNav {
    margin: -35px 45px 0 0;
  }
  #headerContainer header nav .navCT .memberNav > li.member > a:after,
  #headerContainer header nav .navCT .memberNav > li.search > a:after {
    border-bottom-color: rgba(244, 244, 244, 1);
  }

  /******************** 會員 展開 layer start *******************/
  .subMemberLayer {
    top: 34px;
  }
  /******************** 會員 展開 layer end *******************/

  /****************** 搜尋 展開 layer start ********************/
  .subSearchLayer {
    top: -1px;
    background: rgba(244, 244, 244, 1);
    border-bottom: 1px solid #ccc;
  }
  .ss {
    padding: 20px;
  }
  /********** 依關鍵字 start ************/
  .ss .byKeyword .inputContainer {
    width: auto;
    margin-left: 0;
  }
  .ss .byKeyword .inputContainer .input {
    font-size: 16px;
  }
  /********** 依關鍵字 end ************/
  /****************** 搜尋 展開 layer end ********************/
  /******************** 暗戀清單 & 購物車 message start *******************/
  #headerContainer header nav .navCT .memberNav > li.fav .message,
  #headerContainer header nav .navCT .memberNav > li.cart .message {
    position: fixed;
    left: 0;
    right: auto;
    top: 46px;
    width: 100%;
    border-radius: 0;
    text-align: right;
    white-space: normal;
  }
  /******************** 暗戀清單 & 購物車 message end *******************/
  /****************************** 右側會員選單 end *********************************/

  /*********************** 右上會員獨享商品 & 可用購物金 & 全民紅利點數 start***********************/
  .memberExtra {
    clear: both;
    margin: 15px 10px 10px;
    padding: 0;
    display: none;
  }
  .memberExtra li {
    margin-bottom: 10px;
  }
  /*********************** 右上會員獨享商品 & 可用購物金 & 全民紅利點數 end***********************/

  /************************* 主選單 start ****************************/
  #headerContainer header nav .navCT .mainNav {
    clear: both;
    float: none;
    height: calc(100vh - 99px);
    padding-bottom: 5em;
    overflow: auto;
    display: none;
  }
  #headerContainer header.open nav .navCT .mainNav.cover {
    position: relative;
    display: none; /* 避免看到局部的半透明黑色選單感到混淆 */
  }
  #headerContainer header.open nav .navCT .mainNav.cover:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
  }
  #headerContainer header nav .navCT .mainNav > li {
    float: none;
  }
  #headerContainer header nav .navCT .mainNav > li > a {
    font-size: 18px;
    padding: 0.8em 0;
    text-align: center;
  }
  #headerContainer header nav .navCT .mainNav > li.open > a:not([href]):after {
    display: none;
  }

  /*************** 次選單 start ****************/
  .subNavLayer {
    position: static;
    display: none;
  }

  .snContainer {
    max-width: none;
  }
  .sn {
    overflow: visible;
    padding: 20px 20px 0;
  }

  /***** 項目區 start *****/
  .sn .ct {
    float: none;
    width: auto;
    overflow: visible;
  }
  .sn .ct > ul {
    float: none;
    width: auto;
  }
  .sn .ct > ul + ul {
    margin-left: 0;
    margin-top: 1em;
    margin-bottom: 1em;
  }
  .sn .ct > ul.wide {
    width: auto;
  }
  .sn .ct > ul.narrow {
    width: auto;
  }
  .sn .ct > ul > li + li {
    margin-top: 1em;
  }
  .sn .ct > ul > li > a {
    font-size: 14px;
    display: block;
  }
  .sn .ct ul li ul {
    margin-left: 15px;
    margin-bottom: 1.5em;
  }
  /***** 項目區 end *****/

  /***** banner start *****/
  .sn .banner {
    float: none;
    width: auto;
    margin-left: 0;
    margin-bottom: 40px;
  }
  /***** banner end *****/
  /*************** 次選單 end ******************/
  /************************* 主選單 end ******************************/

  /************************ burgerBtn start **********************/
  header .burgerBtn,
  header .burgerBtn span,
  header .burgerBtn span:before,
  header .burgerBtn span:after {
    position: absolute;
  }
  header .burgerBtn {
    right: 10px;
    top: 16px;
    width: 22px;
    height: 15px;
    cursor: pointer;
  }
  header .burgerBtn span,
  header .burgerBtn span:before,
  header .burgerBtn span:after {
    display: block;
    right: 0;
    width: 100%;
    height: 3px;
    background: #999;
    border-radius: 1px;
  }
  header .burgerBtn span {
    top: 6px;
  }
  header .burgerBtn span:before,
  header .burgerBtn span:after {
    content: "";
    transition: all 0.3s;
  }
  header .burgerBtn span:before {
    top: -6px;
  }
  header .burgerBtn span:after {
    top: 6px;
  }

  header.open .burgerBtn span {
    background: transparent;
  }
  header.open .burgerBtn span:before,
  header.open .burgerBtn span:after {
    top: 0;
  }
  header.open .burgerBtn span:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  header.open .burgerBtn span:after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  /************************ burgerBtn end **********************/
  /**************************************** header end ***********************************************/

  /**************************************** main start *************************************************/
  /************************ 主要內容 start **************************/
  /**************** kv start *****************/
  .kv,
  .kvCT li.slick-slide a {
    padding-top: 60%;
  }
  .kvCT li.slick-slide img:not(:only-child):nth-child(1) {
    display: none;
  }
  .kvCT li.slick-slide img:nth-child(2) {
    display: block;
  }
  /************* kv end *******************/

  /************* midBlock start *******************/
  .midBlock {
    margin-left: 10px;
    margin-right: 10px;
  }
  /************* midBlock end *******************/
  .mainContainer > section > h2 {
    font-size: 18px;
  }
  /************************ 主要內容 end **************************/
  /**************************************** main end *************************************************/

  /**************************************** footer start *************************************************/
  .footerCT {
    max-width: none;
    padding: 0 10px;
    font-size: 12px;
  }
  /****************** 連結們 start *************************/
  .footerCT section .link {
    margin: 3% 0 0;
    overflow: hidden;
  }
  .footerCT section .link > li {
    float: none;
    width: 100%;
    padding-right: 0;
  }
  .footerCT section .link > li + li {
    margin-top: 1.2em;
  }
  .footerCT section .link > li > a {
    font-size: 13px;
  }
  .footerCT section .link li ul {
    margin: 1em 0 0 2em;
  }
  .footerCT section .link li ul li br {
    display: none;
  }
  /****************** 連結們 end *************************/

  /****************** 訂閱電子報 start *************************/
  .footerCT section .subscribe {
    margin-top: 20px;
    width: 100%;
  }
  /****************** 訂閱電子報 end *************************/

  /****************** 認證 start *************************/
  .footerCT section .certify {
    margin-top: 20px;
  }
  .footerCT section .certify li {
    margin: 0 10px 10px;
  }
  /****************** 認證 end *************************/
  footer .copyright {
    font-size: 12px;
    padding: 10px 10px 50px;
  }
  /**************************************** footer end *************************************************/

  /**************************************** toTop start *************************************************/
  .toTop {
    right: 10px;
  }
  /**************************************** toTop end *************************************************/
}
