@charset "UTF-8";
/* CSS Document */
@import url(help/reset.css);
@import url(font-awesome-4.7.0/font-awesome.min.css);
@import url(help/rwdgrid.css);
@import url(textEditor.css);
@import url(textEditorLink.css);
@import url(fonts.googleapis.com/earlyaccess/notosanstc.css);
@import url(http://fonts.googleapis.com/css?family=Mukta:300,400,500);
@import url(http://fonts.googleapis.com/css?family=Montserrat:400,500,600,700);
@import url(http://fonts.googleapis.com/css?family=Rubik);
[class*='col-'], .b-box, .wrap, .contentBox > .scBox, .contentBox > .bcBox, .tab a, .firstLevel a, .side_share a, #pdCompareBox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a, .side_contactInfo i, .linkBtn::before, .linkBtn::after, .prevArrow::before, .prevArrow::after, .nextArrow::before, .nextArrow::after, .hScale, .hScale img, .date, .fixedPdCompareBtn, .deleteBtn, .closeBtn, .closeBtn::before {
  -webkit-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
}

body {
  color: #626262;
  font-family: Helvetica, Arial, "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
  font-size: 15px;
}

/*css3*/
a {
  color: #000;
  cursor: pointer;
}

a:hover {
  color: #19b6d1;
}

[class*='col-'] {
  float: left;
}

div.titan {
  /*--隱藏開影音、開相簿--*/
  display: none;
}

.btn_color1 {
  /*按鈕主色1*/
  color: #fff;
  background-color: #19b6d1;
}

.btn_color1:hover {
  background-color: #148ea3;
}

.btn_color2 {
  /*按鈕主色2*/
  color: #fff;
  background-color: #102232;
}

.btn_color2:hover {
  background-color: #04080b;
}

input[type="text"], textarea {
  -webkit-appearance: none;
}

.outerWrap {
  position: relative;
}

.wrap {
  width: 90%; /*預設1280px*/
  margin: 0 auto;
}

.mb30 {
  margin-bottom: 30px;
}

/*-moduleBox--*/
.moduleBox {
  position: fixed;
  left: 50%;
  top: 48%;
  z-index: 1005;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition-property: top, opacity, visibility;
  -o-transition-property: top, opacity, visibility;
  transition-property: top, opacity, visibility;
  -webkit-transition-duration: .5s;
       -o-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-timing-function: ease-in-out;
       -o-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

.moduleBox.show {
  top: 50%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.moduleMask {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1003;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.moduleMask.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*****網頁頭*****/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 90;
  background-color: rgba(255, 255, 255, 0.8);
}

header.scroll {
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

header .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  width: 150px;
}

.logo img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.menuBox {
  margin-left: auto;
}

/*menu*/
.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu > li {
  position: relative;
}

.menu > li > a {
  display: block;
  padding: 40px 28px 30px;
  font-size: 18px;
  color: #202020;
  letter-spacing: .05em;
}

.menu > li > a:before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  /**border-style: solid;**/
  border-width: 8px 0 0 8px;
  border-color: transparent transparent transparent #1dc1dd;
  opacity: 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.menu > li > a:hover, .menu > li > a.current {
  color: #0da7ff;
}

.menu > li > a:hover:before, .menu > li > a.current:before {
  top: 25px;
  opacity: 1;
}

.menu .submenu {
  position: absolute;
  top: 110%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 99;
  width: 260px;
  text-align: center;
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
}

.menu .submenu a {
  display: block;
  padding: 10px;
  font-size: 16px;
  color: #fff;
  letter-spacing: .1em;
  background-color: rgba(0, 0, 0, 0.6);
}

.menu .submenu a:hover {
  color: #fff;
  background-color: #0da7ff;
}

.menu .show > a {
  color: #19b6d1;
}

.menu .show > a:before {
  top: 25px;
  opacity: 1;
}

.menu .show .submenu {
  top: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.headerSubList > li {
  position: relative;
}

.headerSubList > li:hover .headerSubListSecond {
  top: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.headerSubListSecond {
  position: absolute;
  left: 100%;
  top: 20px;
  width: 150px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

/*手機menu*/
.m_menu {
  display: none;
}

.eBtn {
  display: block;
  width: 145px;
  height: 45px;
  line-height: 45px;
  margin-left: 20px;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
  background-color: #19b6d1;
}

/*****banner******/
.bannerArea {
  position: relative;
}

.bannerArea .bannerBox img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.bannerArea .prevArrow, .bannerArea .nextArrow {
  width: 50px;
  height: 50px;
  padding: 0;
  z-index: 51;
}

.bannerArea .prevArrow::before, .bannerArea .prevArrow::after, .bannerArea .nextArrow::before, .bannerArea .nextArrow::after {
  width: 30px;
}

.bannerArea .prevArrow {
  left: 0;
}

.bannerArea .nextArrow {
  right: 0;
}

.inBannerText {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}

.inBannerText h2 {
  font-size: 50px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 3px;
  text-indent: 3px;
}

/*頁尾資訊*/
footer {
  position: relative;
  padding: 45px 0 30px;
  background-color: #1f2a34;
}

footer .topBox, footer .bottomBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .topBox {
  border-bottom: 1px solid #384959;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

footer .companyTitle {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

footer .rightItem {
  text-align: right;
}

.footerLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footerLink span {
  padding-right: 20px;
  font-family: "Montserrat", "微軟正黑體", sans-serif;
  font-size: 16px;
  letter-spacing: .15em;
  color: #fff;
  text-transform: uppercase;
}

.footerLink a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  font-size: 16px;
  color: #5d7388;
  border: 1px solid #5d7388;
  border-radius: 50%;
}

.footerLink a:hover {
  border-color: #fff;
  color: #fff;
}

.footerLink svg {
  width: 19px;
  height: 19px;
}

.footerLogo {
  width: 120px;
}

.footerLogo img {
  display: block;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.footerContactBox ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  font-size: 14px;
  color: #fff;
}

.footerContactBox li:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 5px;
  font-family: FontAwesome;
  font-size: 18px;
}

.footerContactBox .mail:after, .footerContactBox .tel:after {
  content: '/';
  display: inline-block;
  margin: 0 6px;
  font-size: 12px;
  color: #5f6e7b;
}

.footerContactBox .address {
  width: 100%;
  margin-bottom: 3px;
}

.footerContactBox .address:before {
  content: '\f041';
}

.footerContactBox .mail:before {
  content: '\f003';
}

.footerContactBox .tel:before {
  content: '\f095';
}

.footerContactBox .fax:before {
  content: '\f1ac';
}

.footerMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 250px;
  margin: 10px 0 12px auto;
}

.footerMenu li {
  position: relative;
  padding: 4px 0;
  width: 33.333%;
}

.footerMenu li:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
  width: 1px;
  height: 16px;
  background-color: #2e3d4a;
}

.footerMenu li:nth-child(1):before, .footerMenu li:nth-child(4):before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 1px;
  height: 16px;
  background-color: #2e3d4a;
}

.footerMenu a {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.footerMenu a:hover {
  opacity: .75;
}

.copyrightBox {
  font-size: 12px;
  color: #fff;
  letter-spacing: .05em;
}

.copyrightBox .design {
  display: none;
  margin-top: 6px;
  font-size: 12px;
  color: #384959;
}

.goTop {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  background: url("../images/top.png") 50% 50% no-repeat;
  background-color: #1094c5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.goTop:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  background-color: #1dc1dd;
}

/*********內頁**********/
/**********************/
.mainArea {
  padding: 95px 0 130px;
}

.titleBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 60px;
  text-align: center;
}

.titleBox em {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 40px;
  font-family: "Montserrat", "微軟正黑體", sans-serif;
  text-transform: uppercase;
  color: #094479;
  line-height: 1;
}

.titleBox em:before, .titleBox em:after {
  content: '';
  position: absolute;
}

.titleBox em:before {
  left: -17px;
  top: 12px;
  width: 0;
  height: 0;
  /**border-style: solid;*//
  border-width: 0 8px 8px 0;
  border-color: transparent #0971ce transparent transparent;
}

.titleBox em:after {
  right: -15px;
  bottom: 12px;
  width: 0;
  height: 0;
  /**border-style: solid;**/
  border-width: 8px 0 0 8px;
  border-color: transparent transparent transparent #1dc1dd;
}

.titleBox h2 {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 25px;
  font-family: "Noto Sans TC", sans-serif;
  color: #213155;
  letter-spacing: .05em;
}

.titleBox h2:before, .titleBox h2:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  width: 6px;
  height: 2px;
  background-color: #213155;
}

.titleBox h2:before {
  left: -15px;
}

.titleBox h2:after {
  right: -15px;
}

.titleBox.ins {
  width: 100%;
}

.inTitleBox {
  display: none;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 17px;
  letter-spacing: .1em;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#1dc1dd), to(#0971ce));
  background: -webkit-linear-gradient(left, #1dc1dd 0%, #0971ce 100%);
  background: -o-linear-gradient(left, #1dc1dd 0%, #0971ce 100%);
  background: linear-gradient(to right, #1dc1dd 0%, #0971ce 100%);
}

.inTitleBox h2 {
  font-weight: 400;
  text-align: center;
}

.inTitle2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 15px;
  font-size: 18px;
  letter-spacing: .1em;
}

.inTitle2 i {
  padding-left: 10px;
}

.inTitle2 a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #000;
}

.inTitle2 a:hover, .inTitle2 a:hover svg {
  color: #0971ce;
}

.inTitle2 .filterBtn {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  padding-left: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.inTitle2 .filterBtn svg {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  transition: all .5s;
}

.removeFilter {
  margin-left: auto;
  font-size: 16px;
}

.breadTitle {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: -32px;
  margin-bottom: 15px;
  font-size: 13px;
}

.breadTitle a {
  color: #aaa;
}

.breadTitle a:not(:last-child):after {
  content: '/';
  display: inline-block;
  margin: 0 3px 0 4px;
}

.breadTitle a:hover {
  color: #0971ce;
}

.bread {
  position: absolute;
  right: 10px;
  top: 25px;
  font-size: 12px;
  color: #bbb;
}

.bread a {
  color: #bbb;
}

.bread a i {
  font-size: 20px;
}

.bread span {
  padding: 0 3px;
  color: #bbb;
}

.contentBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contentBox > .scBox.left, .contentBox > .bcBox.left {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  margin-right: 70px;
}

.contentBox > .scBox.right, .contentBox > .bcBox.right {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.contentBox > .scBox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 240px;
}

.contentBox > .bcBox {
  width: calc(100% - 240px);
}

.articleTitle {
  margin-bottom: 25px;
  border-bottom: 1px solid #d6d6d6;
  padding: 0 0 10px 0;
  font-size: 24px;
  font-weight: 400;
  color: #000;
}

table.breakpoint > tbody > tr > td.expand {
  cursor: pointer;
  background: url("../images/plus.png/index.html") no-repeat 5px center;
  padding-left: 40px;
}

/*類別*/
.m_classLink {
  display: none;
}

.classBox {
  padding: 20px 0;
}

.classBox ul {
  text-align: center;
}

.classBox ul li {
  display: inline-block;
}

.classBox ul a {
  position: relative;
  display: block;
  margin: 0 3px;
  padding: 5px 10px;
  border: 1px solid #19b6d1;
  font-size: 13px;
  color: #19b6d1;
}

.classBox ul a:hover {
  color: #fff;
  background-color: #19b6d1;
}

.classBox ul a.current {
  color: #fff;
  background-color: #19b6d1;
}

.classBox ul a.current:after {
  content: " ";
  position: absolute;
  bottom: -5px;
  left: 50%;
  margin-left: -7.5px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 5px 7.5px 0 7.5px;
  border-color: #19b6d1 transparent transparent transparent;
}

/*標籤*/
.tagBox {
  padding: 20px 0;
}

.tagBox b {
  display: inline-block;
  margin-right: 10px;
}

.tagBox ul {
  display: inline-block;
}

.tagBox li {
  display: inline-block;
  margin-bottom: 5px;
}

.tagBox a {
  position: relative;
  display: block;
  margin: 0 3px;
  padding: 5px 10px;
  border: 1px solid #19b6d1;
  font-size: 13px;
  color: #19b6d1;
}

.tagBox a:hover {
  color: #fff;
  background-color: #19b6d1;
}

.tagBox a.current {
  color: #fff;
  background-color: #19b6d1;
}

.tagBox a.current:before {
  content: "\f00d";
  margin-right: 5px;
  font-family: FontAwesome;
  font-size: 12px;
}

/*側邊標題字*/
.sectionTitle {
  margin-bottom: 20px;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  font-weight: 400;
  color: #313131;
}

.sectionTitle strong {
  display: block;
  position: relative;
  font-weight: 400;
}

.sectionTitle a {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

/******頁籤*******/
.tab {
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tab a {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 12px 10px;
  font-size: 16px;
  text-align: center;
  letter-spacing: 2px;
  border: 1px solid #eee;
}

.tab a:hover {
  border-color: #247fca;
  color: #247fca;
}

.tab a.current {
  color: #fff;
  border-color: #247fca;
  background-color: #247fca;
}

.tabContent {
  margin-top: -1px;
  padding: 60px 20px 20px;
  border-top: 1px solid #19b6d1;
}

.tabContent li .textEditor {
  margin: 0;
  letter-spacing: 1px;
}

.tabContent .sectionTitle {
  display: none;
}

/*側邊_menu*/
.sideMenuBox {
  position: relative;
}

.firstLevel:not(.filterList) {
  border-top: 2px solid #53c5d7;
}

.firstLevel:not(.filterList) > li > a {
  border-bottom: 1px solid #f7f7f7;
}

.firstLevel:not(.filterList) > li > a:hover, .firstLevel:not(.filterList) > li > a.current {
  color: #0da7ff;
  background-color: #eee;
  font-weight: 550;
}

.firstLevel > li > a {
  padding: 12px 35px;
  font-weight: 550;
  font-size: 16px;
  color: #213155;
  letter-spacing: .1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.firstLevel a {
  display: block;
  letter-spacing: 1px;
}

.filterList > li > a {
  border-top: 1px solid #ebebeb;
}

/*側邊_聯絡資訊*/
.side_contactInfo {
  margin-top: 30px;
}

.side_contactInfo li + li {
  margin-top: 20px;
}

.side_contactInfo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}

.side_contactInfo a:hover i {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.side_contactInfo i {
  display: inline-block;
  vertical-align: middle;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-right: 8px;
  border: 1px solid #0da7ff;
  background-color: #0da7ff;
  border-radius: 50%;
  color: #fff;
  text-align: center;
}

.side_contactInfo b {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
}

/*側邊_分享*/
.side_share {
  clear: both;
  display: none;
  margin-top: 30px;
}

.side_share a {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 15px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 13px;
  line-height: 1;
  color: #fff;
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.side_share i {
  padding-right: 5px;
  font-size: 18px;
}

.side_share .line {
  -webkit-box-shadow: 0 0 0 1px #22a00b;
          box-shadow: 0 0 0 1px #22a00b;
  border-top: 1px solid #e1ffa9;
  background: #a7e732;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjYTdlNzMyIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMzUlIiBzdG9wLWNvbG9yPSIjMWZiNTBlIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #a7e732), color-stop(35%, #1fb50e));
  background: -webkit-linear-gradient(-45deg, #a7e732 0%, #1fb50e 35%);
  background: -o-linear-gradient(-45deg, #a7e732 0%, #1fb50e 35%);
  background: -webkit-linear-gradient(315deg, #a7e732 0%, #1fb50e 35%);
  background: -o-linear-gradient(315deg, #a7e732 0%, #1fb50e 35%);
  background: linear-gradient(135deg, #a7e732 0%, #1fb50e 35%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a7e732', endColorstr='#1fb50e', GradientType=1);
}

.side_share .fb {
  -webkit-box-shadow: 0 0 0 1px #235c9b;
          box-shadow: 0 0 0 1px #235c9b;
  border-top: 1px solid #8DCFF5;
  background: #5da0ea;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzVkYTBlYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzZDhjZTYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5da0ea), color-stop(100%, #3d8ce6));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #5da0ea 0%, #3d8ce6 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #5da0ea 0%, #3d8ce6 100%);
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(#5da0ea), to(#3d8ce6));
  background: linear-gradient(to bottom, #5da0ea 0%, #3d8ce6 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5da0ea', endColorstr='#3d8ce6', GradientType=0);
  /* IE6-8 */
}

.side_share .gPlus {
  -webkit-box-shadow: 0 0 0 1px #874138;
          box-shadow: 0 0 0 1px #874138;
  border-top: 1px solid #fd816b;
  background: #d65130;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q2NTEzMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkMDQ0MmIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d65130), color-stop(100%, #d0442b));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #d65130 0%, #d0442b 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #d65130 0%, #d0442b 100%);
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(#d65130), to(#d0442b));
  background: linear-gradient(to bottom, #d65130 0%, #d0442b 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d65130', endColorstr='#d0442b', GradientType=0);
  /* IE6-8 */
}

.moreBtn {
  display: block;
  width: 245px;
  height: 70px;
  line-height: 70px;
  margin-top: 45px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #19b6d1;
}

.moreBtn:hover {
  color: #fff;
  background-color: #123a5e;
}

.linkBtn {
  position: relative;
  display: block;
  width: 145px;
  height: 35px;
  line-height: 35px;
  color: #102232;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.linkBtn.left {
  padding-left: 80px;
}

.linkBtn.left:hover {
  padding-left: 0;
  padding-right: 80px;
}

.linkBtn.left:hover::before {
  width: 0;
}

.linkBtn.left:hover::after {
  width: 70px;
}

.linkBtn.left::before {
  width: 70px;
}

.linkBtn.left::after {
  width: 0;
}

.linkBtn.right {
  padding-right: 80px;
}

.linkBtn.right:hover {
  padding-left: 80px;
  padding-right: 0;
}

.linkBtn.right:hover::before {
  width: 70px;
}

.linkBtn.right:hover::after {
  width: 0;
}

.linkBtn.right::before {
  width: 0;
}

.linkBtn.right::after {
  width: 70px;
}

.linkBtn::before, .linkBtn::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  background-color: #102232;
}

.linkBtn::before {
  left: 0;
}

.linkBtn::after {
  right: 0;
}

.prevArrow, .nextArrow {
  position: absolute;
  top: 50%;
  width: 70px;
  height: 100px;
  margin-top: -50px;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

.prevArrow:hover::before, .prevArrow:hover::after, .nextArrow:hover::before, .nextArrow:hover::after {
  background-color: #19b6d1;
}

.prevArrow::before, .prevArrow::after, .nextArrow::before, .nextArrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 65px;
  height: 2px;
  background-color: #d9d9d9;
}

.prevArrow {
  left: -70px;
}

.prevArrow::before, .prevArrow::after {
  left: 10px;
}

.prevArrow::before {
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.prevArrow::after {
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nextArrow {
  right: -70px;
}

.nextArrow::before, .nextArrow::after {
  right: 10px;
}

.nextArrow::before {
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nextArrow::after {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hScale {
  line-height: 0;
  overflow: hidden;
}

.hScale:hover {
  -webkit-box-shadow: 0 5px 15px rgba(27, 27, 27, 0.1);
          box-shadow: 0 5px 15px rgba(27, 27, 27, 0.1);
}

.hScale:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.date {
  display: block;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  color: #000;
}

.fixedPdCompareBtn {
  position: fixed;
  right: 0;
  bottom: 100px;
}

.fixedPdCompareBtn.show {
  right: 0;
}

.fixedPdCompareBtn a {
  position: relative;
  display: block;
  width: 40px;
  height: 130px;
  line-height: 40px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  background-color: #1094c5;
}

.fixedPdCompareBtn a span {
  position: absolute;
  bottom: 0;
  left: 55%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}

.fixedPdCompareBtn a span:before {
  content: '(';
}

.fixedPdCompareBtn a span:after {
  content: ')';
}

.fixedPdCompareBtn a:hover {
  background-color: #1dc1dd;
}

@media screen and (min-width: 0\0) {
  .fixedPdCompareBtn a span {
    bottom: -18px;
    left: 30%;
  }
}

.btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btnBox a {
  width: 165px;
  height: 55px;
  line-height: 55px;
}

.btnBox a + a {
  margin-left: 20px;
}

#pdCompareBox {
  padding: 50px;
  background-color: #fff;
}

#pdCompareBox .btnBox a {
  margin-top: 30px;
}

#pdCompareBox .clear {
  background-color: #777;
  background-image: none;
}

.pdcList {
  max-height: 280px;
  overflow-y: auto;
}

.pdcList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pdcList li + li {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #eee;
}

.pdcList .Img {
  width: 80px;
  margin-right: 10px;
  line-height: 0;
  border: 1px solid #eee;
}

.pdcList .Img img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.pdcList h3 {
  width: calc(100% - 80px - 40px - 10px);
}

.pdcList h3 a {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.pdcList h3 a:hover {
  color: #19b6d1;
}

.deleteBtn, .closeBtn {
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 18px;
  color: #313131;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
}

.deleteBtn:hover, .closeBtn:hover {
  color: #19b6d1;
}

.closeBtn {
  position: absolute;
  top: -15px;
  right: -15px;
  border-radius: 50%;
  background-color: #19b6d1;
}

.closeBtn:hover {
  background-color: #123a5e;
}

.closeBtn:hover::before {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.closeBtn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #fff), to(#fff)), -webkit-gradient(linear, left top, right top, color-stop(0, #fff), to(#fff));
  background-image: -webkit-linear-gradient(left, #fff 0, #fff 100%), -webkit-linear-gradient(left, #fff 0, #fff 100%);
  background-image: -o-linear-gradient(left, #fff 0, #fff 100%), -o-linear-gradient(left, #fff 0, #fff 100%);
  background-image: linear-gradient(to right, #fff 0, #fff 100%), linear-gradient(to right, #fff 0, #fff 100%);
  background-size: 100% 1px, 1px 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.mDropdownBox {
  display: none;
}

.newIcon {
  display: inline-block;
  padding: 3px 17px;
  font-size: 14px;
  letter-spacing: .05em;
  color: #fff;
  background-color: #1dc1dd;
}

.ith_opacity {
  background-color: #18354f;
}

.ith_opacity .Img {
  overflow: hidden;
}

.ith_opacity .Img img {
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.ith_opacity:hover .Img img {
  opacity: .6;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

#filterLB {
  width: 100%;
  max-width: 960px;
  max-height: 80vh;
  background-color: #fff;
  padding: 30px;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#filterLB .mFilterList > li > a {
  display: block;
  width: 100%;
  pointer-events: none;
  padding-bottom: 10px;
  border-bottom: 1px solid #ededed;
}

#filterLB .secondaryLevel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-align-items: flex-start;
  align-items: flex-start;
  padding: 15px 0 20px;
}

#filterLB .secondaryLevel li {
  width: 33.333%;
  margin-top: 0;
  margin-bottom: 10px;
}

/*--button--*/
.btn01 {
  text-align: center;
}

.btn01 a {
  display: inline-block;
  padding: 19px 63px;
  font-size: 15px;
  letter-spacing: .2em;
  color: #0971ce;
  border: 1px solid rgba(9, 113, 206, 0.5);
}

.btn01 a:hover {
  background-color: #0971ce;
  color: #fff;
}

/**********RWD**********/
/************************/
@media (max-width: 1860px) {
  header .wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1480px) {
  .goTop {
    display: none;
  }
  footer .wrap {
    width: 100%;
    padding: 0 60px 0 20px;
  }
}

@media (max-width: 1300px) {
  .wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1180px) {
  /*1160+20(卷軸寬度)*/
  .outerWrap {
    padding-top: 70px;
  }
  header {
    display: none;
  }
  /*手機menu*/
  .m_menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 95;
    display: block;
    width: 100%;
  }
  .m_menu .mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: none !important;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    padding-bottom: 60px;
  }
  .m_menu .controlBox {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 70px;
    z-index: 99;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .m_menu .controlBox a.main {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background-color: #19b6d1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
  }
  .m_menu .controlBox a.main span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: -0.5px;
    width: 26px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .m_menu .controlBox a.main span:before, .m_menu .controlBox a.main span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
  }
  .m_menu .controlBox a.main span:before {
    top: -7px;
  }
  .m_menu .controlBox a.main span:after {
    bottom: -7px;
  }
  .m_menu .controlBox a.main.show {
    right: 10px;
    top: 20px;
    border-radius: 50%;
    background-color: #f7f7f7;
  }
  .m_menu .controlBox a.main.show span {
    background-color: transparent;
  }
  .m_menu .controlBox a.main.show span:before, .m_menu .controlBox a.main.show span:after {
    background-color: #0971ce;
  }
  .m_menu .controlBox a.main.show span:before {
    top: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .m_menu .controlBox a.main.show span:after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .m_logo {
    width: 138px;
    height: 56px;
    margin-left: auto;
    margin-right: auto;
  }
  .m_logo img {
    max-width: 100%;
    width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  .mQuickBtn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    padding-left: 10px;
    padding-right: 10px;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    color: #fff;
    background-color: #19b6d1;
  }
  .searchBox_m, .nav li, .mfun a {
    opacity: 0;
    -webkit-transform: translateY(-12px);
        -ms-transform: translateY(-12px);
            transform: translateY(-12px);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
  }
  .hideBox {
    /*手機menu內容*/
    position: fixed;
    left: 0;
    top: 0;
    z-index: 11;
    width: 100%;
    height: 0;
    opacity: 0;
    pointer-events: none;
    padding: 70px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: -webkit-linear-gradient(315deg, #1dc1dd 0%, #0971ce 100%);
    background: -o-linear-gradient(315deg, #1dc1dd 0%, #0971ce 100%);
    background: linear-gradient(135deg, #1dc1dd 0%, #0971ce 100%);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
  }
  .hideBox .sp {
    display: none;
  }
  .hideBox.show {
    height: 100vh;
    opacity: 1;
    pointer-events: auto;
  }
  .hideBox.show .searchBox_m, .hideBox.show .nav li, .hideBox.show .mfun a {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .hideBox.show .searchBox_m {
    -webkit-transition-delay: .3s;
         -o-transition-delay: .3s;
            transition-delay: .3s;
  }
  .hideBox.show .nav li:nth-child(1) {
    -webkit-transition-delay: 0.4s;
         -o-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .hideBox.show .nav li:nth-child(2) {
    -webkit-transition-delay: 0.5s;
         -o-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .hideBox.show .nav li:nth-child(3) {
    -webkit-transition-delay: 0.6s;
         -o-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .hideBox.show .nav li:nth-child(4) {
    -webkit-transition-delay: 0.7s;
         -o-transition-delay: 0.7s;
            transition-delay: 0.7s;
  }
  .hideBox.show .nav li:nth-child(5) {
    -webkit-transition-delay: 0.8s;
         -o-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }
  .hideBox.show .nav li:nth-child(6) {
    -webkit-transition-delay: 0.9s;
         -o-transition-delay: 0.9s;
            transition-delay: 0.9s;
  }
  .hideBox.show .mfun a:nth-child(1) {
    -webkit-transition-delay: 1.1s;
         -o-transition-delay: 1.1s;
            transition-delay: 1.1s;
  }
  .hideBox.show .mfun a:nth-child(2) {
    -webkit-transition-delay: 1.2s;
         -o-transition-delay: 1.2s;
            transition-delay: 1.2s;
  }
  .hideBox.show .mfun a:nth-child(3) {
    -webkit-transition-delay: 1.3s;
         -o-transition-delay: 1.3s;
            transition-delay: 1.3s;
  }
  .nav a {
    display: block;
    padding: 20px;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    letter-spacing: .05em;
    text-align: center;
  }
  .nav a:hover, .nav a.current {
    color: #fff;
  }
  .nav em {
    position: relative;
  }
  .nav i {
    position: absolute;
    right: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .nav .submenu {
    display: none;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .nav .submenu a {
    padding: 10px 20px;
    font-size: 16px;
  }
  .mfun {
    margin-bottom: 30px;
    padding-top: 30px;
    text-align: center;
  }
  .mfun a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    background-color: #1dc1dd;
  }
  .inTitleBox {
    display: none;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .headerSubListSecond {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    display: none;
    background-color: rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 1180px) and (min-width: 961px) {
  .contentBox > .scBox.left, .contentBox > .bcBox.left {
    margin-right: 30px;
  }
}

@media (max-width: 1024px) {
  #filterLB {
    width: 90%;
  }
  .tab {
    margin-top: 30px;
  }
  .tabContent {
    padding-top: 20px;
  }
  .btnBox a {
    margin-top: 30px;
  }
  footer .topBox, footer .bottomBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  footer .rightItem {
    text-align: left;
  }
  .footerMenu {
    margin: 10px auto 12px 0;
  }
  .footerLink {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footerLogo {
    margin-bottom: 12px;
  }
}

@media (max-width: 960px) {
  .mainArea {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .contentBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contentBox > .scBox, .contentBox > .bcBox {
    width: 100%;
  }
  .contentBox > .scBox.left, .contentBox > .bcBox.left {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .inTitleBox {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .articleTitle {
    margin-bottom: 30px;
  }
  .breadTitle {
    margin-top: 0;
  }
  .tab a {
    font-size: 15px;
  }
  .m_cloneList {
    display: none ;
  }
  .filterList {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 5;
    display: block;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .5s;
        background-color: #fff;
  }
  .filterList.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .catalogMenuTitle {
    padding-top: 30px;
  }
  .mDropdownBox {
    position: relative;
    display: block;
  }
  .mDropdownBox + .catalogMenuTitle {
    display: none;
  }
  .mDropdownBox > div {
    position: relative;
    padding: 15px 10px;
    border: 1px solid #eee;
    background-color: #fff;
    cursor: pointer;
  }
  .mDropdownBox > div::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    right: 40px;
    background-color: #eee;
  }
  .mDropdownBox > div::after {
    content: '\f107';
    position: absolute;
    width: 40px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: 0;
    right: 0;
    font-family: FontAwesome;
    font-size: 24px;
    text-align: center;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    color: #0971ce;
  }
  .mDropdownBox > ul {
    display: none;
    max-height: 328px;
    overflow-y: auto;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
  }
  .mDropdownBox > ul a {
    display: block;
    padding: 10px;
  }
  .mDropdownBox > ul a.current {
    background-color: #19b6d1;
    color: #fff;
  }
  .mDropdownBox > ul ul {
    display: none;
    background-color: #fbfbfb;
  }
  .mDropdownBox > ul ul a {
    padding-left: 2em;
    color: #555;
  }
  .mDropdownBox > ul ul a:before, .mDropdownBox > ul ul a:after {
    display: none;
  }
  .mDropdownBox.open > div::after {
    -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg);
  }
  .mDropdownBox.open > ul {
    display: block;
    position: absolute;
    background-color: #fff;
    border: 1px solid #eee;
    left: 0;
    right: 0;
    z-index: 10;
    top: 100%;
  }
  .hasItems {
    position: relative;
  }
  .hasItems::after {
    content: '\f107';
    position: absolute;
    width: 40px;
    line-height: 45px;
    display: block;
    color: #19b6d1;
    top: 0;
    right: 0;
    font-family: FontAwesome;
    font-size: 20px;
    text-align: center;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
  }
  .hasItems.open::after {
    -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg);
  }
  .hasItems.open + ul {
    display: block;
  }
  .hasItems.current {
    background-color: #fff !important;
    color: #19b6d1 !important;
  }
  .hasItems.current.open + ul {
    display: block !important;
  }
  .mDropdownList > li > a {
    border-bottom: 1px solid #f5f5f5;
  }
}

@media (max-width: 800px) {
  .goTop {
    top: auto;
    left: 0;
    right: 0;
    bottom: 15px;
    margin: auto;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  /*側邊_分享*/
  .side_share {
    clear: both;
    display: block;
    margin-bottom: 30px;
  }
  .inBannerText h2 {
    font-size: 30px;
  }
  .titleBox {
    margin-bottom: 30px;
  }
}

/*640*/
@media (max-width: 640px) {
  .classLink {
    display: none;
  }
  .m_classLink {
    display: block;
    position: relative;
  }
  .m_classLink a.main {
    display: block;
    font-size: 15px;
    color: #222;
    border: 1px solid #CCC;
    position: relative;
    padding: 10px;
    border-radius: 5px;
    background: #eeeeee;
    /* Old browsers */
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #eeeeee));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #eeeeee 0%, #eeeeee 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #eeeeee 0%, #eeeeee 100%);
    /* Opera 11.10+ */
    /* IE10+ */
    background: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#eeeeee));
    background: linear-gradient(to bottom, #eeeeee 0%, #eeeeee 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#eeeeee', GradientType=0);
    /* IE6-9 */
  }
  .m_classLink a.main i {
    display: block;
    font-size: 15px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -6px;
  }
  .m_classLink ul {
    padding: 0;
    list-style: none;
    display: none;
    width: 100%;
    background: #FFF;
    border-radius: 5px;
    border: 1px solid #d1d1d1;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .m_classLink ul li {
    padding: 0;
  }
  .m_classLink ul li a {
    display: block;
    padding: 15px 10px;
    border-top: 1px solid #d1d1d1;
  }
  .m_classLink ul li:first-child a {
    border: none;
  }
}

@media (max-width: 580px) {
  .tab {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tab a {
    width: 50%;
  }
}

/*480*/
@media (max-width: 480px) {
  .breadTitle {
    display: none;
  }
  .mainArea {
    padding-top: 30px;
  }
  #pdCompareBox {
    width: 90%;
    padding: 30px 40px;
  }
  .col-2 {
    float: none;
    width: 100%;
  }
  .col-3 {
    float: none;
    width: 100%;
  }
  .col-4 {
    float: none;
    width: 100%;
  }
  .col-5 {
    float: none;
    width: 100%;
  }
  footer .companyTitle {
    margin-bottom: 12px;
  }
  .footerContactBox ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footerContactBox li:after {
    display: none !important;
  }
  .titleBox em {
    font-size: 32px;
  }
  .titleBox h2 {
    font-size: 20px;
  }
   #filterLB {
    padding: 20px;
  }
  #filterLB .secondaryLevel li {
    padding-right: 5px;
        box-sizing: border-box;
  }
  .moreBtn {
      height: 50px;
      line-height: 50px;
  }
}

@media (max-width: 440px) {
  .footerLink {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footerLink span {
    display: block;
    width: 100%;
    margin-bottom: 12px;
  }
  .m_logo {
    width: 125px;
    height: 50px;
    margin-left: 20px;
  }
}

@media (max-width: 400px) {
  .inBannerText {
    display: none;
  }
  .tab a {
    padding-left: 5px;
    padding-right: 5px;
    letter-spacing: 1px;
  }
  #pdCompareBox {
    padding: 20px;
  }
}

/****圖示顏色****/
.newIcon_green {
  background: #abd85d;
}

.newIcon_brown {
  background: #ed842e;
}

.newIcon_pink {
  background: #f48daf;
}

.newIcon_blue {
  background: #1dc1dd;
}

.newIcon_navy {
  background: #3f4c6b;
}

.newIcon_orange {
  background: #ffa84c;
}

.newIcon_gold {
  background: #eab92d;
}

.newIcon_burgundyRed {
  background: #a90329;
}

.newIcon_purple {
  background: #cb60b3;
}
