@charset "utf-8";
/** bootstrap **/
@import url(bootstrap.css);
/** 手機選單 **/
@import url(slicknav.css) screen and (max-width:1020px);
/** google font **/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  width: 100%;
  height: auto;
}
body {
  background: #ffffff;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  font-size: medium;
  font-family: 'arial', 'Noto Sans TC', sans-serif;
  word-break: break-word;
}
a, a:hover {
  text-decoration: none;
  transition: all 0.5s ease 0s;
  cursor: pointer;
}
img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
}
input {
  vertical-align: middle;
  border-radius: 0;
}
input:focus, select:focus, textarea:focus, button:focus {
  outline: 0;
}
/** 取消ios按鈕樣式 **/
input[type="button"], input[type="submit"], input[type="reset"], button[type="button"], button[type="submit"], button[type="reset"], a[type="button"], a[type="submit"], a[type="reset"], textarea {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.slicknav_menu {
  display: none;
}
/** 表單預設文字顏色設定 **/ ::-webkit-input-placeholder {
  color: #999999;
}
::-moz-placeholder {
  color: #999999;
}
:-ms-input-placeholder {
  color: #999999;
}
input:-moz-placeholder {
  color: #999999;
}
#field2::-webkit-input-placeholder {
  color: #999999;
}
#field3::-webkit-input-placeholder {
  color: #999999;
  background: lightgreen;
  text-transform: uppercase;
}
#field4::-webkit-input-placeholder {
  font-style: italic;
  text-decoration: overline;
  letter-spacing: 3px;
  color: #999999;
}
#field2::-moz-placeholder {
  color: #999999;
}
#field3::-moz-placeholder {
  color: #999999;
  background: lightgreen;
  text-transform: uppercase;
}
#field4::-moz-placeholder {
  font-style: italic;
  text-decoration: overline;
  letter-spacing: 3px;
  color: #999999;
}
.writing-mode-vertical {
  writing-mode: tb-lr;
  -ms-writing-mode: tb-lr;
  -webkit-writing-mode: vertical-lr;
  -moz-writing-mode: vertical-lr;
  -ms-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
}
/** 手機選單、選單 色塊-變色 **/
.b-color, .slicknav_menu {}
.slicknav_icon-bar {
  background-color: #000;
}
.b-color > li:hover, .b-color > li > ul > li > a:hover, .slicknav_nav .slicknav_row:hover, .slicknav_nav a:hover {
  background: #fff;
}
.border-color {
  border-left: 7px #A0A0A0 solid;
}
.slicknav_nav .slicknav_arrow {
  position: absolute;
  top: 13px;
  right: 10px;
}
/** 上版 **/
header {
  padding: 0 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  transition: .5s;
  background: rgba(255, 255, 255, 0.80);
}
.head-main {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 28.5px 0;
  justify-content: space-between;
}
.head-main .logo {}
.header-height {
  background: #fff;
  box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.05), 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width:1020px) {
  header {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    position: inherit;
  }
  .head-main .logo {
    position: fixed;
    top: 11px;
    left: 10px;
    padding: 0;
    z-index: 10000;
    margin: 0;
  }
  .head-main .logo .logo001 {
    width: 100px;
  }
  .header-height .head-main .logo .logo001 {
    width: 100px;
  }
}
/** 主選單與下拉 **/
nav {
  /*
  flex: 1;
  margin: 0 0 0 18vw;
*/
}
.menu {
  padding: 0;
  list-style: none;
  margin: 0 auto;
  display: flex;
}
.menu > li {
  color: #fff;
  font-size: 16px;
  text-align: center;
  position: relative;
  cursor: pointer;
  padding: 0;
  margin-left: 30px;
}
.menu > li > a {
  color: #275E88;
  display: block;
  font-size: 20px;
}
.menu > li > a:hover {
  color: #000;
}
.menu > li.sub > ul.sub-menu {
  background: rgba(255, 255, 255, .88);
  display: none;
  position: static;
  z-index: 999;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px #cccccc solid;
}
.menu > li.sub:hover ul.sub-menu {
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  top: 130px;
}
.menu > li.sub > ul.sub-menu > li {
  display: block;
  border-bottom: 1px #cccccc solid;
}
.menu > li.sub > ul.sub-menu > li:last-of-type {
  border-bottom: 0;
}
.menu > li.sub > ul.sub-menu > li > a {
  display: block;
  color: #000000;
  padding: 5px 10px;
  margin: 0;
}
.menu > li.sub > ul.sub-menu > li > a:hover {
  background: #761000;
  color: #ffffff;
}
.header-height .menu > li:hover:before {
  bottom: 20px;
}
.header-height .menu > li:before {
  height: 2px;
}
.header-height .menu > li.sub:hover ul.sub-menu {
  top: 90.73px;
}
@media screen and (max-width:1400px) {
  .menu > li.sub:hover ul.sub-menu {
    top: 101px;
  }
  .head-main .logo {
    top: 25px;
  }
}
@media screen and (max-width:1150px) {
  .menu > li.sub:hover ul.sub-menu {
    top: 90px;
  }
  .menu > li > a:hover {
    transform: translateY(0);
  }
}
@media screen and (max-width:1020px) {
  #menu {
    display: none;
  }
  .slicknav_menu {
    display: block;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
  }
  #header .head-main .logo {
    top: 18px;
  }
}
/** edm輪播 **/
/*尺寸設定*/
.swiper {
  width: 100%;
  height: auto;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*切換點尺寸樣式*/
.swiper .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.40);
}
.swiper .swiper-pagination-bullet-active {
  background: #fff;
  padding: 2px;
  position: relative;
}
.swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px !important;
}
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 20px !important;
}
@media screen and (max-width:1080px) {
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px !important;
  }
}
@media screen and (max-width:576px) {
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 5px !important;
  }
  .swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
/* 左右按鈕樣式 */
.bt-next, .bt-prev {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.60);
  border-radius: 50%;
  z-index: 50;
}
.bt-next {
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}
.bt-next::before {
  content: "";
  position: absolute;
  width: 17px;
  height: 28px;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  background: url("../images/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.bt-prev {
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
}
.bt-prev::before {
  content: "";
  position: absolute;
  width: 17px;
  height: 28px;
  left: 50%;
  top: 50%;
  transform: translate(-55%, -50%);
  background: url("../images/arrow-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width:1080px) {
  .bt-next, .bt-prev {
    width: 40px;
    height: 40px;
  }
  .bt-next::before {
    width: 12px;
    height: 20px;
  }
  .bt-prev::before {
    width: 12px;
    height: 20px;
  }
}
@media screen and (max-width:576px) {
  .bt-next, .bt-prev {
    width: 40px;
    height: 40px;
  }
  .bt-next::before {
    width: 12px;
    height: 20px;
  }
  .bt-prev::before {
    width: 12px;
    height: 20px;
  }
}
/** 配置 **/
.warpper {}
.main {}
.i-title-main {
  position: relative;
}
.i-title-main h2 {}
.i-title-main .i-about-title {
  font-size: 36px;
  letter-spacing: 0.05em;
  color: #275E88;
  margin-bottom: 30px;
  font-family: 'Roboto', 'Noto Sans TC', sans-serif;
  font-weight: 500;
  position: relative;
}
.i-title-main .i-about-title::before {
  content: "";
  position: absolute;
  left: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 165px;
  height: 3px;
  background: #275E88;
}
.i-title-main .i-pro-title {
  font-size: 36px;
  letter-spacing: 0.05em;
  color: #275E88;
  font-family: 'Roboto', 'Noto Sans TC', sans-serif;
  font-weight: 500;
  position: relative;
  text-align: center;
  max-width: 636px;
  margin: 0 auto 50px auto;
}
.i-title-main .i-pro-title::before {
  content: "";
  display: block;
  width: 180px;
  height: 3px;
  background: #275E88;
  left: 0;
  top: 50%;
  position: absolute;
}
.i-title-main .i-pro-title::after {
  content: "";
  display: block;
  width: 180px;
  height: 3px;
  background: #275E88;
  right: 0;
  top: 50%;
  position: absolute;
}
.i-more {
  text-align: center;
}
.i-more a {
  display: inline-block;
  padding: 15px 20px 15px 50px;
  border: 1px solid #5C5C5C;
  font-size: 18px;
  line-height: 18px;
  color: #5C5C5C;
  transition: .5s;
}
.i-more a:hover {
  background: #282828;
  color: #fff;
}
.i-more a span {
  margin-left: 50px;
}
.i-more a:hover span {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(152deg) brightness(101%) contrast(101%);
}
@media screen and (max-width:1200px) {}
@media screen and (max-width:976px) {}
@media screen and (max-width:767px) {
  .i-title-main .i-about-title {
    margin-bottom: 20px;
    font-size: 32px;
  }
  .i-title-main .i-pro-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .i-title-main .i-pro-title::after, .i-title-main .i-pro-title::before {
    width: 150px;
  }
  .i-more a {
    padding: 15px 15px 15px 20px;
    font-size: 16px;
    line-height: 16px;
  }
}
@media screen and (max-width:576px) {
  .i-title-main .i-about-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .i-title-main .i-pro-title {
    font-size: 24px;
    margin-bottom: 10px;
    max-width: 350px;
  }
  .i-title-main .i-pro-title::after, .i-title-main .i-pro-title::before {
    width: 80px;
  }
  .i-content {
    font-size: 14px;
  }
  .i-more a {
    font-size: 14px;
  }
}
/** 關於我們 **/
.i-about-main {
  background: #f7f7f7;
  padding: 125px 10px 50px 10px;
  margin-bottom: 60px;
}
.i-about {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
}
.i-about-info {
  flex: 1;
  margin-left: 60px;
}
.i-content {
  color: #454545;
  letter-spacing: 0.05em;
  margin-bottom: 35px;
}
.i-about-img {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.i-about-img img {
  width: 100%;
  max-width: 250px;
  height: 450px;
  object-fit: cover;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
}
.i-about-img img:nth-child(1) {
  position: relative;
}
.i-about-img img:nth-child(2) {
  margin-left: 20px;
  position: relative;
  bottom: 78px;
}
@media screen and (max-width:1200px) {
  .i-about-img img {
    max-width: 200px;
    height: 350px;
    justify-content: center;
  }
  .i-about-img img:nth-child(2) {
    bottom: 60px;
  }
}
@media screen and (max-width:976px) {
  .i-about-main {
    padding-top: 50px;
  }
  .i-about {
    flex-direction: column;
  }
  .i-about-info {
    margin-bottom: 80px;
    margin-left: 40px;
  }
  .i-about-img {
    justify-content: center;
  }
  .i-about-img img {
    max-width: 300px;
    height: 450px;
  }
}
@media screen and (max-width:767px) {
  .i-about-main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .i-about-img img {
    max-width: 250px;
    height: 400px;
  }
  .i-content {
    margin-bottom: 20px;
  }
}
.i-about-info {
  margin-left: 20px;
}
@media screen and (max-width:575px) {
  .i-about-img img:nth-child(2) {
    margin-left: 20px;
    bottom: 40px;
  }
  .i-about-img img {
    max-width: 150px;
    height: 250px;
  }
}
/* 產品類別 */
.i-pro-main {
  padding-bottom: 50px;
  position: relative;
  background-image: url("../images/pro-bg.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.i-pro {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.i-pro > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.i-pro > ul > li {
  padding: 0;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  width: calc(100% / 3 - 68px);
  margin: 34px;
  aspect-ratio: 1 / 1;
}
.i-pro > ul > li .i-pro-photo img {
  object-fit: cover;
  object-position: center;
  height: 310px;
  transition: .5s;
}
.i-pro > ul > li .i-pro-info {
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.46);
  box-shadow: inset 0px 0px 0px 3px #fff;
  border: 18px solid rgba(255, 255, 255, 0.00);
  transition: .8s;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.0);
}
.i-pro > ul > li .i-pro-info .i-pro-name {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0;
  text-align: center;
}
.i-pro > ul > li:hover .i-pro-info {
  border: 0 solid rgba(0, 0, 0, 0.00);
  box-shadow: inset 0px 0px 0px 0px #fff;
  background: rgba(0, 0, 0, 0.2);
}
.i-pro > ul > li:hover .i-pro-photo img {
  transform: scale(115%);
}
.i-pro > ul > li:hover .i-pro-info {
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}
@media screen and (max-width:1020px) {}
@media screen and (max-width:976px) {
  .i-pro > ul > li {
    width: calc(100% / 3 - 40px);
    margin: 20px;
  }
  .i-pro > ul > li .i-pro-info .i-pro-name {
    font-size: 24px;
  }
}
@media screen and (max-width:767px) {
  .i-pro > ul > li {
    width: calc(100% / 3 - 20px);
    margin: 10px;
  }
  .i-pro > ul > li .i-pro-info .i-pro-name {
    font-size: 20px;
  }
}
@media screen and (max-width:576px) {
  .i-pro > ul > li {
    width: calc(100% / 2 - 20px);
    margin: 10px;
  }
  .i-pro > ul > li .i-pro-info {
    border: 10px solid rgba(255, 255, 255, 0.00);
  }
  .i-pro > ul > li .i-pro-info .i-pro-name {
    font-size: 18px;
  }
}
/** 內頁banner **/
.inside-banner {
  background: #ffffff url("../images/banner.png")no-repeat center 50%;
  background-size: cover;
  padding: 150px 0;
  position: relative;
}
@media screen and (max-width:1150px) {}
@media screen and (max-width:1020px) {
  .inside-banner {
    padding: 15vw 15px 5vw 15px;
  }
}
@media screen and (max-width:767px) {}
/** Breadcrumb **/
nav[aria-label="breadcrumb"] {
  flex: initial;
  margin: 0;
  padding: 0 15px;
  margin: 30px 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.breadcrumb-item {
  padding-left: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #C5C5C5;
  content: "/";
}
.breadcrumb-item a {
  display: inline-block;
  text-decoration: none;
  color: #C5C5C5;
}
.breadcrumb-item a:hover {
  color: #7baa4e;
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #000;
}
@media screen and (max-width:1020px) {
  nav[aria-label="breadcrumb"] {
    margin-top: 80px;
  }
}
/** 內頁架構 **/
.content-body {
  max-width: 1280px;
  margin: 0 auto;
}
.page-title {
  font-size: 24px;
  color: #282828;
}
.page-main {
  padding: 0;
  font-size: 16px;
  color: #222222;
}
.page-main a {
  color: #8A1C01;
}
.page-main a:hover {
  color: #7baa4e;
}
.inside-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.inside-container .inside-img {
  max-width: 50%;
}
.inside-container .inside-text {
  max-width: 50%;
}
.inside-text h3 {
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #275E88;
  margin-bottom: 10px;
  font-family: 'Roboto', 'Noto Sans TC', sans-serif;
}
.inside-text h4 {
  font-size: 18px;
  color: #fff;
  background: linear-gradient(90deg, #006FB7 50.06%, rgba(0, 111, 183, 0) 104.12%);
  width: 150px;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.inside-text p {
  color: #454545;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.inside-list {
  margin-bottom: 40px;
}
.inside-list li {
  margin-bottom: 10px;
}
@media screen and (max-width:976px) {
  .inside-container {
    flex-direction: column;
  }
  .inside-container .inside-img {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .inside-container .inside-text {
    max-width: 100%;
  }
}
@media screen and (max-width:767px) {}
@media screen and (max-width:575px) {
  .inside-text h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .inside-text p {
    font-size: 14px;
  }
  .inside-list {
    margin-bottom: 20px;
    padding-left: 20px;
  }
  .inside-list li {
    font-size: 14px;
  }
}
/** 左邊分類 **/
.left-menu-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #F0F0F0;
  letter-spacing: 0.2em;
}
.in-left-menu > ul {
  margin-bottom: 20px;
  border-bottom: 2px solid #CFCED1;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.in-left-menu > ul > li {
  width: calc(100% / 4 - 40px);
  font-size: 16px;
  padding: 0;
  text-align: center;
  position: relative;
}
.in-left-menu > ul > li > a {
  background: #ffffff;
  color: #0F76B8;
  display: block;
  position: relative;
  transition: .3s;
  letter-spacing: 0.05em;
  padding: 20px;
}
.in-left-menu > ul > li > a:hover {
  transition: .3s;
  font-weight: bold;
}
.in-left-menu > ul > li > a::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 0px;
  transition: .3s;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.in-left-menu > ul > li > a:hover::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 6px;
  background: #0f76b8;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.in-left-menu > ul > li > .current {
  font-weight: bold;
}
.in-left-menu > ul > li > .current::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 5px;
  background: #0f76b8;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.in-left-menu > ul > li ul {
  margin: 5px 0 0 30px;
  padding: 0;
  list-style: square;
}
.in-left-menu > ul > li ul li {
  border-top: 1px #CCC dotted;
  padding: 5px 5px 5px 0;
}
.in-left-menu > ul > li ul li a {
  font-size: 13px;
  color: #666;
  display: block;
}
.in-left-menu > ul > li ul li a:hover {
  color: #71743D;
}
.news-menu > ul > li {
  width: calc(100%/7);
}
.news-menu > ul > li > a {
  padding: 10px 6px;
}
.cases-menu > ul > li {
  width: calc(100%/7);
}
.cases-menu > ul > li > a {
  padding: 10px 6px;
}
.left-beautify img {
  width: 100%;
  height: auto;
  margin-top: 0px;
}
.m_classLink {
  display: none;
}
@media screen and (max-width:1020px) {
  .in-left-menu > ul > li {
    width: calc(100% / 4 - 20px);
  }
}
@media screen and (max-width:976px) {
  .classBox {
    padding: 0 0 4vmin 0;
  }
  ul.classLink {
    display: none;
  }
  .m_classLink {
    display: block;
    position: relative;
    background-color: #ffffff;
    border: 1px solid #275E88;
  }
  .m_classLink a.main {
    display: block;
    background: none;
    font-size: 16px;
    color: #222222;
    position: relative;
    padding: 8px 49.59px 8px 8px;
  }
  .m_classLink a.main i {
    display: block;
    font-size: 16px;
    background: #275E88;
    width: 41.59px;
    height: 100%;
    text-align: center;
    color: #FFF;
    line-height: 41.59px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .m_classLink a.main b {
    font-weight: 400;
  }
  .m_classLink ul {
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    background: #FFF;
    border: 1px solid #275E88;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    box-sizing: border-box;
  }
  .m_classLink ul li {
    margin: 0;
    padding: 0;
  }
  .m_classLink ul li a {
    display: block;
    padding: 8px;
    border-top: 1px solid #275E88;
    font-size: 16px;
    color: #222222;
  }
  .m_classLink ul li:first-child a {
    border: none;
  }
  .m_classLink ul li a:hover {
    background: #f3f3f3;
  }
  .m_classLink ul li ul {
    display: block;
    margin: 0 10px 10px 10px;
    padding: 0;
    list-style: none;
    width: calc(100% - 20px);
    background: #FFF;
    border: 1px solid #45b035;
    position: inherit;
    left: inherit;
    top: inherit;
    z-index: 999;
    box-sizing: border-box;
  }
  .left-menu-title {
    display: none;
  }
  .in-left-menu {
    margin-top: 20px;
  }
  .left-beautify {
    display: none;
  }
}
/* 關於我們 */
.timeline {
  border-left: 4px solid #E6E6E6;
  position: relative;
  padding: 10px 50px;
  list-style: none;
}

.timeline ul{
    list-style: none;
    padding: 0;
}

.timeline .event {
  margin-bottom: 30px;
  position: relative;
  color: #454545;
}
.timeline .event.timelight {
  color: #275E88;
  font-weight: bold;
}
.timeline .event p {
  font-size: 16px;
  margin-bottom: 0;
}
.timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.timeline .event:before, .timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}
.timeline .event:before {
  left: -130px;
  content: attr(data-date);
  font-size: 18px;
  min-width: 120px;
}
.timeline .event:after {
  box-shadow: 0 0 0 5px #E6E6E6;
  left: -57.85px;
  background: #fff;
  border-radius: 50%;
  height: 11px;
  width: 11px;
  content: "";
  top: 8px;
}
@media screen and (max-width:1020px) {
  .timeline {
    padding: 10px 30px;
    margin-left: 50px;
  }
  .timeline .event:after {
    left: -37.85px;
  }
  .timeline .event:before {
    left: 0;
  }
  .timeline .event p {
    padding-left: 60px;
  }
}
@media screen and (max-width:576px) {
  .timeline {
    margin-left: 20px;
  }
}
/** 產品列表 **/
.projects-list {
  margin-bottom: 20px;
}
.projects-list > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.projects-list > ul > li {
  width: calc(100%/3 - 20px);
  margin: 10px;
}
.projects-list > ul > li a {
  display: block;
  padding: 10px;
  border: 1px #eeeeee solid;
  background: #ffffff;
}
.projects-list > ul > li a img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(1);
  transition: all 0.3s ease 0s;
}
.projects-list > ul > li:hover a img {
  transform: scale(1.08);
}
.projects-list > ul > li .projects-title {
  padding-top: 10px;
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #282828;
}
.projects-list > ul > li:hover .projects-title {
  color: #C14E51;
}
@media screen and (max-width:976px) {
  .projects-list > ul > li {
    width: calc(100%/3 - 10px);
    margin: 5px;
  }
  .projects-list > ul > li a img {
    height: 200px;
  }
}
@media screen and (max-width:767px) {
  .projects-list > ul > li {
    width: calc(100%/3 - 10px);
  }
  .projects-list > ul > li a img {
    height: 150px;
  }
}
@media screen and (max-width:576px) {
  .projects-list > ul > li {
    width: calc(100%/1 - 10px);
  }
  .projects-list > ul > li a img {
    height: 200px;
  }
}
/** 產品明細 **/
.pro-detail {
  font-family: "Roboto", sans-serif;
}
.pro-detail .inside-text h3 {
  color: #747474;
  font-size: 36px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0f76b8;
  font-weight: 400;
  margin-bottom: 10px;
}
.pro-detail .inside-text h4 {
  background: none;
  width: inherit;
  color: #275E88;
  padding: 0;
  font-size: 20px;
  margin-bottom: 20px;
}
.pro-detail .inside-text p {
  font-size: 20px;
  color: #0f76b8;
}
.pro-detail .inside-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pro-detail .inside-list li {
  width: calc(100% / 3 - 20px);
  margin: 10px;
}
.pro-detail .inside-list li img {
  margin-bottom: 20px;
}
.pro-detail .inside-list h5 {
  font-size: 18px;
  color: #282828;
}
.pro-detail .inside-list p {
  font-size: 16px;
}
.projects-info {
  padding: 0;
  margin: 0;
}
.projects-info > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.projects-info > ul > li {
  padding: 0;
  margin: 8px 0;
  display: flex;
}
.projects-info > ul > li .projects-info-title {
  width: 110px;
  background: #7baa4e;
  padding: 5px 15px;
  border-radius: 3px;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width:767px) {
  .pro-detail .inside-list li {
    width: calc(100% / 2 - 20px);
  }
  .pro-detail .inside-text h3 {
    font-size: 24px;
  }
  .pro-detail .inside-text p {
    font-size: 18px;
  }
}
@media screen and (max-width:576px) {
  .pro-detail .inside-list li {
    width: calc(100% / 1 - 20px);
  }
  .pro-detail .inside-text p {
    font-size: 16px;
  }
}
/** 趨勢 **/
.trend-detail {
  font-family: "Roboto", sans-serif;
  margin-top: 30px;
}
.trend-detail .inside-text h3 {
  padding-bottom: 10px;
  border-bottom: 2px solid #0f76b8;
}
.trend-detail .inside-text h4 {
  background: none;
  width: inherit;
  color: #275E88;
  padding: 0;
  font-size: 20px;
  margin-bottom: 20px;
}
.trend-detail .inside-text p {
  font-size: 20px;
  color: #0f76b8;
}
@media screen and (max-width:767px) {
  .trend-detail .inside-text h3 {
    font-size: 24px;
  }
  .trend-detail .inside-text p {
    font-size: 18px;
  }
}
@media screen and (max-width:576px) {
  .trend-detail .inside-text p {
    font-size: 16px;
  }
}
/** 最新消息 **/
.news {
  margin-top: 30px;
  font-family: '微軟正黑體', 'arial', sans-serif;
}

.news > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news > ul > li {
  padding: 15px 0;
  border-top: 1px solid #d4d4d4;
  display: flex;
}
.news > ul > li a {
  display: flex;
  align-items: center;
  padding: 0;
}
.news > ul > li a:hover h3.news-title {
  color: #00355d;
  text-decoration: underline;
}
.news > ul > li .news-date {
  font-size: 16px;
  padding: 2px;
  color: #333;
  letter-spacing: 1px;
  line-height: 30px;
  min-width: 120px;
}
.news > ul > li h3.news-title {
  flex: 1;
  font-size: 16px;
  color: #0060a9;
  padding-left: 20px;
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width:767px) {
  .news > ul > li .news-date {
    min-width: 100px;
    font-size: 14px;
  }
}
/* 最新消息內頁 */
.news-detail {
  margin-top: 40px;
  font-family: '微軟正黑體', 'arial', sans-serif;
}
.news-detail .inside-text h3 {
  font-size: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0f76b8;
  margin-bottom: 5px;
}
.news-detail .news-date {
  font-size: 16px;
  padding: 2px;
  color: #333;
  letter-spacing: 1px;
  line-height: 30px;
  text-align: right;
  margin-bottom: 10px;
}
.news-detail .inside-img {
  text-align: center;
}
@media screen and (max-width:767px) {
  .news-detail .inside-text h3 {
    font-size: 20px;
  }
  .news-detail .news-date {
    font-size: 15px;
  }
}
/** 聯絡我們 **/
.form-text {
  margin-bottom: 10px;
  color: #454545;
}
.contact-list {
  margin-bottom: 10px;
}
.contact-list .co-name {
  color: #282828;
  display: flex;
}
.contact-list .co-name h3 {
  font-size: 24px;
  color: #0F76B8;
}
.contact-list .co-name h4 {
  font-size: 12px;
  margin-left: 10px;
  color: #454545;
}
.contact-list table {
  width: 100%;
  border-collapse: collapse;
}
.contact-list table tr:nth-child(1) {
  border-top: 2px solid #0F76B8;
}
.contact-list table td {
  border-width: 1px;
  border-color: #d3d3d3;
  border-style: solid;
  padding: 10px;
  font-size: 14px;
}
.contact-list table td:first-child {
  background: #F0F7FD;
  color: #445E5E;
  font-weight: bold;
  width: 100px;
}
@media screen and (max-width:767px) {}
@media screen and (max-width:575px) {}
/** 表單欄位 **/
.form-box {
  padding: 10px 0;
}
.form-box input, .form-box img {
  vertical-align: middle;
}
.opinion-main {
  display: flex;
  margin-bottom: 16px;
}
.opinion {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  margin-right: 30px;
}
.opinion:nth-child(2) {
  margin-right: 0;
}
.opinion-left01 {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.input-main-style01 {
  flex: 1;
  width: 100%;
  border: 1px solid #C5C5C5;
  margin: 0;
  font-size: 14px;
  min-height: 30px;
}
.input-main-style02 {
  background: #f3f3f3;
  flex: 1;
  width: 100%;
  border: 0;
  margin: 0;
  padding: 8px 15px;
  font-size: 16px;
  color: #222222;
  min-height: 42px;
}
.input-main-style03 {
  background: #f3f3f3;
  flex: 1;
  width: 100%;
  border: 0;
  margin: 5px 0 0 0;
  padding: 8px 15px;
  font-size: 16px;
  color: #222222;
  min-height: 42px;
}
.input-main-select {
  background: none;
  flex: 1;
  width: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #222222;
  display: flex;
  flex-wrap: wrap;
}
.input-main-select select {
  flex: 1;
  margin: 0;
  /*  padding: 8px 15px;*/
  line-height: 1.8;
  border: 0;
  font-size: 16px;
  color: #999;
  min-height: 42px;
}
.select-style {
  background: #8a6e0c;
  font-size: 16px;
  color: #ffffff;
  line-height: 20px;
  padding: 5px 10px;
  border: 0;
}
.input-style01 {
  background: #f4f8fb;
  flex: 1;
  width: 100%;
  border: 0;
  margin: 0;
  padding: 5px 15px;
  font-size: 16px;
  color: #222222;
  min-height: 42px;
}
input:disabled {
  background-color: #fff;
  color: #2d7fb9;
  cursor: no-drop;
}
.btn.openlink {
  margin: 3px 0;
  padding: 0 10px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  background-color: #2d7fb9;
  color: #fff;
  border-radius: 5px;
}
.btn.openlink:hover {
  background-color: #ffbe00;
}
img.code {
  width: 100px;
  height: 42px;
  margin: 0;
  vertical-align: middle;
  display: inline-block;
}
.pay-main {
  padding: 0;
  font-size: 16px;
  color: #333333;
  border-radius: 0;
  margin: 15px 0;
}
.input-main-style01, .input-main-style02, .input-main-style03, .input-main-select select {
  transition: .5s;
  font-family:'Noto Sans TC', sans-serif;
}
.input-main-style01:focus, .input-main-style02:focus, .input-main-style03:focus, .input-main-select select:focus {
  background: #ffffff;
  box-shadow: 0 0 0 1px #0f76b8;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:767px) {
  .opinion-main {
    display: block;
  }
  .opinion {
    margin-right: 0;
  }
}
@media screen and (max-width:575px) {
  .opinion-left01 {
    width: 100%;
  }
  .input-main-style02 {
    width: calc(100% - 100px);
  }
}
/** 按鈕 **/
.cart-btn {
  padding: 0;
  text-align: center;
  margin: 2vmin 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.cart-btn i {
  margin: 0 10px 0 0;
}
.btn-send {
  font-size: 13px;
}
a.btn-send {
  padding: 5px 20px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  min-width: 100px;
  margin: 5px;
  border-radius: 3px;
  background: #0f76b8;
}
a.btn-send:hover {
  background: #222222;
}
a.btn-send-over {
  background: #7ea2c5;
  padding: 5px 20px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  min-width: 100px;
  margin: 5px;
  border-radius: 3px;
}
a.btn-send-over:hover {
  background: #96b9dc;
}
@media screen and (max-width:575px) {
  a.btn-send {
    padding: 5px 10px;
    width: calc(50% - 10px);
  }
  a.btn-reset {
    padding: 5px 10px;
    width: calc(50% - 10px);
  }
  a.btn-send-over {
    padding: 5px 10px;
    width: calc(50% - 10px);
  }
}
/** 送出訊息 **/
.jump-window-box {
  max-width: 600px;
  margin: 0 auto;
  border: 1px #ccc solid;
  padding: 4vmin;
  border-radius: 5px;
  box-shadow: 0 8px 15px 0 rgba(0, 0, 0, .1);
  background: #ffffff;
}
/** 頁次 **/
.page {
  font-size: 14px;
  color: #222222;
  text-align: center;
  clear: both;
  margin: 2vmin 0;
}
.page a {
  display: inline-block;
  background: #0f76b8;
  color: #fff;
  padding: 2px 10px;
  margin: 8px 5px;
}
.page a:hover {
  background: #222222;
  color: #fff;
}
.page br {
  display: none;
}
@media screen and (max-width:767px) {
  .page br {
    display: block;
  }
}
/** 下版 **/
footer {
  background: #353535;
  padding: 40px 0 10px 0;
  position: relative;
}
footer .footer {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
h2.f-title {
  font-size: 20px;
  line-height: 30px;
  color: #333333;
  font-weight: 500;
  margin-bottom: 14px;
}
.f-info {}
.f-info .f-logo {
  margin-bottom: 20px;
}
.sitemap {}
.sitemap > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sitemap > ul > li {
  padding: 0;
  margin-left: 30px;
}
.sitemap > ul > li a {
  display: block;
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
}
.f-contact > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.f-contact > ul > li {
  margin-bottom: 15px;
}
.f-contact > ul > li a {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  margin-right: 16px;
  letter-spacing: 0.05em;
  font-weight: 300;
}
.f-contact > ul > li a span {
  margin-right: 5px;
}
.copyright {
  color: #fff;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.05em;
  padding: 0 10px;
}
.copyright a {
  color: #fff;
}
.copyright a:hover {
  color: #fff;
}
@media screen and (max-width:1300px) {
  footer .footer {
    padding: 0 15px;
  }
}
@media screen and (max-width:1200px) {
  .sitemap > ul > li a {
    font-size: 18px;
  }
  .f-contact > ul > li a {
    font-size: 14px;
  }
  .f-contact > ul > li {
    margin-bottom: 10px;
  }
}
@media screen and (max-width:976px) {
  .sitemap {
    display: none;
  }
  footer {
    padding-top: 30px;
  }
  footer .footer {
    margin-bottom: 10px;
    justify-content: center;
  }
}
@media screen and (max-width:575px) {
  .f-info .f-logo {
    text-align: center;
  }
  .f-contact > ul > li {
    text-align: center;
  }
  .f-contact > ul > li a {
    margin: 0 10px;
  }
}