@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  /*font-size: 100%;
  font: inherit;*/
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*HTML5 tag*/
section, article, aside, footer, header, nav, main {
  display: block;
}

/* 基本元素 */
html {
  height: 100%;
}

body {
  height: 100%;
  /*font-size: 16px;*/
  font-family: 'Noto Sans TC', '微軟正黑體', 'PingFang SC', 'Arial', 'Helvetica Neue', 'STXihei', 'cwTeXHei', sans-serif;
  color: #333;
  word-wrap: break-word;
  word-break: normal;
}

a {
  color: #333;
  text-decoration: none;
  display: inline-block;
}

a:hover {
  text-decoration: none;
}

.cl {
  clear: both;
}

.cl::after, .fea-item::after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

input, textarea, select, button {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

select:not([multiple]) {
  -webkit-appearance: none;
  -moz-appearance: none;
}

* {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
}

/* header */
.header-wrap {
  width: 100%;
  height: auto;
  background-color: #fff;
  position: relative;
}

.header-wrap::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

@media all and (max-width: 768px) {
  .header-wrap {
    height: auto;
    background-color: #fff;
    padding: 15px 15px;
  }
}

@media all and (max-width: 479px) {
  .header-wrap {
    padding: 10px 10px;
  }
}

.header-container {
  padding: 25px 0;
}

@media all and (max-width: 768px) and (min-width: 480px) {
  .header-container {
    padding: 10px 0;
  }
}

@media all and (max-width: 479px) {
  .header-container {
    padding: 5px 0;
  }
}

.logo a {
  width: 350px;
  height: 50px;
  float: left;
  margin: 0;
  text-indent: -9999px;
  background: url("../images/header/logo.png") left center no-repeat;
  background-size: contain;
}

@media all and (max-width: 768px) {
  .logo a {
    float: right;
    width: 280px;
    height: 40px;
  }
}

@media all and (max-width: 479px) {
  .logo a {
    width: 210px;
    height: 30px;
    margin-top: 5px;
  }
}

.nav-menu {
  width: 52%;
  float: left;
  margin-left: 2%;
}

.nav-menu::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

@media all and (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}

.nav-menu li {
  float: left;
  /*margin: 0 10px;*/
  margin: 0 .3em;
}

.nav-menu li a {
  width: 124px;
  height: 54px;
  /*font-size: 22px;*/
  font-size: 1.2vw;
  line-height: 54px;
  letter-spacing: 1px;
  color: #666;
  text-align: center;
}

.nav-menu li a:hover {
  color: #50a7dd;
}

.nav-menu li .focus {
  background-image: url("../images/header/menu-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
}

@media screen and (min-width:1700px){
  .nav-menu li a{ width: 140px; }
}

.lg-dropdown {
  float: right;
  /*overflow: hidden;*/
}

.langunge-tab-box {
  margin-top: 5px;
}

.langunge-tab-box .langunge-tab {
  float: left;
  /* background-color: #333;
  background-color: #6285bf; */
  margin-right: 1px;
}

.langunge-tab-box .langunge-tab a{
  font-size: 14px;
  line-height: 25px;
  color: #000;
  padding: 8px 16px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(to bottom, #fcfcfc, #f0f0f0);
}

.langunge-tab-box .langunge-tab:hover a,
.langunge-tab-box .langunge-tab a.active{
  /* background:#0090DC; */
  background-image: linear-gradient(to bottom, #0090DC, #25678A);
  color: #fff;
}

.langunge-tab-box .langunge-tab:first-child a{
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.langunge-tab-box .langunge-tab:last-child a{
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

@media all and (max-width: 1400px) {
  .nav-menu{
    width: 48%;
  }
  .nav-menu li a {
    width: 114px;
  }

  .nav-menu li .focus{
    background-size: contain;
  }
}

@media all and (max-width: 768px) {
  .lg-dropdown {
    display: none;
  }
}

.lg-dropdown .dropbtn {
  position: relative;
  /*width: 140px;*/
  cursor: pointer;
  font-size: 1.1vw;
  line-height: 50px;
  color: #666;
  padding: 0 20px;
  border: none;
  outline: none;
  margin: 0;
  background-color: #fff;
}

.lg-dropdown .dropbtn:before {
  content: "\e9c9";
  font-family: "icomoon";
  font-style: normal;
  position: absolute;
  top: 0;
  left: -.5em;
  font-size: 22px;
  color: #666;
  z-index: 10;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #444;
  min-width: 120px;
  z-index: 15;
  margin-top: 5px;
  text-align: center;
  padding: 5px 0;
}

.dropdown-content:before {
  content: '';
  position: absolute;
  top: -12px;
  left: 45%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 12px 6px;
  border-color: transparent transparent #444 transparent;
}

.dropdown-content a {
  display: block;
  color: #fff;
  padding: 0 16px;
  line-height: 40px;
  font-size: 16px;
}

.dropdown-content a:hover {
  color: #ff0101;
}

.show {
  display: block;
}

/* 手機版 */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 5px;
  text-align: center;
}

.sidenav a {
  padding: 10px 25px;
  font-size: 18px;
  color: #666;
  display: block;
  transition: 0.3s;
  line-height: 38px;
  border-bottom: 1px solid #dfdfdf;
}

.sidenav a:hover {
  color: #047be1;
  background-color: #f4f9fb;
}

.sidenav .closebtn {
  font-size: 28px;
  text-align: left;
  color: #50a7dd;
}

.sidenav .closebtn:hover {
  color: #047be1;
}

#main {
  display: none;
  transition: margin-left 0s;
}

@media all and (max-width: 768px) {
  #main {
    display: block;
  }
}

#main .icon-menu {
  font-size: 30px;
  line-height: 40px;
  color: #50a7dd;
  padding: 0;
}

.footer-wrap {
  width: 100%;
  height: auto;
  position: relative;
  display: block;
}

.footer-menu {
  width: 100%;
  height: auto;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}

@media all and (max-width: 479px) {
  .footer-menu {
    padding: 5px 0;
  }
}

.footer-menu a {
  margin: 0 20px;
  color: #aaa;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 26px;
}

.footer-menu a:hover {
  color: #888;
}

@media all and (max-width: 479px) {
  .footer-menu a {
    line-height: 34px;
    font-size: 14px;
  }
}

.footer-logo {
  width: 100%;
  height: auto;
  margin: 20px 0 0;
  text-align: center;
}

@media all and (max-width: 479px) {
  .footer-logo {
    margin: 10px 0 10px;
  }
}

.footer-logo img {
  height: 80px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}

@media all and (max-width: 768px) {
  .footer-logo img {
    height: 60px;
  }
}

.footer-add {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 10px 0 30px;
}

@media all and (max-width: 479px) {
  .footer-add {
    margin: 0 0 10px;
  }
}

.footer-add .office-name {
  font-size: 20px;
  color: #50a7dd;
  line-height: 30px;
  margin: 0 10px;
}

@media all and (max-width: 479px) {
  .footer-add .office-name {
    display: block;
    font-size: 14px;
  }
}

.footer-add .add {
  font-size: 20px;
  color: #333;
  line-height: 30px;
  margin: 0 10px;
}

@media all and (max-width: 479px) {
  .footer-add .add {
    display: block;
    font-size: 14px;
  }
}

.footer-info {
  width: 100%;
  height: auto;
  background-color: #454c4f;
  text-align: center;
  margin-bottom: 20px;
}

@media all and (max-width: 479px) {
  .footer-info {
    padding: 10px 0;
    margin-bottom: 5px;
  }
}

.footer-info span {
  margin: 0 20px;
  font-size: 16px;
  color: #fff;
  line-height: 50px;
}

@media all and (max-width: 479px) {
  .footer-info span {
    display: block;
    line-height: 24px;
    font-size: 14px;
  }
}

.footer-note {
  width: 100%;
  height: auto;
  font-size: 14px;
  line-height: 24px;
  color: #bbb;
  margin-bottom: 20px;
  text-align: center;
}

@media all and (max-width: 479px) {
  .footer-note {
    margin-bottom: 5px;
    font-size: 13px;
  }
}

.wrap {
  width: 100%;
  height: auto;
  position: relative;
  display: block;
  overflow: hidden;
}

.container-a {
  width: 1500px;
  height: auto;
  position: relative;
  margin: 0 auto;
}

.container-a:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

@media all and (max-width: 1440px) {
  .container-a {
    width: 97%;
    margin: 0 auto;
  }
}

.container-b {
  width: 1300px;
  height: auto;
  position: relative;
  margin: 0 auto;
}

.container-b:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

@media all and (max-width: 1024px) {
  .container-b {
    width: 97%;
    margin: 0 auto;
  }
}

.main-content {
  width: 100%;
  height: auto;
  position: relative;
  display: block;
  padding: 80px 0;
}

.main-content:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

@media all and (max-width: 768px) {
  .main-content {
    width: 95%;
    margin: 0 auto;
    padding: 50px 0;
  }
}

/* 首頁 */
.index-banner {
  position: relative;
  width: 100%;
  height: auto;
}

.index-banner .arrow-btn {
  width: 70px;
  height: auto;
  cursor: pointer;
  position: absolute;
  top: 45%;
}

@media all and (max-width: 768px) {
  .index-banner .arrow-btn {
    width: 40px;
    top: 45%;
  }
}

.index-banner .arrow-btn img {
  width: 100%;
}

.index-banner .index-bn {
  width: 100%;
  height: 545px;
  background-repeat: no-repeat;
  background-size: cover;
}

@media all and (max-width: 768px) and (min-width: 480px) {
  .index-banner .index-bn {
    height: 400px;
  }
}

@media all and (max-width: 479px) {
  .index-banner .index-bn {
    height: 230px;
  }
}

.index-banner .bn-01 {
  /*background-image: url("../images/banner/bn-01.jpg");*/
  background-position: center;
}

@media all and (max-width: 768px) and (min-width: 480px) {
  .index-banner .bn-01 {
    background-position: 70% center;
  }
}

@media all and (max-width: 479px) {
  .index-banner .bn-01 {
    background-position: 76% center;
  }
}

.index-banner .bn-02 {
  background-image: url("https://picsum.photos/1920");
  background-position: center;
}

.index-banner .bn-03 {
  background-image: url("https://picsum.photos/g/1920");
  background-position: center;
}

.index-banner .bnSlides {
  display: none;
}

.dot-block {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 15px;
}

@media all and (max-width: 479px) {
  .dot-block {
    bottom: 5px;
  }
}

.dot {
  cursor: pointer;
  width: 12px;
  height: 12px;
  display: inline-block;
  margin: 0 3px;
  background-color: #dadada;
  border-radius: 50%;
  transition: background-color 0.6s ease;
}

.dot:hover {
  background-color: #f2f2f2;
}

.dotactive {
  background-color: #fff;
  border: 2px solid #084ab7;
}

/* 主要產品 */
.title-two-row {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
  text-align: center;
}

@media all and (max-width: 479px) {
  .title-two-row {
    margin-bottom: 30px;
  }
}

.title-two-row .blue-large {
  font-size: 30px;
  color: #047be1;
  line-height: 40px;
}

.title-two-row .gray-medium {
  font-size: 30px;
  color: #888;
  line-height: 30px;
}

.product-slider {
  position: relative;
  width: 95%;
  height: auto;
  margin: 0 auto;
}

@media all and (max-width: 768px) and (min-width: 480px) {
  .product-slider {
    width: 90%;
  }
}

@media all and (max-width: 479px) {
  .product-slider {
    width: 80%;
  }
}

.product-silck {
  width: 100%;
  height: auto;
  position: relative;
  padding: 1px;
}

.product-silck:hover {
  opacity: 0.85;
}

.product-silck img {
  width: 100%;
}

.product-silck .product-text {
  background-color: #444;
  padding: 15px 30px;
}

@media all and (max-width: 768px) {
  .product-silck .product-text {
    padding: 10px 20px;
  }
}

.product-silck .product-text dt {
  font-size: 20px;
  color: #fff;
  line-height: 28px;
}

.product-silck .product-text dd {
  font-size: 18px;
  color: #fff;
  line-height: 28px;
}

.slick-next, .slick-prev {
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 0;
  line-height: 0;
  margin-top: -10px\9;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: 0;
  background: none;
}

.slick-next:before, .slick-prev:before {
  position: relative;
  font-size: 60px;
  color: #888;
  top: 40%;
  opacity: 1 !important;
}

.slick-next:hover, .slick-prev:hover {
  color: #50a7dd;
}

.slick-prev:before {
  content: '\e904';
  font-family: "icomoon";
  font-style: normal;
  left: -40px;
}

@media all and (max-width: 768px) {
  .slick-prev:before {
    left: -30px;
  }
}

.slick-next::before {
  content: '\e903';
  font-family: "icomoon";
  font-style: normal;
  right: -40px;
}

@media all and (max-width: 768px) {
  .slick-next::before {
    right: -30px;
  }
}

/* 首頁-最新消息 */
.index-mix-block {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}

.index-mix-block:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.index-mix-block:first-child {
  margin-top: 20px;
}

.index-mix-block .col-3-2 {
  width: 65%;
  height: auto;
  float: left;
}

.index-mix-block .col-3-2:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

@media all and (max-width: 768px) {
  .index-mix-block .col-3-2 {
    width: 100%;
    float: none;
  }
}

.index-mix-block .col-3-1 {
  width: 35%;
  height: auto;
  float: left;
}

@media all and (max-width: 768px) {
  .index-mix-block .col-3-1 {
    width: 100%;
    float: none;
  }
}

.index-mix-block .index-news {
  height: 400px;
  background-image: url("../images/index/bg-news.jpg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 340px 400px;
  background-color: #fe9019;
}

@media all and (max-width: 479px) {
  .index-mix-block .index-news {
    height: 450px;
    background-size: cover;
    padding-top: 1rem;
  }
}

.index-mix-block .index-news-img {
  height: 400px;
  background-image: url("../images/index/img-01.jpg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto;
}

@media all and (max-width: 768px) {
  .index-mix-block .index-news-img {
    height: 180px;
    background-size: cover;
    background-position: center;
  }
}

.index-mix-block .index-idea {
  height: 330px;
  background-image: url("../images/index/bg-idea.jpg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 280px 330px;
  background-color: #444343;
}

@media all and (max-width: 479px) {
  .index-mix-block .index-idea {
    height: 250px;
  }
}

.index-mix-block .index-idea-img {
  height: 330px;
  background-image: url("../images/index/img-02.jpg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media all and (max-width: 768px) {
  .index-mix-block .index-idea-img {
    display: none;
  }
}

.index-news-text {
  /* width: 530px;
  height: auto;
  float: right;
  margin: 80px 28% 0 0;
  letter-spacing: 2px; */
  width: 530px;
  height: 340px;
  float: right;
  margin: 40px 28% 0px 0;
  letter-spacing: 2px;
  overflow: hidden;
}

@media all and (max-width: 1440px) {
  .index-news-text {
    width: 58%;
    margin: 8% 32% 0 0;
  }
}

@media all and (max-width: 768px) {
  .index-news-text {
    width: 90%;
    height: 400px;
    margin: 0 auto;
    float: none;
    padding-top: 10%;
  }
}

.slash-title {
  font-size: 26px;
  color: #fff;
  line-height: 40px;
  position: relative;
  letter-spacing: 1px;
}

.slash-title::before {
  content: '';
  background-image: url("../images/index/img-title.png");
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: -40px;
}

@media all and (max-width: 479px) {
  .slash-title {
    font-size: 22px;
  }
}

.in-list {
  width: 100%;
  height: auto;
  padding: 25px 0;
  background-image: url("../images/index/news-line.jpg");
  background-repeat: repeat-x;
  background-size: 100px 1px;
  background-position: bottom;
}

@media all and (max-width: 479px) {
  .in-list {
    padding: 15px 0;
  }
}

.in-list dt {
  display: inline-block;
  margin-right: 10px;
  color: #444;
  font-size: 16px;
  line-height: 24px;
}

@media all and (max-width: 479px) {
  .in-list dt {
    display: block;
    margin: 0 0 5px 0;
  }
}

.in-list dd a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 24px;
}

@media all and (max-width: 479px) {
  .in-list dd {
    display: block;
  }
}

.index-idea-text {
  width: 80%;
  height: auto;
  margin: 100px 0 0 100px;
}

@media all and (max-width: 1440px) {
  .index-mix-block .index-idea{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    
    align-items: center;
    justify-content: center;


  }
  .index-idea-text {
   /* width: 65%;
    margin: 20% 0 0 20%;*/
    width: 100%;
    margin: 0 4em;
  }
}

@media all and (max-width: 768px) {
  .index-idea-text {
    width: 80%;
    margin: 0 auto;
    /*padding: 13% 0 0;*/
  }
}

.ii-detail {
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 30px;
  margin-top: 15px;
  /*text-align: justify;*/
}

@media all and (max-width: 479px) {
  .ii-detail {
    font-size: 16px;
  }
}

/* 內頁-共用 */
.inside-banner {
  width: 100%;
  height: 260px;
  background-image: url("../images/inside/bn.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media all and (max-width: 479px) {
  .inside-banner {
    background-image: url("../images/inside/bn-m.jpg");
    background-size: cover;
    height: 160px;
  }
}

@media all and (max-width: 320px) {
  .inside-banner {
    height: 130px;
  }
}

.inside-col2-left {
  width: 20%;
  height: auto;
  float: left;
  margin-right: 6%;
}

@media all and (max-width: 768px) {
  .inside-col2-left {
    width: 100%;
    margin: 0 0 40px 0;
    float: none;
  }
}

.inside-col-right {
  width: 74%;
  height: auto;
  float: right;
}

@media all and (max-width: 768px) {
  .inside-col-right {
    width: 100%;
    float: none;
  }
}

.sort-bg {
  width: 100%;
  min-height: 350px;
  position: relative;
  padding: 25px 25px;
  background: linear-gradient(270deg, #f8f8f8 50%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(270deg, #f8f8f8 50%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(270deg, #f8f8f8 50%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(270deg, #f8f8f8 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-box-shadow: 0px -3px 15px -5px #aaaaaa;
  -moz-box-shadow: 0px -3px 15px -5px #aaaaaa;
  box-shadow: 0px -3px 15px -5px #aaaaaa;
}

@media all and (max-width: 768px) {
  .sort-bg {
    min-height: auto;
  }
}

.sort-bg .sort-title {
  font-size: 20px;
  color: #50a7dd;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #50a7dd;
  position: relative;
}

.sort-bg .sort-title:before {
  border-color: #50a7dd transparent transparent;
  border-style: solid solid solid;
  border-width: 10px 10px 10px 10px;
  bottom: -20px;
  content: '';
  height: 0px;
  right: 20px;
  position: absolute;
  width: 0px;
}

.sort-bg .sort-title:after {
  border-color: #f8f8f8 transparent transparent;
  border-style: solid solid solid solid;
  border-width: 10px;
  bottom: -19px;
  content: '';
  height: 0px;
  right: 20px;
  position: absolute;
  width: 0px;
}

.sort-bg .sort-title .sort-note {
  font-size: 14px;
  color: #bbb;
  margin-left: 5px;
}

.sort-bg .sort-list .sortTitle {
  font-size: 16px;
  color: #50a7dd;
  line-height: 36px;
  display: block;
  position: relative;
  padding-left: 25px;
}

.sort-bg .sort-list .sortTitle:before {
  content: "\e905";
  font-family: "icomoon";
  font-style: normal;
  position: absolute;
  top: 12px;
  left: 0;
  z-index: 5;
  width: 15px;
  height: 15px;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background-color: #50a7dd;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}

.sort-bg .sort-list .sortTitle:hover {
  color: rgba(80, 167, 221, 0.8);
}

.sort-bg .sort-list .itemSort {
  display: none;
  padding-bottom: 10px;
}

.sort-bg .sort-list .itemSort li {
  cursor: auto;
}

.sort-bg .sort-list .itemSort li a {
  font-size: 15px;
  color: #666;
  line-height: 28px;
  padding-left: 25px;
  position: relative;
}

.sort-bg .sort-list .itemSort li a:hover {
  color: #888;
}

.sort-bg .sort-list .itemSort li a:before {
  content: "\e903";
  font-family: "icomoon";
  font-style: normal;
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 5;
  font-size: 12px;
  line-height: 28px;
  text-align: center;
  color: #666;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}

#accordion li {
  display: block;
  cursor: pointer;
}

/* 頁碼 */
.page-number {
  width: 100%;
  height: auto;
  margin-top: 60px;
  text-align: center;
}

@media all and (max-width: 479px) {
  .page-number {
    margin-top: 40px;
  }
}

.page-number a {
  width: 32px;
  height: 32px;
  font-size: 14px;
  color: #888;
  line-height: 30px;
  margin: 0 5px;
  text-align: center;
}

.page-number a:hover {
  color: #50a7dd;
}

.page-number a:first-child {
  width: 40px;
}

.page-number a:last-child {
  width: 40px;
}

.page-number .pn-focus {
  background-color: #50a7dd;
  border-radius: 50%;
  color: #fff;
}

.page-number .pn-focus:hover {
  color: #fff;
}

/* 關於我們 */
.inside-title {
  width: 134px;
  height: 64px;
  background-image: url("../images/inside/title-bg.png");
  background-repeat: no-repeat;
  font-size:1.2em;
  color: #1b2c59;
  line-height: 64px;
  text-align: center;
  font-weight: 100;
  display: inline-block;
  margin: 0 20px 60px 0;
}

@media all and (max-width: 768px) and (min-width: 480px) {
  .inside-title {
    margin: 0 10px 40px 0;
  }
}

@media all and (max-width: 479px) {
  .inside-title {
    margin: 0 0 15px 0;
  }
}

.inside-sec-title {
  font-size: 20px;
  color: #50a7dd;
  line-height: 64px;
}

@media all and (max-width: 479px) {
  .inside-sec-title {
    display: block;
    line-height: 30px;
    padding-left: 5px;
  }
}

.about-title {
  width: 305px;
}

@media all and (max-width: 479px) {
  .about-title {
    width: 100%;
    margin-top: 40px;
  }
}

.about-title img {
  width: 100%;
}

.about-content {
  width: 100%;
  height: auto;
  position: relative;
  margin: 80px 0 0;
}

.about-content:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

@media all and (max-width: 768px) {
  .about-content {
    margin: 40px 0 0;
  }
}

.about-content .ac-col2-left {
  width: 60%;
  height: auto;
  padding: 40px;
  background-color: rgba(240, 240, 240, 0.8);
  color: #333;
  font-size: 18px;
  line-height: 34px;
  margin-left: 65px;
}

@media all and (max-width: 768px) {
  .about-content .ac-col2-left {
    width: 100%;
    margin-left: 0;
    background-color: #f0f0f0;
  }
}

@media all and (max-width: 479px) {
  .about-content .ac-col2-left {
    padding: 15px;
    font-size: 16px;
    line-height: 30px;
  }
}

.about-content .ac-col2-right {
  width: 45%;
  height: auto;
  position: absolute;
  top: -25%;
  right: 0;
  z-index: -1;
}

.about-content .ac-col2-right img {
  width: 100%;
}

@media all and (max-width: 768px) {
  .about-content .ac-col2-right {
    width: 100%;
    position: inherit;
    margin-top: 30px;
  }
}

.about-wedo {
  width: 100%;
  height: auto;
  background-color: #444;
  margin-bottom: 80px;
}

.about-wedo:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

@media all and (max-width: 768px) {
  .about-wedo {
    margin-bottom: 50px;
  }
}

.about-wedo .aw-img {
  width: 65%;
  height: 445px;
  float: left;
  background-image: url("../images/inside/about-img2.jpg");
  background-position: left center;
  background-size: cover;
}

@media all and (max-width: 768px) {
  .about-wedo .aw-img {
    width: 100%;
    height: 300px;
    float: none;
    background-position: center;
    background-size: cover;
  }
}

@media all and (max-width: 479px) {
  .about-wedo .aw-img {
    height: 100px;
  }
}

.about-wedo .aw-content {
  width: 35%;
  height: auto;
  float: right;
  margin: 75px 0 0;
}

@media all and (max-width: 768px) {
  .about-wedo .aw-content {
    width: 100%;
    float: none;
    margin: 0;
    padding: 30px 25px;
  }
}

.about-wedo .aw-title {
  width: 320px;
  margin: 0 0 45px 110px;
}

@media all and (max-width: 768px) {
  .about-wedo .aw-title {
    margin: 0 0 30px 0;
  }
}

@media all and (max-width: 479px) {
  .about-wedo .aw-title {
    width: 100%;
  }
}

.about-wedo .aw-title img {
  width: 100%;
}

.about-wedo .aw-large-text {
  color: #fff;
  font-size: 26px;
  margin-bottom: 30px;
  padding-left: 110px;
  letter-spacing: 1px;
}

@media all and (max-width: 768px) {
  .about-wedo .aw-large-text {
    padding-left: 0;
  }
}

@media all and (max-width: 479px) {
  .about-wedo .aw-large-text {
    font-size: 20px;
  }
}

.about-wedo .aw-text {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  padding-left: 110px;
}

@media all and (max-width: 768px) {
  .about-wedo .aw-text {
    padding-left: 0;
  }
}

@media all and (max-width: 479px) {
  .about-wedo .aw-text {
    font-size: 16px;
  }
}

/* 最新消息 */
.news-list {
  width: 100%;
  height: auto;
  padding: 20px 0;
  border-bottom: 1px solid #dfdfdf;
  -webkit-box-shadow: 0px 10px 15px -15px rgba(150, 150, 150, 0.58);
  -moz-box-shadow: 0px 10px 15px -15px rgba(150, 150, 150, 0.58);
  box-shadow: 0px 10px 15px -15px rgba(150, 150, 150, 0.58);
}

.news-list:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

@media all and (max-width: 479px) {
  .news-list {
    margin-bottom: 20px;
  }
}

.news-list .nl-img {
  width: 140px;
  height: auto;
  margin-right: 20px;
  float: left;
}

@media all and (max-width: 479px) {
  .news-list .nl-img {
    width: 90%;
    float: none;
    margin: 0 auto 20px;
  }
}

.news-list .nl-img img {
  width: 100%;
}

.news-list .nl-title {
  width: 70%;
  float: left;
  margin-right: 20px;
  font-size: 18px;
  color: #333;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media all and (max-width: 768px) {
  .news-list .nl-title {
    width: 57%;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

@media all and (max-width: 479px) {
  .news-list .nl-title {
    width: 100%;
    float: none;
    line-height: 28px;
    margin-bottom: 5px;
    padding: 0 15px;
  }
}

.news-list .nl-title .nl-sec-title {
  font-size: 14px;
  color: #666;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-list .nl-date {
  width: 10%;
  float: right;
  text-align: right;
}

@media all and (max-width: 768px) {
  .news-list .nl-date {
    width: 15%;
  }
}

@media all and (max-width: 479px) {
  .news-list .nl-date {
    width: 100%;
    float: none;
    padding: 0 15px;
    margin-top: 10px;
  }
  .news-list .nl-date:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
  }
}

.news-list .nl-date .nl-years {
  font-size: 14px;
  color: #888;
  line-height: 26px;
}

@media all and (max-width: 479px) {
  .news-list .nl-date .nl-years {
    float: left;
  }
}

.news-list .nl-date .nl-day {
  font-size: 20px;
  color: #333;
  line-height: 30px;
}

@media all and (max-width: 479px) {
  .news-list .nl-date .nl-day {
    font-size: 14px;
    color: #888;
    line-height: 26px;
    float: left;
  }
}

.news-list .nl-date .nl-more-btn {
  min-width: 100px;
  padding: 5px 10px;
  margin-top: 20px;
  background-color: #618296;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  border-radius: 6px;
  letter-spacing: 1px;
}

.news-list .nl-date .nl-more-btn:hover {
  background-color: rgba(97, 130, 150, 0.8);
}

@media all and (max-width: 479px) {
  .news-list .nl-date .nl-more-btn {
    margin-top: 0;
  }
}

.na-list {
  margin-bottom: 30px;
}

@media all and (max-width: 479px) {
  .na-list {
    margin-bottom: 20px;
  }
}

.na-list .nl-title {
  width: 87%;
  float: left;
  margin-right: 20px;
  font-size: 18px;
  color: #333;
  line-height: 30px;
}

@media all and (max-width: 768px) and (min-width: 480px) {
  .na-list .nl-title {
    width: 80%;
  }
}

@media all and (max-width: 479px) {
  .na-list .nl-title {
    width: 100%;
    float: none;
    padding: 0;
  }
}

@media all and (max-width: 479px) {
  .na-list .nl-date {
    padding: 0;
  }
}

.na-detail {
  width: 100%;
  height: auto;
  /*font-size: 16px;*/
  color: #888;
  line-height: 30px;
  margin-bottom: 30px;
}


.na-detail a{
  color: initial;
  text-decoration: underline;
}

.na-img {
  width: 100%;
  height: auto;
  margin-bottom: 60px;
}

@media all and (max-width: 479px) {
  .na-img {
    margin-bottom: 40px;
  }
}

.na-img img {
  width: 100%;
}

.page-arrow {
  width: 100%;
  height: auto;
}

.page-arrow:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.page-arrow .prev {
  width: 50%;
  height: 64px;
  float: left;
  background-image: url("../images/news/prev.jpg");
  background-repeat: no-repeat;
  background-size: 80px 64px;
  background-position: left center;
}

@media all and (max-width: 479px) {
  .page-arrow .prev {
    width: 40%;
    height: 48px;
    background-size: 60px 48px;
  }
}

.page-arrow .prev a {
  font-size: 16px;
  color: #666;
  line-height: 24px;
  padding-left: 60px;
  margin-top: 40px;
}

.page-arrow .prev a:hover {
  color: #50a7dd;
}

@media all and (max-width: 479px) {
  .page-arrow .prev a {
    font-size: 15px;
    line-height: 20px;
    padding-left: 35px;
    margin-top: 30px;
  }
}

.page-arrow .next {
  width: 50%;
  height: 64px;
  float: right;
  background-image: url("../images/news/next.jpg");
  background-repeat: no-repeat;
  background-size: 80px 64px;
  background-position: right center;
  text-align: right;
}

@media all and (max-width: 479px) {
  .page-arrow .next {
    width: 40%;
    height: 48px;
    background-size: 60px 48px;
  }
}

.page-arrow .next a {
  font-size: 16px;
  color: #666;
  line-height: 24px;
  padding-right: 60px;
  margin-top: 40px;
}

.page-arrow .next a:hover {
  color: #50a7dd;
}

@media all and (max-width: 479px) {
  .page-arrow .next a {
    font-size: 15px;
    line-height: 20px;
    padding-right: 35px;
    margin-top: 30px;
  }
}

/* 聯絡我們 */
.contact-info {
  width: 33.33%;
  height: auto;
  float: left;
}

.contact-info:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

@media all and (max-width: 768px) {
  .contact-info {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
  .contact-info:last-child {
    margin-bottom: 0;
  }
}

.contact-info .ci-icon {
  width: 110px;
  height: 110px;
  float: left;
  border: 2px solid #dfdfdf;
  border-radius: 50%;
  margin-right: 20px;
  color: #047be1;
  text-align: center;
  font-size: 24px;
  line-height: 110px;
}

@media all and (max-width: 479px) {
  .contact-info .ci-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
}

.contact-info .ci-text {
  width: 68%;
  float: left;
  font-size: 16px;
  color: #666;
  padding: 25px 0;
  line-height: 30px;
  position: relative;
}

.contact-info .ci-text::after {
  content: '';
  border-bottom: 1px solid #50a7dd;
  width: 20%;
  position: absolute;
  left: 0;
  bottom: 10px;
}

@media all and (max-width: 479px) {
  .contact-info .ci-text {
    width: 66%;
    padding: 10px 0;
    line-height: 24px;
  }
  .contact-info .ci-text::after {
    bottom: 0;
  }
}

.contact-info .ci-text a {
  display: block;
  color: #666;
}

.contact-info .ci-text a:hover {
  color: #50a7dd;
}

.inside-contact {
  margin-top: 80px;
}

.inside-contact .inside-title {
  margin-bottom: 0;
}

@media all and (max-width: 479px) {
  .inside-contact .inside-title {
    margin-bottom: 15px;
  }
}

.contact-form-bolck {
  width: 100%;
  height: auto;
  background-color: #f5f5f5;
  margin-bottom: 80px;
}

.contact-form-bolck .cf-title-bolck {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  text-align: center;
}

.contact-form-bolck .cf-title-bolck img {
  width: 80px;
}

.contact-form-bolck .cf-title {
  font-size: 26px;
  color: #333;
  line-height: 50px;
}

.contact-form-bolck .cft-note {
  font-size: 16px;
  color: #888;
  line-height: 30px;
}

.form-block {
  width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.form-block:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.form-block:last-child {
  margin-bottom: 0;
}

.ipt-basic {
  height: 40px;
  line-height: 40px;
  border: 1px solid #dfdfdf;
  font-size: 16px;
  color: #333;
  padding: 0 15px;
}

.ipt-basic::placeholder {
  color: #aaa;
}

.ipt-basic:focus {
  border: 1px solid #50a7dd;
}

.ipt-col3 {
  width: 32%;
  float: left;
  margin: 0 2% 1.5% 0;
}

.ipt-col3:nth-child(3n) {
  margin: 0 0 1.5%;
}

@media all and (max-width: 479px) {
  .ipt-col3 {
    width: 100%;
    margin: 0 0 4%;
  }
  .ipt-col3:nth-child(3n) {
    margin: 0 0 4%;
  }
}

.form-textarea {
  width: 100%;
  height: 120px;
  border: 1px solid #dfdfdf;
  font-size: 16px;
  color: #333;
  padding: 10px 15px;
  margin-bottom: 40px;
}

.form-textarea::placeholder {
  color: #aaa;
}

.form-textarea:focus {
  border: 1px solid #50a7dd;
}

@media all and (max-width: 479px) {
  .form-textarea {
    margin-bottom: 30px;
  }
}

.verification {
  width: 50%;
  height: 40px;
  float: left;
}

.verification img {
  height: 100%;
}

.contact-btn {
  min-width: 240px;
  height: 44px;
  float: right;
  padding: 0 40px;
  font-size: 16px;
  line-height: 44px;
  letter-spacing: 1px;
  color: #fff;
  touch-action: manipulation;
  cursor: pointer;
  text-align: center;
  background-color: #174371;
}

@media all and (max-width: 479px) {
  .contact-btn {
    width: 100%;
    float: none;
    height: 44px;
    line-height: 44px;
    margin: 40px 0 0;
  }
}

/* 產品 */
.product-first-block {
  width: 100%;
  height: auto;
}

.product-first-block:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

@media all and (max-width: 479px) {
  .product-first-block {
    margin-top: 30px;
  }
}

.product-style {
  width: 23.5%;
  height: auto;
  float: left;
  margin: 0 2% 4% 0;
  padding: 15px;
  background-color: #f5f5f5;
  cursor: pointer;
  -webkit-box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.7);
}

.product-style:last-child {
  margin: 0 0 4% 0;
}

.product-style:nth-child(4n) {
  margin: 0 0 4% 0;
}

.product-style:hover {
  opacity: 0.8;
}

@media all and (max-width: 768px) {
  .product-style {
    width: 49%;
    margin: 0 2% 6% 0;
    padding: 10px 10px 20px;
  }
  .product-style:nth-child(2n) {
    margin: 0 0 6% 0;
  }
}

@media all and (max-width: 479px) {
  .product-style {
    padding: 6px 6px 15px;
  }
}

.product-style .ps-img {
  width: 100%;
  margin-bottom: 15px;
}

@media all and (max-width: 768px) {
  .product-style .ps-img {
    margin-bottom: 8px;
  }
}

.product-style .ps-title {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #666;
  margin-bottom: 8px;
  text-align: center;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media all and (max-width: 479px) {
  .product-style .ps-title {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 5px;
  }
}

.product-style .ps-sec-title {
  display: block;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  color: #f48b47;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media all and (max-width: 479px) {
  .product-style .ps-sec-title {
    font-size: 14px;
    line-height: 22px;
  }
}

.ps-right-title {
  width: 100%;
  text-align: right;
  margin-bottom: 40px;
}

@media all and (max-width: 479px) {
  .ps-right-title {
    margin: 20px 0 30px;
  }
}

.ps-right-title .ps-rt-blue {
  font-size: 18px;
  color: #333;
  line-height: 40px;
  padding-right: 10px;
  border-right: 4px solid #047be1;
}

.ps-right-title .ps-rt-gray {
  font-size: 16px;
  color: #888;
  line-height: 25px;
  padding-right: 10px;
  border-right: 4px solid #888;
}

/* 產品詳細頁 */
.product-detail-top {
  width: 100%;
  height: auto;
  margin-bottom: 60px;
}

.product-detail-top:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.pd-img {
  width: 39%;
  height: auto;
  float: left;
  margin-right: 5%;
  position: relative;
}

@media all and (max-width: 768px) {
  .pd-img {
    width: 55%;
    float: none;
    margin: 0 auto 30px;
  }
}

@media all and (max-width: 479px) {
  .pd-img {
    width: 100%;
    margin-top: 30px;
  }
}

.pd-img img {
  width: 100%;
}

.pd-img-slider {
  border: 1px solid #ccc;
}

.slider-for {
  margin-bottom: 0;
}

.slider-thumbnail {
  width: 87%;
  margin: 0 auto;
}

.slider-thumbnail li {
  margin: 0 5px;
  cursor: pointer;
  border-top: 2px solid #aaa;
}

.slider-thumbnail .slick-active {
  outline: none;
  border-top: 2px solid #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.slider-thumbnail .slick-next, .slider-thumbnail .slick-prev {
  position: absolute;
  width: 30px;
  height: 30px;
}

.slider-thumbnail .slick-next:before, .slider-thumbnail .slick-prev:before {
  font-size: 30px;
}

.slider-thumbnail .slick-prev:before {
  left: -10px;
}

.slider-thumbnail .slick-next::before {
  right: -10px;
}

.pdt-right {
  width: 56%;
  height: auto;
  float: right;
}

@media all and (max-width: 768px) and (min-width: 480px) {
  .pdt-right {
    width: 100%;
  }
}

@media all and (max-width: 479px) {
  .pdt-right {
    width: 100%;
    float: none;
  }
}

.pdt-right .pdt-title-box {
  width: 100%;
  height: auto;
}

.pdt-right .pdt-title-box:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.pdt-right .pdt-title {
  width: 80%;
  float: left;
  font-size: 26px;
  color: #333;
  line-height: 34px;
  padding: 20px 20px 0 0;
  position: relative;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.pdt-right .pdt-title::before {
  content: '';
  border-bottom: 1px solid #dfdfdf;
  width: 15%;
  position: absolute;
  left: 0;
  top: 0;
}

@media all and (max-width: 479px) {
  .pdt-right .pdt-title {
    width: 100%;
    float: none;
    margin: 0 0 15px 0;
  }
}

.pdt-right .pdt-download {
  width: 20%;
  height: auto;
  margin-top: 25px;
  float: right;
}

.pdt-right .pdt-download:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

@media all and (max-width: 479px) {
  .pdt-right .pdt-download {
    width: 100%;
    float: none;
    margin: 0 0 15px 0;
  }
}

.pdt-right .pdt-download .download-title {
  font-size: 15px;
  color: #fff;
  line-height: 26px;
  padding: 3px 10px;
  background-color: #047be1;
  float: left;
}

.pdt-right .pdt-download .download-btn {
  font-size: 22px;
  color: #fff;
  line-height: 32px;
  padding: 0 10px;
  background-color: #50a7dd;
  float: left;
}

.pdt-right .pdt-model {
  font-size: 18px;
  color: #888;
  line-height: 24px;
}

#pdt-tab {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

#pdt-tab:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

#pdt-tab .tab-title li {
  float: left;
  vertical-align: top;
  border: 1px solid #dfdfdf;
  height: 40px;
  line-height: 40px;
  background: #f5f5f5;
  padding: 0 25px;
  margin: 0 -1px -1px 0;
}

#pdt-tab .tab-title li a {
  color: #888;
  font-size: 16px;
}

#pdt-tab .tab-title li a:hover {
  color: #aaa;
}

#pdt-tab .tab-title .active {
  border-bottom: 1px solid #fff;
  border-top: 2px solid #ef3040;
  background: #fff;
}

#pdt-tab .tab-title .active a {
  color: #666;
}

#pdt-tab .tab-inner {
  clear: both;
  color: #000;
  border: 1px solid #dfdfdf;
}

.tab-inner {
  padding: 25px;
  height: auto;
}

.tab-inner .pdt-content {
  width: 100%;
  height: auto;
  line-height: 38px;
  font-size: 16px;
}

.tab-inner .pdt-content:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.tab-inner .pdt-content dt {
  /*width: 20%;*/
  float: left;
  color: #666;
}

@media all and (max-width: 768px) and (min-width: 480px) {
  .tab-inner .pdt-content dt {
    /*width: 17%;*/
  }
}

@media all and (max-width: 479px) {
  .tab-inner .pdt-content dt {
    /*width: 30%;*/
  }
}

.tab-inner .pdt-content dd {
 /* width: 80%;*/
  float: left;
  color: #333;
  padding-left: .5em;
}

@media screen and (max-width:767px){
  .tab-inner .pdt-content{ line-height: 1.5; margin-bottom: 10px; }
  .tab-inner .pdt-content dt{ width: 100%; margin-bottom: 5px; }
  .tab-inner .pdt-content dd{ width: 100%; padding-left: 0; }
}

@media all and (max-width: 768px) and (min-width: 480px) {
  .tab-inner .pdt-content dd {
    /*width: 83%;*/
  }
}

@media all and (max-width: 479px) {
  .tab-inner .pdt-content dd {
    /*width: 70%;*/
  }
}

/* 產品詳細 */
.product-detail-bottom {
  width: 100%;
  height: auto;
  position: relative;
}

.product-detail-bottom .pdb-title {
  font-size: 26px;
  color: #333;
  line-height: 34px;
  padding-top: 20px;
  position: relative;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.product-detail-bottom .pdb-title::before {
  content: '';
  border-bottom: 1px solid #444;
  width: 5%;
  position: absolute;
  left: 0;
  top: 0;
}

@media all and (max-width: 479px) {
  .product-detail-bottom .pdb-title {
    padding-top: 15px;
    margin-bottom: 30px;
  }
  .product-detail-bottom .pdb-title::before {
    width: 15%;
  }
}

.pdb-img-box {
  width: 100%;
  height: auto;
}

.pdb-img-box:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.pdb-img-box .pdb-img {
  width: 180px;
  height: auto;
  border: 1px solid #dfdfdf;
  float: left;
  margin-right: 25px;
}

.pdb-img-box .pdb-img:hover {
  opacity: 0.8;
  cursor: pointer;
}

@media all and (max-width: 768px) and (min-width: 480px) {
  .pdb-img-box .pdb-img {
    width: 23.5%;
    margin: 0 2% 3% 0;
  }
  .pdb-img-box .pdb-img:nth-child(4n) {
    margin: 0 0 3% 0;
  }
}

@media all and (max-width: 479px) {
  .pdb-img-box .pdb-img {
    width: 49%;
    margin: 0 2% 5% 0;
  }
  .pdb-img-box .pdb-img:nth-child(2n) {
    margin: 0 0 5% 0;
  }
}

.pdb-img-box .pdb-img img {
  width: 100%;
}

/* 回到頂端 */
.scrollToTop {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 99;
  padding: 0 5px;
  background-color: #fff;
  border: 1px solid #444;
  display: none;
  color: #333;
  font-size: 10px;
  text-align: center;
}

.scrollToTop:hover {
  color: #888;
  border: 1px solid #888;
}

.scrollToTop .icon-arrow_up {
  font-size: 30px;
}

