@charset "UTF-8";
/*
 * CSS Document
 * ==========================================================================
 * 版權所有 2016 鉅潞科技網頁設計公司，並保留所有權利。
 * 網站地址: http://www.grnet.com.tw
 * ==========================================================================
 * $Author: 又綺/小玉 $
 * $Date: 2016-09-21 (三) $
*/
.reset-box-sizing {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.reset-box-sizing * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.reset-box-sizing *:before, .reset-box-sizing *:after {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* --------------------------------------------
   全域樣式
-------------------------------------------- */
html, body {
  height: 100%;
}

html {
  font-size: 75%;
}

body {
  font-family: "Roboto", "sans-serif", "微軟正黑體", "Microsoft JhengHei";
  font-size: 1.166666rem;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  -webkit-text-size-adjust: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

a {
  outline: none;
  text-decoration: none;
}

input[type=text], input[type=password] textarea {
  font-size: 1.166666rem;
  font-size: 14px;
  color: #333;
  -webkit-appearance: none;
}

label {
  font-size: 1.166666rem;
  font-size: 14px;
  color: #333;
  -webkit-appearance: none;
}

select {
  border-radius: 0;
}

input, button {
  outline: none;
}

::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholde {
  font-family: "Roboto", "sans-serif", "微軟正黑體", "Microsoft JhengHei";
}

/* =====================================
   共用樣式
===================================== */
.hidden-ele {
  position: absolute;
  top: -1px;
  clip: rect(1px 1px 1px 1px);
  /* IE6 & 7 */
  clip: rect(1px, 1px, 1px, 1px);
  margin: 0;
  height: 0;
}

/* 字型 */
.en {
  font-weight: 300;
}

/* 清除浮動 */
.clearboth {
  clear: both;
  height: 0;
  font-size: 0;
  overflow: hidden;
}

/* ul預設 */
ul.ulset {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 漸變效果 */
.dynamic {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* 區塊進場效果 */
.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}

@-webkit-keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px) scale(1);
    transform: translateY(200px) scale(1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}
@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px) scale(1);
    -ms-transform: translateY(200px) scale(1);
    transform: translateY(200px) scale(1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}
/* 滑過動態效果 - 圖片 */
.pic-over .pic {
  position: relative;
  overflow: hidden;
}

.pic-over img, .pic-over .bg-color, .pic-over .ani-word {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.pic-over img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.pic-over:hover img {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}

.pic-over .bg-color {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #000;
}

.pic-over .ani-word {
  position: absolute;
  z-index: 2;
  top: 50%;
  margin-top: -10px;
  padding: 0 15px;
  width: 100%;
  font-size: 1.666666rem;
  font-size: 20px;
  color: #fff;
  font-weight: 100;
  word-break: normal;
  text-align: center;
  opacity: 0;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.pic-over .ani-word:after {
  display: block;
  content: "";
  margin: 6px auto 0;
  width: 20px;
  height: 1px;
  background-color: #b0b0b0;
}

.pic-over:hover .bg-color {
  opacity: 0.5;
}

.pic-over:hover .ani-word {
  margin-top: -5px;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* NEW動態效果 */
.icon-new {
  display: inline-block;
  position: relative;
  margin: -4px 0 0 8px;
  font-family: "Times New Roman", serif;
  font-size: 1rem;
  font-size: 12px;
  color: #b00000;
  font-weight: 600;
  vertical-align: middle;
}

.icon-new span {
  display: inline-block;
  position: relative;
  top: -3px;
  width: 10px;
  text-align: center;
  opacity: 0;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation: ani-new 1.3s ease infinite;
  animation: ani-new 1.3s ease infinite;
}

.icon-new span + span {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.icon-new span + span + span {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

@-webkit-keyframes ani-new {
  from {
    opacity: 0;
    top: -3px;
  }
  to {
    opacity: 1;
    top: 0;
  }
}
@keyframes ani-new {
  from {
    opacity: 0;
    top: -3px;
  }
  to {
    opacity: 1;
    top: 0;
  }
}
.cursor-pointer {
  cursor: pointer !important;
}

.cursor-default {
  cursor: default !important;
}

/* =====================================
   大架構
===================================== */
/* 遮罩 */
.cd-overlay {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0.3s 0s, -webkit-transform 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0.3s 0s, -webkit-transform 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0.3s 0s, transform 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0.3s 0s, transform 0.3s 0s, -webkit-transform 0.3s 0s;
}

.cd-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 1024px) {
  .cd-overlay.is-visible {
    -webkit-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    transform: translateX(-260px);
  }
}
@media only screen and (max-width: 480px) {
  .cd-overlay.is-visible {
    -webkit-transform: translateX(-230px);
    -ms-transform: translateX(-230px);
    transform: translateX(-230px);
  }
}
@media only screen and (min-width: 1025px) {
  #g-wrap .cd-overlay {
    display: none;
  }
}
/* 架構 + 左右區塊 */
#g-wrap .cd-main-content {
  background-color: #fff;
}

#g-wrap .container.con-wrap {
  padding-top: 100px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#g-wrap #contact .container.con-wrap {
  padding-top: 80px;
}

#g-wrap .container.con-wrap .group {
  position: relative;
}

#g-wrap .pb-space {
  padding-bottom: 30px;
}

#g-wrap #r-wrap {
  padding-top: 45px;
}

@media only screen and (max-width: 1479px) {
  #g-wrap .container.con-wrap {
    width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  #g-wrap .container {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) {
  #g-wrap .container.con-wrap {
    padding-top: 180px;
  }
  #g-wrap .pb-space {
    padding-bottom: 50px;
  }
  #g-wrap #l-wrap {
    margin-bottom: 50px;
    float: left;
    width: 180px;
  }
  #g-wrap #r-wrap {
    padding-top: 0;
    float: right;
    width: calc(100% - 210px);
    min-height: 530px;
  }
}
@media only screen and (min-width: 1200px) {
  #g-wrap .container.con-wrap, #g-wrap .container.con-wrap-b {
    padding-left: 52px;
    padding-right: 52px;
  }
}
@media only screen and (min-width: 1280px) {
  /* 最大尺寸-2，1140+左右padding 52 */
  #g-wrap .container.con-wrap-b {
    width: 1244px;
  }
}
@media only screen and (min-width: 1480px) {
  /* 最大尺寸-1，1360+左右padding 52 */
  #g-wrap .container.con-wrap {
    width: 1464px;
  }
}
/* =====================================
   header
===================================== */
/* 架構 */
#header {
  height: 70px;
  border-bottom: #ddd solid 1px;
  background-color: #fff;
}

@media only screen and (min-width: 1025px) {
  #header {
    height: 90px;
  }
}
.nav-is-fixed #header {
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}

@media only screen and (max-width: 1024px) {
  .cd-main-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .cd-main-header {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .cd-main-content.nav-is-visible, .cd-main-header.nav-is-visible {
    -webkit-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    transform: translateX(-260px);
  }
}
@media only screen and (max-width: 480px) {
  .cd-main-content.nav-is-visible, .cd-main-header.nav-is-visible {
    -webkit-transform: translateX(-230px);
    -ms-transform: translateX(-230px);
    transform: translateX(-230px);
  }
}
/* logo */
#header .cd-logo {
  display: block;
  position: absolute;
  top: 13px;
  left: 15px;
  margin: 0;
  width: 110px;
  height: 45px;
  text-indent: -9999px;
  background: url(../images/logo.png) no-repeat 0 0;
  overflow: hidden;
  background-size: cover;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#header .cd-logo a {
  display: block;
  width: 100%;
  height: 100%;
}

#header .cd-header-buttons {
  position: absolute;
  display: inline-block;
  top: 12px;
  right: 15px;
}

#header .cd-header-buttons a, #header .cd-header-buttons span {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#header .cd-header-buttons > li {
  display: inline-block;
  margin-left: 15px;
  vertical-align: middle;
}

#header .cd-nav-trigger {
  display: block;
  position: relative;
  z-index: 3;
  width: 22px;
  height: 50px;
  text-indent: -9999px;
}

#header .cd-nav-trigger span {
  display: block;
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  opacity: 1;
  border-radius: 1px;
  background-color: #000;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

@media only screen and (min-width: 1025px) {
  #header .cd-logo {
    top: 16px;
    width: 160px;
    height: 65px;
  }
}
@media only screen and (min-width: 1200px) {
  #header .cd-logo {
    left: 52px;
  }
}
/* 架構 - topnav */
@media only screen and (min-width: 640px) {
  #header .cd-header-buttons > li {
    margin-left: 22px;
  }
}
@media only screen and (min-width: 1025px) {
  #header .cd-header-buttons {
    top: 38px;
  }
  #header .cd-header-buttons > li:last-child {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1200px) {
  #header .cd-header-buttons {
    right: 52px;
  }
}
/* 主選單按鈕 - topnav */
@media only screen and (min-width: 1025px) {
  #header .cd-nav-trigger {
    display: none;
  }
}
#nav-icon span:nth-child(1) {
  top: 17px;
}

#nav-icon span:nth-child(2) {
  top: 22px;
  width: 16px;
}

#nav-icon span:nth-child(3) {
  top: 27px;
  width: 16px;
}

#nav-icon span:nth-child(4) {
  top: 32px;
}

#nav-icon:hover span:nth-child(2), #nav-icon:hover span:nth-child(3) {
  width: 22px;
}

#nav-icon.nav-is-visible span:nth-child(1), #nav-icon.nav-is-visible span:nth-child(4) {
  top: 26px;
  width: 0%;
  left: 50%;
}

#nav-icon.nav-is-visible span:nth-child(2) {
  top: 25px;
  width: 22px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.nav-is-visible span:nth-child(3) {
  top: 25px;
  width: 22px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* 購物車連結 - topnav */
#header .cart-trigger {
  display: block;
  position: relative;
  z-index: 2;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-size: 15px;
  color: #8a8a8a;
  text-decoration: underline;
}

#header .cart-trigger span {
  display: inline-block;
  margin: -3px 7px 0 0;
  width: 18px;
  height: 21px;
  vertical-align: middle;
  opacity: 0.4;
  background: url(../images/btn_cart.gif) no-repeat 0 0;
  overflow: hidden;
  background-size: cover;
}

#header .cart-trigger:hover {
  color: #000;
}

#header .cart-trigger:hover span {
  opacity: 1;
}

#header .cd-search-trigger {
  display: block;
  position: relative;
  z-index: 3;
  margin-top: 2px;
  width: 20px;
  height: 20px;
}

#header .cd-search-trigger:before, #header .cd-search-trigger:after {
  display: block;
  content: "";
  position: absolute;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

#header .cd-search-trigger::before {
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: #000 solid 2px;
  opacity: 0.4;
  border-radius: 50%;
}

#header .cd-search-trigger::after {
  bottom: 4px;
  right: 2px;
  width: 6px;
  height: 2px;
  background: #000;
  opacity: 0.4;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#header .cd-search-trigger:hover::before, #header .cd-search-trigger:hover::after {
  opacity: 1;
}

#header .cd-search-trigger.search-is-visible::before, #header .cd-search-trigger.search-is-visible::after {
  opacity: 1;
}

/* 搜尋 - topnav */
#g-wrap .cd-search {
  position: fixed;
}

#g-wrap .left-x.cd-search {
  left: auto;
  right: 260px !important;
}

#g-wrap .cd-search {
  z-index: 2;
  top: -90px;
  left: 0;
  padding: 20px 15px;
  width: 100%;
  height: 85px;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: top 0.3s 0s, visibility 0s 0s;
  transition: top 0.3s 0s, visibility 0s 0s;
}

#g-wrap .cd-search.is-visible {
  top: 70px;
}

#g-wrap .cd-search input {
  padding: 0 0 0 10px;
  width: 100%;
  height: 45px;
  color: #000;
  line-height: 45px;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

#g-wrap .cd-search input:focus {
  outline: none;
}

#g-wrap .cd-search .btn-search {
  display: block;
  float: right;
  width: 50px;
  height: 45px;
  font-size: 1.5rem;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  border: none;
  background: none #666;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#g-wrap .cd-search .btn-search:hover {
  background-color: #999;
}

#g-wrap .cd-search input::-webkit-input-placeholder, #g-wrap .cd-search input::-moz-placeholder, #g-wrap .cd-search input:-ms-input-placeholde {
  font-size: 1.083333rem;
  font-size: 13px;
  font-weight: 300;
}

#g-wrap .cd-search .btn-close {
  position: relative;
  margin-left: 10px;
  float: right;
  width: 45px;
  height: 45px;
  cursor: pointer;
  overflow: hidden;
}

#g-wrap .cd-search .btn-close:before, #g-wrap .cd-search .btn-close:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 45px;
  opacity: 0.3;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#g-wrap .cd-search .btn-close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#g-wrap .cd-search .btn-close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#g-wrap .cd-search .btn-close:hover:before, #g-wrap .cd-search .btn-close:hover:after {
  opacity: 1;
}

#g-wrap .cd-primary-nav a, #g-wrap .cd-primary-nav ul a {
  text-decoration: none;
  font-weight: 300;
}

#g-wrap .cd-primary-nav > li > a.button {
  display: block;
  position: relative;
}

#g-wrap .cd-primary-nav > li > a.button:before {
  content: attr(data-hover);
  font-family: "微軟正黑體", "Microsoft JhengHei";
  letter-spacing: -1px;
}

@media only screen and (min-width: 1025px) {
  #g-wrap .cd-search.is-visible {
    top: 90px;
  }
  #g-wrap .cd-search input {
    display: block;
    font-size: 1.25rem;
    font-size: 15px;
  }
  #g-wrap .cd-search .btn-search {
    width: 90px;
  }
}
@media only screen and (min-width: 1200px) {
  #g-wrap .cd-search {
    padding: 20px 52px;
  }
  #g-wrap .cd-search .btn-close {
    position: absolute;
    top: 20px;
    right: 52px;
  }
  #g-wrap .cd-search form {
    margin: 0 auto;
    max-width: 930px;
  }
}
/* 主選單 */
@media only screen and (max-width: 1024px) {
  #g-wrap .cd-primary-nav {
    display: none;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    height: 100%;
    width: 260px;
    overflow: auto;
    background-color: #000;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
  }
  #g-wrap .cd-primary-nav.nav-is-visible {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  #g-wrap .cd-primary-nav li a {
    display: block;
    padding: 12px 15px;
    color: #fff;
    border-bottom: #222 solid 1px;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: #000;
    overflow: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
  #g-wrap .cd-primary-nav > li > a.button span {
    display: inline-block;
    color: #fff;
  }
  #g-wrap .cd-primary-nav > li > a.button:before {
    margin-right: 6px;
    font-weight: normal;
    letter-spacing: 0;
  }
  #g-wrap .cd-primary-nav > li.status {
    height: 70px;
    background-color: #1f1f1f;
    overflow: hidden;
  }
  #g-wrap .cd-primary-nav > li.status .data {
    padding: 30px 15px 15px;
    color: #ddd;
  }
  #g-wrap .cd-primary-nav > li.status span {
    padding: 0 5px;
    color: #84adcd;
  }
  #g-wrap .cd-primary-nav .follow .group {
    position: static;
    height: auto;
    background-color: #000;
    overflow: visible;
  }
  #g-wrap .cd-primary-nav .follow .item {
    padding: 8px 15px;
    font-size: 1rem;
    font-size: 12px;
    color: #888;
    font-weight: 300;
    border-bottom: #222 solid 1px;
    background-color: #1f1f1f;
  }
  #g-wrap .cd-primary-nav .follow .group li span {
    display: inline-block;
    margin: -2px 8px 0 0;
    width: 15px;
    font-size: 1.25rem;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    vertical-align: middle;
  }
  #g-wrap .cd-primary-nav .follow .group li:last-child {
    border-bottom: none;
  }
  #g-wrap .cd-primary-nav .follow .group li a {
    font-weight: 300;
  }
  #g-wrap .cd-primary-nav .is-hidden {
    display: none;
  }
  /* 主選單 */
  /* 次選單 */
}
@media only screen and (max-width: 480px) {
  #g-wrap .cd-primary-nav {
    width: 230px;
  }
  #g-wrap .cd-primary-nav ul {
    width: 230px;
  }
}
@media only screen and (min-width: 1025px) {
  /* 主選單 */
  #g-wrap .cd-primary-nav {
    padding: 38px 140px 0 0;
    float: right;
  }
  #g-wrap .cd-primary-nav > li {
    padding-bottom: 27px;
    float: left;
    width: auto;
    text-align: center;
  }
  #g-wrap .cd-primary-nav > li.hide-1025 {
    display: none;
  }
  #g-wrap .cd-primary-nav > li > a {
    display: block;
    padding: 0 12px;
    width: 100%;
    height: 25px;
    font-size: 1.25rem;
    font-size: 15px;
    color: #666;
  }
  #g-wrap .cd-primary-nav > li > a.selected {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  #g-wrap .cd-primary-nav > li > a.current {
    color: #000;
  }
  #g-wrap .cd-primary-nav > li.current > a:after {
    display: block;
    content: "";
    position: absolute;
    bottom: -27px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
  }
  #g-wrap .cd-primary-nav > li > a.button span {
    -webkit-transition: 0.1s;
    transition: 0.1s;
  }
  #g-wrap .cd-primary-nav > li > a.button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 1.25rem;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    opacity: 0;
    -webkit-transition: 0.3s, opacity 0.3s;
    transition: 0.3s, opacity 0.3s;
    -webkit-transform: translate(0, 130%);
    -ms-transform: translate(0, 130%);
    transform: translate(0, 130%);
  }
  #g-wrap .cd-primary-nav > li > a.selected span, #g-wrap .cd-primary-nav > li > a.current span {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  #g-wrap .cd-primary-nav > li:hover > a.button span {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  #g-wrap .cd-primary-nav > li:hover > a.button:before {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  #g-wrap .cd-primary-nav > li > a.selected:before, #g-wrap .cd-primary-nav > li > a.current:before {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  #g-wrap .cd-primary-nav > li.follow {
    display: none;
  }
  #g-wrap .cd-primary-nav .is-hidden {
    position: absolute;
    top: 90px;
    right: 0;
    padding: 32px 0 27px;
    width: 100vw;
    border-bottom: #ddd solid 1px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
  }
  #g-wrap .cd-primary-nav > li:hover > .is-hidden {
    opacity: 1;
    visibility: visible;
  }
  #g-wrap .cd-primary-nav .cd-secondary-nav {
    position: static;
    width: 100%;
    text-align: center;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  #g-wrap .cd-primary-nav .cd-secondary-nav > li {
    display: inline-block;
    position: relative;
    margin-right: 0;
    padding: 0 30px;
    float: none;
    width: auto;
    height: auto;
    border: none;
    overflow: inherit;
  }
  #g-wrap .cd-primary-nav .cd-secondary-nav > li:after {
    display: block;
    content: "";
    position: absolute;
    top: 7px;
    right: 0;
    width: 1px;
    height: 16px;
    background-color: #ededed;
  }
  #g-wrap .cd-primary-nav .cd-secondary-nav > li:last-child:after {
    display: none;
  }
  #g-wrap .cd-primary-nav .cd-secondary-nav > li > a {
    margin: 0;
    font-size: 1.166666rem;
    font-size: 14px;
    color: #000;
    font-weight: normal;
    text-decoration: none;
  }
  #g-wrap .cd-primary-nav .cd-secondary-nav a {
    padding: 0;
    line-height: 30px;
  }
  #g-wrap .cd-primary-nav .cd-secondary-nav a:hover {
    color: #777;
  }
  #g-wrap .cd-primary-nav .cd-secondary-nav > li > a:hover {
    color: #777;
  }
  /* 次選單 */
}
@media only screen and (min-width: 1280px) {
  /* 主選單 */
  #g-wrap .cd-primary-nav > li {
    width: 100px;
  }
  #g-wrap .cd-primary-nav {
    padding-right: 180px;
  }
}
/* =====================================
   footer
===================================== */
.is-index #footer {
  position: fixed !important;
  bottom: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  display: none;
}

.is-index #footer.is-shown-index {
  display: block;
  -webkit-animation: fadeIn 0.5s both;
  animation: fadeIn 0.5s both;
}

#footer {
  position: relative;
  padding: 20px 0;
  background-color: #555;
}

#footer h2 {
  margin: 5px 0 8px 0;
  font-size: 1.166666rem;
  font-size: 14px;
  color: #fff;
  font-weight: 300;
}

#footer .h2 {
  margin: 0 0 10px 0;
}

#footer .container {
  font-size: 0;
}

#footer .groups {
  font-size: 13px;
  border-left: #777 solid 1px;
  padding: 0 25px;
  color: #aaaaaa;
  display: inline-block;
  vertical-align: top;
  height: 140px;
}

#footer .groups:last-child {
  padding-right: 0;
  /*height: auto;*/
}

#footer .groups .add {
  padding-bottom: 6px;
}

#footer .groups ul {
  margin: 0;
  text-align: left;
  color: #dddddd;
}

#footer .groups ul li {
  display: inline-block;
  margin: 0 3px;
}

#footer .groups ul li a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#footer .groups ul li span {
  display: block;
  width: 36px;
  height: 36px;
  font-size: 1.416666rem;
  font-size: 17px;
  color: #fff;
  text-align: center;
  line-height: 38px;
  border: #888 solid 1px;
  border-radius: 38px;
}

#footer .groups ul li a:hover span {
  color: #000;
  border: #fff solid 1px;
  background-color: #fff;
}

#footer .groups .links ul {
  margin: 0 0 10px 0;
}

#footer .groups .links ul li {
  margin: 0;
  padding: 0 10px;
  background: url(../images/footer_line.gif) no-repeat right center;
}

#footer .groups .links ul li:first-child {
  padding-left: 0;
}

#footer .groups .links ul li:last-child {
  padding-right: 0;
  background: none;
}

#footer .groups a {
  font-size: 1.083333rem;
  color: #aaaaaa;
  font-size: 13px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#footer .groups a:hover {
  color: #bbb;
  text-decoration: underline;
}

#footer .groups .links p {
  margin: 5px 0 0 0;
  color: #aaaaaa;
  font-weight: 300;
}

#footer .epaper {
  font-size: 14px;
  margin-right: 30px;
  width: calc(28% - 30px);
  display: inline-block;
  vertical-align: top;
}

#footer .epaper .logo {
  float: left;
  margin: 0 28px 0 0;
  width: 30px;
  height: 68px;
  background: url(../images/footer_logo.png) no-repeat 0 0;
  overflow: hidden;
  background-size: cover;
}

#footer .epaper .form {
  overflow: hidden;
}

#footer .epaper h2 span {
  padding-left: 5px;
  font-size: 1.083333rem;
  font-size: 13px;
  font-weight: normal;
}

#footer .epaper input, #footer .epaper button {
  display: block;
  height: 35px;
  line-height: 35px;
  border: none;
  border-radius: 0;
  background: none;
}

#footer .epaper input {
  padding: 0 10px;
  width: 100%;
  background-color: #eee;
}

#footer .epaper button {
  float: right;
  width: 60px;
  font-size: 1.083333rem;
  font-size: 13px;
  color: #fff;
  text-align: center;
  background-color: #000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#footer .epaper button:hover {
  background-color: #222;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #footer .container {
    width: 100%;
  }
  #footer .epaper {
    width: calc(40% - 30px);
  }
  #footer .groups:last-child {
    width: 100%;
    display: block;
    margin-top: 30px;
    border: 0;
    padding: 0;
    height: auto;
  }
  #footer .groups:last-child p {
    display: inline-block;
  }
  #footer .groups .links {
    display: inline-block;
    margin-right: 20px;
    vertical-align: top;
  }
}
@media only screen and (max-width: 991px) {
  #footer .epaper {
    width: 90%;
    margin: 0 0 25px 0;
  }
  #footer .epaper .logo {
    margin: 0 20px 0 0;
  }
  #footer .groups {
    padding: 0 15px;
  }
  #footer .groups:nth-child(2) {
    border-left: 0;
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  #footer .groups:last-child {
    width: 100%;
    display: block;
    margin-top: 30px;
    border: 0;
    padding: 0;
  }
  #footer .groups:last-child p {
    display: inline-block;
  }
  #footer .groups .links {
    display: inline-block;
    margin-right: 20px;
    vertical-align: top;
  }
}
@media only screen and (max-width: 640px) {
  #footer .epaper {
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #777;
  }
  #footer .groups {
    display: block;
    width: 100%;
    margin: 0;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid #777;
    height: auto;
  }
  #footer .groups:last-child {
    margin: 0 0 0 0;
    padding: 15px 0;
  }
}
/* 按鈕-top */
.scroll-top {
  display: none;
  position: fixed;
  z-index: 2;
  bottom: 40px;
  right: 33px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: url(../images/btn_top.png) no-repeat 0 0;
  overflow: hidden;
  background-size: cover;
}

@media only screen and (min-width: 1024px) {
  .scroll-top {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .scroll-top {
    bottom: 20px;
    right: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .scroll-top {
    bottom: 25px;
    right: 15px;
  }
}
/* =====================================
   內頁 - 共用樣式
===================================== */
/* 大標 - 首頁 + 內頁 */
.headline {
  margin: 0;
  font-size: 2.333333rem;
  font-size: 28px;
  color: #333;
  font-weight: 300;
}

#nav-wrap.about .headline,
#nav-wrap.page .headline {
  font-size: 3.166666rem;
  font-size: 38px;
  color: #fff;
  -webkit-text-shadow: 1px 1px rgba(0, 0, 0, 0.25);
  -moz-text-shadow: 1px 1px rgba(0, 0, 0, 0.25);
  text-shadow: 1px 1px rgba(0, 0, 0, 0.25);
}

#nav-wrap.about .headline:before,
#nav-wrap.page .headline:before {
  display: block;
  content: "";
  margin: 0 auto 15px;
  width: 1px;
  height: 50px;
  background-color: #fff;
}

.catalogs-box {
  position: relative;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.catalogs-box .picOver {
  display: block;
  text-decoration: none;
}

.catalogs-box .pic {
  position: relative;
  overflow: hidden;
}

.catalogs-box .pic:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
}

.catalogs-box .picOver:hover .pic:before {
  opacity: 1;
}

.catalogs-box .pic img {
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -moz-transition: transform 0.4s;
  -webkit-transition: transform 0.4s;
}

.catalogs-box .picOver:hover .pic img {
  -ms-transform: scale(1.06);
  transform: scale(1.06);
  -moz-transform: scale(1.06);
  -webkit-transform: scale(1.06);
}

.catalogs-box .pic i {
  display: block;
  position: absolute;
  z-index: 2;
  width: 100%;
  line-height: 28px;
  font-size: 20px;
  font-style: normal;
  font-weight: 100;
  color: #fff;
  text-align: center;
  top: 50%;
  left: 0;
  margin-top: -14px;
  opacity: 0;
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, transform 0.4s;
  transition: opacity 0.4s, transform 0.4s, -webkit-transform 0.4s;
  -moz-transition: opacity 0.4s, transform 0.4s;
  -webkit-transition: opacity 0.4s, transform 0.4s;
}

.catalogs-box .picOver:hover .pic i {
  opacity: 1;
  -ms-transform: scale(1);
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
}

.catalogs-box .pic i:after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 1px;
  background: #fff;
  left: 50%;
  bottom: 0;
  margin-left: -10px;
}

.catalogs-box .txt {
  display: block;
  line-height: 26px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-top: 4px;
}

/* 滑過動態效果 - 圖片 + 文字 */
.picOver {
  float: left;
  width: 23%;
  margin: 0 1% 2%;
  padding: 10px;
  overflow: hidden;
  border: #ededed solid 1px;
}

.picOver img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.picOver:hover img {
  -webkit-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.07);
}

.picOver .pic {
  position: relative;
}

.picOver a.txt {
  font-size: 18px;
  line-height: 22px;
  display: block;
  margin: 0;
  padding: 12px 10px;
  color: #000;
  height: 80px;
}

.picOver a.txt:hover {
  text-decoration: none;
}

.picOver a.view {
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-opacity: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}

.picOver .amin {
  -moz-opacity: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}

.picOver:hover a.view {
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=1);
}

.picOver:hover .amin {
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=1);
  position: relative;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  top: 10px;
  -webkit-animation: move-catalogs 0.5s;
  animation: move-catalogs 0.5s;
}

@-webkit-keyframes move-catalogs {
  from {
    top: -20px;
  }
  to {
    top: 10px;
  }
}
@keyframes move-catalogs {
  from {
    top: -20px;
  }
  to {
    top: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .headline {
    text-align: center;
  }
}
@media only screen and (min-width: 1025px) {
  #nav-wrap.about .headline, #nav-wrap.page .headline, #nav-wrap.catalogs .headline {
    text-align: center;
  }
}
/* 內頁選單 */
#nav-wrap .btn-cate {
  display: none;
}

@media only screen and (max-width: 1024px) {
  /* 共用 */
  #nav-wrap .btn-cate {
    display: block;
    position: relative;
    z-index: 1;
    margin: 15px auto 0;
    padding: 10px 15px;
    width: 50%;
    font-size: 1.25rem;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    border: #333 solid 1px;
    background-color: #000;
  }
  #nav-wrap .btn-cate:after {
    display: block;
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    width: 0;
    height: 0;
    vertical-align: middle;
    border-color: transparent;
    border-style: solid;
    border-width: 4px;
    border-bottom-width: 0;
    border-top-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  #nav-wrap .icon-close:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  #nav-wrap .nav-category {
    display: none;
    position: relative;
    margin: 10px auto 0;
    width: 50%;
    border: #ddd solid 1px;
    background-color: #fff;
  }
  #nav-wrap .menu-main li a {
    display: block;
    padding: 0 15px;
    color: #666;
    text-decoration: none;
    line-height: 35px;
  }
  #nav-wrap .menu-main li.spec > a {
    color: #c80000 !important;
    font-weight: bold;
  }
  #nav-wrap .menu-main li a:hover {
    color: #000;
  }
  #nav-wrap .menu-main li.current a {
    background-color: #f2f2f2;
  }
  #nav-wrap .menu-main li.current a h3 {
    margin: 0;
    font-size: 1.166666rem;
    font-size: 14px;
    color: #000;
    line-height: 35px;
  }
  #nav-wrap.about,
  #nav-wrap.page {
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 75px;
  }
  #nav-wrap.about .btn-cate {
    margin-top: 20px;
  }
  #nav-wrap.catalogs {
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 75px;
  }
  /* 選單 */
  /* about */
  /* about */
}
@media only screen and (max-width: 640px) {
  #nav-wrap .btn-cate, #nav-wrap .nav-category {
    width: 100%;
  }
  #nav-wrap.about,
  #nav-wrap.page {
    padding: 0 15px;
    top: 20px;
  }
  #nav-wrap.about .headline,
  #nav-wrap.page .headline {
    font-size: 24px;
  }
  .picOver {
    width: 48%;
  }
}
@media only screen and (min-width: 1025px) {
  /* 共用 */
  #nav-wrap .nav-category {
    display: block !important;
    margin-top: 30px;
  }
  #nav-wrap .menu-main li > a {
    display: block;
    font-size: 1.25rem;
    font-size: 15px;
    color: #666;
    text-decoration: none;
    line-height: 22px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  #nav-wrap .menu-main li > a:hover {
    color: #000;
  }
  #nav-wrap .menu-main li.current > a h3 {
    display: inline-block;
    margin: 0;
    font-size: 1.25rem;
    font-size: 15px;
    color: #000;
  }
  /* 左邊固定浮動 */
  #l-wrap.left {
    position: absolute;
    top: 180px;
    margin-bottom: 30px;
  }
  #nav-wrap.nav-style .menu-main li > a {
    position: relative;
    padding: 5px 0 5px 15px;
  }
  #nav-wrap.nav-style .menu-main li.current > a:before {
    display: block;
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    padding-left: 0;
    width: 10px;
    height: 1px;
    background-color: #000;
  }
  #nav-wrap.nav-style .menu-main li.current > a h3:after {
    display: inline-block;
    content: "";
    margin: -1px 0 0 3px;
    width: 50px;
    height: 1px;
    vertical-align: middle;
    background-color: #000;
  }
  #nav-wrap.catalogs {
    position: absolute;
    z-index: 2;
    bottom: 50px;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  #nav-wrap.about,
  #nav-wrap.page {
    position: absolute;
    z-index: 2;
    bottom: -50px;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  #nav-wrap.about .nav-category {
    margin-top: 45px;
  }
  #nav-wrap.about .menu-main {
    margin: 0 auto;
    width: 100%;
    height: 45px;
    text-align: center;
    border-bottom: #ededed solid 1px;
  }
  #nav-wrap.about .menu-main li {
    display: inline-block;
    padding: 0 10px;
  }
  #nav-wrap.about .menu-main li > a {
    display: block;
    position: relative;
    padding: 0 10px;
    height: 45px;
    line-height: 45px;
  }
  #nav-wrap.about .menu-main li.current > a {
    color: #000;
    border-bottom: #000 solid 1px;
  }
  #nav-wrap.about .menu-main li.current > a h3 {
    color: #000;
  }
  #nav-wrap.page {
    bottom: 45px;
  }
}
@media only screen and (min-width: 1200px) {
  #nav-wrap.about .nav-category {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 1366px) {
  #nav-wrap.about .nav-category {
    margin-top: 50px;
  }
}
/* 無資訊 */
.no-data {
  padding: 65px 0;
  font-size: 1.5rem;
  font-size: 18px;
  color: #777;
  text-align: center;
}

/* more按鈕樣式 */
.more {
  display: block;
  margin-top: 15px;
  color: #000;
  font-weight: 300;
}

.more:hover {
  color: #000;
  text-decoration: none;
}

.more span {
  padding-bottom: 3px;
  border-bottom: #888 solid 1px;
}

/* back按鈕樣式 */
.btn-back {
  display: block;
  margin: 40px auto 0;
  max-width: 200px;
  font-size: 1.25rem;
  font-size: 15px;
  color: #000;
  font-weight: 300;
  text-align: center;
  line-height: 45px;
  border: #ebebeb solid 1px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-back:hover {
  color: #fff;
  text-decoration: none;
  background-color: #444;
}

/* 按鈕 */
.btn-style {
  display: block;
  width: 100%;
  font-size: 1.25rem;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  line-height: 32px;
  border: 0;
  background: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* 按鈕顏色樣式 */
.black {
  color: #fff;
  border: #000 solid 1px;
  background-color: #000;
}

.black:hover, .black:focus {
  color: #fff;
  text-decoration: none;
  border: #444 solid 1px;
  background-color: #444;
}

.white {
  color: #000;
  border: #000 solid 1px;
  background-color: #fff;
}

.white:hover, .white:focus {
  color: #fff;
  text-decoration: none;
  border: #444 solid 1px;
  background-color: #444;
}

/* share */
.share span {
  vertical-align: middle;
}

.share ul {
  vertical-align: middle;
}

.share ul li {
  float: left;
}

.share ul li a {
  display: block;
  width: 38px;
  height: 38px;
  color: #757575;
  text-decoration: none;
  text-align: center;
  line-height: 38px;
  border: #eaeaea solid 1px;
  background-color: #fff;
  border-radius: 38px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.share ul li a:hover {
  color: #fff;
}

.share ul li span {
  display: block;
}

.share ul li.fb span {
  font-size: 1.5rem;
  font-size: 18px;
  line-height: 38px;
}

.share ul li.line span {
  width: 100%;
  height: 100%;
  line-height: 38px;
  background: url(../images/icon_line2.png) no-repeat 0 0;
  overflow: hidden;
  background-size: cover;
}

.share ul li.fb a:hover {
  border-color: #3b5998;
  background-color: #3b5998;
}

.share ul li.line a:hover {
  border-color: #03c302;
  background-color: #03c302;
}

.share ul li.line a:hover span {
  background: url(../images/icon_line2.png) no-repeat 0 -35px;
  background-size: cover;
}

.share > span {
  font-size: 1.083333rem;
  font-size: 13px;
  color: #666;
  font-weight: 300;
}

/* =====================================
   表單 - 共用樣式
===================================== */
.form-group {
  margin-bottom: 10px;
}

.form-group .ti-label {
  margin-bottom: 0;
  width: 100%;
  color: #000;
  font-weight: normal;
  line-height: 25px;
}

.form-group .ti-label span {
  display: inline-block;
  width: 12px;
  font-size: 1.083333rem;
  font-size: 13px;
  vertical-align: middle;
}

.input-txt {
  position: relative;
  overflow: hidden;
}

.input-txt .name, .input-txt .add {
  position: relative;
  overflow: hidden;
}

.input-txt .input-style, .input-txt textarea {
  display: block;
  padding: 10px;
  width: 100%;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  background: none #f0f0f0;
}

.input-txt .input-style {
  padding: 0 10px;
  height: 34px;
  line-height: 35px;
}

.input-txt .input-style:focus {
  border: #333 solid 1px;
}

.input-txt .message-style:focus {
  border: #333 solid 1px;
}

.code-img {
  margin-left: 4px;
  float: right;
  vertical-align: top;
}

.code-img button {
  display: inline-block;
  width: 34px;
  vertical-align: middle;
}

/*.code-img img {
  vertical-align: middle;
}*/
/* 性別 - radio樣式 */
.sex {
  float: right;
}

.radiobox input {
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  opacity: 0;
}

label.radio {
  display: inline-block;
  margin: 0 0 0 5px;
  padding: 0;
  width: 32px;
  height: 32px;
  text-align: center;
}

label.radio input {
  display: none;
}

label.radio input + span {
  display: block;
  position: relative;
  width: 34px;
  height: 34px;
  font-size: 1.083333rem;
  font-size: 13px;
  color: #666;
  font-weight: normal;
  text-align: center;
  cursor: pointer;
  line-height: 34px;
  background-color: #f0f0f0;
}

.sex.radiobox > .input-style {
  background-color: #f0f0f0;
  color: #666;
  display: block;
  font-size: 1.083333rem;
  font-weight: normal;
  height: 34px;
  line-height: 34px;
  margin: 0 0 0 5px;
  position: relative;
  text-align: center;
  width: 34px;
}

/* 發票資訊 */
label.radio input + span:hover {
  color: #000;
}

label.radio input:checked + span {
  color: #fff;
  border-color: #333;
  background-color: #333;
}

.radio {
  margin-left: 20px;
  font-size: 15px;
  font-weight: 700;
}

.radio > label {
  font-size: 15px;
  font-weight: 700;
}

.invc {
  /*background: #e3e3e3;*/
  padding: 0px 15px;
  display: none;
}

.form-group .f-half {
  width: 48%;
  padding: 8px 10px;
  vertical-align: top;
}

.form-group .f-half.f-left {
  float: left;
}

.form-group .f-half.f-right {
  float: right;
  background: #e3e3e3;
}

.form-group .rows .tit {
  color: #444;
  margin: 0 0 5px 0;
  padding: 10px 0;
  display: inline-block;
}

.form-group .input-box {
  border: 1px solid #ddd;
  height: 45px;
  line-height: 45px;
  padding: 0 10px;
  width: 100%;
}

.form-group .input-box.h35 {
  height: 35px;
  line-height: 35px;
}

.form-group .input-box.wa {
  width: auto;
  max-width: 100%;
}

.tax_note {
  font-size: 15px;
  color: #bf5267;
  padding-top: 10px;
}

.invoceBox {
  color: #d1183b;
  padding-left: 10px;
}

.xs-block {
  display: none;
}

@media (max-width: 991px) {
  .form-group .f-half {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .invoceBox {
    display: block;
    padding-left: 20px;
  }
}
@media (max-width: 479px) {
  .xs-block {
    display: block;
  }
}
/* 下拉選單 */
.form-group .city .selectBox {
  display: inline-block;
}

.selectBox {
  position: relative;
  z-index: 1;
  background-color: #f0f0f0;
}

.selectBox select {
  padding: 0 20px 0 10px;
  width: 100%;
  height: 34px;
  color: #000;
  outline: none;
  line-height: 36px;
  border: none;
  border-radius: 0;
  background: transparent;
  text-overflow: "";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.selectBox select::-ms-expand {
  /* For IE10 */
  display: none;
}

.selectBox:before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  border-right: #333 1px solid;
  border-bottom: #333 1px solid;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.selectBox:hover {
  border-color: #333;
}

/* 表單按鈕 */
#btn-group ul, .btn-group ul {
  text-align: center;
}

@media only screen and (max-width: 414px) {
  #btn-group ul li, .btn-group ul li {
    float: left;
    width: 50%;
  }
}
@media only screen and (min-width: 415px) {
  #btn-group ul li, .btn-group ul li {
    display: inline-block;
    margin: 0 5px;
    width: 135px;
  }
}
/* 提醒 */
.remind {
  display: block;
  background: rgba(190, 0, 0, 0.7);
  color: #fff;
  font-size: 13px;
  padding: 0 10px;
  width: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.remind.open {
  width: 100%;
  height: auto;
  overflow: inherit;
}

/* 其他 */
.w24p {
  width: 24%;
}

.w25p {
  width: 25%;
}

.w50 {
  width: 50px;
}

.w50p {
  width: 49%;
}

.w75 {
  width: 75px;
}

.w135 {
  width: 135px;
}

.center-btn {
  width: 200px;
  margin: 0 auto;
}

/* ----------------表格初始化---------------- */
table.tab-set {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

table.tab-set td {
  padding: 0;
}

/* =====================================
   內頁 banner(單張，不輪播) - 共用
===================================== */
.ban {
  position: relative;
  z-index: 1;
  margin-top: 70px;
  padding-bottom: 5px;
  width: 100%;
}

.ban .ban-slick {
  max-height: 340px;
  overflow: hidden;
}

.ban .slick-slider {
  margin-bottom: 0;
}

.ban .ban-slick .slick-slide span {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.ban .ban-slick .slick-slide img {
  display: block;
  width: auto;
}

@media only screen and (max-width: 743px) {
  .ban .ban-slick .slick-slide img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 140px !important;
  }
}
.ban .bg-color {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 10px);
  height: 100% \0 ;
  background-color: rgba(0, 0, 0, 0.5);
}

/* 遮罩 - 詳細頁用 */
@media only screen and (max-width: 1024px) {
  .ban .bg-color {
    display: none;
  }
  .ban .ban-slick .slick-slide span {
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .ban .ban-slick .slick-slide img {
    height: 320px;
  }
  .ban.about .ban-slick .slick-slide img, .ban.cart .ban-slick .slick-slide img {
    height: 280px;
  }
}
@media only screen and (max-width: 640px) {
  .ban .ban-slick .slick-slide img, .ban.about .ban-slick .slick-slide img, .ban.cart .ban-slick .slick-slide img {
    height: 200px;
  }
}
@media only screen and (min-width: 1025px) {
  .ban .ban-slick .slick-slide img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .ban {
    margin-top: 90px;
  }
}
@media only screen and (min-width: 1920px) {
  .ban .bg-color {
    height: calc(100% - 5px);
    height: 100% \0 ;
  }
}
/* ==============================================================================
   首頁產品 + 品牌介紹詳細頁 + 設計師介紹詳細頁 + 產品詳細頁 - slick輪播 共用
============================================================================== */
/* 樣式 */
.related {
  clear: both;
  padding: 32px 0 60px;
  border-top: #ededed solid 1px;
}

.related h3 {
  position: relative;
  margin: 0 0 32px 0;
}

.related h3 span {
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  width: 30px;
  height: 30px;
  background: url(../images/btn_line.png) no-repeat 0 0;
  overflow: hidden;
  background-size: cover;
}

.related .goods-slick {
  position: relative;
  margin: 0 -10px;
}

@media only screen and (max-width: 768px) {
  .related {
    padding-bottom: 10px;
  }
  .related h3 {
    text-align: left;
  }
}
.goods-list .box {
  padding: 0 10px;
}

.goods-list .box .pic {
  background-color: #f5f5f5;
}

.goods-list .box h3, .goods-list .box h4 {
  margin: 15px 0 0 5px;
  font-size: 1.333333rem;
  font-size: 16px;
  color: #333;
}

.goods-list .box h3 a, .goods-list .box h4 a {
  color: #333;
  text-decoration: none;
}

.goods-list .box h3 small, .goods-list .box h4 small {
  display: block;
  padding-top: 3px;
  font-size: 1.083333rem;
  font-size: 13px;
  color: #999;
}

/* 輪播按鈕 */
.goods-slick .slick-prev, .goods-slick .slick-next {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0);
}

.goods-slick .slick-prev {
  top: -57px;
  right: 45px !important;
  left: auto;
}

.goods-slick .slick-next {
  top: -45px;
  right: 12px;
}

.goods-slick .slick-prev:before, .goods-slick .slick-prev:after {
  display: block;
  content: "";
  position: absolute;
  top: 14px;
  width: 9px;
  height: 9px;
  transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

.goods-slick .slick-next:before, .goods-slick .slick-next:after {
  display: block;
  content: "";
  position: absolute;
  top: 14px;
  width: 9px;
  height: 9px;
  transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

.goods-slick .slick-prev:before, .goods-slick .slick-prev:after {
  border-left: 1px solid #666;
  border-bottom: 1px solid #666;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.goods-slick .slick-next:before, .goods-slick .slick-next:after {
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.goods-slick .slick-prev:before {
  left: 15px;
}

.goods-slick .slick-prev:after {
  left: 21px;
  opacity: 0;
}

.goods-slick .slick-prev:hover:before {
  left: 9px;
  opacity: 0;
}

.goods-slick .slick-prev:hover:after {
  left: 15px;
  opacity: 1;
}

.goods-slick .slick-next:before {
  right: 15px;
}

.goods-slick .slick-next:after {
  right: 21px;
  opacity: 0;
}

.goods-slick .slick-next:hover:before {
  right: 9px;
  opacity: 0;
}

.goods-slick .slick-next:hover:after {
  right: 15px;
  opacity: 1;
}

/* =====================================
   首頁
===================================== */
/* 大架構 */
.i-wrap .p-breadcrumb {
  display: none;
}

#index .area {
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  background-color: #fff;
}

#index .item-wrap {
  position: relative;
  z-index: 2;
  background-color: #fff;
}

#index .headline {
  margin: 0;
  padding-bottom: 20px;
  font-family: "Times New Roman", serif;
  font-size: 2.5rem;
  font-size: 30px;
  text-align: center;
}

#index .headline:before {
  display: block;
  content: "";
  margin: 0 auto 15px;
  width: 1px;
  height: 40px;
  background-color: #aaa;
}

#index #i-brand.fp-auto-height .fp-tableCell {
  padding-top: 0px;
  padding-bottom: 180px;
}

@media only screen and (min-width: 1200px) {
  #index .fp-auto-height .fp-tableCell {
    padding-top: 90px;
  }
  #index .area.m-top {
    margin-top: -125px;
  }
}
@media only screen and (min-width: 1730px) {
  #index .area {
    padding: 0;
    max-width: 1680px;
  }
}
/* 大標題 */
@media only screen and (min-width: 640px) {
  #index .headline {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 769px) {
  #index .headline {
    padding-top: 20px;
  }
}
/* 背景色 */
#i-intro, #i-news, #video, #leaflet, #prod, #index #brand, #desinger {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}

/* scroll */
.scroll {
  position: absolute;
  z-index: 11;
  bottom: 60px;
  left: 50%;
  margin-left: -28px;
  width: 56px;
  height: 48px;
  color: #fff;
  font-size: 1.083333rem;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
}

.scroll span {
  display: block;
  position: relative;
  margin: 5px auto 0;
  width: 20px;
  height: 12px;
  background: url(../images/scrolldown.png) no-repeat 0 0;
  -webkit-animation: mouse-act 1.5s infinite;
  animation: mouse-act 1.5s infinite;
}

@-webkit-keyframes mouse-act {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(5px) scale(1);
    transform: translateY(5px) scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px) scale(1);
    transform: translateY(10px) scale(1);
  }
}
@keyframes mouse-act {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(5px) scale(1);
    -ms-transform: translateY(5px) scale(1);
    transform: translateY(5px) scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px) scale(1);
    -ms-transform: translateY(10px) scale(1);
    transform: translateY(10px) scale(1);
  }
}
@media only screen and (max-width: 1366px) {
  .scroll {
    display: none;
  }
}
/* 大輪播 */
#i-ban {
  height: auto;
  display: block !important;
  overflow: hidden;
}

#i-ban .ban-slick {
  position: relative;
  overflow: hidden;
}

#i-ban .slick-slider {
  margin-bottom: 0;
}

#i-ban .ban-slick .slick-slide {
  overflow: hidden;
}

#i-ban .ban-slick .slick-slide a {
  display: block;
  position: relative;
  top: 0;
}

#i-ban .ban-slick .slick-slide a img {
  display: block;
  max-width: inherit;
  width: auto;
  vertical-align: top;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#i-ban .ban-slick .word {
  color: #000;
  opacity: 0;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

#i-ban .ban-slick .word .ti {
  font-size: 2rem;
  font-size: 24px;
  font-weight: 300;
  line-height: 45px;
  /*word-wrap: break-word;
                                word-break: break-all;*/
}

#i-ban .ban-slick .word .ti:after {
  display: block;
  content: "";
  margin: 0 0 5px 4px;
  width: 45px;
  height: 1px;
  background-color: #666;
}

#i-ban .ban-slick .word .subtitle {
  margin-left: 5px;
  font-size: 1.666666rem;
  font-size: 20px;
  font-weight: 300;
}

#i-ban .ban-slick .word p {
  margin: 0 0 0 5px;
  font-size: 1.333333rem;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}

#i-ban .ban-slick .word.active {
  opacity: 1;
}

#i-ban .slick-arrow {
  z-index: 2;
  width: 20px;
  height: 32px;
  overflow: hidden;
}

#i-ban .slick-prev {
  left: 15px;
  background: url(../images/btn_aw.png) no-repeat 0 0;
}

#i-ban .slick-next {
  right: 15px;
  background: url(../images/btn_aw.png) no-repeat 0 -32px;
}

#i-ban .slick-prev:before, #i-ban .slick-next:before {
  content: "";
}

@media only screen and (max-width: 1680px) {
  #i-ban {
    margin-top: 90px;
  }
}
@media only screen and (max-width: 1024px) {
  #i-ban {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 1023px) {
  #i-ban .ban-slick .word {
    position: relative;
    left: -10px;
    padding: 0 10px;
    margin-top: 5px;
    width: 100%;
  }
  #i-ban .ban-slick .word.active {
    left: 0;
  }
  #i-ban .slick-arrow {
    top: 38%;
  }
}
@media only screen and (max-width: 767px) {
  #i-ban {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 639px) {
  #i-ban .ban-slick .slick-slide a {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  #i-ban .ban-slick .slick-slide a img {
    height: 350px;
  }
}
@media only screen and (max-width: 480px) {
  #i-ban .ban-slick .slick-slide a img {
    height: 240px;
  }
  #i-ban .slick-arrow {
    top: 30%;
  }
}
@media only screen and (min-width: 640px) {
  #i-ban .ban-slick .slick-slide a {
    left: 0;
  }
  #i-ban .ban-slick .slick-slide a img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) {
  #i-ban .ban-slick .word .ti {
    font-size: 3.166666rem;
    font-size: 38px;
    line-height: 55px;
    white-space: nowrap;
  }
  #i-ban .ban-slick .word .subtitle {
    font-size: 2rem;
    font-size: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  /* #i-ban {
    position: fixed;
    z-index: 0;
    top: 0;
    width: 100%;
  } */
  #i-ban .ban-slick .word {
    position: absolute;
    z-index: 10;
    top: 42%;
    left: 12%;
    width: 410px;
    color: #fff;
  }
  #i-ban .ban-slick .word .ti {
    font-size: 4.166666rem;
    font-size: 50px;
    font-weight: 100;
    line-height: 90px;
  }
  #i-ban .ban-slick .word .subtitle {
    font-size: 2.5rem;
    font-size: 30px;
    font-weight: 100;
  }
  #i-ban .ban-slick .word p {
    font-weight: 100;
  }
  #i-ban .ban-slick .word.active {
    left: 15%;
  }
  #i-ban .slick-prev {
    left: 30px;
  }
  #i-ban .slick-next {
    right: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  #i-ban .ban-slick .word .ti {
    font-size: 8.333333rem;
    font-size: 100px;
    line-height: 105px;
  }
}
@media only screen and (min-width: 1680px) {
  #i-ban .ban-slick {
    height: 100%;
  }
  #i-ban .ban-slick .slick-slide {
    height: 100vh;
  }
}
/* 介紹 */
#i-intro {
  top: 0;
  padding: 20px 0 30px;
  width: 100%;
  overflow: hidden;
}

#i-intro .area {
  position: relative;
  height: 310px;
  overflow: hidden;
}

#i-intro .pic {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 310px;
  background: url(../images/intro_bg.jpg) no-repeat center 0;
  overflow: hidden;
  background-size: cover;
}

#i-intro .txt {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  padding-top: 2px;
  width: 270px;
  color: #fff;
  word-break: normal;
  overflow: hidden;
}

#i-intro .txt .subtitle {
  margin: 0;
  margin-left: 5px;
  font-size: 1.666666rem;
  font-size: 20px;
  font-weight: 100;
  line-height: 20px;
  -webkit-text-shadow: 1px 1px rgba(0, 0, 0, 0.15);
  -moz-text-shadow: 1px 1px rgba(0, 0, 0, 0.15);
  text-shadow: 1px 1px rgba(0, 0, 0, 0.15);
}

#i-intro .txt .ti {
  margin: 0;
  font-size: 4.166666rem;
  font-size: 50px;
  font-weight: 100;
  line-height: 65px;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-text-shadow: 1px 1px rgba(0, 0, 0, 0.15);
  -moz-text-shadow: 1px 1px rgba(0, 0, 0, 0.15);
  text-shadow: 1px 1px rgba(0, 0, 0, 0.15);
}

#i-intro .txt .ti:after {
  display: block;
  content: "";
  margin: 5px 0 5px 6px;
  width: 120px;
  height: 1px;
  background-color: #fff;
}

#i-intro .txt p {
  margin: 15px 0 0 5px;
  font-size: 1.25rem;
  font-size: 15px;
  font-weight: 100;
  line-height: 22px;
}

@media only screen and (min-width: 570px) {
  #i-intro .txt {
    bottom: 40px;
    left: 40px;
    width: 430px;
  }
  #i-intro .txt .ti {
    font-size: 5.146666rem;
    font-size: 85px;
    line-height: 90px;
  }
  #i-intro .txt .subtitle {
    font-size: 2.333333rem;
    font-size: 28px;
  }
  #i-intro .txt p {
    font-size: 1.416666rem;
    font-size: 17px;
  }
}
@media only screen and (min-width: 640px) {
  #i-intro {
    padding-top: 30px;
  }
  #i-intro .area, #i-intro .pic {
    height: 550px;
  }
  #i-intro .txt {
    width: 580px;
  }
}
@media only screen and (min-width: 1025px) {
  #i-intro {
    padding: 50px 0 30px;
  }
  #i-intro .area {
    height: 650px;
  }
  #i-intro .pic {
    height: 650px;
    background: url(../images/intro_bg.jpg) no-repeat 50% 0;
  }
  #i-intro .txt {
    bottom: 60px;
    left: 85px;
  }
}
@media only screen and (min-width: 1400px) {
  #i-intro .area, #i-intro .pic {
    height: 780px;
  }
}
/* 最新消息 */
#i-news {
  padding-bottom: 30px;
}

#i-news .news-list {
  position: relative;
  width: 100%;
}

#i-news .slick-slider {
  margin-bottom: 0;
}

#i-news .box {
  position: relative;
  margin: 5px 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
}

#i-news .box a {
  display: block;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

#i-news .box h3 {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -65px;
  margin: 0;
  padding: 10px 10px 8px;
  width: 100%;
  min-height: 36px;
  font-size: 1.25rem;
  font-size: 15px;
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  line-height: 18px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: bottom 300ms 0.2s;
  transition: bottom 300ms 0.2s;
}

#i-news .box:hover a {
  opacity: 1;
  visibility: visible;
}

#i-news .box:hover h3 {
  bottom: 0;
}

@media only screen and (min-width: 1730px) {
  #i-news .area {
    max-width: 1700px;
  }
}
@media only screen and (max-width: 12015px) {
  #i-news .news-list {
    padding-top: 10px;
  }
}
@media only screen and (min-width: 320px) {
  #i-news .box-sizer {
    width: 100%;
  }
  #i-news .box {
    width: 100%;
  }
  #i-news .box.big {
    width: 100%;
  }
}
@media only screen and (min-width: 640px) {
  #i-news .box {
    margin: 5px 0;
    padding: 0 5px;
  }
  #i-news .box-sizer {
    width: 33.333333%;
  }
  #i-news .box {
    width: 33.333333%;
  }
  #i-news .box.big {
    width: 66.666666%;
  }
  #i-news .box h3 {
    padding-left: 5px;
    padding-right: 5px;
    width: calc(100% - 10px);
  }
}
@media only screen and (min-width: 1024px) {
  #i-news {
    padding-bottom: 50px;
  }
  #i-news .box {
    margin: 10px 0;
    padding: 0 10px;
  }
  #i-news .box-sizer {
    width: 20%;
  }
  #i-news .box {
    width: 20%;
  }
  #i-news .box.big {
    width: 40%;
  }
  #i-news .box h3 {
    padding-left: 10px;
    padding-right: 10px;
    width: calc(100% - 20px);
  }
}
/* 影片 */
#video {
  width: 100%;
  height: auto;
  overflow: hidden;
}

#video .js-video {
  position: relative;
  width: 100%;
  height: auto;
}

#video .pic {
  position: relative;
  z-index: 2;
}

#video .con {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 0;
  margin-top: -58px;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

#video .con .play {
  position: relative;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  text-indent: -9999px;
  cursor: pointer;
  border: #fff solid 1px;
  border-radius: 110px;
}

#video .con .play a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

#video .con .play:before {
  display: block;
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  margin: -14px 0 0 -4px;
  width: 0;
  height: 0;
  vertical-align: middle;
  border-color: transparent;
  border-style: solid;
  border-width: 16px;
  border-right-width: 0;
  border-left-color: #fff;
}

#video:hover .con .play:before {
  -webkit-animation: move1 0.3s;
  animation: move1 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

#video .con h2 {
  margin: 15px 0 0 0;
  font-size: 1.5rem;
  font-size: 18px;
  color: #fff;
  font-weight: 100;
  line-height: 22px;
}

#video .js-iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
}

#video .btn-close {
  display: none;
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  text-indent: -9999px;
  cursor: pointer;
  border: none;
  background: none #fff;
  overflow: hidden;
}

#video .btn-close:before, #video .btn-close:after {
  display: block;
  content: "";
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 28px;
  width: 1px;
  height: 30px;
  background-color: #000;
}

#video .btn-close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

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

@-webkit-keyframes move1 {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes move1 {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@media only screen and (max-width: 1365px) {
  #video .pic {
    display: none;
  }
  #video .pic.show1365 {
    display: block;
  }
}
@media only screen and (min-width: 640px) {
  #video .con {
    margin-top: -75px;
  }
  #video .con .play {
    width: 110px;
    height: 110px;
  }
}
@media only screen and (min-width: 1366px) {
  #video {
    height: 850px;
  }
  #video .js-video {
    height: 850px;
  }
  #video .pic {
    height: 850px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    background-repeat: no-repeat;
    background-position: 50% 0;
    overflow: hidden;
  }
  #video .pic.show1365 {
    display: none !important;
  }
}
/* 廣告 */
#leaflet {
  padding: 30px 0;
}

#leaflet .pic-slick {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}

#leaflet .slick-prev, #leaflet .slick-next {
  z-index: 3;
  width: 30px;
  height: 61px;
  overflow: hidden;
}

#leaflet .slick-prev {
  background: url(../images/btn_bg.png) no-repeat 0 -61px;
  background-size: cover;
}

#leaflet .slick-next {
  background: url(../images/btn_bg.png) no-repeat 0 0;
  background-size: cover;
}

#leaflet .slick-prev {
  left: 0;
}

#leaflet .slick-next {
  right: 0;
}

#leaflet .slick-prev:before, #leaflet .slick-prev:after {
  display: block;
  content: "";
  position: absolute;
  top: 24px;
  width: 12px;
  height: 12px;
  transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

#leaflet .slick-next:before, #leaflet .slick-next:after {
  display: block;
  content: "";
  position: absolute;
  top: 24px;
  width: 12px;
  height: 12px;
  transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

#leaflet .slick-prev:before, #leaflet .slick-prev:after {
  border-left: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

#leaflet .slick-next:before, #leaflet .slick-next:after {
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

#leaflet .slick-prev:before {
  left: 8px;
}

#leaflet .slick-prev:after {
  left: 14px;
  opacity: 0;
}

#leaflet .slick-prev:hover:before {
  left: 2px;
  opacity: 0;
}

#leaflet .slick-prev:hover:after {
  left: 8px;
  opacity: 1;
}

#leaflet .slick-next:before {
  right: 8px;
}

#leaflet .slick-next:after {
  right: 14px;
  opacity: 0;
}

#leaflet .slick-next:hover:before {
  right: 2px;
  opacity: 0;
}

#leaflet .slick-next:hover:after {
  right: 8px;
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  #leaflet {
    padding-top: 50px;
  }
  #leaflet .pic-slick {
    margin: 0 -10px;
  }
  #leaflet .pic-slick .box {
    padding: 0 10px;
  }
}
@media only screen and (min-width: 1025px) {
  #leaflet {
    padding-top: 70px;
  }
  #leaflet .slick-prev {
    left: -45px;
  }
  #leaflet .slick-next {
    right: -45px;
  }
}
/* 產品 */
#prod {
  padding-bottom: 20px;
}

#prod .goods-list {
  margin: 0 -10px;
}

@media only screen and (max-width: 1215px) {
  #prod .goods-list {
    padding-top: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  #prod .goods-list .box {
    margin-bottom: 30px;
    float: left;
    width: 20%;
  }
}
/* 代理品牌 */
#i-brand .list-brand {
  padding-top: 20px;
}

/* 設計師 */
#index #desinger {
  padding-bottom: 30px;
}

#index #desinger .slick-slider, #index #desinger .box h3 {
  margin-bottom: 0;
}

@media only screen and (max-width: 1215px) {
  #index #desinger .desinger-list {
    padding-top: 20px;
  }
}
@media only screen and (min-width: 768px) {
  #index #desinger {
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  #index #desinger {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 1200px) {
  #index #desinger .box {
    float: left;
    width: 16.666666%;
  }
}
/* dots */
.dots .slick-dots {
  top: -20px !important;
  bottom: auto;
}

.dots .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.dots .slick-dots li button {
  position: relative;
  padding: 4px;
  width: 18px;
  height: 18px;
}

.dots .slick-dots li button:before {
  content: "";
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  line-height: 10px;
  border: #333 solid 1px;
  background-color: #fff;
  opacity: 1;
  border-radius: 10px;
}

.dots .slick-dots li:hover button:before, .dots .slick-dots li.slick-active button:before {
  background-color: #333;
  opacity: 1;
}

/* =====================================
   關於我們
===================================== */
/* 公司簡介 */
#about .con-bg {
  margin-top: 50px;
  padding-bottom: 60px;
  background: url(../images/about_bg.jpg) no-repeat center top #f5f5f5;
}

#about .con-wrap.container {
  padding-top: 100px;
}

#about .narrative {
  margin: 0 auto;
  max-width: 750px;
}

#about .txt {
  text-align: center;
}

#about .narrative h4 {
  margin: 0 0 40px 0;
  font-size: 1.666666rem;
  font-size: 20px;
  color: #000;
  font-weight: 300;
  text-align: center;
  line-height: 28px;
}

#about .narrative h4:after {
  display: block;
  content: "";
  margin: 15px auto 0;
  width: 22px;
  height: 1px;
  background-color: #000;
}

#about .txt p {
  margin: 15px 0 0 0;
  font-size: 1.25rem;
  font-size: 15px;
  line-height: 40px;
}

@media only screen and (max-width: 743px) {
  #about .con-bg {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 640px) {
  #about .con-wrap.container {
    padding-top: 150px;
  }
  #about .con-bg {
    padding-bottom: 150px;
    min-height: 645px;
  }
}
@media only screen and (min-width: 1024px) {
  #about .narrative {
    max-width: 1000px;
  }
  #about .txt {
    padding: 25px;
    float: left;
    width: 50%;
    text-align: left;
  }
  #about .txt p {
    font-size: 1.1666666rem;
    font-size: 14px;
    line-height: 30px;
    text-align: justify;
  }
}
/* 門市資訊 */
#store .con-wrap-b {
  padding-top: 55px;
}

#store .list {
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: #ccc solid 1px;
}

#store .list .box li {
  float: left;
  font-size: 1.25rem;
  font-size: 15px;
  line-height: 32px;
}

#store .list h4 {
  margin: 0 0 0 10px;
  font-size: 1.416666rem;
  font-size: 17px;
  line-height: 32px;
}

#store .list h4 span {
  display: inline-block;
  margin-right: 8px;
}

#store .list .info li {
  margin-right: 20px;
}

#store .list .info li a {
  color: #333;
}

#store .list .add {
  min-width: 260px;
}

#store .list .ti {
  display: inline-block;
  width: 35px;
}

#store .list .btn-map a {
  display: block;
  font-size: 1.25rem;
  font-size: 15px;
  color: #000;
  font-weight: 300;
  text-align: center;
  text-decoration: none;
  line-height: 30px;
  border: #ededed solid 1px;
  background-color: #fff;
}

#store .list .btn-map a:focus {
  color: #000;
  text-decoration: none;
}

#store .map-box {
  width: 100%;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

#store .map-box .map {
  width: 100%;
  height: 400px;
}

@media only screen and (max-width: 991px) {
  #store .list .name {
    float: none;
    width: 100%;
  }
  #store .list .info {
    padding-left: 10px;
    width: 90%;
  }
  #store .list .btn-map {
    width: 10%;
  }
  .catalogs-box .pic a > div {
    margin: 100px auto 0;
  }
}
@media only screen and (max-width: 767px) {
  #store .list .info {
    width: 100%;
  }
  #store .list .btn-map {
    width: 100%;
  }
  #store .list .btn-map a {
    margin: 8px 10px;
  }
}
@media only screen and (max-width: 640px) {
  #store .list .info .add {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  #store .con-wrap-b {
    min-height: 300px;
  }
  #store .list .btn-map a {
    float: right;
    width: 110px;
  }
}
@media only screen and (min-width: 992px) {
  #store .list .name {
    width: 18%;
  }
  #store .list .info {
    width: 67%;
  }
  #store .list .btn-map {
    width: 15%;
  }
}
@media only screen and (min-width: 1025px) {
  #store .con-wrap-b {
    padding-top: 110px;
  }
}
/* 品牌介紹 */
#brand .container.con-wrap {
  padding-top: 40px;
}

#brand .list-brand {
  width: 100%;
}

#brand .list-brand .box {
  display: inline-block;
  margin-left: -4px;
  float: none;
}

@media only screen and (min-width: 768px) {
  #brand .container.con-wrap {
    padding-top: 70px;
  }
}
@media only screen and (min-width: 1025px) {
  #brand .container.con-wrap {
    padding-top: 110px;
  }
}
/* 樣式 - 與首頁共用 */
.list-brand {
  margin: 0 -10px;
  font-size: 0;
  text-align: center;
}

.list-brand .box {
  padding: 0 10px;
  display: inline-block;
  vertical-align: top;
  width: 50%;
}

.list-brand .box h3, .list-brand .box h4 {
  margin-bottom: 0;
}

#i-brand .list-brand .box {
  margin-bottom: 10px;
}

#brand .list-brand .box {
  margin-bottom: 20px;
}

/*.list-brand .box .pic:after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  visibility: hidden;
  -webkit-transition: width .5s 0s, visibility 0s 0s;
     -moz-transition: width .5s 0s, visibility 0s 0s;
          transition: width .5s 0s, visibility 0s 0s;
}
.list-brand .box:hover .pic:after {
  width: 100%;
  background-color: #000;
  visibility: visible;
}*/
@media only screen and (min-width: 480px) {
  .list-brand .box {
    width: 33.333333%;
  }
  #brand .list-brand .box {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .list-brand .box {
    width: 25%;
  }
  #brand .list-brand .box {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .list-brand .box {
    width: 20%;
  }
}
@media only screen and (min-width: 1200px) {
  .list-brand .box {
    width: 16.666666%;
  }
}
/* 設計師介紹 -列表 */
#desi-list .container.con-wrap {
  padding-top: 55px;
}

@media only screen and (min-width: 415px) {
  #desi-list .list .box {
    float: left;
    width: 50%;
  }
}
@media only screen and (min-width: 640px) {
  #desi-list .list .box {
    width: 33.333333%;
  }
}
@media only screen and (min-width: 1024px) {
  #desi-list .list .box {
    width: 25%;
  }
}
@media only screen and (min-width: 1025px) {
  #desi-list .container.con-wrap {
    padding-top: 110px;
  }
}
@media only screen and (min-width: 1200px) {
  #desi-list .list .box {
    width: 20%;
  }
}
@media only screen and (min-width: 1366px) {
  #desi-list .list .box {
    width: 16.666666%;
  }
}
/* 聯絡我們 */
/*#contact .store-ti {
  margin: 0 0 40px 0;
  font-size: 1.666666rem;
  font-size: 20px;
  color: #000;
  font-weight: 300;
  text-align: center;
  line-height: 28px;
}
#contact .store-ti:after {
  display: block;
  content: '';
  margin: 15px auto 0;
  width: 22px;
  height: 1px;
  background-color: #000;
}*/
#contact ul.info {
  margin: 40px 0;
}

.store-box {
  font-size: 0;
}

.store-box .item {
  width: 100%;
  padding: 40px;
  margin: 0 30px 35px 30px;
  display: inline-block;
  background: #f8f8f8; /*ccc*/
  min-height: 235px;
  letter-spacing: 0.05rem;
  vertical-align: top;
}

.store-box .item .store-ti {
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  padding-bottom: 20px;
  color: #000;
}

.store-box .item .store-ti:after {
  display: block;
  content: "";
  margin: 15px 0 0;
  width: 22px;
  height: 1px;
  background-color: #000;
}

.store-box .item .store-info {
  font-size: 0;
}

.store-box .item .store-info .txt {
  font-size: 15px;
  color: #666;
  line-height: 24px;
  display: inline-block;
  width: 30%;
  min-height: 250;
  vertical-align: top;
  /*padding-bottom: 20px;*/
}

.store-box .item .store-info .map {
  display: inline-block;
  width: 70%;
  height: 250px;
}

.store-box .item .store-info .map iframe {
  width: 100%;
  height: 100%;
}

#contact ul.info li {
  margin-bottom: 15px;
}

#contact ul.info li h5 {
  margin: 0;
  font-size: 1.166666rem;
  font-size: 14px;
}

#contact ul.info li > span {
  display: block;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
  font-size: 15px;
  text-align: center;
  line-height: 50px;
  border: #bbb solid 1px;
  border-radius: 50px;
}

#contact ul.info li .ti {
  display: block;
  margin: 8px 0 3px;
  font-size: 1.25rem;
  font-size: 15px;
  font-weight: 300;
}

#contact ul.info li a {
  color: #333;
}

#contact ul.info li a span {
  padding-left: 5px;
  vertical-align: middle;
}

#contact .field {
  padding: 30px 0;
  border-top: #e6e6e6 solid 1px;
  background-color: #fafafa;
}

#contact .field p {
  margin-bottom: 30px;
  line-height: 24px;
}

#contact .field p span {
  padding: 0 3px;
}

#contact .field form {
  margin: 0 auto;
  max-width: 900px;
}

#contact .field #btn-group {
  margin-top: 20px;
}

@media only screen and (max-width: 1199px) {
  .store-box .item .store-info .txt,
  .store-box .item .store-info .map {
    width: 100%;
  }
}
@media only screen and (max-width: 820px) {
  .store-box .item {
    width: calc(100% - 60px);
  }
  .store-box .item .store-info .txt {
    width: 260px;
  }
  .store-box .item .store-info .map {
    width: calc(100% - 260px);
  }
}
@media only screen and (max-width: 779px) {
  #g-wrap #contact .container.con-wrap {
    padding-top: 0;
  }
  #contact ul.info li > span {
    margin: 0 10px 0 0;
    float: left;
  }
  #contact ul.info li .data {
    text-align: left;
    overflow: hidden;
  }
}
@media only screen and (min-width: 780px) {
  #contact ul.info {
    margin: 40px 0 60px;
    text-align: center;
  }
  #contact ul.info li {
    display: inline-block;
    margin-bottom: 0;
    padding: 0 30px;
  }
  #contact ul.info li .ti {
    margin: 20px 0 10px;
  }
}
/*@media only screen and (min-width: 992px) {
  #contact ul.info li {
    padding: 0 50px;
  }
}*/
@media only screen and (min-width: 1090px) {
  #contact ul.info {
    margin: 40px 0 70px;
  }
  #contact ul.info li {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 1140px) {
  #contact ul.info li {
    padding: 0 70px;
  }
}
@media only screen and (min-width: 415px) {
  #contact .field #btn-group ul li {
    margin: 0 0 0 10px;
  }
}
@media only screen and (min-width: 640px) {
  #contact .field {
    padding: 50px 0;
  }
  #contact .field p {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
  }
}
@media only screen and (min-width: 768px) {
  #contact .field #btn-group {
    margin-top: 0;
    float: right;
  }
}
@media only screen and (max-width: 639px) {
  .store-box .item {
    width: 100%;
    margin: 0 0 30px;
  }
  .store-box .item .store-info .txt,
  .store-box .item .store-info .map {
    width: 100%;
  }
}
/* =====================================
   最新消息 + 文章專欄
===================================== */
/* 共用 - 列表 */
.article .box {
  text-align: center;
}

.article .box a {
  display: block;
  color: #000;
  text-decoration: none;
}

.article .box .date {
  font-size: 1.083333rem;
  font-size: 13px;
  color: #000;
  font-weight: 300;
}

.article .box .date span {
  padding-left: 3px;
  font-family: "Times New Roman", serif;
  font-size: 1.833333rem;
  font-size: 22px;
}

.article .box .ti {
  display: block;
  margin: 0;
  padding: 12px 0;
}

.article .box .ti h3, .article .box .ti h4 {
  display: inline;
  margin: 0;
  font-size: 1.5rem;
  font-size: 18px;
  line-height: 22px;
}

.article .box .txt {
  color: #666;
  line-height: 24px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.article .box:hover .txt {
  color: #000;
}

.article .box .share > span {
  display: inline-block;
}

.article .box .share ul {
  display: inline-block;
}

.article .box .share ul li {
  margin: 0 4px;
}

.article .box .share ul li a {
  width: 30px;
  height: 30px;
  color: #757575;
  line-height: 30px;
  border-radius: 30px;
}

.article .box .share ul li a:hover {
  color: #fff;
}

.article .box .share > span {
  margin-right: 0;
  font-size: 1rem;
  font-size: 12px;
}

.article .box .share .fb span {
  font-size: 1.166666rem;
  font-size: 14px;
  line-height: 30px;
}

.article .box .share .line span {
  width: 100%;
  height: 100%;
  line-height: 38px;
  background: url(../images/icon_line2.png) no-repeat 0 0;
  overflow: hidden;
  background-size: cover;
}

.article .box .share .line a:hover span {
  background: url(../images/icon_line2.png) no-repeat 0 -28px;
  background-size: cover;
}

/*.article .box .share .line a span {
  background: url(../images/icon_line2.png) no-repeat 0 0;
  margin: 11px auto 0;
  width: 18px;
  height: 7px;
}*/
@media only screen and (max-width: 1024px) {
  .article .box .ti h3, .article .box .ti h4 {
    font-weight: 300;
  }
}
/* 最新消息 - 列表 */
#news-list .article .wrap {
  padding: 0 15px;
}

#news-list .box {
  padding-bottom: 20px;
  text-align: left;
  border: #ededed solid 1px;
}

#news-list .box .info {
  position: relative;
  z-index: 2;
}

#news-list .box .info .con {
  position: relative;
  z-index: 2;
  top: -12px;
  margin: 0 auto -12px;
  padding: 10px 10px 0 15px;
  width: 94%;
  min-height: 30px;
  background-color: #fff;
}

#news-list .box .info .con .txt {
  text-align: justify;
  text-justify: inter-ideograph;
}

#news-list .box .info .con .share {
  margin-top: 25px;
  float: right;
}

#news-list .box .info .shadow-box {
  position: absolute;
  z-index: 1;
  left: 3%;
  top: -12px;
  width: 94%;
  height: 20px;
  opacity: 1;
  -webkit-box-shadow: 0 0 10px 5px rgba(150, 150, 150, 0.3);
  box-shadow: 0 0 10px 5px rgba(150, 150, 150, 0.3);
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

/* 文章專欄 - 列表 */
#fitting-list .hot {
  margin-top: 30px;
  max-width: 170px;
}

#fitting-list .hot h3 {
  margin: 0 0 8px 0;
  font-family: "Times New Roman", serif;
  font-size: 1.25rem;
  font-size: 15px;
  font-weight: 300;
}

#fitting-list .hot .box {
  margin-top: 10px;
  padding: 8px 10px;
  border: #ededed solid 1px;
  background-color: #fff;
}

#fitting-list .hot .box a {
  color: #000;
  text-decoration: none;
}

#fitting-list .hot .box .ti {
  margin: 8px 0 0 0;
  font-size: 1.166666rem;
  font-size: 14px;
  line-height: 18px;
}

#fitting-list .hot .box .date {
  font-size: 1.083333rem;
  font-size: 13px;
  color: #666;
  font-weight: 300;
}

#fitting-list .new .box {
  margin-bottom: 30px;
}

#fitting-list .box .share {
  margin-top: 25px;
  text-align: center;
}

#fitting-list .new .box {
  padding: 10px 10px 25px;
  border: #ededed solid 1px;
  background-color: #fff;
}

#fitting-list #list .box {
  padding: 10px 10px 25px;
  border: #ededed solid 1px;
  background-color: #fff;
}

#fitting-list #list .wrap {
  padding: 0 15px;
}

#fitting-list .article .box .ti, #fitting-list .article .box .date, #fitting-list .article .box .txt {
  padding-right: 5px;
  padding-left: 5px;
}

#fitting-list .article .box .date {
  padding-top: 10px;
}

@media only screen and (min-width: 640px) {
  #fitting-list .new .box {
    margin-bottom: 40px;
    text-align: left;
  }
  #fitting-list .new .ti h3 {
    font-size: 1.666666rem;
    font-size: 20px;
    line-height: 26px;
  }
  #fitting-list .new .box .share {
    padding-left: 5px;
  }
}
@media only screen and (min-width: 768px) {
  #fitting-list .new .box .txt {
    display: -webkit-box;
    height: 45px;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  #fitting-list .new .box .ti {
    min-height: 72px;
  }
}
@media only screen and (max-width: 1024px) {
  #fitting-list .hot {
    display: none;
  }
}
@media only screen and (min-width: 640px) {
  #fitting-list .article .new .box .share {
    padding-right: 5px;
    text-align: left;
  }
}
/* 瀑布流 */
#list {
  position: relative;
  width: 100%;
}

#news-list #list .wrap, #fitting-list #list .wrap {
  margin-bottom: 30px;
  width: 100%;
}

@media only screen and (min-width: 480px) {
  #fitting-list #list .wrap {
    width: 50%;
  }
}
@media only screen and (min-width: 641px) {
  #news-list #list .wrap {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  #news-list #list .wrap, #fitting-list #list .wrap {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  #news-list #list .wrap, #fitting-list #list .wrap {
    width: 33.333333%;
  }
}
/* 無分頁加載 */
.pagination {
  display: none;
  text-align: center;
}

#infscr-loading {
  position: absolute;
  z-index: 100;
  left: 50%;
  bottom: 30px;
  margin-left: -60px;
  padding: 10px 15px;
  width: 130px;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
}

/* 品牌介紹 + 設計師介紹 + 最新消息 + 文章專欄 - 詳細頁 */
#article-view .container.con-wrap {
  padding-top: 0;
}

#article-view .article-con {
  position: relative;
  z-index: 1;
  top: -30px;
  margin-bottom: -30px;
  padding: 15px 15px 35px;
  background-color: #fff;
}

#article-view .shadow {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 90px;
}

#article-view .shadow:before, #article-view .shadow:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  width: 8px;
  height: 90px;
}

#article-view .shadow:before {
  left: -8px;
  background: url(../images/shadow.png) no-repeat 0 0;
}

#article-view .shadow:after {
  right: -8px;
  background: url(../images/shadow-inverse.png) no-repeat 0 0;
}

#article-view .btn-wrap .back, #article-view .btn-wrap .link {
  display: block;
  position: relative;
  width: 38px;
  height: 38px;
  font-size: 1.25rem;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  line-height: 38px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#article-view .btn-wrap .back {
  color: #fff;
  background-color: #000;
}

#article-view .btn-wrap .link {
  color: #000;
  border: #000 solid 1px;
  background-color: #fff;
}

#article-view #r-wrap {
  padding-top: 30px;
}

#article-view .txt img {
  max-width: 100%;
  height: auto !important;
}

#article-view .btn-back {
  margin-top: 30px;
}

#article-view .name {
  padding-bottom: 15px;
  border-bottom: #ededed solid 1px;
}

#article-view .name .ti h2 {
  display: inline;
  margin: 0;
  font-size: 2.333333rem;
  font-size: 28px;
  color: #000;
  font-weight: 300;
  vertical-align: middle;
  line-height: 32px;
}

#article-view .name .date, #article-view .name .country {
  padding-top: 5px;
  color: #666;
}

#article-view .date span {
  padding-left: 3px;
  font-family: "Times New Roman", serif;
  font-size: 2rem;
  font-size: 24px;
}

.brand .name .ti, .designer .name .ti {
  margin-top: 20px;
}

.brand .name .country, .designer .name .country {
  padding-top: 13px;
}

.brand .brand-logo, .designer .photo {
  width: 100%;
}

#article-view .txt {
  padding-top: 30px;
}

.brand .txt, .designer .txt {
  font-size: 1.25rem;
  font-size: 15px;
  line-height: 28px;
}

@media only screen and (max-width: 1023px) {
  #article-view .btn-wrap {
    padding-bottom: 10px;
    border-bottom: #ddd solid 1px;
  }
  #article-view .btn-wrap .back, #article-view .btn-wrap .link {
    float: left;
  }
  #article-view .btn-wrap .share {
    float: right;
  }
  #article-view .btn-wrap .share > span {
    padding-right: 10px;
  }
  #article-view .btn-wrap .share ul {
    display: inline-block;
    vertical-align: middle;
  }
  #article-view .btn-wrap .share ul li.line {
    margin-left: 5px;
  }
}
@media only screen and (max-width: 479px) {
  #article-view .shadow {
    display: none;
  }
  #article-view .name .ti.en, #article-view .name .country {
    text-align: center;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1024px) {
  #article-view .info .name {
    min-height: 170px;
    overflow: hidden;
  }
  #article-view .info .ti {
    margin-top: 55px;
  }
}
@media only screen and (min-width: 480px) {
  .brand .name, .designer .name {
    min-height: 170px;
    overflow: hidden;
  }
  .brand .name .ti, .designer .name .ti {
    margin-top: 55px;
  }
  .brand .brand-logo, .designer .photo {
    margin-left: 40px;
    float: right;
    width: 170px;
  }
  .brand .brand-logo {
    width: 205px;
  }
}
@media only screen and (min-width: 640px) {
  #article-view .article-con {
    top: -40px;
    margin-bottom: -40px;
  }
  #article-view .shadow {
    top: 30px;
  }
  #article-view .btn-back {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  #article-view .article-con {
    padding: 40px 40px 0;
  }
  #article-view .btn-wrap {
    float: left;
    width: 48px;
  }
  #article-view #r-wrap {
    padding-top: 0;
    float: right;
    width: calc(100% - 95px);
  }
  #article-view .btn-wrap .back, #article-view .btn-wrap .link {
    width: 48px;
    height: 48px;
    font-size: 1.833333rem;
    font-size: 22px;
    line-height: 48px;
  }
  #article-view .btn-wrap .share {
    margin: 0 auto;
    width: 38px;
  }
  #article-view .btn-wrap .share > span {
    display: block;
    margin: 20px auto 15px;
    width: 38px;
    height: 41px;
    text-align: center;
    line-height: 38px;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: bt-lr;
    writing-mode: vertical-lr;
  }
  #article-view .btn-wrap .share ul li {
    margin-bottom: 5px;
    float: none;
  }
  /* 滑過效果 */
  .btn-wrap .back.button span, .link.button span:before {
    -webkit-transition: 0.1s;
    transition: 0.1s;
  }
  .btn-wrap .button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 1.25rem;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    opacity: 0;
    -webkit-transition: 0.3s, opacity 0.3s;
    transition: 0.3s, opacity 0.3s;
    content: attr(data-hover);
    -webkit-transform: translate(130%, 0);
    -ms-transform: translate(130%, 0);
    transform: translate(130%, 0);
  }
  .btn-wrap .button:hover span {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  .btn-wrap .button:hover:before {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@media only screen and (min-width: 1200px) {
  #article-view .article-con {
    top: -70px;
    margin-bottom: -70px;
  }
  #article-view .shadow {
    top: 60px;
  }
  #article-view .btn-back {
    margin-top: 70px;
  }
}
/* =====================================
   產品
===================================== */
@media only screen and (max-width: 1024px) {
  #goods #r-wrap {
    padding-top: 30px;
  }
}
/* 塞選 */
#goods .filters .ti {
  padding-bottom: 15px;
  font-weight: 300;
}

#goods #nav-wrap.nav-style .filters ul li a {
  padding-left: 0;
  font-size: 1.333333rem;
  font-size: 16px;
  color: #333;
  line-height: 24px;
}

#goods #nav-wrap.nav-style .filters ul li.spec a {
  color: #c80000 !important;
  font-weight: bold;
}

#goods .filters ul li a span {
  display: inline-block;
  position: relative;
  margin: -3px 10px 0 0;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  border: #999 solid 1px;
  background-color: #fff;
}

#goods .filters ul li.en a span {
  margin-top: -2px;
}

#goods #nav-wrap.nav-style .filters ul li a:hover {
  color: #888;
}

#goods #nav-wrap .filters ul li a:hover span {
  border-color: #333;
}

#goods .filters ul li.is-active a span {
  border: #333 solid 1px;
}

#goods .filters ul li.is-active a span:before {
  display: block;
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  margin: -3px 0 0 -3px;
  width: 6px;
  height: 6px;
  background-color: #333;
}

#goods .select {
  margin-bottom: 5px;
}

#goods .goods-list {
  padding: 20px 0 10px;
  height: auto;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#goods .goods-list.is-hide {
  padding: 0;
  height: 0;
  max-height: 0;
}

#goods .goods-list.is-hide h3 {
  opacity: 0;
}

#goods .goods-list h3 {
  margin: 0 0 20px 0;
  font-size: 2.5rem;
  font-weight: bold;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#goods .goods-list .row {
  margin: 0 -10px;
}

#goods .goods-list .row > div {
  padding: 0 10px;
}

#goods .goods-list .row > div > .box {
  padding: 0 0 30px;
}

#goods .goods-list .box .icon {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
}

#goods .goods-list .box .icon li {
  padding: 4px 10px 2px;
  float: left;
  font-size: 1rem;
  font-size: 12px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  border-right: #777 solid 1px;
  background-color: rgba(0, 0, 0, 0.7);
}

#goods .goods-list .box .icon li:last-child {
  border-right: 0;
}

#goods .goods-list .box .icon li.sale {
  background-color: rgba(190, 0, 0, 0.7);
}

#goods .goods-list .box h4 {
  font-weight: bold;
}

#goods .goods-list .box h4:after {
  display: block;
  content: "";
  margin-top: 12px;
  width: 0;
  height: 1px;
  background-color: #fff;
  visibility: hidden;
  -webkit-transition: width 0.3s 0s, visibility 0s 0s;
  transition: width 0.3s 0s, visibility 0s 0s;
}

#goods .goods-list .box:hover h4:after {
  width: 35px;
  background-color: #000;
  visibility: visible;
}

@media only screen and (max-width: 1024px) {
  #goods .filters.nav-category {
    padding: 10px 15px;
  }
  #goods .filters .ti {
    display: none;
  }
  #goods .filters .menu-main li a {
    padding: 3px 0;
  }
  #goods .select {
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
  #goods .select ul {
    margin: 0 -2px;
  }
  #goods .select li {
    display: inline-block;
    margin-left: -2px;
    padding: 0 2px;
    width: 50%;
  }
}
@media only screen and (max-width: 640px) {
  #goods .select {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) {
  #goods .select {
    width: 100%;
  }
  #goods .select ul {
    float: right;
  }
  #goods .select li {
    margin: 0 0 0 10px;
    float: left;
    width: 150px;
  }
}
/* 列表 */
@media only screen and (max-width: 1024px) {
  #goods .goods-list {
    padding-bottom: 0;
  }
  #goods .goods-list .row > div > .box {
    padding-bottom: 20px;
  }
  #goods .goods-list h3 {
    font-weight: 300;
  }
}
@media only screen and (max-width: 415px) {
  #goods .goods-list .row > div {
    width: 100%;
  }
  #goods .goods-list:last-child {
    margin-bottom: 0;
  }
}
/* 詳細頁 */
#goods-view .goods {
  padding-bottom: 30px;
  background-color: #f8f8f8;
}

#goods-view .data.con-wrap.container {
  padding-top: 0;
}

#goods-view .pic-wrap {
  position: relative;
}

#goods-view .pic-wrap .icon-zoom span {
  display: inline-block;
  margin-right: 5px;
  width: 22px;
  height: 23px;
  vertical-align: middle;
  background: url(../images/icon_zoom.png) no-repeat 0 0;
  overflow: hidden;
  background-size: cover;
}

#goods-view .pic-wrap .slick-slider {
  margin-bottom: 0;
}

#goods-view .pic-wrap .big .slick-slide {
  outline: none;
}

#goods-view .pic-wrap .big .slick-slide img {
  display: block;
  max-width: 100%;
  height: auto;
}

#goods-view .pic-wrap .small {
  top: 20px;
  left: 50%;
  margin-left: -25%;
  width: 50%;
  height: auto;
}

#goods-view .pic-wrap .small .slick-slide {
  outline: none;
}

#goods-view .pic-wrap .small .slick-slide img {
  display: block;
  margin: 0 auto;
  width: 90%;
  height: auto;
  cursor: pointer;
  border: #fff solid 1px;
}

#goods-view .pic-wrap .small .slick-slide.slick-current img {
  border: #000 solid 1px;
}

#goods-view .pic-wrap .slick-prev, #goods-view .pic-wrap .slick-next {
  z-index: 3;
  width: 30px;
  height: 30px;
}

#goods-view .pic-wrap .slick-prev {
  left: -40px;
}

#goods-view .pic-wrap .slick-next {
  right: -40px;
}

#goods-view .pic-wrap .slick-prev:before, #goods-view .pic-wrap .slick-prev:after {
  display: block;
  content: "";
  position: absolute;
  top: 9px;
  width: 13px;
  height: 13px;
  transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

#goods-view .pic-wrap .slick-next:before, #goods-view .pic-wrap .slick-next:after {
  display: block;
  content: "";
  position: absolute;
  top: 9px;
  width: 13px;
  height: 13px;
  transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

#goods-view .pic-wrap .slick-prev:before, #goods-view .pic-wrap .slick-prev:after {
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

#goods-view .pic-wrap .slick-next:before, #goods-view .pic-wrap .slick-next:after {
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

#goods-view .pic-wrap .slick-prev:before {
  left: 12px;
}

#goods-view .pic-wrap .slick-prev:after {
  left: 18px;
  opacity: 0;
}

#goods-view .pic-wrap .slick-prev:hover:before {
  left: 6px;
  opacity: 0;
}

#goods-view .pic-wrap .slick-prev:hover:after {
  left: 12px;
  opacity: 1;
}

#goods-view .pic-wrap .slick-next:before {
  right: 12px;
}

#goods-view .pic-wrap .slick-next:after {
  right: 18px;
  opacity: 0;
}

#goods-view .pic-wrap .slick-next:hover:before {
  right: 6px;
  opacity: 0;
}

#goods-view .pic-wrap .slick-next:hover:after {
  right: 12px;
  opacity: 1;
}

#goods-view .pic-wrap .big [data-sub-html] {
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 10px;
  left: 50%;
  margin-right: -11px;
  width: 28px;
  height: 29px;
  outline: none;
  background: url(../images/icon_zoom2.png) no-repeat 0 0;
  overflow: hidden;
  background-size: cover;
}

#goods-view .info {
  padding-top: 30px;
}

#goods-view .info h2 {
  margin: 0;
  font-size: 3.333333rem;
  font-size: 40px;
  color: #000;
  font-weight: 300;
}

#goods-view .info h2 small {
  display: block;
  margin-bottom: 5px;
  font-size: 1.25rem;
  font-size: 15px;
  color: #333;
}

#goods-view .info .brief {
  padding: 20px 0;
  line-height: 26px;
}

#goods-view .info .group {
  padding: 10px 0;
  border-top: #ddd solid 1px;
}

#goods-view .info .group ul li {
  margin: 13px 0;
}

#goods-view .info .ti {
  margin-right: 30px;
  float: left;
  width: 45px;
  color: #666;
  line-height: 22px;
}

#goods-view .info .color .ti, #goods-view .info .format .ti, #goods-view .info .qut .ti {
  line-height: 32px;
}

#goods-view .info .group .txt {
  line-height: 22px;
  overflow: hidden;
}

#goods-view .info .group .name a {
  color: #333;
  text-decoration: none;
}

#goods-view .info .group .name a span {
  padding-left: 5px;
  color: #999;
  font-weight: 300;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#goods-view .info .group .name a:hover span {
  color: #333;
}

#goods-view .info .txt del {
  font-size: 1.333333rem;
  font-size: 16px;
  color: #999;
}

#goods-view .info .discount .txt {
  font-size: 1.083333rem;
  font-size: 13px;
  color: #e47070;
}

#goods-view .info .discount .txt span {
  display: block;
  margin-bottom: 5px;
  font-size: 2rem;
  font-size: 24px;
  color: #e20000;
}

#goods-view .info .color ul li {
  display: inline-block;
  margin: 0 7px 0 0;
  cursor: pointer;
}

#goods-view .info .color ul li span {
  display: block;
  padding: 3px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: #e8e8e8 solid 1px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#goods-view .info .color ul li span img {
  display: block;
  border-radius: 30px;
}

#goods-view .info .color ul li:hover span {
  border: #bbb solid 1px;
}

#goods-view .info .color ul li.current span {
  border: #333 solid 1px;
}

#goods-view .info .selectBox {
  width: 130px;
  height: 32px;
  line-height: 32px;
  border: #ddd solid 1px;
  background-color: #fff;
}

#goods-view .info .selectBox select {
  height: 30px;
  line-height: 30px;
}

#goods-view .info .selectBox:before {
  top: 8px;
}

#goods-view .info .qut .bootstrap-touchspin, #goods-view .info .qut .end {
  width: 130px;
  height: 32px;
  border: #ddd solid 1px;
  background: #fff;
}

#goods-view .info .qut .bootstrap-touchspin .bootstrap-touchspin-down, #goods-view .info .qut .bootstrap-touchspin .bootstrap-touchspin-up {
  width: 30px;
  height: 30px;
  font-size: 1.666666rem;
  font-size: 20px;
  color: #aaa;
  line-height: 22px;
  border: 0;
}

#goods-view .info .qut .bootstrap-touchspin .bootstrap-touchspin-down:hover, #goods-view .info .qut .bootstrap-touchspin .bootstrap-touchspin-up:hover {
  border: 0;
  background: none;
}

#goods-view .info .qut .bootstrap-touchspin .bootstrap-touchspin-down:active, #goods-view .info .qut .bootstrap-touchspin .bootstrap-touchspin-up:active {
  box-shadow: none;
  -webkit-box-shadow: none;
}

#goods-view .info .qut .bootstrap-touchspin input {
  height: 30px;
  line-height: 30px;
  border: none;
  border-left: #ddd solid 1px;
  border-right: #ddd solid 1px;
  background: #fff;
  text-align: center;
}

#goods-view .info .qut .end {
  color: #999;
  text-align: center;
  line-height: 32px;
}

#goods-view .info .goods-btn {
  font-size: 0;
}

#goods-view .info .goods-btn ul {
  font-size: 0;
}

#goods-view .info .goods-btn ul li.btn-cart, #goods-view .info .goods-btn ul li.btn-con, #goods-view .info .goods-btn ul li.btn-line, #goods-view .info .goods-btn ul li.btn-wish {
  float: left;
}

#goods-view .info .goods-btn ul li.btn-con, #goods-view .info .goods-btn ul li.btn-line, #goods-view .info .goods-btn ul li.btn-cart {
  width: 33.3333333333%;
}

#goods-view .info .goods-btn ul li.btn-wish {
  overflow: hidden;
  width: 33.3333333333%;
}

#goods-view .info .goods-btn .btn-style {
  line-height: 50px;
}

#goods-view .info .goods-btn .btn-style.black {
  display: inline-block;
}

#goods-view .info .goods-btn .btn-style.black svg {
  display: inline-block;
  vertical-align: middle;
  fill: #fff;
}

#goods-view .info .goods-btn .btn-line .btn-style.black {
  border-left: 1px solid #444;
}

#goods-view .info .goods-btn .btn-line:hover .btn-style.black svg {
  fill: #00c300;
}

#goods-view .info .share {
  margin-top: 25px;
  text-align: center;
}

#goods-view .info .share > span {
  display: inline-block;
}

#goods-view .info .share ul {
  display: inline-block;
}

#goods-view .info .share ul li {
  margin: 0 4px;
}

#goods-view .info .share > span {
  margin-right: 5px;
}

#goods-view .r-tabs {
  position: relative;
  margin-top: 30px;
}

#goods-view .r-tabs .r-tabs-nav {
  margin-bottom: 30px;
  height: 45px;
  text-align: center;
  border-bottom: #ededed solid 2px;
}

#goods-view .r-tabs .r-tabs-tab {
  display: inline-block;
}

#goods-view .r-tabs .r-tabs-accordion-title {
  display: none;
}

#goods-view .r-tabs .r-tabs-panel.r-tabs-state-active {
  display: block;
}

#goods-view .r-tabs .r-tabs-nav .r-tabs-tab {
  position: relative;
  top: 0;
  height: 45px;
}

#goods-view .r-tabs .r-tabs-nav .r-tabs-anchor {
  display: inline-block;
  padding: 0 25px;
  width: 130px;
  font-size: 1.333333rem;
  font-size: 16px;
  color: #999;
  text-decoration: none;
  line-height: 43px;
}

#goods-view .r-tabs .r-tabs-nav .r-tabs-anchor:hover {
  color: #333;
}

#goods-view .r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
  color: #333;
  border-bottom: #666 solid 2px;
}

#goods-view .r-tabs .r-tabs-accordion-title .r-tabs-anchor {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #666;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #ccc;
}

#goods-view .r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
  color: #000;
  border: 1px solid #000;
}

#goods-view .r-tabs .r-tabs-accordion-title .r-tabs-anchor:before {
  display: inline-block;
  margin-right: 10px;
  content: "+";
  width: 30px;
  height: 30px;
  color: #fff;
  font-weight: normal;
  text-align: center;
  line-height: 30px;
  background-color: #000;
}

#goods-view .r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor:before {
  display: inline-block;
  margin-right: 10px;
  content: "-";
  width: 30px;
  height: 30px;
  color: #fff;
  font-weight: normal;
  text-align: center;
  line-height: 30px;
  background-color: #000;
}

#goods-view .r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
  opacity: 0.5;
}

#goods-view .r-tabs .r-tabs-panel {
  display: none;
  margin-bottom: 20px;
}

#goods-view .r-tabs .r-tabs-panel img {
  display: block;
  max-width: 100%;
  height: auto;
}

#goods-view .data .related,
#article-view .data .related {
  margin-top: 30px;
}

#goods-view .loading {
  margin: 0 auto;
  padding: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
  background: url(../images/loading.gif) 50% 50% no-repeat;
}

@media screen and (min-width: 1025px) {
  #goods-view .con-wrap.container {
    padding-top: 150px;
  }
  #goods-view .data.con-wrap.container,
  #article-view .data.con-wrap.container {
    padding-top: 0;
  }
  #goods-view .goods {
    padding-bottom: 50px;
  }
}
@media (max-width: 1440px) {
  #goods-view .con-wrap.container,
  #article-view .data.con-wrap.container {
    padding-top: 120px;
  }
}
/* 大小輪播 - 詳細頁 */
/*#goods-view .pic-wrap .icon-zoom {
  position: absolute;
  z-index: 10;
  top: 85%;
  left: 50%;
  margin-left: -65px;
  width: 68px;
  color: #999;
}*/
/*#goods-view .pic-wrap .big [data-sub-html] {
  display: none;
}*/
@media only screen and (max-width: 1024px) {
  #goods-view .goods .row > div {
    float: none;
  }
  #goods-view .pic-wrap {
    margin: 0 auto;
    width: 90%;
  }
  #goods-view .pic-wrap .icon-zoom {
    display: none;
  }
  .zoomWindow, .zoomContainer {
    display: none !important;
  }
  #goods-view .info {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #goods-view .pic-wrap .small {
    display: none;
  }
  #goods-view .pic-wrap .big .slick-prev {
    left: -30px;
  }
  #goods-view .pic-wrap .big .slick-next {
    right: -30px;
  }
}
@media only screen and (min-width: 768px) {
  #goods-view .pic-wrap .big .slick-arrow {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  #goods-view .pic-wrap .big {
    margin-top: 50px;
  }
  #goods-view .pic-wrap .small {
    margin-left: -40%;
    width: 80%;
  }
}
@media only screen and (min-width: 1440px) {
  #goods-view .pic-wrap {
    padding-right: 75px;
  }
  #goods-view .pic-wrap .big {
    margin-top: 0;
  }
}
/* 資訊 - 詳細頁 */
@media only screen and (min-width: 768px) {
  #goods-view .info {
    padding-top: 65px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  #goods-view .info .goods-btn ul li.btn-cart, #goods-view .info .goods-btn ul li.btn-con, #goods-view .info .goods-btn ul li.btn-line, #goods-view .info .goods-btn ul li.btn-wish {
    width: 100%;
  }
  #goods-view .info .goods-btn ul li.btn-con {
    border-bottom: 1px solid #444;
  }
}
@media only screen and (max-width: 480px) {
  #goods-view .info .goods-btn ul.style-ul li {
    float: none;
    width: 100%;
  }
  #goods-view .info .goods-btn ul li.btn-cart, #goods-view .info .goods-btn ul li.btn-con, #goods-view .info .goods-btn ul li.btn-line, #goods-view .info .goods-btn ul li.btn-wish {
    width: 100%;
    float: none;
  }
  #goods-view .info .goods-btn ul li.btn-con {
    border-bottom: 1px solid #444;
  }
}
/* 頁籤 - 詳細頁 */
@media screen and (max-width: 768px) {
  #goods-view .r-tabs .r-tabs-nav {
    display: none;
  }
  #goods-view .r-tabs .r-tabs-accordion-title {
    display: block;
  }
  #goods-view .r-tabs .r-tabs-accordion-title:nth-child(even) {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1025px) {
  #goods-view .r-tabs {
    margin-top: 70px;
  }
}
/* 頁籤內容 - 詳細頁 */
@media screen and (min-width: 769px) {
  #goods-view .r-tabs .r-tabs-panel {
    margin-bottom: 70px;
  }
}
/* =====================================
   瀏覽紀錄
===================================== */
#record-wrap {
  position: fixed;
  z-index: 3;
  top: 180px;
  right: -78px;
  width: 114px;
  height: 334px;
  overflow: hidden;
}

#record-wrap a.btn-open {
  display: block;
  float: left;
  width: 36px;
  text-align: center;
  background-color: #666;
  overflow: hidden;
}

#record-wrap .aw {
  position: relative;
  width: 36px;
  height: 34px;
  background-color: #333;
}

#record-wrap .aw span {
  display: block;
  position: absolute;
  width: 1px;
  height: 10px;
  background-color: #fff;
}

#record-wrap .aw span:nth-child(2), #record-wrap .aw span:nth-child(3) {
  opacity: 0;
}

#record-wrap .aw span:nth-child(1) {
  top: 10px;
  left: 17px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#record-wrap .aw span:nth-child(4) {
  top: 16px;
  left: 17px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#record-wrap.open {
  right: 0;
}

#record-wrap.open .aw span:nth-child(1), #record-wrap.open .aw span:nth-child(4) {
  opacity: 0;
}

#record-wrap.open .aw span:nth-child(2) {
  top: 10px;
  left: 17px;
  height: 15px;
  opacity: 1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#record-wrap.open .aw span:nth-child(3) {
  top: 10px;
  left: 17px;
  height: 15px;
  opacity: 1;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#record-wrap .ti {
  padding: 10px;
  color: #fff;
}

#record-wrap .pic-box {
  margin-left: 36px;
  padding: 0 3px 0 5px;
  width: 78px;
  border: #000 solid 1px;
  border-right: 0;
  background-color: #fff;
}

#record-wrap .pic-box .wrap {
  position: relative;
  padding: 30px 0;
}

#record-wrap .pic-box .slick-slider {
  margin-bottom: 0;
}

#record-wrap .pic-box .box {
  margin: 3px 0;
  width: 70px;
  border: #ededed solid 1px;
}

#record-wrap .slick-prev, #record-wrap .slick-next {
  width: 30px;
  height: 30px;
}

#record-wrap .slick-prev {
  top: 16px;
  right: 22px !important;
  left: auto;
}

#record-wrap .slick-next {
  top: 245px;
  right: 20px;
}

#record-wrap .slick-prev:before, #record-wrap .slick-prev:after {
  display: block;
  content: "";
  position: absolute;
  left: 11px;
  width: 9px;
  height: 9px;
  transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

#record-wrap .slick-next:before, #record-wrap .slick-next:after {
  display: block;
  content: "";
  position: absolute;
  left: 11px;
  width: 9px;
  height: 9px;
  transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

#record-wrap .slick-prev:before, #record-wrap .slick-prev:after {
  border-left: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

#record-wrap .slick-next:before, #record-wrap .slick-next:after {
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

#record-wrap .slick-prev:before {
  top: 14px;
}

#record-wrap .slick-prev:after {
  top: 20px;
  opacity: 0;
}

#record-wrap .slick-prev:hover:before {
  top: 8px;
  opacity: 0;
}

#record-wrap .slick-prev:hover:after {
  top: 14px;
  opacity: 1;
}

#record-wrap .slick-next:before {
  bottom: 12px;
}

#record-wrap .slick-next:after {
  bottom: 18px;
  opacity: 0;
}

#record-wrap .slick-next:hover:before {
  bottom: 6px;
  opacity: 0;
}

#record-wrap .slick-next:hover:after {
  bottom: 12px;
  opacity: 1;
}

/* 輪播按鈕 */
@media screen and (max-width: 1199px) {
  #record-wrap {
    display: none;
  }
}
/* =====================================
   商品搜尋結果
===================================== */
#goods-search #btn-group {
  margin-top: 45px;
}

#goods-search .list .box {
  margin-bottom: 30px;
  border-bottom: #ededed solid 1px;
}

#goods-search .list .box .pic {
  background-color: #f5f5f5;
}

#goods-search .list .box a {
  text-decoration: none;
}

#goods-search .list .box .info {
  padding-top: 20px;
}

#goods-search .list .box h3 {
  margin: 0 0 10px 0;
  font-weight: 300;
}

#goods-search .list .box h3 a {
  font-size: 2rem;
  font-size: 24px;
  color: #000;
}

#goods-search .list .box p {
  margin: 0 0 10px 0;
  line-height: 24px;
}

#goods-search .list .box .data li {
  margin: 8px 0;
}

#goods-search .list .box .data div {
  margin-right: 20px;
  float: left;
  width: 45px;
  color: #666;
  line-height: 22px;
}

#goods-search .list .box .data a {
  display: block;
  color: #333;
  overflow: hidden;
}

#goods-search .list .box .data span {
  padding-left: 5px;
  color: #999;
  font-weight: 300;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#goods-search .list .box .data a:hover span {
  color: #333;
}

@media screen and (max-width: 767px) {
  #goods-search .list {
    margin: 0 auto;
    max-width: 460px;
  }
}
@media screen and (min-width: 768px) {
  #goods-search .list .box {
    background-color: #f5f5f5;
  }
  #goods-search .list .box .pic {
    margin-right: 35px;
    float: left;
    width: 330px;
  }
  #goods-search .list .box .info {
    padding-right: 40px;
    width: calc(100% - 405px);
    overflow: hidden;
  }
}
@media screen and (min-width: 1024px) {
  #goods-search .list .box .info {
    padding-top: 30px;
  }
}
/* =====================================
   會員系統
===================================== */
#member .login-wrap {
  width: 100%;
}

#member .login {
  width: 100%;
  padding: 45px 15px 30px;
  border: #e6e6e6 solid 1px;
  background-color: #fafafa;
}

#member .other ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

#member .other li {
  padding: 0 0 10px;
  margin: 0;
}

#member .other a {
  color: #453b39;
  display: block;
  padding: 20px 0;
  border-radius: 7px;
  border: #ccc 1px solid;
  font-size: 16px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#member .other a:hover {
  text-decoration: none;
  color: #000;
  background: #fafafa;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#member .other .info {
  color: #453b39;
  display: block;
  padding: 20px 15px;
  border-radius: 7px;
  border: #ccc 1px solid;
  font-size: 15px;
  margin: 20px 0;
  text-align: center;
  line-height: 1.6;
}

#member .welcome {
  margin: 0 auto;
  padding: 60px 15px 50px;
  border: #e6e6e6 solid 1px;
  background: url(../images/welcome.png) 20px 20px no-repeat #fafafa;
  background-size: 80% auto;
  line-height: 1.8;
}

#member .welcome .data {
  font-weight: bold;
  color: #999;
  margin-bottom: 30px;
}

#member .welcome .data span {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

#member .welcome-view td {
  font-size: 16px;
}

#member .date {
  font-size: 1.083333rem;
  font-size: 13px;
  color: #666;
  font-weight: 300;
  width: 100px;
}

#member .date span {
  font-family: "Times New Roman", serif;
  font-size: 1.833333rem;
  font-size: 15px;
}

#member .welcome p {
  padding: 15px 0;
}

#member .welcome caption {
  color: #d1183b;
  font-size: 16px;
}

#member .welcome td {
  border-top: #ccc 1px dotted;
  border-bottom: #ccc 1px dotted;
  padding: 8px 0;
}

#member .welcome-view td {
  border-top: #ccc 1px dotted;
  border-bottom: #ccc 1px dotted;
  padding: 8px 0;
}

#member .welcome td a {
  color: #000;
}

#member .welcome td a:hover {
  color: #666;
  text-decoration: none;
}

#member .welcome-view .edit-body {
  padding: 30px 0 50px;
  line-height: 1.8;
}

#member .join-form {
  margin: 0 auto;
  padding: 30px 15px 20px;
  border: #e6e6e6 solid 1px;
  background-color: #fafafa;
  line-height: 1.8;
}

#member .join-form h4.ti {
  font-weight: 500;
  padding: 0;
  margin: 0 0 20px;
  color: #2e1e1a;
}

#member .join-form .selectBox {
  margin-bottom: 10px;
}

#member .join-form #btn-group {
  margin-top: 10px;
}

#member .join-form .law {
  background: #fff;
  padding: 10px;
  margin-bottom: 10px;
  height: 150px;
  overflow: scroll;
  overflow-x: hidden;
  color: #999;
  line-height: 1.4;
}

#member.join-wrap .row {
  font-size: 0;
}

#member.join-wrap .row .form-group {
  font-size: 14px;
}

#member .tab-list {
  margin-bottom: 50px;
}

#member .tab-list .box .pic {
  background-color: #f5f5f5;
}

#member .tab-list h4 {
  font-size: 1.333333rem;
  font-size: 16px;
  color: #333;
}

#member .tab-list .box h4 {
  margin: 15px 0 0 5px;
}

#member .tab-list h4 a {
  color: #333;
  text-decoration: none;
}

#member .tab-list h4 small {
  display: block;
  padding-top: 3px;
  font-size: 1.083333rem;
  font-size: 13px;
  color: #999;
}

#member .tab-list #btn-group {
  margin: 20px 0;
}

#member .tab-list .c1 {
  padding-bottom: 20px;
}

#member .tab-list th {
  padding: 10px 5px;
  border-bottom: #ddd 1px solid;
  background: #ededed;
  text-align: center;
}

#member .tab-list.order td {
  padding: 10px 5px;
  border-bottom: #ddd 1px solid;
  line-height: 1.5;
}

#member .tab-list.order td a {
  color: #000;
  font-size: 17px;
  outline: none;
}

#member .tab-list.order td a i {
  display: inline-block;
  margin: -2px 5px 0 5px;
  vertical-align: middle;
}

#member .tab-list.order td a:hover {
  color: #666;
}

#member .tab-list.order td span {
  color: #e20000;
}

#member .form-wrap {
  margin: 0 auto 50px;
}

#member .tab-list.order td .info {
  margin: 5px 0;
}

#member .tab-list.order .recipient-btn {
  padding: 20px 0;
}

#member .tab-list.order .recipient-btn a {
  display: block;
  max-width: 320px;
  margin: 0 auto;
}

#member .tab-list.order .order-number {
  color: #000;
  font-size: 18px;
  padding-bottom: 20px;
}

#member .tab-list.order .pic {
  float: left;
  width: 80px;
  margin: 0 auto;
}

#member .tab-list.order .box .pic {
  background-color: #f5f5f5;
}

#member .tab-list.order .right-480 {
  float: right;
  margin-left: 15px;
  width: calc(100% - 95px);
}

#member .tab-list.order h4 {
  font-size: 1.333333rem;
  font-size: 16px;
  color: #333;
}

#member .tab-list.order .box h4 {
  margin: 0 0 10px;
}

#member .tab-list.order h4 a {
  color: #333;
  text-decoration: none;
}

#member .tab-list.order h4 small {
  display: block;
  padding-top: 3px;
  font-size: 1.083333rem;
  font-size: 13px;
  color: #999;
}

#member .tab-list.order .price, #member .tab-list.order .number, #member .tab-list.order .total {
  font-size: 15px;
  color: #333;
  padding-top: 5px;
}

#member .tab-list.order .price del {
  color: #666;
  font-size: 14px;
}

#member .tab-list.order .count {
  padding: 10px;
  background: #f5f5f5;
  text-align: right;
  line-height: 1.8;
}

#member .tab-list.order .count ul li {
  padding: 2px 0;
  color: #666;
  border-bottom: #ddd solid 1px;
}

#member .tab-list.order .count ul li:last-child {
  border-bottom: 0;
}

#member .tab-list.order .count ul li span {
  padding: 0 5px;
  font-size: 1.333333rem;
  font-size: 16px;
  color: #000;
}

#member .tab-list.order .count ul li strong {
  padding: 0 5px;
  font-size: 22px;
  font-weight: 400;
  color: #d1183b;
}

#member .tab-list.order .count .discount {
  color: #da778a;
}

#member .tab-list.order p.remarks {
  margin: 10px 0 0 0;
  text-align: right;
}

#member .tab-list.order p.remarks a {
  color: #da778a;
}

#member .form-wrap .selectBox {
  margin-bottom: 10px;
}

#member .form-wrap .radio-style {
  font-size: 15px;
  padding: 10px;
  line-height: 1.8;
  background: #f0f0f0;
}

#member .form-wrap .radio-style td.c1 a {
  padding-left: 3px;
  color: #e20000;
  text-decoration: none;
}

#member .form-wrap .radio-style td.c1 a i {
  padding: 0 3px;
}

#member .form-wrap .radio-style .note {
  color: #da778a;
  font-size: 14px;
  margin-left: 18px;
}

#member .form-wrap .radio-style .sub {
  margin-left: 18px;
  border-left: #ccc 3px solid;
}

#member .form-wrap .radio-style .open {
  display: none;
}

#member .form-wrap .radio-style td {
  vertical-align: top;
}

#member .form-wrap .radio-style .sub td {
  padding-left: 5px;
}

@media only screen and (min-width: 641px) {
  #member .login-wrap {
    max-width: 500px;
    margin: 0 auto;
  }
  #member .login {
    padding: 45px 30px 30px;
  }
  #member .login .form-group .ti-label {
    line-height: 34px;
  }
}
@media only screen and (min-width: 768px) {
  #member .login-wrap {
    max-width: 100%;
    width: 90%;
  }
  #member .login {
    width: 500px;
    float: left;
  }
  #member .other {
    width: calc(100% - 520px);
    float: right;
  }
  #member .other .info {
    text-align: center;
    margin: 0;
    padding: 0 15px;
  }
  #member .other .info .h197 {
    height: 197px;
  }
  #member .other .info .h241 {
    height: 241px;
  }
  #member .other ul {
    margin: 0;
  }
  #member .login .btn-wrap {
    float: right;
  }
}
@media only screen and (min-width: 1025px) {
  #member .login-wrap {
    margin-top: 70px;
  }
}
@media only screen and (min-width: 1200px) {
  #member .login {
    width: 600px;
  }
  #member .other {
    width: calc(100% - 620px);
  }
}
@media only screen and (min-width: 480px) {
  #member .welcome {
    background: url(../images/welcome.png) 20px 20px no-repeat #fafafa;
    background-size: initial;
  }
}
@media only screen and (min-width: 641px) {
  #member .welcome {
    padding: 90px 30px 50px;
    max-width: 500px;
  }
  #member .welcome-view {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  #member .welcome {
    padding: 90px 30px 50px;
    max-width: 90%;
  }
  #member .welcome-view {
    max-width: 90%;
  }
}
/*加入會員、修改會員資料共用*/
@media only screen and (min-width: 641px) {
  #member .join-form {
    padding: 30px 30px 20px;
    max-width: 500px;
  }
}
@media only screen and (min-width: 768px) {
  #member .join-form {
    padding: 30px 30px 20px;
    max-width: 90%;
  }
  #member .join-form #btn-group {
    margin-top: 0;
    float: right;
  }
}
/* 加入會員 */
@media only screen and (min-width: 768px) {
  #member.join-wrap .row .col-sm-12, #member.join-wrap .row .col-sm-6 {
    display: inline-block;
    vertical-align: top;
    float: none;
  }
}
@media only screen and (max-width: 767px) {
  #member .tab-list .btn-group {
    margin: 20px 0 20px;
  }
}
@media only screen and (min-width: 641px) {
  #member .tab-list, #member .form-wrap {
    max-width: 500px;
    margin: 0 auto 50px;
  }
}
@media only screen and (min-width: 768px) {
  #member .tab-list, #member .form-wrap {
    max-width: 90%;
  }
  #member .tab-list .box .pic {
    width: 100px;
  }
  #member .tab-list .c1 {
    width: 100px;
    padding-bottom: 10px;
  }
  #member .tab-list td {
    padding: 10px 5px;
    border-bottom: #ddd 1px solid;
  }
  #member .tab-list.order td {
    text-align: center;
  }
  #member .tab-list.order th.text-left, #member .tab-list.order td.text-left {
    text-align: left;
  }
  #member .tab-list.order tr.bg-gray {
    background: #fafafa;
  }
  #member .tab-list.order .recipient-btn a {
    max-width: 200px;
  }
}
@media only screen and (max-width: 415px) {
  #member .tab-list.order .count ul li strong {
    display: block;
  }
}
@media only screen and (min-width: 480px) {
  #member .tab-list.order .pic {
    width: 120px;
  }
  #member .tab-list.order .right-480 {
    width: calc(100% - 135px);
  }
  #member .tab-list.order .price, #member .tab-list.order .total, #member .tab-list.order .number {
    padding-top: 10px;
  }
}
@media only screen and (min-width: 768px) {
  #member .tab-list.order .pic, #member .tab-list.order .c1 {
    width: 100px;
  }
  #member .tab-list.order .number {
    width: 80px;
    text-align: center;
  }
  #member .tab-list.order .price, #member .tab-list.order .total {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  #member .form-wrap .radio-style td.c1 {
    width: 210px;
  }
  #member .form-wrap .radio-style .sub td.c1 {
    width: 125px;
  }
}
/*彈出視窗*/
.display-none {
  display: none;
}

.pop-wrap {
  position: relative;
  max-width: 500px;
  background: #fff;
  margin: 0 auto;
  border: 10px solid #efefef;
  padding: 3%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pop-wrap .payment-ti {
  font-size: 24px;
  text-align: center;
  padding: 10px 0 30px;
}

#member .payment-ti {
  font-size: 24px;
  text-align: center;
  padding: 10px 0 30px;
}

.pop-wrap .payment-ti::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #333;
  margin: 10px auto 0;
}

.pop-wrap .w24p {
  margin-left: 1%;
}

.pop-wrap #btn-group {
  margin: 30px 0 10px;
}

.pop-wrap .selectBox {
  margin-bottom: 10px;
}

.pop-wrap .form-wrap .radio-style {
  font-size: 15px;
  padding: 5px 10px;
  line-height: 1.8;
  background: #f0f0f0;
}

.pop-wrap .info-list table {
  border-top: #ddd 1px solid;
}

.pop-wrap .info-list tr {
  border-bottom: #ddd 1px solid;
}

.pop-wrap .info-list th, .pop-wrap .info-list td {
  padding: 10px 5px;
}

.pop-wrap .info-list th {
  width: 80px;
  text-align: center;
}

.pop-wrap .info-list td p {
  display: none;
  border-top: #ccc 1px dashed;
  padding-top: 10px;
  color: #cc3333;
}

.pop-wrap .info-list td a {
  color: #000;
  font-size: 18px;
}

.pop-wrap .contact-edit {
  margin-top: 30px;
  display: none;
}

@media only screen and (min-width: 768px) {
  .pop-wrap .info-list td {
    font-size: 16px;
  }
}
/* =====================================
   購物車
===================================== */
#cart .nav-step .step {
  float: left;
  width: 25%;
  font-size: 18px;
  border: #ccc 1px solid;
  border-right: none;
  background: #fff;
  padding: 5px 10px;
  margin: 15px 0 0 0;
  color: #666;
  font-style: italic;
  text-align: center;
}

#cart .nav-step .step:last-child {
  border-right: #ccc 1px solid;
}

#cart .nav-step .step.current {
  background: #000;
  border-color: #000;
  color: #fff;
}

#cart .con-wrap-b {
  padding-top: 50px;
  padding-bottom: 50px;
}

#cart h3.step-ti {
  padding: 0;
  margin: 30px 0 50px;
  text-align: center;
}

#cart h3.step-ti::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #333;
  margin: 10px auto 0;
}

#cart .tab-list {
  width: 100%;
}

#cart .tab-list th {
  background: #666;
  color: #fff;
  padding: 5px;
  text-align: center;
}

#cart .tab-list td {
  padding: 10px;
  border-bottom: #ccc 1px solid;
}

#cart .tab-list .pic {
  float: left;
  width: 80px;
  margin: 0 auto;
}

#cart .tab-list .box .pic {
  background-color: #f5f5f5;
}

#cart .tab-list h4 {
  font-size: 1.333333rem;
  font-size: 16px;
  color: #333;
}

#cart .tab-list .box h4 {
  margin: 0 0 10px;
}

#cart .tab-list .right-480 {
  float: right;
  margin-left: 15px;
  width: calc(100% - 95px);
}

#cart .tab-list h4 a {
  color: #333;
  text-decoration: none;
}

#cart .tab-list h4 small {
  display: block;
  padding-top: 3px;
  font-size: 1.083333rem;
  font-size: 13px;
  color: #999;
}

#cart .tab-list a.dele {
  font-size: 20px;
  color: #000;
}

#cart .tab-list a.dele.visible-xs {
  float: right;
}

#cart .tab-list a.dele:hover {
  color: #666;
}

#cart .tab-list .price, #cart .tab-list .total {
  font-size: 15px;
  color: #333;
  padding-top: 5px;
}

#cart .tab-list .price del {
  color: #666;
  font-size: 14px;
}

#cart .tab-list .number {
  padding-top: 5px;
}

#cart .count {
  padding: 10px;
  background: #f5f5f5;
  text-align: right;
  line-height: 1.8;
}

#cart .count ul li {
  padding: 2px 0;
  color: #666;
  border-bottom: #ddd solid 1px;
}

#cart .count ul li:last-child {
  border-bottom: 0;
}

#cart .count ul li span {
  padding: 0 5px;
  font-size: 1.333333rem;
  font-size: 16px;
  color: #000;
}

#cart .count ul li strong {
  padding: 0 5px;
  font-size: 22px;
  font-weight: 400;
  color: #d1183b;
}

#cart .count .discount {
  color: #da778a;
}

#cart p.remarks {
  margin: 10px 0 0 0;
  text-align: right;
}

#cart p.remarks a {
  color: #da778a;
}

#cart #btn-group {
  margin-top: 30px;
}

#cart .form-wrap .selectBox {
  margin-bottom: 10px;
}

#cart .form-wrap .option {
  border: #ccc 1px solid;
  padding: 5px 10px;
  border-radius: 7px;
  margin: 10px 0 15px;
  text-align: right;
  color: #ccc;
}

#cart .form-wrap .option a {
  font-size: 13px;
  color: #333;
}

#cart .form-wrap .option a:hover {
  color: #666;
  text-decoration: none;
}

#cart .form-wrap .btn-reload {
  font-size: 13px;
  border: #ccc 1px solid;
  padding: 3px 10px;
  border-radius: 7px;
  margin: 10px 0 15px;
  color: #000;
  background: #fff;
  margin: 0;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#cart .form-wrap .btn-reload:hover {
  background: #666;
  color: #f1f1f1;
  border: #666 1px solid;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#cart .form-wrap .radio-style {
  font-size: 15px;
  line-height: 1.8;
  background: #f0f0f0;
}

#cart .form-wrap .radio-style .note {
  color: #bf5267;
  font-size: 14px;
  margin-left: 18px;
}

#cart .form-wrap .radio-style .sub {
  margin-left: 18px;
  border-left: #ccc 3px solid;
  width: calc(100% - 15px);
}

#cart .form-wrap .radio-style .open {
  display: none;
}

#cart .form-wrap .radio-style td {
  padding: 8px 10px;
  vertical-align: top;
}

#cart .form-wrap .radio-style td[colspan="2"] {
  padding: 0 10px;
}

#cart .form-wrap .radio-style .sub td {
  padding: 8px 10px;
  border-bottom: #ccc 1px solid;
}

#cart .form-wrap .radio-style .bg {
  background: #e3e3e3;
}

#cart .edit-btn {
  width: 150px;
  float: right;
  margin: 30px 0;
}

#cart .done-txt {
  padding: 20px 10px;
  background: #f1f1f1;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}

#cart .done-txt strong {
  font-size: 18px;
  font-weight: 400;
  color: #d1183b;
}

#cart .done-txt hr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #fff;
}

#cart .done-txt .payment {
  color: #333;
  text-align: left;
  margin: 0 10px;
}

@media only screen and (min-width: 641px) {
  #cart .nav-step {
    max-width: 590px;
    margin: 0 auto;
  }
  #cart .nav-step .step {
    margin: 30px 0 0 0;
  }
}
@media only screen and (min-width: 1025px) {
  #cart #nav-wrap.about {
    bottom: -10px;
  }
}
@media only screen and (min-width: 480px) {
  #cart .tab-list .pic {
    width: 120px;
  }
  #cart .tab-list .right-480 {
    width: calc(100% - 135px);
  }
  #cart .tab-list .price, #cart .tab-list .total, #cart .tab-list .number {
    padding-top: 10px;
  }
}
@media only screen and (min-width: 768px) {
  #cart .tab-list .c1 {
    width: 150px;
  }
  #cart .tab-list .number {
    width: 80px;
    text-align: center;
  }
  #cart .tab-list .price, #cart .tab-list .total {
    text-align: center;
  }
}
@media only screen and (max-width: 415px) {
  #cart .count ul li strong {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  #cart .form-wrap h4.ti {
    float: left;
  }
  #cart .form-wrap .option {
    float: right;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  #cart .form-wrap .radio-style td.c1 {
    width: 220px;
  }
  #cart .form-wrap .radio-style .sub td.c1 {
    width: 170px;
  }
}
/* =====================================
   購物說明
===================================== */
#shop-note .edit-body {
  line-height: 1.8;
}

/* =====================================
   網站聲明
===================================== */
#statement .edit-body {
  line-height: 1.8;
}

#statement .edit-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#statement .edit-body p {
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  #statement .edit-body {
    padding: 0 30px;
  }
  #statement .edit-body ul li {
    padding-left: 24px;
  }
}
/* =====================================
   網站地圖
===================================== */
#sitemap .list h3.ti {
  padding: 10px;
  margin: 0 0 15px;
  font-size: 18px;
  color: #453b39;
  border-radius: 6px;
  border: #453b39 1px solid;
  text-align: center;
}

#sitemap .list h3.ti a {
  display: block;
  color: #453b39;
}

#sitemap .list h3.ti a:hover {
  text-decoration: none;
  color: #000;
}

#sitemap .list ul {
  list-style: none;
  padding: 0 0 30px;
  margin: 0;
}

#sitemap .list li {
  padding: 5px 0;
  margin: 0;
  text-align: center;
  border-bottom: #f3f1f0 1px solid;
}

#sitemap .list li a {
  color: #756d6b;
  font-size: 15px;
  display: block;
}

#sitemap .list li a:hover {
  text-decoration: none;
  color: #453b39;
}

#sitemap .list li:hover {
  border-bottom: #d3cac5 1px solid;
}

#sitemap .visible-480 {
  display: none !important;
}

@media only screen and (min-width: 480px) {
  #sitemap .list {
    width: 50%;
    float: left;
    padding: 0 10px;
  }
  #sitemap .visible-480 {
    display: block !important;
  }
}
@media only screen and (min-width: 768px) {
  #sitemap .list-wrap {
    max-width: 720px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1200px) {
  #sitemap .list-wrap {
    max-width: 870px;
  }
  #sitemap .list {
    width: 33.3%;
  }
  #sitemap .visible-480 {
    display: none !important;
  }
}
@media only screen and (min-width: 1366px) {
  #sitemap .list-wrap {
    max-width: 1035px;
  }
  #sitemap .list {
    width: 25%;
  }
  #sitemap .visible-lg {
    display: none !important;
  }
  #sitemap .visible-1366 {
    display: block !important;
  }
}
/* =====================================
   系統資訊
===================================== */
#error .txt {
  padding-bottom: 40px;
  font-size: 1.25rem;
  font-size: 15px;
  line-height: 28px;
}

#error #btn-group ul {
  text-align: left;
}

/* 以下套程式後可刪除 */
.style-word {
  font-size: 1.25rem;
  font-size: 15px;
  line-height: 32px;
}

.main-pic {
  margin: 0 auto;
  max-width: 880px;
}

.intro-txt {
  padding: 10px 0;
  font-weight: 300;
  text-align: center;
}

.intro-txt .ti {
  font-size: 2.5rem;
  font-size: 30px;
}

.intro-txt .subtitle {
  padding-bottom: 15px;
  font-size: 1.666666rem;
  font-size: 20px;
}

.intro-txt p {
  font-size: 1.25rem;
  font-size: 15px;
  line-height: 30px;
}

.pic-l {
  margin-top: 20px;
}

.pic-l div {
  margin-bottom: 14px;
}

.pic-r p {
  margin: 20px 0 10px 30px;
  font-size: 1.25rem;
  font-size: 15px;
  color: #666;
  font-weight: 300;
  line-height: 30px;
}

.pic-r p img {
  margin-top: 20px;
}

@media screen and (max-width: 991px) {
  .pic-r p {
    text-align: center;
  }
  .pic-l img, .pic-r img {
    margin: 0 auto;
  }
}
@media screen and (min-width: 992px) {
  .pic-l {
    padding-right: 14px;
    float: left;
    width: 59%;
  }
  .pic-l div {
    float: left;
  }
  .pic-l div:nth-child(2) {
    float: right;
  }
  .pic-r {
    margin-top: 70px;
    float: right;
    width: 41%;
  }
}
@media screen and (min-width: 1200px) {
  .pic-l {
    width: 53.5%;
  }
  .pic-r {
    margin-top: 80px;
    width: 46.5%;
  }
}
.shareBox {
  position: fixed;
  z-index: 201;
  right: 18px;
  bottom: 100px;
}

/* Facebook message-main */
.line-btn, .tel-btn, .phone-btn, .fb-btn, .message-btn {
  display: block;
  width: 60px;
  height: 60px;
  font-size: 0;
  border-radius: 50%;
  margin: 5px;
}

.line-btn {
  background: #00b900;
}

.tel-btn, .phone-btn {
  background: #c80000;
}

.fb-btn, .message-btn {
  background: #0050dc;
}

.line-btn:before, .tel-btn:before, .phone-btn:before, .fb-btn:before, .message-btn:before {
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.line-btn:before {
  background: url(../images/icon_line.png) no-repeat 0 0;
  background-size: auto 100%;
}

.fb-btn:before {
  background: url(../images/icon_fb.png) no-repeat 0 0;
  background-size: auto 100%;
}

.phone-btn:before, .tel-btn:before {
  background: url(../images/icon_tel.png) no-repeat 0 0;
  background-size: auto 100%;
}

.message-btn:before {
  background: url(../images/icon_msg.png) no-repeat 0 0;
  background-size: auto 100%;
  background: url(../images/icon_msg.png) no-repeat 0 0;
  background-size: auto 100%;
  background: url(../images/icon_msg.png) no-repeat 0 0;
  background-size: auto 100%;
}

.line-btn:hover, .phone-btn:hover, .tel-btn:hover, .fb-btn:hover, .message-btn:hover {
  opacity: 0.6;
}

.message-main {
  position: fixed;
  bottom: 5px;
  right: 20px;
  opacity: 0;
  pointer-events: none;
  z-index: 1030;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.message-main.open {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

.message-main .close-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #0050dc;
  z-index: 100;
  right: 0;
  top: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.message-main .close-btn:hover {
  background: #0084ff;
}

.message-main .close-btn:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 1px;
  background: #fff;
  top: 20px;
  left: 12px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.message-main .close-btn:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 1px;
  background: #fff;
  top: 20px;
  left: 12px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 991px) {
  .shareBox {
    right: 10px;
    bottom: 60px;
  }
}
@media screen and (max-width: 480px) {
  .shareBox {
    right: 5px;
  }
  .line-btn, .tel-btn, .message-btn, .fb-btn, .phone-btn {
    width: 40px;
    height: 40px;
  }
}
/* ===== 首頁大幅 ===== */
.i-brand-full {
  overflow: hidden;
}

.i-brand-full.active .item .txt {
  left: 15.35%;
  font-weight: 100;
}

.i-brand-full.active .item .pic .scroll-img-scale {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.i-brand-full img {
  max-width: 100%;
}

.i-brand-full .item {
  position: relative;
  display: inline-block;
  width: 100%;
  text-decoration: unset !important;
}

.i-brand-full .item .pic {
  overflow: hidden;
}

.i-brand-full .item .pic .scroll-img-scale {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.i-brand-full .item .txt {
  position: absolute;
  bottom: 11.5%;
  left: 10%;
  color: #fff;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.i-brand-full .item .txt .en {
  font-size: 50px;
  line-height: 1.4;
  /*text-shadow: rgb(0,0,0,85%) 4px 2px 15px;*/
  /* text-shadow: rgba(0, 0, 0,.95) 3px 2px 2px;
  font-weight: 100; */
  font-weight: 300;
}

.i-brand-full .item .txt .en::after {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background: #fff;
}

.i-brand-full .item .txt .zh {
  font-size: 40px;
  line-height: 1.4;
  margin-top: 8px;
  /*text-shadow: rgb(0,0,0,85%) 4px 2px 15px;*/
  /* text-shadow: rgba(0, 0, 0,.95) 3px 2px 2px; */
  font-weight: 300;
}

.i-brand-full .item .pic div[data-responsive-image] {
  background-size: cover;
}

.i-brand-full .items .pic img {
  background-size: cover;
}

#index [data-reel-sec] {
  font-size: 0;
}

#index [data-reel-sec] .fp-tableCell, #index [data-reel-sec] .fp-scrollable {
  font-size: 0;
}

@media (max-width: 1440px) {
  .i-brand-full.active .item .txt {
    left: 8%;
  }
  .i-brand-full .item .txt {
    left: 2%;
  }
  .i-brand-full .item .txt .en {
    font-size: 42px;
  }
  .i-brand-full .item .txt .zh {
    font-size: 36px;
  }
}
@media (max-width: 1199px) {
  .i-brand-full .item .pic div[data-responsive-image] {
    height: auto;
    padding-bottom: 52.25%;
  }
  #index [data-reel-sec] {
    height: auto !important;
    display: block !important;
  }
  #index [data-reel-sec] .fp-tableCell, #index [data-reel-sec] .fp-scrollable {
    height: auto !important;
    display: block !important;
  }
  .is-index #footer {
    position: relative !important;
    bottom: unset !important;
    left: unset;
    -webkit-animation: unset;
    animation: unset;
  }
  .i-brand-full .item .txt {
    left: 8%;
  }
  .fp-tableCell, .fp-section.fp-table, .fp-slide.fp-table {
    display: block !important;
    height: auto !important;
    overflow-y: auto !important;
  }
  .fp-enabled body, html.fp-enabled {
    overflow-y: auto !important;
  }
}
@media (max-width: 991px) {
  .i-brand-full .item .txt .en {
    font-size: 32px;
  }
  .i-brand-full .item .txt .zh {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  #index {
    padding-top: 70px;
  }
  .i-brand-full {
    margin-bottom: 20px;
  }
  .i-brand-full .item .txt {
    position: relative;
    top: unset;
    left: unset !important;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    color: #222;
    text-align: center;
    margin-top: 20px;
  }
  .i-brand-full .item .txt .en {
    font-size: 24px;
    text-shadow: unset;
  }
  .i-brand-full .item .txt .en::after {
    background: #222;
    margin: 5px auto 0;
  }
  .i-brand-full .item .txt .zh {
    font-size: 22px;
    text-shadow: unset;
  }
}
/* ===== 產品詳細 ===== */
#goods-view .info .icon-box {
  text-align: right;
}

#goods-view .info .icon-box .box {
  text-align: center;
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
}

#goods-view .info .icon-box .box .icon {
  margin-bottom: 5px;
}

#goods-view .info .icon-box .box p {
  font-size: 14px;
  color: #222;
}

.temp {
  padding: 20px 0;
}

img {
  max-width: 100% !important;
  height: auto !important;
}

/* ===== 樣板編輯器(左文右圖) ===== */
.temp-pic-left-txt-right .item-g {
  font-size: 0;
}

.temp-pic-left-txt-right .item-g .pic {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}

.temp-pic-left-txt-right .item-g .txt {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
  padding-left: 65px;
}

.temp-pic-left-txt-right .item-g .txt h3 {
  font-size: 30px;
  color: #333;
  margin: 0 0 15px 0;
}

.temp-pic-left-txt-right .item-g .txt p {
  font-size: 15px;
  color: #666;
}

/* ===== 樣板編輯器(左文右圖) ===== */
.temp-txt-left-pic-right .item-g {
  font-size: 0;
  direction: rtl;
}

.temp-txt-left-pic-right .item-g .pic {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}

.temp-txt-left-pic-right .item-g .txt {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
  direction: ltr;
  padding-right: 65px;
}

.temp-txt-left-pic-right .item-g .txt h3 {
  font-size: 30px;
  color: #333;
  margin: 0 0 15px 0;
}

.temp-txt-left-pic-right .item-g .txt p {
  font-size: 15px;
  color: #666;
}

/* ===== 樣板詳情 ===== */
.temp-detail ul {
  padding: 40px 0;
  margin: 0;
}

.temp-detail ul li {
  list-style: none;
  color: #000;
  font-size: 18px;
  padding: 15px 15px 15px 170px;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.temp-detail ul li:first-child {
  border-top: 1px solid #ddd;
}

.temp-detail ul li span {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 15px;
  left: 15px;
}

.temp-detail ul li span::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 7px;
  height: 2px;
  background: #000;
  margin-right: 10px;
}

/* ===== 樣板(三張圖) ===== */
.temp-pic-three {
  margin-bottom: 20px;
}

.temp-pic-three .item-g {
  font-size: 0;
  margin: 0 -10px;
}

.temp-pic-three .item-g .item {
  display: inline-block;
  vertical-align: top;
  width: 27%;
  padding: 0 10px;
}

.temp-pic-three .item-g .item:first-child {
  width: 46%;
}

/* ===== 樣板(四張圖) ===== */
.temp-pic-four {
  margin-bottom: 20px;
}

.temp-pic-four .item-g {
  font-size: 0;
  margin: 0 -10px;
}

.temp-pic-four .item-g .item {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  padding: 0 10px;
}

.video-wrap {
  position: relative;
  padding-top: 52.25%;
  margin-bottom: 25px;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1440px) {
  .temp-pic-left-txt-right .item-g .txt {
    padding-left: 30px;
  }
  .temp-txt-left-pic-right .item-g .txt {
    padding-right: 30px;
  }
  .temp-detail ul {
    padding: 20px 0;
  }
}
@media (max-width: 991px) {
  .temp-pic-left-txt-right .item-g .txt h3, .temp-txt-left-pic-right .item-g .txt h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
  }
  .temp-detail ul {
    padding: 20px 0;
  }
  .temp-detail ul li {
    font-size: 16px;
    padding: 12px 12px 12px 85px;
  }
  .temp-detail ul li span {
    top: 12px;
  }
  .temp-pic-three, .temp-pic-four {
    margin-bottom: 12px;
  }
  .temp-pic-three .item-g, .temp-pic-four .item-g {
    margin: 0 -6px;
  }
  .temp-pic-three .item-g .item, .temp-pic-four .item-g .item {
    padding: 0 6px;
  }
}
@media (max-width: 767px) {
  .temp-pic-left-txt-right .item-g .pic {
    width: 100%;
  }
  .temp-pic-left-txt-right .item-g .txt {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .temp-pic-left-txt-right .item-g .txt h3 {
    font-size: 20px;
  }
  .temp-txt-left-pic-right .item-g .pic {
    width: 100%;
  }
  .temp-txt-left-pic-right .item-g .txt {
    width: 100%;
    padding-right: 0;
    margin-top: 20px;
  }
  .temp-txt-left-pic-right .item-g .txt h3 {
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  .temp-pic-three {
    margin-bottom: 15px;
  }
  .temp-pic-three .item-g .item {
    width: 100%;
    text-align: center;
    padding: 0;
    margin-bottom: 15px;
  }
  .temp-pic-three .item-g .item:first-child {
    width: 100%;
  }
  .temp-pic-four {
    margin-bottom: 15px;
  }
  .temp-pic-four .item-g .item {
    width: 100%;
    text-align: center;
    padding: 0;
    margin-bottom: 15px;
  }
}
/* ===== 麵包屑 ===== */
#g-wrap.has-ban .p-breadcrumb ul li::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

#g-wrap.has-ban .p-breadcrumb ul li a {
  color: #fff;
}

.p-breadcrumb {
  width: 100%;
  position: absolute;
  top: 100px;
  z-index: 10;
}

.p-breadcrumb .wrap-1400 {
  margin: auto;
  max-width: 1400px;
}

.p-breadcrumb ul {
  font-size: 0;
  margin: 0;
  padding: 0;
}

.p-breadcrumb ul li {
  display: inline-block;
  vertical-align: middle;
  padding-right: 20px;
  position: relative;
}

.p-breadcrumb ul li::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #616161;
  border-right: 1px solid #616161;
  position: absolute;
  top: 6px;
  right: 8px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.p-breadcrumb ul li:last-child {
  padding-right: 0;
}

.p-breadcrumb ul li:last-child::after {
  display: none;
}

.p-breadcrumb ul li a {
  font-size: 14px;
  color: #616161;
}

.p-breadcrumb ul li a.current {
  color: #000;
}

@media (max-width: 1449px) {
  .p-breadcrumb .wrap-1400 {
    padding: 0 15px;
  }
}
@media (max-width: 1024px) {
  .p-breadcrumb {
    top: 82px;
  }
  #g-wrap .container.con-wrap {
    padding-top: 130px;
  }
  #g-wrap.has-ban .container.con-wrap {
    padding-top: 25px;
  }
}
/* ===== 品牌介紹 ===== */
#brand .list-g {
  font-size: 0;
}

#brand .list-g .item {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  padding: 0 10px;
  text-decoration: unset !important;
  margin-bottom: 40px;
}

#brand .list-g .box .pic {
  overflow: hidden;
  text-align: center;
}

#brand .list-g .box .pic img {
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  max-width: 100%;
}

#brand .list-g .box h3 {
  position: relative;
  color: #333;
  font-size: 16px;
  margin: 13px 0 0 0;
}

#brand .list-g .box h3::after {
  display: block;
  content: "";
  width: 0%;
  height: 1px;
  background: #333;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  margin-top: 13px;
}

@media (min-width: 992px) {
  #brand .list-g .box:hover .pic img {
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
  }
  #brand .list-g .box:hover h3::after {
    width: 6%;
  }
}
@media (max-width: 1440px) {
  #brand .list-g .item {
    margin-bottom: 25px;
  }
}
@media (max-width: 1024px) {
  #brand .list-g .item {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  #brand .list-g {
    margin: 0;
  }
  #brand .list-g .item {
    width: 100%;
    padding: 0;
  }
  #brand .list-g .box .pic {
    text-align: center;
  }
}
/* ===== 品牌產品 ===== */
#g-wrap.brand-wrap .p-breadcrumb {
  position: relative;
  top: unset;
  margin-top: 15px;
}

#g-wrap.brand-wrap .container.con-wrap {
  padding-top: 60px;
  padding-bottom: 60px;
}

.scroll-down {
  -webkit-animation: ani_scrolldown 1.25s ease infinite;
  animation: ani_scrolldown 1.25s ease infinite;
}

.scroll-down p {
  font-size: 13px;
  color: #fff;
  margin: 0 0 5px 0;
}

.scroll-down i {
  display: block;
  margin: auto;
  width: 20px;
  height: 12px;
  background: url(../images/icon_scroll_down_triangle.png) no-repeat;
  background-size: contain;
}

@-webkit-keyframes ani_scrolldown {
  0% {
    -webkit-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
  }
  50% {
    -webkit-transform: translateY(-10px) translateX(-50%);
    transform: translateY(-10px) translateX(-50%);
  }
  100% {
    -webkit-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
  }
}
@keyframes ani_scrolldown {
  0% {
    -webkit-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
  }
  50% {
    -webkit-transform: translateY(-10px) translateX(-50%);
    transform: translateY(-10px) translateX(-50%);
  }
  100% {
    -webkit-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
  }
}
#introduction img {
  max-width: 100%;
}

#introduction .brand-slick-wrap img {
  width: 100%;
}

#introduction .prod-img {
  position: relative;
}

#introduction .prod-img > img {
  width: 100%;
}

#introduction .prod-img .xs-show {
  display: none;
}

#introduction .prod-img .txt {
  display: none;
  /*background: rgba(0, 0, 0, 0.7);
  padding: 55px 60px 55px 80px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);*/
}

#introduction .prod-img .txt .logo {
  width: 342px;
}

#introduction .prod-img .txt h2 {
  font-size: 30px;
  line-height: 1.4;
  margin: 0;
  color: #fff;
  font-weight: 100;
}

#introduction .prod-img .txt h2::before {
  content: "";
  display: block;
  width: 8%;
  height: 1px;
  background: #fff;
  margin: 15px 0 8px;
}

#introduction .prod-img .scroll-down {
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 30px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#introduction .view-ti-box {
  text-align: center;
}

#introduction .view-ti-box h3 span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

#introduction .view-ti-box .since {
  display: inline-block;
  color: #000;
  font-size: 22px;
  margin-top: 20px;
  line-height: 1.4;
}

#introduction .brand-ti-box {
  margin-bottom: 15px;
  text-align: center;
}

#introduction .brand-ti-box h3 {
  font-size: 38px;
  color: #000;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

#introduction .brand-ti-box h3 img {
  display: inline-block;
  vertical-align: middle;
  margin-top: -10px;
}

#introduction .brand-ti-box h3 span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  margin-left: 10px;
}

#introduction .brand-ti-box .since {
  display: inline-block;
  color: #000;
  font-size: 22px;
  margin-top: 20px;
  line-height: 1.4;
}

#introduction .popup-pic .item-g {
  font-size: 0;
  margin: 0 -10px;
}

#introduction .popup-pic .item-g .item {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}

#introduction .popup-pic .item-g .box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

#introduction .popup-pic .item-g .box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  pointer-events: none;
}

#introduction .popup-pic .item-g .box span {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 17px;
  text-align: center;
  padding: 0 8px;
  color: #000;
  z-index: 2;
  opacity: 0;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  pointer-events: none;
}

#introduction .popup-pic .item-g .box span i {
  display: inline-block;
  font-style: unset;
}

#introduction .popup-pic .item-g .box span::after {
  content: "";
  display: block;
  width: 35%;
  height: 1px;
  margin: 10px auto 0;
  background: #000;
  pointer-events: none;
}

#introduction .popup-pic .item-g .box img {
  max-width: 100%;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

.edit-wrap {
  padding: 20px 0;
}

.edit-wrap.deco-line {
  border-top: 1px solid #ddd;
}

.wrap-1060 {
  max-width: 1060px;
  margin: auto;
}

.inherited-slick {
  font-size: 0;
  margin: 30px 10px 0;
}

.inherited-slick .item {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  outline: none;
  text-decoration: unset !important;
  padding: 0 10px;
}

.inherited-slick .box {
  position: relative;
}

.inherited-slick .box .pic {
  overflow: hidden;
}

.inherited-slick .box .pic img {
  max-width: 100%;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

.inherited-slick .box h4 {
  font-size: 16px;
  color: #333;
  margin: 0;
  text-align: center;
  /* padding: 8px 0; */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  height: 32px;
  line-height: 32px;
}

.inherited-slick .box h4::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #333;
  margin: 8px auto 0;
  -webkit-transition: width 0.25s ease-in-out;
  transition: width 0.25s ease-in-out;
}

.spirit {
  max-width: 1240px;
  margin: auto;
}

.spirit .btn-wrap {
  text-align: right;
  margin-top: 20px;
}

.spirit .btn-wrap a {
  font-size: 16px;
  color: #000;
}

.spirit-slick {
  font-size: 0;
  margin: 30px 10px 0;
}

.spirit-slick .item {
  display: inline-block;
  vertical-align: top;
  width: 33.33%;
  outline: none;
  text-decoration: unset !important;
  padding: 0 10px;
}

.spirit-slick .box .pic {
  overflow: hidden;
  position: relative;
}

.spirit-slick .box .pic::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.spirit-slick .box .pic span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 17px;
  color: #000;
  z-index: 2;
  opacity: 0;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.spirit-slick .box .pic span::after {
  content: "";
  display: block;
  width: 35%;
  height: 1px;
  margin: 10px auto 0;
  background: #000;
}

.spirit-slick .box .pic img {
  max-width: 100%;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.slick-wrap {
  border-top: #ededed solid 1px;
  padding: 50px 0;
}

.slick-style .slick-arrow {
  width: 15px;
  height: 15px;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  z-index: 1;
  top: 50%;
}

.slick-style .slick-arrow.slick-prev {
  -webkit-transform: translateY(-50%) rotate(-135deg);
  -ms-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}

.slick-style .slick-arrow.slick-next {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.museum {
  border-top: 1px solid #ddd;
}

.museum h3 {
  position: relative;
  cursor: pointer;
}

.museum h3.open-down::after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 4px;
}

.museum h3::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  position: absolute;
  top: 6px;
  right: 20px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.museum ul {
  margin: 25px 0 0;
  padding: 0;
}

.museum ul li {
  display: inline-block;
  vertical-align: top;
  list-style: none;
  font-size: 15px;
  margin-bottom: 5px;
}

.museum ul li a {
  color: #222;
}

.museum ul li a span {
  font-weight: bold;
  display: inline-block;
}

.museum ul li a span::after {
  content: "-";
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}

.milestone-wrap {
  padding: 60px 0;
  border-top: 1px solid #ddd;
}

.milestone-ti-box {
  color: #000;
  text-align: center;
}

.milestone-ti-box h3 {
  font-size: 28px;
  margin: 0 0 10px;
}

.milestone-ti-box span {
  display: inline-block;
  font-size: 16px;
}

.milestone {
  padding: 30px 0;
  margin: 30px auto 0;
  max-width: 1220px;
  position: relative;
}

.milestone::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url(../images/milestone_circle.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.milestone::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #e5e5e5;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.milestone li {
  list-style: none;
  font-size: 0;
  margin: 60px 0;
}

.milestone li:nth-child(odd) .txt {
  direction: rtl;
  text-align: right;
  padding-right: 130px;
}

.milestone li:nth-child(odd) .txt span {
  margin-left: 40px;
  position: absolute;
  top: -10px;
  right: 10px;
}

.milestone li:nth-child(odd) .txt span::before {
  content: "";
  width: 45px;
  height: 1px;
  background: #000;
  position: absolute;
  left: -36px;
  bottom: 17px;
  -webkit-transform: rotate(52deg);
  -ms-transform: rotate(52deg);
  transform: rotate(52deg);
}

.milestone li:nth-child(odd) .txt p {
  direction: ltr;
}

.milestone li:nth-child(even) {
  direction: rtl;
}

.milestone li:nth-child(even) .txt {
  direction: ltr;
  padding-left: 130px;
}

.milestone li:nth-child(even) .txt span {
  margin-right: 40px;
  position: absolute;
  top: -10px;
  left: 10px;
}

.milestone li:nth-child(even) .txt span::before {
  content: "";
  width: 45px;
  height: 1px;
  background: #000;
  position: absolute;
  right: -42px;
  bottom: 18px;
  -webkit-transform: rotate(-54deg);
  -ms-transform: rotate(-54deg);
  transform: rotate(-54deg);
}

.milestone li:nth-child(even) .txt span::after {
  left: -60px;
}

.milestone li:last-child::after {
  content: "";
  display: block;
  width: 16px;
  height: 13px;
  background: url(../images/milestone_arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

.milestone li .txt, .milestone li .pic {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
}

.milestone li .txt {
  color: #000;
  position: relative;
}

.milestone li .txt span {
  font-size: 35px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  line-height: 1.4;
}

.milestone li .txt span::after {
  content: "";
  display: block;
  width: 145px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0;
}

.milestone li .txt p {
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

@media (min-width: 319px) {
  .inherited-slick .box:hover .pic img {
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
  }
  .inherited-slick .box:hover h4::after {
    width: 14%;
  }
  .spirit-slick .box:hover .pic::after, .spirit-slick .box:hover .pic span {
    opacity: 1;
  }
  .spirit-slick .box:hover .pic img {
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
  }
  #introduction .popup-pic .item-g .box:hover::after, #introduction .popup-pic .item-g .box:hover span {
    opacity: 1;
  }
  #introduction .popup-pic .item-g .box:hover img {
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
  }
}
@media (max-width: 1440px) {
  #introduction .prod-img .txt {
    width: auto;
    padding: 45px;
  }
  #introduction .view-ti-box .since, #introduction .brand-to-box .since {
    margin-top: 10px;
  }
  .milestone li {
    margin: 30px 0;
  }
  .milestone li:nth-child(even) .txt span::after {
    left: -20px;
  }
  .milestone li .txt span::after {
    width: 105px;
  }
  .milestone li .txt p br {
    display: none;
  }
}
@media (max-width: 1199px) {
  .slick-style .slick-arrow.slick-prev {
    left: -12px;
  }
  .slick-style .slick-arrow.slick-next {
    right: -12px;
  }
  #introduction .prod-img .txt {
    padding: 35px 45px;
  }
}
@media (max-width: 991px) {
  .slick-wrap {
    padding: 25px 0;
  }
  .inherited-slick, .spirit-slick {
    margin: 20px 10px 0;
  }
  .inherited-slick .item, .spirit-slick .item {
    padding: 0 8px;
  }
  .inherited-slick .box h4 {
    text-align: center;
  }
  #introduction .brand-ti-box {
    margin-bottom: 0;
  }
  #introduction .brand-ti-box h3 {
    font-size: 28px;
  }
  #introduction .prod-img {
    margin-top: 70px;
  }
  #introduction .prod-img .scroll-down {
    display: none;
  }
  #introduction .prod-img .txt {
    top: 65%;
  }
  #introduction .prod-img .txt .logo {
    width: 365px;
  }
  #introduction .prod-img .txt h2 {
    font-size: 22px;
  }
  .milestone-wrap {
    padding: 40px 0;
  }
  .milestone li:nth-child(odd) .txt {
    padding-right: 95px;
  }
  .milestone li:nth-child(odd) .txt span::before {
    display: none;
  }
  .milestone li:nth-child(even) .txt {
    padding-left: 95px;
  }
  .milestone li:nth-child(even) .txt span::before {
    display: none;
  }
  .milestone li:nth-child(even) .txt span::after {
    left: -40px;
  }
  .milestone li .txt span {
    font-size: 28px;
  }
  #g-wrap.brand-wrap .p-breadcrumb {
    margin-top: 10px;
  }
  #g-wrap.brand-wrap .container.con-wrap {
    padding-top: 40px;
    padding-bottom: 45px;
  }
}
@media (max-width: 767px) {
  #introduction .brand-ti-box h3 {
    font-size: 22px;
  }
  #introduction .prod-img .xs-hide {
    display: none;
  }
  #introduction .prod-img .xs-show {
    display: block;
  }
  #introduction .prod-img .txt {
    padding: 25px 30px;
    top: 50%;
  }
  #introduction .prod-img .txt .logo {
    width: 285px;
  }
  #introduction .prod-img .txt h2 {
    font-size: 20px;
  }
  #introduction .view-ti-box h3 span {
    margin: 15px 0 0 0;
    width: 100%;
    font-size: 20px;
  }
  #introduction .view-ti-box .since {
    font-size: 18px;
    margin-top: 3px;
  }
  #introduction .brand-to-box .since {
    font-size: 18px;
    margin-top: 3px;
  }
  #introduction .brand-ti-box h3 span {
    font-size: 20px;
  }
  #introduction .popup-pic .item-g {
    margin: 0 -6px;
  }
  #introduction .popup-pic .item-g .item {
    width: 50%;
    padding: 0 6px;
    margin-bottom: 12px;
  }
  .milestone {
    padding: 15px 0 15px 25px;
  }
  .milestone::before {
    left: -5px;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
  .milestone::after {
    left: 5px;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
  .milestone li {
    margin: 25px 0;
  }
  .milestone li:nth-child(odd) .txt {
    text-align: left;
    direction: rtl;
    padding-right: 0;
  }
  .milestone li:nth-child(odd) .txt span {
    position: relative;
    top: unset;
    right: unset;
    margin-left: 0;
    width: auto;
  }
  .milestone li:nth-child(even) .txt {
    padding-left: 0;
  }
  .milestone li:nth-child(even) .txt span {
    position: relative;
    top: unset;
    left: unset;
    margin-right: 0;
    width: auto;
  }
  .milestone li:nth-child(even) .txt span::after {
    left: 0;
  }
  .milestone li:last-child::after {
    left: -2px;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
  .milestone li .txt, .milestone li .pic {
    width: 100%;
  }
  .milestone li .txt {
    margin-bottom: 20px;
  }
  .milestone li .txt span {
    margin-bottom: 15px;
  }
  .milestone li .txt span::after {
    width: 100%;
  }
  .milestone li .txt p {
    width: 100%;
  }
}
@media (max-width: 499px) {
  #introduction .prod-img .txt {
    top: unset;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    bottom: 0;
    padding: 20px;
  }
  #introduction .prod-img .txt .logo {
    width: 245px;
  }
  #introduction .popup-pic .item-g {
    margin: 0;
  }
  #introduction .popup-pic .item-g .item {
    width: 100%;
    padding: 0;
    margin-bottom: 15px;
  }
  #introduction .popup-pic .item-g .box {
    text-align: center;
  }
}
.brand-slick-wrap .slick-prev {
  left: 20px;
  width: 35px;
  height: 35px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.8);
}

.brand-slick-wrap .slick-prev::before {
  display: inline-block;
  margin-top: -3px;
}

.brand-slick-wrap .slick-next {
  right: 20px;
  width: 35px;
  height: 35px;
  background: rgba(0, 0, 0, 0.8);
}

.brand-slick-wrap .slick-next::before {
  display: inline-block;
  margin-top: -3px;
}

@media (max-width: 767px) {
  .brand-slick-wrap .slick-prev {
    width: 30px;
    height: 30px;
    left: 10px;
  }
  .brand-slick-wrap .slick-next {
    width: 30px;
    height: 30px;
    right: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  #g-wrap .pt-60 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 850px) {
  #g-wrap .pt-60 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 720px) {
  #g-wrap .pt-60 {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 640px) {
  #g-wrap .pt-60 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 480px) {
  #g-wrap .pt-60 {
    padding-top: 100px;
  }
}
/* 20240919 追加新功能及頁面 */
/* 20240919 追加 */
@media only screen and (min-width: 1025px) {
  #g-wrap .cd-primary-nav li.mobile {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  #g-wrap .cd-primary-nav li.mobile {
    display: block;
  }
}
#g-wrap #reserve .container.con-wrap {
  padding-top: 80px;
  padding-bottom: 80px;
}

#reserve .top-area {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #ededed;
}
#reserve .top-subject {
  padding-bottom: 30px;
  text-align: center;
}
#reserve .top-subject .tw {
  padding-bottom: 20px;
  font-size: 38px;
  font-weight: 600;
}
#reserve .top-subject .en {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
}
#reserve .summary {
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 1080px;
  font-size: 17px;
  text-align: center;
}
#reserve .step-area .subject {
  padding-bottom: 30px;
  font-size: 35px;
  text-align: center;
  font-weight: 600;
}
#reserve .step-list {
  position: relative;
}
#reserve .step-list::before {
  pointer-events: none;
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 40px;
  width: 1px;
  height: calc(100% + 100px);
  background-color: #e5e5e5;
}
#reserve .step-list .item {
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
#reserve .step-list .icon {
  margin-right: 40px;
  max-width: 80px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
}
#reserve .step-list .num {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 110px;
          flex: 0 0 110px;
  font-size: 22px;
  line-height: 80px;
}
#reserve .step-list .main-wrap {
  width: 100%;
}
#reserve .step-list .title {
  display: inline-block;
  position: relative;
  padding-top: 20px;
  font-size: 30px;
  font-weight: 600;
}
#reserve .step-list .title::before {
  pointer-events: none;
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #eaeaea;
}
#reserve .step-list .title span {
  position: relative;
  z-index: 1;
}
#reserve .step-list .text {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 17px;
}
#reserve .box-list .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0;
  width: 100%;
  background-color: #f6f6f6;
  border: 1px solid #e6e6e6;
}
#reserve .box-list .img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 440px;
          flex: 1 1 440px;
}
#reserve .box-list .main {
  padding: 20px;
  text-align: center;
  width: calc(100% - 440px);
}
#reserve .box-list .store-name {
  position: relative;
  padding-top: 20px;
}
#reserve .box-list .store-name .tw {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 600;
}
#reserve .box-list .store-name .en {
  position: absolute;
  z-index: 0;
  top: -30px;
  left: 0;
  width: 100%;
  font-size: 60px;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.1;
  font-family: "Times New Roman", serif;
}
#reserve .box-list .store-address {
  position: relative;
  font-size: 17px;
  padding-top: 20px;
  padding-bottom: 50px;
}
#reserve .box-list .store-address::before {
  pointer-events: none;
  content: "";
  position: absolute;
  bottom: 27px;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 1px;
  background-color: #888888;
}
#reserve .box-list .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#reserve .box-list .btn-box a {
  display: block;
  margin: 0 10px;
  width: 200px;
  height: 50px;
  font-size: 15px;
  text-align: center;
  line-height: 50px;
}
#reserve .box-list .btn-box a.white {
  color: #333;
  background-color: #eee;
  border: 1px solid #eee;
}
#reserve .box-list .btn-box a.black {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
}
#reserve .box-list .btn-box a:hover {
  opacity: 0.8;
}

@media (max-width: 1280px) {
  #g-wrap #reserve .container.con-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #reserve .top-subject {
    padding-bottom: 20px;
  }
  #reserve .top-subject .tw {
    padding-bottom: 0;
    font-size: 30px;
  }
  #reserve .top-area {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  #reserve .step-area .subject {
    font-size: 28px;
  }
  #reserve .step-list::before {
    display: none;
  }
  #reserve .step-list .item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #reserve .step-list .item .icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
            flex: 0 0 60px;
    max-width: 60px;
    margin-right: 20px;
  }
  #reserve .step-list .item .num {
    line-height: 60px;
  }
  #reserve .step-list .item .main-wrap {
    width: 100%;
  }
  #reserve .step-list .title {
    font-size: 26px;
  }
}
@media (max-width: 992px) {
  #reserve .step-list .item {
    padding-bottom: 30px;
  }
  #reserve .box-list .img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }
  #reserve .box-list .main {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 55%;
  }
  #reserve .box-list .store-name .en {
    top: -20px;
    font-size: 46px;
  }
  #reserve .box-list .store-address {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 30px;
  }
  #reserve .box-list .store-address::before {
    bottom: 17px;
  }
  #reserve .box-list .btn-box a {
    margin: 0 10px;
    width: 160px;
    height: 40px;
    line-height: 40px;
  }
}
@media (max-width: 743px) {
  #reserve .top-subject {
    padding-top: 30px;
  }
  #reserve .top-subject .tw {
    font-size: 20px;
  }
  #reserve .top-subject .en {
    padding-top: 10px;
    font-size: 16px;
  }
  #reserve .summary {
    font-size: 16px;
    line-height: 1.6;
  }
  #reserve .step-area .subject {
    font-size: 22px;
  }
  #reserve .step-list .item .icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
    max-width: 40px;
    margin-right: 10px;
  }
  #reserve .step-list .item .num {
    line-height: 40px;
  }
  #reserve .step-list .title {
    font-size: 22px;
  }
  #reserve .box-list .box {
    display: block;
  }
  #reserve .box-list .img, #reserve .box-list .main {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
}
#goods .goods-list .box h4::after {
  margin-top: 8px;
}
#goods .goods-list .box h4 small {
  padding-top: 5px;
}
#goods .goods-list .box .price-box {
  padding-left: 5px;
  padding-top: 5px;
}

.product-price {
  font-size: 16px;
  font-weight: 600;
}
.product-price.new {
  color: #c80000;
}
.product-price.old {
  font-weight: normal;
  text-decoration: line-through;
}
.product-price.old span {
  text-decoration: line-through;
}

#goods-view .info .group .txt.old {
  text-decoration: line-through;
}

#case .top-subject {
  text-align: center;
}
#case .top-subject .en {
  font-size: 30px;
  padding-bottom: 20px;
}
#case .top-subject .tw {
  font-size: 38px;
  font-weight: 600;
}
#case .summary {
  margin: 0 auto;
  max-width: 1080px;
  padding: 20px 10px;
  font-size: 17px;
  text-align: center;
}

.case-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  padding: 30px 0;
  left: -15px;
  width: calc(100% + 30px);
}
.case-list .item {
  padding: 0 15px 30px;
  width: 33.33%;
}
.case-list .item a {
  display: block;
  position: relative;
}
.case-list .item a:hover .img img {
  -webkit-filter: none;
          filter: none;
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}
.case-list .item a:hover .title {
  bottom: 40px;
}
.case-list .item .img {
  display: block;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.case-list .item .img img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.case-list .item .title {
  position: absolute;
  z-index: 1;
  bottom: 50%;
  left: 0;
  margin-bottom: -15px;
  width: 100%;
  height: 30px;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 1280px) {
  #case .top-subject .en {
    font-size: 26px;
    padding-bottom: 10px;
  }
  #case .top-subject .tw {
    font-size: 34px;
  }
}
@media (max-width: 1024px) {
  #case .top-subject .en {
    font-size: 22px;
  }
  #case .top-subject .tw {
    font-size: 28px;
  }
  #case .top-subject .summary {
    font-size: 16px;
  }
  .case-list .item {
    width: 50%;
  }
}
@media (max-width: 743px) {
  #case .top-subject .en {
    font-size: 18px;
    padding-bottom: 0;
  }
  #case .top-subject .tw {
    font-size: 24px;
  }
  #case .top-subject .summary {
    font-size: 15px;
    line-height: 1.6;
  }
  .case-list {
    padding-top: 10px;
    padding-bottom: 10px;
    left: 0;
    width: 100%;
  }
  .case-list .item {
    margin: 0 auto;
    padding: 0 0 20px;
    max-width: 435px;
    width: 100%;
  }
}
#article-view.case .container.con-wrap {
  padding-top: 100px;
}
#article-view.case .name {
  margin-bottom: 50px;
  padding-bottom: 20px;
  text-align: center;
  border-bottom: 1px solid #ededed;
}
#article-view.case .name .type {
  font-size: 22px;
}
#article-view.case .name h2 {
  font-size: 38px;
}
#article-view.case .img-slide {
  margin: 0 auto;
  max-width: 1065px;
}
#article-view.case .img-slide .slick-prev, #article-view.case .img-slide .slick-next {
  position: absolute;
  z-index: 2;
  top: 50%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  font-size: 0;
  background-color: transparent;
  border: none;
}
#article-view.case .img-slide .slick-prev::before, #article-view.case .img-slide .slick-next::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
#article-view.case .img-slide .slick-prev {
  left: -40px;
}
#article-view.case .img-slide .slick-prev::before {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
#article-view.case .img-slide .slick-next {
  right: -40px;
}
#article-view.case .img-slide .slick-next::before {
  left: 8px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
#article-view.case .edit-wrap {
  margin: 0 auto;
  max-width: 1065px;
  font-size: 17px;
  line-height: 1.5;
}

@media only screen and (min-width: 1025px) {
  #article-view.case .container.con-wrap {
    padding-top: 180px;
  }
  #article-view.case .container.con-wrap.data {
    padding-top: 0px;
  }
}
@media (max-width: 1024px) {
  #article-view.case .container.con-wrap {
    padding-top: 130px;
  }
  #article-view.case .container.con-wrap.data {
    padding-top: 0px;
  }
  #article-view.case .img-slide .slick-next {
    right: -30px;
  }
  #article-view.case .img-slide .slick-prev {
    left: -30px;
  }
}