@import url('https://fonts.googleapis.com/css2?family=LXGW+WenKai+Mono+TC&family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght,YOPQ@100..900,300&family=Marcellus&family=Pathway+Extreme:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap" rel="stylesheet');


body {
  font-family: "Noto Sans TC", sans-serif!important;
}

@media (min-width: 1400px) {
  .container {
      width: 1380px;
  }
}


a:hover,
a:focus{
text-decoration: none;
}

/* ── Navbar ── */
.navbar.bootsnav {
  background-color: #fff;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  padding: 0 !important;
  min-height: unset !important;
  height: auto !important;
  overflow: visible !important;
  position: fixed;
}

.nav-wrap {
  overflow: visible !important;
}

/* ── Top Search ── */
.navbar.bootsnav .top-search {
  width: 100%;
  flex-shrink: 0;
}

/* ════════════════════════════════
   桌機 (min-width: 769px)
════════════════════════════════ */
@media (min-width: 769px) {
  .navbar.bootsnav {
    display: flex !important;
    flex-direction: column;
    align-items: stretch !important;
  }

  .navbar.bootsnav .navbar-header {
    display: none !important;
  }

  .navbar.bootsnav .navbar-inner {
    display: flex !important;
    align-items: stretch;
    flex: 1;
  }

  .navbar.bootsnav .navbar-collapse {
    display: flex !important;
    align-items: stretch !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    flex-shrink: 0;
  }

  .nav-links {
    display: flex !important;
    align-self: stretch;
    align-items: stretch;
    float: none !important;
  }

  .nav-links li {
    display: flex !important;
    align-self: stretch;
    float: none !important;
  }

  .nav-links li.search.navbtn {
    align-self: stretch;
    order: 99;
  }
  .nav-links li.search.navbtn a {
    background: #6F7E82;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    min-width: unset;
    height: 100%;
    border-bottom: 3px solid transparent;
    transition: background 0.15s;
  }
  .nav-links li.search.navbtn a:hover {
    background: #646060;
    border-bottom-color: transparent;
  }
  .nav-links li.search.navbtn a img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
  }
}

/* ════════════════════════════════
   手機板 (max-width: 768px)
════════════════════════════════ */
@media (max-width: 768px) {
  .navbar.bootsnav {
    display: block !important;
  }

  /* navbar-inner block，讓 collapse 可運作 */
  .navbar.bootsnav .navbar-inner {
    display: block !important;
    position: relative;
  }

  /* 桌機 brand 手機隱藏 */
  .navbar.bootsnav .navbar-inner .hidden-xs.navbar-brand {
    display: none !important;
  }

  /* ── 手機 header：logo 左、搜尋+漢堡右 ── */
  .navbar.bootsnav .navbar-header {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    padding: 0 12px;
    min-height: 70px;
  }

  .navbar.bootsnav .navbar-header .navbar-brand {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    padding: 8px 0 !important;
    margin: 0 auto 0 0 !important;
    float: none !important;
    order: 1;
  }

  .navbar.bootsnav .navbar-header .navbar-brand img {
    height: 52px;
    width: auto;
  }

  .navbar.bootsnav .navbar-header .navbar-brand .brand-text .main {
    font-size: 17px;
  }

  .navbar.bootsnav .navbar-header .navbar-search-xs {
    display: flex !important;
    align-items: center;
    order: 2;
    margin: 0;
    float: none !important;
  }

  .navbar.bootsnav .navbar-header .navbar-search-xs .attr-nav {
    display: flex !important;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .navbar.bootsnav .navbar-header .navbar-search-xs a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: #333;
    font-size: 16px;
  }

  .navbar.bootsnav .navbar-header .navbar-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    order: 3;
    float: none !important;
    margin: 0 !important;
    padding: 8px;
    border: none;
    background: transparent;
    color: #333;
    font-size: 18px;
  }

  /* ── collapse：絕對定位浮在頁面上，不推擠內容 ── */
  .navbar.bootsnav .navbar-collapse,
  .navbar.bootsnav .navbar-collapse.collapse,
  .navbar-fixed-top .navbar-collapse {
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    padding: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.18s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar.bootsnav .navbar-collapse.in,
  .navbar-fixed-top .navbar-collapse.in {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  /* ── 選單項目 ── */
  .nav-links {
    display: block !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .nav-links li {
    display: block !important;
    float: none !important;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links li a {
    display: flex;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 25px !important;
    height: auto !important;
    min-width: unset !important;
    border-bottom: none !important;
    color: #222;
  }

  .nav-links li a .zh {
    font-size: 15px;
  }

  .nav-links li a .en {
    font-size: 10px;
    line-height: 1.4;
  }
 
  .nav-links li.contact a {
    background: #C0272D;
    padding: 25px;
    gap: 10px;
  }
  .nav-links li.contact a .contact-inner .zh {
    font-size: 18px;
  }
  .nav-links li.contact a img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
  }

  .nav-links li.search.navbtn {
    display: none !important;
  }
}

/* ════════════════════════════════
   共用樣式
════════════════════════════════ */

.navbar.bootsnav .hidden-xs.navbar-brand {
  display: flex !important;
  align-items: center;
  align-self: stretch;
  gap: 10px;
  padding: 12px 20px;
  margin-right: auto;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.brand-text .main {
  font-size: 19px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.02em;
}
.brand-text .sub {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #555;
}

.nav-links {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-links li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  height: 100%;
  text-decoration: none;
  color: #222;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s, background 0.15s;
  min-width: 80px;
}
.nav-links li a:hover {
  border-bottom-color: #C0272D;
}
.nav-links li a .zh {
  font-size: 18px;
  font-weight: 500;
  display: block;
  line-height: 1.4;8
}
.nav-links li a .en {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #888;
  display: block;
  line-height: 1.8;
}

/* ── Contact button ── */
.nav-links li.contact {
  align-self: stretch;
}
.nav-links li.contact a {
  background: #C0272D;
  color: #fff;
  flex-direction: column;  
  align-items: center;
  justify-content: center;
  padding: 0 35px 0 30px;
  min-width: 110px;
  height: 100%;
  border-bottom: 3px solid transparent;
  border-radius: 0;
}
.nav-links li.contact a:hover {
  background: #a01f24;
  border-bottom-color: transparent;
}
.nav-links li.contact a .en {
  color: #fff;
}
.nav-links li.contact a img {
  width: 18px;
  height: 18px;
  padding-top: 3px;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.contact-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-inner .zh {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  display: block;
  line-height: 1.4;
}
.contact-inner .en {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #fff !important;
  display: block;
  line-height: 1.4;
}

/* ── Navbar END── */



/* setion_title */

.setion_title{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0 50px;
}
@media (max-width: 768px) {
  .setion_title{
    flex-direction: column;
  }
}
.setion_title h2{
  margin: 0;
  font-size: 35px;
  letter-spacing: 5px;
}
.setion_title span{
  font-family: "Marcellus", serif;
  color: #B2050C;
  font-size: 30px;
  font-weight: 500;
  border-bottom: 1px solid #B2050C;
}
/* btn */
/* 外層容器：負責居中 */
.btn-wrap {
    display: flex;
    justify-content: center;
    padding: 20px;
}

/* 按鈕基礎樣式 */
.more_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    outline: none;
    padding: 15px 50px;
    border-radius: 4px;
    color: #ffffff;          /* 預設文字顏色 */
    background: #B2050C;     /* 預設背景顏色（深紅） */
    font-family: sans-serif;
    text-decoration: none;
    position: relative;      /* 給偽元素定位基準 */
    overflow: hidden;        /* 隱藏溢出的滑動背景 */
}

/* 滑動效果的背景層 (偽元素) */
.more_btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #cf1111;     /* Hover 後的背景顏色（較亮的紅） */
    transform: translateX(-101%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    z-index: 1;              /* 高於按鈕背景，低於文字 */
}

/* 滑鼠移入時背景滑動 */
.more_btn:hover::before {
    transform: translateX(0);
}

/* 文字容器：確保文字在最上層 */
.more_btn span {
    position: relative;      /* 必須有定位，z-index 才會生效 */
    z-index: 2;              /* 確保文字在 ::before 之上 */
    transition: color .3s;   /* 讓顏色變換更平滑 */
    color: #ffffff;          /* 強制初始為白色 */
}

/* 滑鼠移入時文字顏色（確保還是白色） */
.more_btn:hover span {
    color: #ffffff;          /* 若想讓 hover 後文字變色可改這裡 */
}


/* default-product */

.product{
  padding: 100px 0 50px;
  background-image: url(../../images/product_bg.jpg);
  background-position: center;
  background-size: cover;
}
.product .product-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 電腦版 3 欄 */
  gap: 20px;
  max-width: 1400px;
  margin: 20px auto;
  padding: 0 15px;
}

/* 卡片基礎 */
.product .card {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  z-index: 1;
}

/* 黑色遮罩層 */
.product .card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition: background-color 0.5s ease;
}

 /* Hover 變深 */
.card:hover::after {
  background-color: rgba(0, 0, 0, 0.5);
}

/* 背景圖片 */
.product .card-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.6s ease;
  z-index: 1;
}

.product .card:hover .card-bg {
  transform: scale(1.1);
  filter: blur(5px);
}

/* 內容層 */
.product .card-content {
  position: relative;
  padding: 30px;
  color: white;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.product .card-content h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: 1px;
}

.product .card-content h3 span {
  display: block;
  font-size: 20px;
  font-weight: 200;
  margin-top: 5px;
}

/* 按鈕樣式 */
.product .plus-btn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
}

.product .plus-icon { 
  color: #c00; 
  font-size: 20px; 
}

.product .card:hover .plus-btn {
  background: #c00;
  box-shadow: 0 0 0 8px rgba(192, 0, 0, 0.2);
}

.product .card:hover .plus-icon { color: #fff; }


/* --- 電腦版比例--- */
@media (min-width: 769px) {
  .product .card:nth-child(1), 
  .product .card:nth-child(4) {
     grid-column: span 1; 
    }
  .product .card:nth-child(2), 
  .product .card:nth-child(3) {
     grid-column: span 2; 
    }
}

/* --- 手機版比例 --- */
@media (max-width: 768px) {
  .product .product-container {
    grid-template-columns: 1fr !important;
  }
  .product .card {
    grid-column: span 1 !important;
    height: 250px;
  }
}

/* default-certificates */
.certificates{
  position: relative;
}
.certificates::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url(../../images/certificates_bg.jpg);
    background-size: cover;
    background-position: center;
    z-index: -1;
    /* 核心代碼：剪裁上方圓弧 */
    /* ellipse(寬度 高度 at 中心點X軸 中心點Y軸) */
    clip-path: ellipse(177% 100% at 50% 100%);
}
@media (max-width: 480px) {
  .certificates .setion_title{
    clip-path: ellipse(177% 105% at 50% 95%);
  }
}
.certificates .setion_title{
  padding: 100px 0 50px;
}
@media (max-width: 992px) {
  .certificates .setion_title{
    padding: 0;
  }
}
/* 容器佈局 */
.certificates .content-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px auto;
    gap: 120px;
}

/* 左側圖片疊加設計 */
.certificates .image-wrapper {
    position: relative;
    width: 45%;
    height: 420px;
}

.certificates .bg-image-main {
    width: 60%;
    height: 321px;
    background: #f0f0f0 url(/hipershop/rwd1875/store/F1/certificates_img01.jpg) center / cover;
    border-radius: 60px 0 0 0;
}
.certificates .bg-image-sub {
    width: 55%;
    height: 320px;
    background: #e5e5e5 url('/hipershop/rwd1875/store/F1/certificates_img02.jpg') center/cover;
    border-radius: 0 60px 0 60px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

/* 右側文案樣式 */
.certificates .text-wrapper {
    width: 50%;
}

.certificates .sub-title {
    font-size: 32px;
    color: #333;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
}

.certificates .sub-title::before {
    content: "";
    width: 40px;
    height: 1px;
    background: #333;
    margin-right: 15px;
}

.certificates .en-sub-title {
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
    margin: 10px 0 30px;
}
.certificates .description-box{
  max-width: 500px;
}
.certificates .description-box p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.certificates .en-desc {
    font-size: 13px !important;
    color: #888 !important;
}
@media screen and (max-width: 992px) {
  .certificates .image-wrapper {
    width:100%;
  }
    .certificates .text-wrapper {
      width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .certificates .bg-image-main{
      width: 100%;
  }
    .certificates .bg-image-sub {
    width: 100%;
    bottom: -60%;
  }
  .certificates .text-wrapper {
      padding: 150px 0 0;
  }
}
/* 數據網格與跑分樣式 */
.certificates .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    margin-top: 40px;
}

.certificates .num-group {
    display: flex;
    align-items: baseline;
}

.certificates .number {
    font-family: "Marcellus", serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
    color: #b11e23;
}

.certificates .symbol {
    font-size: 28px;
    font-weight: bold;
    color: #b11e23;
    margin-left: 2px;
}

.certificates .label-box {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
}

.certificates .label-zh {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.certificates .label-en {
    font-size: 11px;
    color: #999;
}
.certificates .btn-wrap{
  margin: 20px 0 60px;
}

/* RWD 響應式佈局 */
@media (max-width: 991px) {
    .content-section { flex-direction: column; }
    .image-wrapper, .text-wrapper { width: 100%; }
    .image-wrapper { height: 350px; margin-bottom: 30px; }
}

.product .btn-wrap{
  margin: 100px 30px;
}

/* default-contact */
.contact-section{
  position: relative;
  background-color: #fff;
  padding: 80px 140px;
  border-radius: 30px 30px 0 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: -80px;
  z-index: 3;
}
@media screen and (max-width: 992px) {
  .contact-section{
    padding: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contact-section{
    padding: 30px;
  }
}
.contact_form .setion_title{
  flex-direction: column;
  align-items: flex-start;
  padding: 10px;
}

.contact_form .form-control{
  border: none;
}
.contact_form .form-control{
  display: block;
  width: 100%;
  height: 45px;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.42857143;
  color: #555;
  background-image: none;
  border-bottom: 1px #ddd solid;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.contact_form .content-wrap{
  /* display: flex;
  justify-content: space-between; */
  background-color: #fff;
  margin-top: 50px;
}
@media screen and (max-width: 1200px) {
  .contact_form .content-wrap{
    /* flex-direction: column;
    align-items: center; */
    margin: 30px 10px;
  }
}
.contact_form .img-wrap{
  background-image: linear-gradient(rgba(18, 18, 20, 0.4), rgba(0, 0, 0, 0.4)), url(/hipershop/rwd1798/store/F1/contact.jpeg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover
}
@media screen and (max-width: 1200px) {
  .contact_form .img-wrap{
    max-width: 100%
  }
}

.contact_form .form-group{
  margin: 25px 0;
}
.contact_form .form-wrap {
  padding: 70px 180px;
}
@media screen and (max-width: 992px) {
  .contact_form .form-wrap {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 480px) {
  .contact_form .form-wrap {
    padding: 50px 20px;
  }
}
.contact_form .form-group .control-label {
  font-size: 16px;
  margin: 0;
  text-align: left;
}
.contact_form .form-group .control-label span{
  font-size: 15px;
  font-weight: 400;
  color: #8d8d8d;
}
.contact_form .form_btn{
  display: flex;
  justify-content: center;
  margin: 30px 0 0;
}
@media screen and (max-width: 768px) {
  .contact_form .form_btn{
    display: flex;
    justify-content: center;
    margin: 0 0 30px;
  }
}
.contact_form .btn-info{
  color: #fff;
  font-size: 15px;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: bold;
  background-color: #B2050C;
  border-color: transparent;
  border-radius: 0;
  padding: 15px 50px;
  border-radius: 5px;
  transition: all 0.3s;
}
.contact_form .btn-info:hover{
  color: #616161;
  background-color: #fff;
  border-color: #000000;;
}
.contact_form .has-error .form-control:focus{
  box-shadow: none;
}


/* footer */


footer{
  position: relative;
  background-color: #5C5A5A;
  color: #fff;
  letter-spacing: 1.8px;
  line-height: 1.8;
  z-index: 2;
}
footer .content{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 80px 20px 15px;
}
@media screen and (max-width: 768px) {
  .footerwrap .content{
    flex-direction: column;
    padding: 40px 20px 20px;

  }
}
.footerwrap .logo-wrap{
  display: flex;
  align-items: center;
  gap: 10px;
}

.footerwrap .logo-wrap p{
  font-size: 20px;
  letter-spacing: 1.5px;
  line-height: 1.2;
}
.footerwrap .logo-wrap span{
  font-size: 16px;
}
.footerwrap .info-wrap{
  padding-left: 50px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .footerwrap .info-wrap{
    padding: 0;
    flex-direction: column;
  }
}
.footerwrap .info-wrap ul{
  font-weight: 300;
}

footer .copy-text{
  border-top: 1px #f3f3f3 solid;
  padding-top: 20px;
  margin: 20px 0;
}

#gotop.gotop {
    padding: 4px 14px;
    font-size: 30px;
    color: #ffffff;
    background: rgb(131 130 130 / 70%);
    border-radius: 100%;
    width: 50px;
    height: 50px;
    z-index: 5;
}

/* 只有首頁footer有加padding */
.home-page footer {
    padding-top: 62px;
}

/* page-banner */

.page-banner{
  background-image: url(/hipershop/rwd1875/store/F1/page_banner.jpg);
  height: 380px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 75px;
  border-radius: 0 0 50px 0;
}
@media screen and (max-width: 768px) {
  .page-banner{
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .page-banner{
    height: 280px;
  }
}
.page-banner .page-title{
  font-family: "Marcellus", serif;
  color: #ffffff;
  width: 683px;
  padding: 40px 50px 60px;
  background: rgba(55, 42, 43, 0.31);
  border-radius: 0 0 0 50px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
@media screen and (max-width: 768px) {
  .page-banner .page-title{
    width: auto;
    padding: 20px 30px 45px;
  }
}
.page-banner h2{ 
  font-size: 30px;
  opacity: 0.4;
}
.page-banner h3{ 
  font-size: 35px;
  margin: 0;
}
.page-banner h3::after{ 
  content: "";
  display: block;
  border-bottom: #fff 1px solid;
  padding-bottom: 10px;
  width: 100px;
}

/* categery */

.nav_cate_item{
  border-radius: 10px;
  margin: 10px 0;
}
aside .nav li a{
  color: #000 ;
  font-size: 18px;
  font-weight: 500;
}
/* 商品頁、商品清單列，側邊導覽列 回饋效果 */
.category-wrapper aside .nav li a:hover, 
.product-wrapper aside .nav li a:hover, 
.category-wrapper aside .nav li a.topic, 
.product-wrapper aside .nav li a.topic,
.category-wrapper aside .nav li a:focus,
.product-wrapper aside .nav li a:focus 

{
  background-color: #B2050C;
  color: #fff;
  border-radius: 6px;
}


.breadcrumb{
  background-color: transparent;
  float: right;
  margin: 20px 0;
}
@media screen and (max-width: 480px) {
  .breadcrumb{
    float: none;
  }
}
ol.breadcrumb li a{
  font-size: 14px;
}
.breadcrumb span{
  font-size: 14px;
}
.aside-title{
  background-color: transparent;
}
.aside-title nav{
  padding: 0 20px;
}
.category-wrapper .imgBox-inner
.product-wrapper .imgBox-inner{
  border: 1px #bbb solid;
  border-radius: 10px;
}
.category-wrapper .li-item:hover,
.product-wrapper .li-item:hover{
  box-shadow: none;
}
.prd_info {
  font-size: 18px!important;
  padding: 20px 0;
}
.hero-feature{
  margin-top: 30px;
}
#category_descr{
  padding: 0 20px;
}

@media screen and (max-width: 480px) {
  #category_descr{
    padding: 0;
  }
}
/* news */

.news_author{
    display: none;
}
.news_title{
    font-size: 25px;
    font-weight: 600;
    color: #5B5050;
    margin: 0 0 18px!important;
    line-height: 1.4;
}

.newsitem{
    margin-bottom: 20px;
    padding: 0 20px;
  }
.NEWS_type{
    margin: 0 30px;
    padding-bottom: 20px;
}
.NEWS_type li{
    font-weight: 600;
    transition: all .3s linear;
    display: block;
    margin-bottom: 10px;
    max-width: 200px;
}
@media screen and (max-width: 768px){
    .NEWS_type li{
      max-width: 100%;
  }
}

.NEWS_type li a{
  background-color: #a5a5a5;
  color: #fff;
  margin: 0 10px;
  border-radius: 5px;
  padding: 10px 20px;
  text-align: center;
}
.NEWS_type li a:hover{
  background-color: #e07275;
  color: #fff;
}
.NEWS_type li .topic{
  background-color: #B2050C;
  color: #fff;
}
.NEWS_type li .type_icon{
    display: none;
}
.NEWS_type .badge{
    display: none;
}
@media screen and (max-width: 480px){
.headlinecate{
    border: transparent;
    border-radius: 0px;
    margin: 0;
}
}
.headlinecate img{
    display: none;
}

.news-wrapper .newsbar{
  display: none;
}
.news-wrapper .thumbnail{
    border: none;
    border-bottom: 1px #cccccc solid;
    background-color: transparent;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.newslist img.news_pic{
    margin: 0 30px 0 0;
    padding: 0;
    width: 250px;
    border-radius: 5px;
    border: 1px #d2d7db solid;
    transition: all 0.3s;
}
@media screen and (max-width: 560px){
    .newslist img.news_pic{
        margin: 0 0 20px 0;
        width: 100%;
    }
}
.newslist :hover img{
    transform: scale(1.03);
}
.newslist .newslist img:hover .news_title{
    color: #7B9AB9;
}

.news-list .news_imgBox-fit{
  overflow: hidden;
  display: block;
}
.caption p{
    margin: 20px 0;
    letter-spacing: 1.2px;
    font-weight: 500;
    color: #7d7d7d;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 768px){
    .caption p{
        margin: 0 0 10px 0;
    }
}
.news_date{
  letter-spacing: 0.5px;
  font-size: 16px;
  min-width: 103px;
  font-weight: 500;
  color: #5B5050;
}
.news_date img{
    display: none;
}
.news_sort{
  display: none;
}
.news_sort img{
    display: none;
}
.news_author{
  display: none;
}
.news_more:hover,
.news_more:focus{
  background-color: #5C5A5A;
  color: #fff;
}
#LinkContainer h1.news_title{
    padding: 0 20px;
}
.news-wrapper .btn-default{
    border-radius: 0px;
    padding: 10px 30px;
    transition: all.2s ;
}
.news p{
    padding-left: 20px;
}
.descri-none {
    font-size: 15px;
    letter-spacing: 1.5px;
    line-height: 1.5;
    margin: 20px 0;
}   

.news-wrapper .article-content{
  margin: 20px 0;
}
.news-wrapper .arti-news{
  margin: 0;
  text-align: center;
}
.news-wrapper .news_content{
  margin: 0;
}
.news-content .arti-news > img{
  margin: 20px 0;
  max-width: 800px;
}
.pagination>.active>a{
    transition: all.3s;
}
.pagination>.active>a, 
.pagination>.active>a:focus, 
.pagination>.active>a:hover,
.pagination>li>a:focus,
.pagination>li>a:hover{
    background-color: #5C5A5A;
    border-color: transparent;
}
@media screen and (max-width: 768px) {
    .news-wrapper h2.aside-title:after {
        color: #555;
        font-weight: 400;
    }
}

/* search */
.search-wrapper .srhKeyTitle{
  font-size: 20px;
  color: #B2050C;
}
.search-wrapper .srhCtyClass,
.search-wrapper .srhNewsClass{
  display: none;
}
.search-wrapper .listview-list{
  margin: 30px 0;
}
.search-wrapper .listview-list li{
  padding: 30px 0;
  border-bottom: 1px #d9d9d9 solid;
}
.search-wrapper .listview-list li a{
  text-decoration: none;
}
.search-wrapper .cidsw,
.search-wrapper .pdcph,
.search-wrapper .srhOthClass,
.search-wrapper .srhOthClassNoData{
  display: none;
}
.search-wrapper .ciNsw,
.search-wrapper .ninsw{
  font-size: 25px;
  font-weight: 600;
  color: #333350;
  padding: 20px 0;
  transition: all 0.3s;
}
.search-wrapper .ciNsw:hover,
.search-wrapper .ninsw:hover{
  color: #B2050C;
}
.search-wrapper .ctycls,
.search-wrapper .newsDcls{
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 2;
  padding: 10px 0;
}
.search-wrapper .kwdcls font{
  color: #B2050C!important;
  font-weight: 600;
}
/* section-title */
.section-title{
  padding: 20px 0 20px 10px;
}
@media (max-width: 992px) {
  .section-title{
    padding: 40px 15px 30px;
  }
}
@media (max-width: 480px) {
  .section-title{
    padding: 0 15px 30px;
  }
}
@media (max-width: 480px) {
  .section02 .section-title{
    padding: 0 0 30px;
  }
}
.section-title h4{
  font-size: 16px;
  border: 1px #575252 solid;
  border-radius: 17px 17px 17px 0;
  padding: 2px 8px;
  max-width: 68px;
  text-align: center;
}
.section-title h2{
  font-size: 37px;
  font-weight: bold;
  margin-top: 10px;
}
.section-title h2::after{
  content: "";
  display: block;
  border-bottom: 3px #B2050C solid;
  width: 50px;
  padding-top: 15px;
}
@media (max-width: 480px) {
  .section-title h2{
    font-size: 40px;
  }
}

.js-char-blur .char {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.05);
  transition: opacity .5s cubic-bezier(0.16,1,0.3,1),
              filter  .5s cubic-bezier(0.16,1,0.3,1),
              transform .5s cubic-bezier(0.16,1,0.3,1);
}
.js-char-blur.is-animate .char {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}