@charset "UTF-8";
body {
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  -o-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

body.is-start {
  opacity: 1;
}

section, .container {
  position: relative;
}

.bg-f8f8f9 {
  background-color: #f8f8f9;
}

.bg-fff {
  background-color: #fff;
}

@-webkit-keyframes toLeftFromRight {
  49% {
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(50%);
    transform: translate(50%);
  }
  51% {
    opacity: 1;
  }
}

@keyframes toLeftFromRight {
  49% {
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(50%);
    transform: translate(50%);
  }
  51% {
    opacity: 1;
  }
}

@-webkit-keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(50%);
    transform: translate(50%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  51% {
    opacity: 1;
  }
}

@keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(50%);
    transform: translate(50%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
  51% {
    opacity: 1;
  }
}

@-webkit-keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  51% {
    opacity: 1;
  }
}

@keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  51% {
    opacity: 1;
  }
}

/* ============ .c-dec-text  ============ */
.c-dec-text {
  font-size: 160px;
  line-height: 150px;
  font-family: "Oswald-M", "Microsoft JhengHei", sans-serif;
  color: #eaeaea;
  text-transform: uppercase;
  position: absolute;
  z-index: -1;
}

/* ============ .c-page-title-section  ============ */
.c-page-title-section {
  width: 100%;
  height: 300px;
  position: relative;
  z-index: 2;
}

.c-page-title-section .container {
  height: 100%;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .c-page-title-section {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .c-page-title-section {
    height: 200px;
  }
}

.c-page-title-box {
  text-transform: uppercase;
  position: absolute;
  left: 0;
  bottom: -75px;
  padding-left: 50px;
}

.c-page-title-box .web-title {
  font-size: 13px;
  color: #262626;
  letter-spacing: 6px;
  white-space: nowrap;
  width: 20px;
  height: auto;
  position: absolute;
  left: 10px;
  top: 15px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.c-page-title-box .c-page-substandard {
  font-size: 12px;
  color: #262626;
  letter-spacing: 15px;
}

@media (max-width: 767px) {
  .c-page-title-box .web-title {
    letter-spacing: 5px;
    top: 7px;
    left: 15px;
  }
}

.c-page-title {
  margin: 0;
}

.c-page-title span {
  display: inline-block;
  position: relative;
}

.c-page-title .en {
  font-size: 100px;
  letter-spacing: 1px;
  color: #262626;
}

.c-page-title .en span {
  color: #465477;
}

.c-page-title .tw {
  font-size: 15px;
  font-weight: bold;
  color: #1b1b1b;
  letter-spacing: 3px;
  vertical-align: top;
  top: 15px;
  margin-left: 10px;
}

.c-page-title .tw:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: #1b1b1b;
}

@media (max-width: 767px) {
  .c-page-title .en {
    font-size: 70px;
    line-height: 70px;
    display: block;
  }
  .c-page-title .tw {
    font-size: 15px;
    letter-spacing: 1px;
    margin-left: 0;
    margin-top: 5px;
    top: 0;
  }
}

/* ==============================================================
* c-section-1
================================================================*/
.c-section-1 {
  padding-top: 140px;
}

@media (max-width: 767px) {
  .c-section-1 {
    padding-top: 120px;
  }
}

/* ==============================================================
* breadcrumb
================================================================*/
#breadcrumb {
  letter-spacing: -0.31em;
  word-spacing: -0.43em;
  padding: 0 0 10px 0;
  margin: 0;
}

#breadcrumb li {
  display: inline-block;
  vertical-align: initial;
  letter-spacing: normal;
  position: relative;
}

#breadcrumb li a {
  font-size: 13px;
  color: #7d7d7d;
  position: relative;
}

#breadcrumb li + li:before {
  content: "\e904";
  font-family: 'icomoon' !important;
  font-size: 12px;
  color: #7d7d7d;
  text-align: center;
  display: inline-block;
  width: 20px;
  height: 10px;
  position: relative;
  margin-left: 6px;
  margin-right: 5px;
  top: 1px;
}

#breadcrumb li.active a {
  color: #262626;
  font-style: italic;
}

/* ==============================================================
* c-section-title
================================================================*/
.c-section-title {
  color: #262626;
  text-transform: uppercase;
  position: relative;
}

.c-section-title .c-title-en {
  font-size: 80px;
  letter-spacing: 1px;
  position: relative;
}

.c-section-title .c-title-en span {
  color: #465477;
}

.c-section-title .c-title-tw {
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 1px;
  position: relative;
}

.c-section-title .c-title-tw span {
  color: #465477;
}

@media (max-width: 767px) {
  .c-section-title .c-title-en {
    font-size: 50px;
  }
}

/* ==============================================================
* c-btn
================================================================*/
.c-btn {
  min-width: 130px;
  width: auto;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  font-size: 12px;
  font-family: "Oswald-M", "Microsoft JhengHei", sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.c-btn:after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: #465477;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition: -webkit-transform .4s ease-out;
  transition: -webkit-transform .4s ease-out;
  -o-transition: transform .4s ease-out;
  transition: transform .4s ease-out;
  transition: transform .4s ease-out, -webkit-transform .4s ease-out;
}

.c-btn span, .c-btn i {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-left: 4px;
}

.c-btn:hover:after, .c-btn:focus:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .c-btn {
    width: 100%;
    height: auto !important;
    line-height: normal !important;
    padding: 16px 15px;
  }
}

.c-btn-black {
  color: #f7f7f7 !important;
  background-color: #262626;
}

.c-btn-black:after {
  background-color: #465477;
}

.c-btn-blue {
  color: #f7f7f7 !important;
  background-color: #465477;
}

.c-btn-blue:after {
  background-color: #262626;
}

.c-btn-group a {
  display: inline-block;
}

@media (min-width: 768px) {
  .c-btn-group.btn-1 {
    width: 100%;
    text-align: right;
  }
  .c-btn-group.btn-1 a {
    text-align: center;
  }
  .c-btn-group.btn-2 a {
    width: 49%;
    min-width: auto;
  }
  .c-btn-group.btn-2 a:nth-child(1) {
    float: left;
  }
  .c-btn-group.btn-2 a:nth-child(2) {
    float: right;
  }
}

@media (max-width: 767px) {
  .c-btn-group a {
    width: 100%;
    padding: 12px 15px 11px 15px;
    margin-bottom: 8px;
  }
}

/* ==============================================================
*  d-btn
================================================================*/
.d-btn {
  width: auto;
  height: 40px;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.d-btn:after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: #465477;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition: -webkit-transform .4s ease-out;
  transition: -webkit-transform .4s ease-out;
  -o-transition: transform .4s ease-out;
  transition: transform .4s ease-out;
  transition: transform .4s ease-out, -webkit-transform .4s ease-out;
}

.d-btn span {
  text-align: center;
  display: inline-block;
  position: relative;
  float: left;
  z-index: 2;
}

.d-btn .icon {
  font-size: 13px;
  width: 40px;
  height: 40px;
  border-right: 1px solid #f7f7f7;
  padding-top: 14px;
}

.d-btn .text {
  font-size: 12px;
  letter-spacing: 1px;
  font-family: "Oswald-M", "Microsoft JhengHei", sans-serif;
  text-transform: uppercase;
  width: calc(100% - 40px);
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 13px;
  white-space: nowrap;
}

.d-btn:hover:after, .d-btn:focus:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .d-btn {
    width: 100%;
    height: auto;
    line-height: normal;
  }
}

.d-btn-blue {
  background-color: #465477;
}

.d-btn-blue span {
  color: #f7f7f7;
}

.d-btn-blue:after {
  background-color: #262626;
}

.d-btn-black {
  background-color: #262626;
}

.d-btn-black span {
  color: #f7f7f7;
}

.d-btn-black:after {
  background-color: #465477;
}

.d-btn-none {
  cursor: default;
  background-color: #e1e2e8;
}

.d-btn-none span {
  color: #9c9c9c;
}

.d-btn-none:after {
  background-color: #e1e2e8;
}

.c_btn2 {
  position: relative;
  display: inline-block;
  background: #313131;
  color: #ffffff;
  border-radius: 3px;
  font-size: 13px;
  padding: 8px 25px;
  margin: 5px 0;
  text-align: center;
}

.c_btn2:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: #465477;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition: -webkit-transform .4s ease-out;
  transition: -webkit-transform .4s ease-out;
  -o-transition: transform .4s ease-out;
  transition: transform .4s ease-out;
  transition: transform .4s ease-out, -webkit-transform .4s ease-out;
  border-radius: 3px;
}

.c_btn2 .text {
  position: relative;
  z-index: 2;
}

.c_btn2:hover, .c_btn2:focus {
  color: #ffffff;
}

.c_btn2:hover:after, .c_btn2:focus:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .c_btn2 {
    width: 100%;
  }
}

.c_btn2_blue {
  background: #465477;
}

.c_btn2_blue:after {
  background: #313131;
}

.c_btn2_red {
  background: #822424;
}

.c_btn2_red:after {
  background: #6f0f0f;
}

/* ==============================================================
*  ani effect
================================================================*/
.ani-zoomInUp {
  -webkit-animation-name: ani-zoomInUp;
  animation-name: ani-zoomInUp;
  -webkit-transition: opacity 900ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 1000ms, -webkit-transform 700ms;
  transition: opacity 900ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 1000ms, -webkit-transform 700ms;
  -o-transition: opacity 900ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 1000ms, transform 700ms;
  transition: opacity 900ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 1000ms, transform 700ms;
  transition: opacity 900ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 1000ms, transform 700ms, -webkit-transform 700ms;
}

@-webkit-keyframes ani-zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(1.2, 1.2, 1.2) translate3d(0, 60px, 0);
    transform: scale3d(1.2, 1.2, 1.2) translate3d(0, 60px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0px, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0px, 0);
  }
}

@keyframes ani-zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(1.2, 1.2, 1.2) translate3d(0, 60px, 0);
    transform: scale3d(1.2, 1.2, 1.2) translate3d(0, 60px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0px, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0px, 0);
  }
}

.ani-zoomIn {
  -webkit-animation-name: ani-zoomIn;
  animation-name: ani-zoomIn;
  -webkit-transition: opacity 700ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 1200ms, -webkit-transform 900ms;
  transition: opacity 700ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 1200ms, -webkit-transform 900ms;
  -o-transition: opacity 700ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 1200ms, transform 900ms;
  transition: opacity 700ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 1200ms, transform 900ms;
  transition: opacity 700ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 1200ms, transform 900ms, -webkit-transform 900ms;
}

@-webkit-keyframes ani-zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes ani-zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.ani-width {
  width: 0% !important;
  -webkit-animation-name: ani-width;
  animation-name: ani-width;
  -webkit-transition: opacity 700ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 1200ms, width 900ms;
  -o-transition: opacity 700ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 1200ms, width 900ms;
  transition: opacity 700ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 1200ms, width 900ms;
}

.ani-width.right {
  right: 0;
}

.ani-width.left {
  left: 0;
}

@-webkit-keyframes ani-width {
  0% {
    opacity: 0;
    width: 0%;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}

@keyframes ani-width {
  0% {
    opacity: 0;
    width: 0%;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}

/* ==============================================================
* .c-dec-bg
================================================================*/
.c-dec-bg {
  position: absolute;
  z-index: 1;
}

.c-dec-bg div {
  background-color: #fff;
  height: 100%;
  position: absolute;
  top: 0;
}

/* ==============================================================
* width set
================================================================*/
.is-ipad {
  display: none;
}

@media (min-width: 768px) and (max-width: 991px) {
  .is-ipad {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .w-i992 {
    display: block !important;
  }
  .w-i992.inline {
    display: inline-block !important;
  }
}

@media (max-width: 991px) {
  .w-i992 {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .w-x992 {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .w-x992 {
    display: block !important;
  }
  .w-x992.inline {
    display: inline-block !important;
  }
}

/* ==============================================================
共用表單
================================================================*/
@media (min-width: 768px) {
  .c_form_block1 {
    margin-left: -4px;
    margin-right: -4px;
  }
}

@media (min-width: 992px) {
  .c_form_block1 {
    margin-left: -7px;
    margin-right: -7px;
  }
}

.c_form_block1 .c_form_box {
  padding-bottom: 5px;
}

@media (min-width: 768px) {
  .c_form_block1 .c_form_box {
    padding-left: 4px;
    padding-right: 4px;
  }
}

@media (min-width: 992px) {
  .c_form_block1 .c_form_box {
    padding-left: 7px;
    padding-right: 7px;
    padding-bottom: 8px;
  }
}

.c_form_style {
  position: relative;
  display: block;
  width: 100%;
  background: #f5f5f5;
  padding: 10px 15px 10px 90px;
  font-size: 13px;
  color: #313131;
}

@media (max-width: 767px) {
  .c_form_style {
    padding: 10px 15px 10px 80px;
  }
}

.c_form_style.c_form_noTitle {
  padding: 10px 15px;
}

.c_form_style input {
  display: block;
  width: 100%;
  background: none;
  border: none;
}

.c_form_style input::-webkit-input-placeholder {
  color: #b1b1b1;
  font-size: 12px;
}

.c_form_style input::-moz-placeholder {
  color: #b1b1b1;
  font-size: 12px;
}

.c_form_style input::-ms-input-placeholder {
  color: #b1b1b1;
  font-size: 12px;
}

.c_form_style input::-moz-placeholder {
  color: #b1b1b1;
  font-size: 12px;
}

.c_form_style select {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  height: 20px;
  color: #313131;
}

.c_form_style select::-webkit-input-placeholder {
  color: #b1b1b1;
  font-size: 12px;
}

.c_form_style select::-moz-placeholder {
  color: #b1b1b1;
  font-size: 12px;
}

.c_form_style select::-ms-input-placeholder {
  color: #b1b1b1;
  font-size: 12px;
}

.c_form_style select::-moz-placeholder {
  color: #b1b1b1;
  font-size: 12px;
}

.c_form_style textarea {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  color: #313131;
}

.c_form_style textarea::-webkit-input-placeholder {
  color: #b1b1b1;
  font-size: 12px;
}

.c_form_style textarea::-moz-placeholder {
  color: #b1b1b1;
  font-size: 12px;
}

.c_form_style textarea::-ms-input-placeholder {
  color: #b1b1b1;
  font-size: 12px;
}

.c_form_style textarea::-moz-placeholder {
  color: #b1b1b1;
  font-size: 12px;
}

.c_form_style .icon-chevron-thin-down {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 12px;
  color: #535353;
  pointer-events: none;
  background-color: #f5f5f5;
  width: 20px;
  height: 22px;
  padding-top: 5px;
  text-align: right;
}

.c_verification {
  background: transparent;
  padding: 0;
}

.c_verification input {
  width: 120px;
  padding: 10px 15px;
  background-color: #fff;
  border: 1px solid #ebebeb;
  float: left;
}

.c_verification img {
  float: left;
}

.c_verification .re-ver {
  width: 17px;
  height: 17px;
  border-radius: 99em;
  line-height: 17px;
  display: inline-block;
  background-color: #a5a7ab;
  font-size: 12px;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: -25px;
  padding-right: 1px;
  padding-top: 1px;
  cursor: pointer;
}

@media (max-width: 1199px) {
  .c_verification .re-ver {
    position: relative;
    right: auto;
    margin-left: 5px;
    margin-top: 22px;
  }
}

.c-form-btn {
  right: -8px;
  height: 40px;
  line-height: 41px;
}

.c-form-btn .icon {
  font-size: 16px;
  margin-left: 0;
  margin-right: 4px;
  top: 2px;
}

@media (max-width: 767px) {
  .c-form-btn {
    right: 0;
    padding: 12px 15px;
  }
}

.c_form_title {
  position: absolute;
  left: 15px;
  top: 11px;
  color: #b1b1b1;
  letter-spacing: 1px;
}

/*樣式2*/
@media (min-width: 768px) {
  .c_form_block2 {
    margin-left: -3px;
    margin-right: -3px;
  }
}

.c_form_block2 .c_form_box {
  padding-bottom: 3px;
}

@media (min-width: 768px) {
  .c_form_block2 .c_form_box {
    padding-left: 3px;
    padding-right: 3px;
  }
}

/* ==============================================================
共用表單 end
================================================================*/
/* ==============================================================
  共用table start
================================================================*/
/*列表*/
.c_table_block {
  width: 100%;
  color: #747474;
  font-size: 13px;
}

.c_table_thead th {
  padding: 20px 0;
}

.c_table_thead .like_thead_img {
  padding-left: 20px;
}

@media (min-width: 768px) {
  .c_table_tbody tr {
    border-bottom: 1px solid #e5e5e5;
  }
  .c_table_tbody td {
    padding: 15px 4px;
  }
}

@media (max-width: 767px) {
  .c_table_tbody tr {
    position: relative;
    display: block;
    padding: 30px 0;
  }
  .c_table_tbody td {
    display: block;
  }
}

@media (min-width: 768px) {
  .c_table_img {
    width: 25%;
  }
  .c_table_img img {
    width: 85%;
    max-width: 125px;
  }
}

@media (min-width: 1200px) {
  .c_table_img {
    width: 20%;
  }
  .c_table_img img {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .c_table_img {
    text-align: center;
    max-width: 425px;
    margin: 0 auto;
  }
  .c_table_img img {
    max-width: 100%;
  }
}

.c_table_name a {
  color: #262626;
}

@media (min-width: 768px) {
  .c_table_name {
    width: 23%;
  }
  .c_table_name a {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .c_table_name {
    width: 36%;
  }
  .c_table_name a {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .c_table_name {
    text-align: center;
    border-bottom: 1px dashed #e5e5e5;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .c_table_name a {
    font-size: 40px;
    line-height: 100%;
  }
}

.c_table_price {
  font-size: 15px;
  color: #bbbbbb;
}

.c_table_price.special_price {
  color: #262626;
}

@media (min-width: 768px) {
  .c_table_price {
    width: 17%;
  }
}

@media (min-width: 1200px) {
  .c_table_price {
    width: 15%;
  }
}

@media (max-width: 767px) {
  .c_table_price {
    position: relative;
    padding-left: 70px;
    margin-bottom: 7px;
    text-align: left;
    font-size: 13px;
  }
  .c_table_price .like_data_name {
    position: absolute;
    left: 0;
    top: 0px;
  }
}

@media (min-width: 768px) {
  .c_table_function {
    width: 9%;
  }
  .c_table_function a {
    font-size: 20px;
    color: #262626;
    padding: 0 5px;
  }
}

@media (max-width: 767px) {
  .c_table_function {
    border-top: 1px dashed #e5e5e5;
    padding-top: 15px;
    margin-top: 15px;
  }
  .c_table_function a {
    display: block;
    padding: 8px 20px;
    background: #262626;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 1.5px;
  }
  .c_table_function .icon-shopping-cart {
    font-size: 17px;
    vertical-align: text-top;
    margin-right: 10px;
  }
}

.c_table_function2 {
  width: 9%;
}

.c_table_function2 a {
  font-size: 24px;
  color: #262626;
  padding: 0 5px;
}

@media (max-width: 767px) {
  .c_table_function2 {
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 2;
  }
  .c_table_function2 a {
    font-size: 28px;
  }
}

/*列表 end*/
/* ==============================================================
  共用table end
================================================================*/
/* ==============================================================
  偎 lightbox元件。 ex:login,php , cart.php
================================================================*/
.c-black-close {
  width: 42px;
  height: 42px;
  border-radius: 99em;
  background-color: #262626;
  display: block;
  text-align: center;
  cursor: pointer;
  line-height: 45px;
  text-align: center;
  position: absolute;
  z-index: 9;
}

.c-black-close span {
  display: inline-block;
  position: relative;
}

.c-black-close .icon {
  font-size: 18px;
  color: #fafafa;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.35s ease-out;
  transition: -webkit-transform 0.35s ease-out;
  -o-transition: transform 0.35s ease-out;
  transition: transform 0.35s ease-out;
  transition: transform 0.35s ease-out, -webkit-transform 0.35s ease-out;
}

.c-black-close:hover .icon {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

/* ==============================================================
分頁頁碼
================================================================*/
.c_page_block {
  padding: 60px 0 20px 0;
}

.c_page_box {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 0 55px;
}

@media (max-width: 767px) {
  .c_page_box {
    padding: 0 45px;
  }
}

.c_page_arrow {
  position: absolute;
  top: 1px;
  font-size: 16px;
}

.c_page_arrow span {
  color: #000;
}

.c_page_arrow.c_page_prev {
  left: 0;
}

.c_page_arrow.c_page_next {
  right: 0;
}

.c_page_arrow.disabled {
  opacity: 0.5;
}

.c_page_list {
  padding: 0;
  list-style: none;
}

.c_page_link {
  display: inline-block;
  margin-bottom: 7px;
}

.c_page_link a {
  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;
  width: 22px;
  height: 22px;
  margin: 0 3px;
  border-radius: 22px;
  color: #7d7d7d;
}

.c_page_link.active a, .c_page_link:hover a {
  background: #313131;
  color: #ffffff;
}

/* ==============================================================
分頁頁碼 end
================================================================*/
/* ============ c-page2-footer-nav start ============ */
.c-page2-footer-nav {
  width: 100%;
  clear: both;
}

@media (max-width: 767px) {
  .c-page2-footer-nav {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.c-page2-pagination {
  max-width: 430px;
  width: 100%;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.c-page2-pagination span {
  display: inline-block;
  position: relative;
}

.c-page2-pagination li {
  display: inline-block;
  font-size: 17px;
  text-transform: uppercase;
  color: #111111;
  position: relative;
}

.c-page2-pagination li a {
  color: #111111;
}

.c-page2-pagination .c-page2-nav-num .child {
  color: #aaaaaa;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.c-page2-pagination .c-page2-nav-num .child:hover {
  color: #555;
}

.c-page2-pagination .c-page2-nav-num .mother {
  margin-left: 5px;
}

.c-page2-pagination .c-page2-nav-arrow .icon {
  font-size: 13px;
  width: 10px;
  top: 7px;
  position: absolute;
}

.c-page2-pagination .c-page2-nav-arrow:before {
  content: "";
  width: 100%;
  height: auto;
  position: absolute;
  display: block;
  bottom: -3px;
  left: 0;
  background-color: #111111;
}

.c-page2-pagination .c-page2-nav-arrow.arrow-prev {
  float: left;
}

.c-page2-pagination .c-page2-nav-arrow.arrow-prev .icon {
  left: -17px;
}

.c-page2-pagination .c-page2-nav-arrow.arrow-prev:hover .icon {
  -webkit-animation: toLeftFromRight  0.4s forwards;
  animation: toLeftFromRight  0.4s forwards;
}

.c-page2-pagination .c-page2-nav-arrow.arrow-next {
  float: right;
}

.c-page2-pagination .c-page2-nav-arrow.arrow-next .icon {
  right: -15px;
}

.c-page2-pagination .c-page2-nav-arrow.arrow-next:hover .icon {
  -webkit-animation: toRightFromLeft 0.4s forwards;
  animation: toRightFromLeft 0.4s forwards;
}

/* ============  c-page2-footer-nav end ============ */
/* ============ c-page3-section-3 start ============ */
.c-page3-section-3 {
  padding-top: 55px;
  padding-bottom: 20px;
}

.c-page3-section-3 .container {
  max-width: 880px;
}

@media (max-width: 991px) {
  .c-page3-section-3 .row {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .c-page3-section-3 {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.c-page3-arrow-wrapper {
  padding-top: 25px;
  padding-bottom: 25px;
  margin-top: 35px;
  border-top: 1px solid #eaeaea;
}

@media (max-width: 767px) {
  .c-page3-arrow-wrapper {
    padding-top: 15px;
    margin-top: 20px;
  }
}

.c-page3-arrow-box + .c-page3-arrow-box:before {
  content: "";
  width: 1px;
  height: 40px;
  position: absolute;
  display: block;
  left: 0;
  top: 2px;
  background-color: #eaeaea;
}

.c-page3-arrow-box:nth-child(1) {
  text-align: left;
}

.c-page3-arrow-box:nth-child(2) {
  text-align: right;
}

@media (max-width: 767px) {
  .c-page3-arrow-box + .c-page3-arrow-box:before {
    display: none;
  }
}

.c-page3-arrow-btn {
  font-size: 17px;
  letter-spacing: 1px;
  color: #111111 !important;
  position: relative;
  text-transform: uppercase;
}

.c-page3-arrow-btn .icon {
  font-size: 13px;
  width: 10px;
  top: 7px;
  position: absolute;
}

.c-page3-arrow-btn .title {
  width: 100%;
  display: block;
  font-size: 14px;
  color: #262626;
  padding-top: 5px;
}

.c-page3-arrow-btn:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  display: block;
  bottom: -2px;
  left: 0;
  background-color: #111111;
}

.c-page3-arrow-btn.c-page3-prev .icon {
  left: -17px;
}

.c-page3-arrow-btn.c-page3-prev:hover .icon {
  -webkit-animation: toLeftFromRight  0.4s forwards;
  animation: toLeftFromRight  0.4s forwards;
}

.c-page3-arrow-btn.c-page3-next .icon {
  right: -15px;
}

.c-page3-arrow-btn.c-page3-next:hover .icon {
  -webkit-animation: toRightFromLeft 0.4s forwards;
  animation: toRightFromLeft 0.4s forwards;
}

/* ============ c-page3-section-3 end ============ */
/* ==============================================================
* animation-delay
================================================================*/
.d1 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.d2 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.d3 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.d4 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.d5 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.d6 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.d7 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.d8 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.d9 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.d10 {
  -webkit-animation-delay: 1.0s;
  animation-delay: 1.0s;
}

.d11 {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.d12 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.d14 {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

@media (max-width: 767px) {
  .d-xs-0 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
  .d-xs-1 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
  }
  .d-xs-2 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
  }
  .d-xs-3 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }
  .d-xs-4 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
  .d-xs-5 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
  .d-xs-6 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
  .d-xs-7 {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
  }
}
/* ============ news-filter-wrapper start ============ */
.c-filter-wrapper {
  width: 300px;
  position: absolute;
  top: -200px;
  right: 0;
  z-index: 11;
}

.c-filter-wrapper span {
  display: inline-block;
  position: relative;
}

.c-filter-wrapper .c-open-box {
  opacity: 0;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  pointer-events: none;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s, -webkit-transform 0.3s ease-out;
  -o-transition: opacity 0.3s, transform 0.3s ease-out;
  transition: opacity 0.3s, transform 0.3s ease-out;
  transition: opacity 0.3s, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.c-filter-wrapper.is-open .c-open-box {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .c-filter-wrapper {
    top: -80px;
    right: 20px;
  }
}

@media (max-width: 767px) {
  .c-filter-wrapper {
    top: -160px;
    right: 15px;
  }
}

.c-close-box {
  position: absolute;
  right: 0;
  top: 7px;
  z-index: 1;
}

.c-close-box p {
  font-size: 13px;
  letter-spacing: 1px;
  color: #858585;
  line-height: 85px;
  text-transform: uppercase;
  display: inline-block;
  font-style: italic;
  letter-spacing: 1px;
  margin-right: 15px;
  margin-bottom: 0;
}

.c-close-box .icon {
  line-height: 85px;
  width: 85px;
  height: 85px;
  border-radius: 99em;
  background-color: #fff;
  display: inline-block;
  text-align: center;
  font-size: 35px;
  -webkit-box-shadow: 0 2px 15px rgba(51, 51, 51, 0.2);
  box-shadow: 0 2px 15px rgba(51, 51, 51, 0.2);
  cursor: pointer;
}

.c-close-box .icon:before {
  color: #92979f;
}

@media (max-width: 767px) {
  .c-close-box p {
    display: none;
  }
  .c-close-box .icon {
    line-height: 75px;
    width: 75px;
    height: 75px;
    font-size: 32px;
  }
}

.c-open-box {
  width: 100%;
  background-color: #fff;
  padding: 35px 30px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  -webkit-box-shadow: 0 16px 54px -10px rgba(31, 31, 31, 0.3);
  box-shadow: 0 16px 54px -10px rgba(31, 31, 31, 0.3);
}

.c-open-box h4 {
  font-size: 25px;
  color: #262626;
  text-transform: uppercase;
  margin: 0;
}

.c-open-box h4 .tw {
  font-size: 14px;
  margin-left: 3px;
  vertical-align: top;
}

.c-open-box .icon-close {
  width: 40px;
  height: 40px;
  border-radius: 99em;
  background-color: #262626;
  display: block;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.c-open-box .icon-close:hover {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.c-open-box .c-filter-content {
  margin-top: 20px;
  padding-top: 25px;
  padding-bottom: 15px;
  border-top: 1px dashed #ccc;
  border-bottom: 3px solid #f8f8f9;
}

.c-open-box .c-filter-list {
  padding-left: 0;
}

.c-open-box .c-filter-list li {
  display: block;
  margin-bottom: 10px;
}

.c-open-box .c-filter-list li a {
  font-size: 13px;
  color: #9c9c9c;
  letter-spacing: 1px;
  display: block;
  padding-left: 30px;
  padding-right: 35px;
  position: relative;
  -webkit-transition: color 0.25s;
  -o-transition: color 0.25s;
  transition: color 0.25s;
}

.c-open-box .c-filter-list li a:before {
  content: "\e90c";
  font-family: 'icomoon' !important;
  width: 15px;
  height: 15px;
  color: inherit;
  position: absolute;
  top: 0;
  left: 0;
}

.c-open-box .c-filter-list li a .num {
  position: absolute;
  top: 0;
  right: 0;
}

.c-open-box .c-filter-list li:hover a, .c-open-box .c-filter-list li.is-active a {
  color: #465477;
}

/* ============  news-filter-wrapper end ============ */