﻿@charset "UTF-8";
/*
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 100;
  src: url('./fonts/raleway-v13-latin-100.eot');
  src: local('Raleway Thin'), local('Raleway-Thin'), url('./fonts/raleway-v13-latin-100.eot?#iefix') format('embedded-opentype'), url('./fonts/raleway-v13-latin-100.woff2') format('woff2'), url('./fonts/raleway-v13-latin-100.woff') format('woff'), url('./fonts/raleway-v13-latin-100.ttf') format('truetype'), url('./fonts/raleway-v13-latin-100.svg#Raleway') format('svg');
}
*/
/* ubuntu-300 - latin */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/ubuntu-v15-latin-300.eot"); /* IE9 Compat Modes */
  src: local(""), url("fonts/ubuntu-v15-latin-300-1.eot") format("embedded-opentype"), url("fonts/ubuntu-v15-latin-300.woff2") format("woff2"), url("fonts/ubuntu-v15-latin-300.woff") format("woff"), url("fonts/ubuntu-v15-latin-300.ttf") format("truetype"), url("fonts/ubuntu-v15-latin-300.svg") format("svg"); /* Legacy iOS */
}
/* ubuntu-regular - latin */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/ubuntu-v15-latin-regular.eot"); /* IE9 Compat Modes */
  src: local(""), url("fonts/ubuntu-v15-latin-regular-1.eot") format("embedded-opentype"), url("fonts/ubuntu-v15-latin-regular.woff2") format("woff2"), url("fonts/ubuntu-v15-latin-regular.woff") format("woff"), url("fonts/ubuntu-v15-latin-regular.ttf") format("truetype"), url("fonts/ubuntu-v15-latin-regular.svg") format("svg"); /* Legacy iOS */
}
/* ubuntu-500 - latin */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/ubuntu-v15-latin-500.eot"); /* IE9 Compat Modes */
  src: local(""), url("fonts/ubuntu-v15-latin-500-1.eot") format("embedded-opentype"), url("fonts/ubuntu-v15-latin-500.woff2") format("woff2"), url("fonts/ubuntu-v15-latin-500.woff") format("woff"), url("fonts/ubuntu-v15-latin-500.ttf") format("truetype"), url("fonts/ubuntu-v15-latin-500.svg") format("svg"); /* Legacy iOS */
}
/* ubuntu-700 - latin */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/ubuntu-v15-latin-700.eot"); /* IE9 Compat Modes */
  src: local(""), url("fonts/ubuntu-v15-latin-700-1.eot") format("embedded-opentype"), url("fonts/ubuntu-v15-latin-700.woff2") format("woff2"), url("fonts/ubuntu-v15-latin-700.woff") format("woff"), url("fonts/ubuntu-v15-latin-700.ttf") format("truetype"), url("fonts/ubuntu-v15-latin-700.svg") format("svg"); /* Legacy iOS */
}
#tarteaucitronRoot .tarteaucitronAlertBigBottom .wrap:after, .ftbar:after, #cominfo:after,
.copyright-privacy:after,
#footlink:after, #footer:after, .swiper-product-thumbs.insufficient-swiper .swiper-wrapper::after, .pro_show_content:after, .thumbnails::after, #middle:after, #left_menu > div:after, .wrap::after {
  content: "";
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 8px 8px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.8;
}

.hamburger-box {
  width: 34px;
  height: 19px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 34px;
  height: 3px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.sb-active .hamburger--collapse .hamburger-inner {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.sb-active .hamburger--collapse .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.sb-active .hamburger--collapse .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1.5px;
  -webkit-transition: background-color 0s 0.13s linear;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 8px;
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  background-color: transparent;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 8px, 0) rotate(-45deg);
          transform: translate3d(0, 8px, 0) rotate(-45deg);
}

.sb-active .hamburger--spring .hamburger-inner {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  background-color: transparent;
}
.sb-active .hamburger--spring .hamburger-inner::before {
  top: 0;
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}
.sb-active .hamburger--spring .hamburger-inner::after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 8px, 0) rotate(-45deg);
          transform: translate3d(0, 8px, 0) rotate(-45deg);
}

body {
  color: #333;
  font-family: "Roboto", "微軟正黑體", 微軟正黑體, "Microsoft JhengHei", "微软雅黑", "メイリオ", "맑은 고딕", sans-serif;
  font-size: 16px;
}
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
}
body a {
  color: #333333;
}
body a:hover, body a:focus {
  color: #47a2d3;
  text-decoration: none !important;
  outline: none !important;
}
body a:hover:focus {
  text-decoration: none !important;
  outline: none !important;
}
body :focus {
  outline: none !important;
}

img {
  border: 0;
  padding: 0;
  margin: 0;
  vertical-align: middle;
  max-width: 100%;
  width: auto\9 ;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Roboto", "微軟正黑體", 微軟正黑體, "Microsoft JhengHei", "微软雅黑", "メイリオ", "맑은 고딕", sans-serif;
}

h2 {
  word-break: break-all;
  color: #333333;
}

h3,
h4 {
  color: #333333;
}

.wrap {
  width: 1440px;
  padding: 0 20px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1440px) {
  .wrap {
    width: 100%;
  }
}
.page-header {
  border: 0;
}
.page-header h1 {
  color: #333;
  font-size: 32px;
}

.form-control {
  font-family: "Roboto", "微軟正黑體", 微軟正黑體, "Microsoft JhengHei", "微软雅黑", "メイリオ", "맑은 고딕", sans-serif;
  font-size: 16px;
  color: #333;
}
.form-control:focus {
  border-color: #ccc;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn {
  border-radius: 99em;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
}

.btn-lg {
  border-radius: 99em;
}

.btn-sm {
  border-radius: 99em;
}

.btn-default {
  border-color: #333;
  color: #333;
  background: transparent;
}

.btn-default:hover,
.btn-default.focus,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.btn-default:active:focus,
.btn-default:active:hover,
.open > .dropdown-toggle.btn-default {
  background-color: #666;
  border-color: #666;
  color: #fff;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled.hover,
.btn-default[disabled].hover,
fieldset[disabled] .btn-default.hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  border-color: #cccccc;
  background: transparent;
  color: #cccccc;
}

.btn-primary {
  background-color: #000000;
  border-color: #000000;
}

.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled.hover,
.btn-primary[disabled].hover,
fieldset[disabled] .btn-primary.hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #666666;
  border-color: #666666;
}

.btn-success {
  background-color: #9c9c9c;
  border-color: #9c9c9c;
}

.btn-success:hover,
.btn-success.focus,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success:active:focus,
.btn-success:active:hover,
.open > .dropdown-toggle.btn-success {
  background-color: #b6b6b6;
  border-color: #b6b6b6;
}

.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled.hover,
.btn-success[disabled].hover,
fieldset[disabled] .btn-success.hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #d3d3d3;
  border-color: #d3d3d3;
}

.btn-info {
  background-color: #868686;
  border-color: #868686;
}

.btn-info:hover,
.btn-info.focus,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info:active:focus,
.btn-info:active:hover,
.open > .dropdown-toggle.btn-info {
  background-color: #5a5a5a;
  border-color: #5a5a5a;
}

.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled.hover,
.btn-info[disabled].hover,
fieldset[disabled] .btn-info.hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
}

.btn-warning {
  background-color: #ecce8e;
  border-color: #ecce8e;
}

.btn-warning:hover,
.btn-warning.focus,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning:active:focus,
.btn-warning:active:hover,
.open > .dropdown-toggle.btn-warning {
  background-color: #e3be6f;
  border-color: #e3be6f;
}

.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f4e2bb;
  border-color: #f4e2bb;
}

.btn-danger {
  background-color: #de9585;
  border-color: #de9585;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger:active:focus,
.btn-danger:active:hover,
.open > .dropdown-toggle.btn-danger {
  background-color: #b86957;
  border-color: #b86957;
}

.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #ebbfb6;
  border-color: #ebbfb6;
}

.btn-link {
  color: #333;
}

.btn-link:hover,
.btn-link:focus {
  color: #666;
}

.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #c6c6c6;
}

.input-group-btn .btn-default {
  border-color: #ccc;
}

.alert-success {
  color: #505050;
  background-color: #e9e9e9;
  border-color: #c2c2c2;
}

.alert-info {
  color: #3a3a3a;
  background-color: #ececec;
  border-color: lightgray;
}

.alert-warning {
  color: #c18d20;
  background-color: #fbf4e5;
  border-color: #f7eacf;
}

.alert-danger {
  color: #9f402b;
  background-color: #f4dbd5;
  border-color: #eec9c1;
}

.panel-default {
  border-color: #cccccc;
}
.panel-default > .panel-heading {
  background: #cccccc;
  border-color: #cccccc;
  color: #333333;
}

.panel-primary {
  border-color: #666666;
}
.panel-primary > .panel-heading {
  background-color: #666666;
  border-color: #666666;
}

.panel-success {
  border-color: #d3d3d3;
}
.panel-success.panel-success > .panel-heading {
  color: #838383;
  background-color: #d3d3d3;
  border-color: #d3d3d3;
}

.panel-info {
  border-color: #f8f8f8;
}
.panel-info.panel-info > .panel-heading {
  color: #272727;
  background-color: #f8f8f8;
  border-color: #f8f8f8;
}

.panel-warning {
  border-color: #f4e2bb;
}
.panel-warning.panel-warning > .panel-heading {
  color: #c69326;
  background-color: #f4e2bb;
  border-color: #f4e2bb;
}

.panel-danger {
  border-color: #ebbfb6;
}
.panel-danger .panel-danger > .panel-heading {
  color: #c75036;
  background-color: #ebbfb6;
  border-color: #ebbfb6;
}

.pagination > li > a,
.pagination > li > span {
  color: #333333;
  border-color: #b3b3b3;
}
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  color: #fff;
  background-color: #47a2d3;
}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  color: #fff;
  background-color: #333;
  border-color: #333;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #666666;
}

.hideobj {
  display: none !important;
}

a {
  cursor: pointer;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.sider-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  min-height: auto !important;
}
@media (max-width: 991px) {
  .sider-header {
    padding: 8px 0;
  }
}
.sider-header > .wrap {
  position: relative;
}

#index_container,
#container {
  padding-top: 100px;
}
@media (max-width: 991px) {
  #index_container,
  #container {
    padding-top: 85px;
  }
}
@media (max-width: 425px) {
  #index_container,
  #container {
    padding-top: 70px;
  }
}

#company_logo {
  padding-top: 10px;
  padding-bottom: 10px;
  float: left;
  position: relative;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
@media (max-width: 425px) {
  #company_logo {
    width: 150px;
  }
}

#mainnav {
  float: right;
}
@media (max-width: 991px) {
  #mainnav {
    display: none;
  }
}
#mainnav > ul {
  list-style: none;
  padding: 0;
}
#mainnav > ul > li {
  float: left;
}
#mainnav > ul > li > a {
  display: block;
  padding: 40px 15px;
}
@media (max-width: 1199px) {
  #mainnav > ul > li > a {
    padding: 40px 10px;
  }
}
#topnav {
  float: right;
}
@media (max-width: 991px) {
  #topnav {
    margin-right: 50px;
  }
}
#topnav > ul {
  list-style: none;
  padding: 0;
}
#topnav > ul > li {
  float: left;
}
@media (max-width: 991px) {
  #topnav > ul > li {
    display: none;
  }
  #topnav > ul > li.cart-list {
    display: block;
  }
}
#topnav > ul > li > div > a {
  display: block;
  padding: 40px 5px;
}
@media (max-width: 425px) {
  #topnav > ul > li > div > a {
    padding: 25px 5px;
  }
}
#topnav > ul > li > #language_area > div > a {
  display: block;
  padding: 40px 5px;
}

#topnav .dropdown-menu {
  left: auto;
  right: 0;
  margin: 0;
}
#topnav .dropdown-menu > div > a,
#topnav .dropdown-menu > li > a {
  display: block;
  padding: 8px 15px;
}

.dropdown.open > a {
  color: #47a2d3;
}

#qsearch {
  min-width: 250px;
  padding: 10px;
}

#banner_wrap {
  overflow: hidden;
}
#banner_wrap > .wrap {
  padding: 0;
}
#banner_wrap #mainbanner {
  /*  margin: 0 (((1920px/$wrap-size)-1)/2)*-100%; */
}

#mobile_toggle {
  position: absolute;
  display: none;
  z-index: 2;
}
@media (max-width: 991px) {
  #mobile_toggle {
    display: block;
    right: auto;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
#mobile_toggle .hamburger {
  outline: none;
}

.sb-site,
.sb-site-container {
  padding: 0;
}

#left_menu {
  background: #e9e9e9;
}
#left_menu .site-search .btn-search {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
#left_menu .site-search .advanced_search {
  display: none;
}
#left_menu .site-search .form-search {
  padding: 13px 20px;
}
#left_menu .site-language #language_ul li {
  border: none;
}
#left_menu .site-language #language_ul > li > a {
  padding: 13px 20px;
  background: #fff;
  font-weight: normal;
}
#left_menu .site-language #language_ul > li > a:hover {
  background: none;
  /*hover effect*/
}
#left_menu .site-member {
  border-bottom: 1px solid #fff;
}
#left_menu .site-member i {
  margin-right: 5px;
}
#left_menu .site-member > div.cartLink {
  display: none;
}
#left_menu .site-member > div a {
  padding: 10px 20px;
  font-weight: normal;
}
#left_menu li {
  border-bottom: none;
}
#left_menu li#incateall {
  display: none;
}
#left_menu li#incateall + #inalldivider {
  display: none;
}
#left_menu #custom-mobile_menu,
#left_menu #mobile_menu {
  overflow: hidden;
}
#left_menu .simple_menu > li > a {
  padding: 13px 20px;
  font-size: 15px;
}
#left_menu .simple_menu > li > ul > li > a {
  padding: 8px 35px;
  font-size: 15px;
  font-weight: normal;
}
#left_menu .simple_menu > li > ul > li > a::before {
  top: 18px;
  left: 25px;
}

@media (min-width: 992px) {
  #sidebar {
    width: 20%;
    float: left;
  }
}
#sidebar .nav-header {
  background: #eee;
  font-weight: bolder;
  padding: 8px 15px;
  font-size: 16px;
}

#content {
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  #content {
    width: 75%;
    float: right;
    padding-bottom: 50px;
  }
}

.breadcrumb {
  text-shadow: none;
}
.breadcrumb li {
  text-shadow: none;
}
.breadcrumb li a {
  text-shadow: none;
  text-decoration: none;
}
.breadcrumb li a:hover {
  text-shadow: none;
  background: none;
  text-decoration: underline;
  color: #47a2d3;
}
.breadcrumb li a.active {
  text-shadow: none;
  background: none;
  color: #47a2d3;
}

.thumbnails {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  list-style: none;
}
.thumbnails > li {
  float: none;
}
@media (max-width: 991px) {
  .thumbnails > li {
    width: 100%;
  }
}

.thumbnail {
  border: 1px rgb(200, 200, 200) solid;
}

.cate-name a,
.cate-name-more a {
  display: block;
  color: #333333;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
.cate-name a:hover,
.cate-name-more a:hover {
  color: #8B8682;
  text-decoration: underline;
}

.prolist-qty-spec-btn-wrap {
  text-align: center;
}

.prolistqty,
.prolistspec {
  margin: 10px auto;
}

.spec {
  height: 38px;
}

.pagination-wrap {
  text-align: center;
}

#noneresult {
  text-align: center;
}

.keyword-title {
  font-size: 19.2px;
}

@media (min-width: 768px) {
  .pro_show_content .pro_show_img {
    width: 45%;
    float: left;
  }
}
@media (min-width: 768px) {
  .pro_show_content .pro_show_intro {
    width: 50%;
    float: right;
  }
}
.pro-name {
  font-size: 24px;
}

.pshow_title {
  font-size: 19.2px;
  margin: 20px 0 10px;
}

.prochar + #prodNav {
  margin-top: 20px;
}

.popup-gallery {
  text-align: center;
}
.popup-gallery img {
  margin: 0 auto;
}

.showsmall {
  position: relative;
}
@media (max-width: 991px) {
  .showsmall {
    display: none;
  }
}
.showsmall .gallery-thumbs {
  text-align: center;
}
.showsmall .gallery-thumbs img {
  margin: auto;
}

#prodNav .panel-heading {
  padding: 0;
}
#prodNav .panel-heading .panel-title > a {
  display: block;
  padding: 8px 15px;
}

.show-btn-wrap {
  text-align: center;
}

.cart-btn-wrap {
  text-align: right;
}
.cart-btn-wrap input.btn {
  margin-left: 10px;
}
@media (max-width: 374px) {
  .cart-btn-wrap input.btn {
    margin-left: 0px;
  }
}
@media (max-width: 374px) {
  .cart-btn-wrap input.btn {
    width: 48%;
    margin-bottom: 10px;
    float: left;
  }
}
@media (max-width: 374px) {
  .cart-btn-wrap input.btn.btn-update-qty {
    margin-left: 4%;
  }
}
@media (max-width: 374px) {
  .cart-btn-wrap input.btn.btn-cart-inquiry {
    width: 100%;
  }
}

#tablist.cart-table thead tr th {
  background: #646464;
  color: #FFF;
}

.steptag {
  font-size: 24px;
  font-weight: 400;
  position: relative;
  padding: 0px 18px 0 0;
}
.steptag .step-icon {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background: #4f4f4f;
  position: absolute;
  display: block;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.steptag .step-icon::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 5px;
  border-color: transparent transparent transparent #ffffff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

table.cart-table > thead > tr > td,
table.cart-table > thead > tr > th,
table.cart-table > tbody > tr > td,
table.cart-table > tbody > tr > th {
  vertical-align: middle;
}

table.cart-table th.table-qty {
  width: 70px;
}
table.cart-table th.table-item, table.cart-table th.table-del {
  width: 50px;
}
table.cart-table .table-pro-no {
  width: 25%;
}
table.cart-table .table-item,
table.cart-table .table-del,
table.cart-table .table-qty {
  text-align: center;
}

.table-bordered.cart-table > tbody > tr > td,
.table-bordered.cart-table > tbody > tr > th,
.table-bordered.cart-table > thead > tr > td,
.table-bordered.cart-table > thead > tr > th,
.table-bordered.cart-table > tfoot > tr > td,
.table-bordered.cart-table > tfoot > tr > th {
  border: 1px solid #ddd;
}
@media (max-width: 767px) {
  .table-bordered.cart-table > tbody > tr > td,
  .table-bordered.cart-table > tbody > tr > th,
  .table-bordered.cart-table > thead > tr > td,
  .table-bordered.cart-table > thead > tr > th,
  .table-bordered.cart-table > tfoot > tr > td,
  .table-bordered.cart-table > tfoot > tr > th {
    border: 0;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

/**表單元素**/
legend.line-border {
  font-size: 16px !important;
  text-align: left !important;
  width: inherit;
  border-bottom: none;
  display: none;
}
legend.stepline-border {
  text-align: center !important;
  width: inherit;
  border-bottom: none;
}

.red {
  color: #cc0000;
}

.radio-inline input[type=radio] {
  margin-left: -20px;
  float: left;
}

.radio-inline {
  padding-left: 20px;
  font-weight: normal;
  margin-bottom: 0px;
  vertical-align: middle;
  display: inline-block;
  cursor: pointer;
}

.help-inline {
  vertical-align: middle;
  display: inline-block;
  padding-top: 5px;
  float: left;
  padding-left: 0px;
  cursor: default;
}

.control-label {
  cursor: default;
}

.form-show .input-prepend {
  clear: both;
}

fieldset.over-border {
  border: 1px solid #ccc !important;
  padding: 0 1.4em 1.4em 1.4em !important;
  margin: 0 0 1.4em 0 !important;
  border-radius: 5px;
}
fieldset.instep-border {
  border: 1px solid #ccc !important;
  padding: 0 16px 16px 16px !important;
  margin: 0 0 16px 0 !important;
  border-radius: 15px;
  background: #eeeeee;
  height: 100px;
  font-weight: bold;
  color: #000000;
  text-align: center;
}
fieldset.step-border {
  border: 1px solid #ccc !important;
  padding: 0 16px 16px 16px !important;
  margin: 0 0 16px 0 !important;
  border-radius: 15px;
  height: 100px;
  text-align: center;
}
fieldset > div {
  margin-top: 30px;
}

.submint-controls {
  text-align: center;
}

#login-tabs {
  list-style: none;
  padding: 0;
}
#login-tabs li {
  float: left;
}
#login-tabs li > a {
  display: block;
  padding: 8px 15px;
}

.swiper-container .swiper-lazy {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.swiper-container .swiper-lazy.swiper-lazy-loaded {
  opacity: 1;
}

#maincarousel {
  height: 100%;
}

.swiper-banner .arrow-left,
.swiper-banner .swiper-button-prev,
.swiper-banner .arrow-right,
.swiper-banner .swiper-button-next,
.swiper-product .arrow-left,
.swiper-product .swiper-button-prev,
.swiper-product .arrow-right,
.swiper-product .swiper-button-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 99;
  margin: 0;
}
.swiper-banner .arrow-left,
.swiper-banner .swiper-button-prev,
.swiper-product .arrow-left,
.swiper-product .swiper-button-prev {
  left: 15px;
  z-index: 99;
}
.swiper-banner .arrow-right,
.swiper-banner .swiper-button-next,
.swiper-product .arrow-right,
.swiper-product .swiper-button-next {
  right: 15px;
}
.swiper-banner .swiper-pagination,
.swiper-banner .page-banner,
.swiper-product .swiper-pagination,
.swiper-product .page-banner {
  position: absolute;
  left: 0;
  z-index: 99;
  text-align: center;
  bottom: 0;
  width: 100%;
}

.swiper-product-thumbs {
  margin-top: 15px;
  width: 80%;
  margin: auto;
}
.swiper-product-thumbs .swiper-slide {
  width: 25%;
  opacity: 0.8;
}
.swiper-product-thumbs .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper-product-thumbs .swiper-product-thumbs-next,
.swiper-product-thumbs .swiper-product-thumbs-prev {
  display: none;
}
.swiper-product-thumbs.swiper-container-initialized .swiper-product-thumbs-next,
.swiper-product-thumbs.swiper-container-initialized .swiper-product-thumbs-prev {
  display: block;
}
.swiper-product-thumbs.insufficient-swiper .swiper-wrapper {
  display: block;
}
.swiper-product-thumbs.insufficient-swiper .swiper-wrapper .swiper-slide {
  padding: 0 7px;
  float: left;
}
.swiper-product .swiper-product-pagination {
  position: static;
  display: none;
}
@media (max-width: 991px) {
  .swiper-product .swiper-product-pagination {
    display: block;
  }
}
.swiper-product .swiper-product-next,
.swiper-product .swiper-product-prev {
  display: none;
}
@media (max-width: 991px) {
  .swiper-product .swiper-product-next,
  .swiper-product .swiper-product-prev {
    display: block;
  }
}

.related-slider .form-horizontal,
.related-slider .product-cate,
.related-slider .thumbnail {
  margin-bottom: 0;
  height: 100%;
}
.related-slider .swiper-slide {
  height: auto;
  height: initial;
}
.related-slider .related-slider-pagination {
  position: static;
}
#gotop {
  text-align: right;
  position: fixed;
  right: 10px;
  bottom: 30px;
  z-index: 2;
  display: none;
}

#cominfo,
.copyright-privacy,
#footlink {
  margin: 5px 0;
}
.cominfo-nav {
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}
.cominfo-nav li {
  float: left;
}
@media (max-width: 767px) {
  .cominfo-nav li {
    float: none;
  }
}
.cominfo-nav li + li {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .cominfo-nav li + li {
    margin-left: 0px;
  }
}

#copyright {
  float: left;
}

#privacy {
  float: left;
  margin-left: 10px;
}

.footlink-nav {
  padding: 0;
  list-style: none;
}
.footlink-nav li {
  float: left;
  position: relative;
}
.footlink-nav li + li a {
  display: block;
  padding-left: 5px;
  padding-right: 5px;
}
.footlink-nav li + li a:before {
  content: "";
  width: 1px;
  height: 10px;
  background: #ccc;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.designed-wrap {
  display: block;
}
.designed-wrap a:last-child {
  padding-right: 5px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#tarteaucitronRoot .tarteaucitronAlertBigBottom .wrap {
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  #tarteaucitronRoot .tarteaucitronAlertBigBottom .wrap {
    width: 750px;
  }
}
@media (min-width: 992px) {
  #tarteaucitronRoot .tarteaucitronAlertBigBottom .wrap {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  #tarteaucitronRoot .tarteaucitronAlertBigBottom .wrap {
    width: 1170px;
  }
}
#tarteaucitronRoot .tarteaucitronAlertBigBottom .wrap #tarteaucitronDisclaimerAlert {
  float: left;
  display: block;
}
@media (max-width: 991px) {
  #tarteaucitronRoot .tarteaucitronAlertBigBottom .wrap #tarteaucitronDisclaimerAlert {
    margin-bottom: 12px;
  }
}
#tarteaucitronRoot .tarteaucitronAlertBigBottom .wrap #tarteaucitronPersonalize {
  float: right;
  display: block;
}
#tarteaucitronAllDenied.btn-dark {
  color: #FFF;
}

/*外跳按鈕*/
.btn-primary.swal2-styled.swal2-confirm {
  background-color: #000000;
  border-color: #000000;
}
.btn-primary.swal2-styled.swal2-confirm:hover, .btn-primary.swal2-styled.swal2-confirm:focus {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

.btn-info.swal2-styled.swal2-cancel {
  background-color: #868686;
  border-color: #868686;
}
.btn-info.swal2-styled.swal2-cancel:hover, .btn-info.swal2-styled.swal2-cancel:focus {
  background-color: #5a5a5a;
  border-color: #5a5a5a;
}

.clearfix:before, .clearfix:after {
  content: "" "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1; /*For IE 6&7 only*/
}

#index_container,
#container {
  padding-top: 116px;
}
@media (max-width: 991px) {
  #index_container,
  #container {
    padding-top: 88px;
  }
}
@media (max-width: 425px) {
  #index_container,
  #container {
    padding-top: 76px;
  }
}

#sidebar {
  display: none;
}

#content {
  width: 100%;
  float: none;
}

#middle {
  min-height: 1000px;
  position: relative;
}
@media (max-width: 425px) {
  #middle {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  body {
    background: none;
  }
}

.swiper-pagination-bullet {
  width: 54px;
  height: 7px;
  border-radius: 99em;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #47a2d3;
}

.swiper-banner .swiper-pagination,
.swiper-banner .page-banner,
.swiper-product .swiper-pagination,
.swiper-product .page-banner {
  bottom: -6px;
}

@media (max-width: 600px) {
  .page-banner.swiper-pagination-clickable.swiper-pagination-bullets {
    display: none;
  }
}

.show-btn-wrap {
  margin-top: 40px;
  margin-bottom: 30px;
}
.show-btn-wrap .btn-primary {
  background-color: #909090;
  border-color: #909090;
  position: relative;
  padding-left: 30px;
  padding-right: 15px;
}
.show-btn-wrap .btn-primary::before {
  content: url(../images/pd/back.png);
  position: absolute;
  left: 10px;
}

.btn-info {
  background-color: #868686;
  border-color: #868686;
  padding-left: 15px;
  padding-right: 15px;
}

.show-btn-wrap .btn-primary:hover {
  background-color: #47a2d3;
  border-color: #47a2d3;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

a.arrow-right.banner-swiper-button-next {
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 99em;
  -webkit-box-shadow: 3px 1px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 1px 10px 0px rgba(0, 0, 0, 0.3);
  padding-top: 5px;
  padding-left: 6px;
}

a.arrow-left.banner-swiper-button-prev {
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 99em;
  -webkit-box-shadow: 3px 1px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 1px 10px 0px rgba(0, 0, 0, 0.3);
  padding-top: 5px;
  padding-left: 6px;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url(../images/all/pre.png);
  width: 67px;
  height: 67px;
  border-radius: 99em;
  -webkit-box-shadow: 3px 1px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 1px 10px 0px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  background-size: auto;
}
@media (max-width: 991px) {
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    background-size: 40%;
    width: 50px;
    height: 50px;
  }
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url(../images/all/next.png);
  width: 67px;
  height: 67px;
  border-radius: 99em;
  -webkit-box-shadow: 3px 1px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 1px 10px 0px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  background-size: auto;
}
@media (max-width: 991px) {
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    background-size: 40%;
    width: 50px;
    height: 50px;
  }
}

.swiper-button-prev:hover,
.swiper-container-rtl .swiper-button-next:hover {
  background-image: url(../images/all/pre2.png);
}

.swiper-button-next:hover,
.swiper-container-rtl .swiper-button-prev:hover {
  background-image: url(../images/all/next2.png);
}

#gotop {
  cursor: pointer;
  background: #fff;
  width: 67px;
  height: 67px;
  border-radius: 99em;
  -webkit-box-shadow: 3px 1px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 1px 10px 0px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  #gotop {
    width: 50px;
    height: 50px;
  }
}
#gotop img {
  padding-top: 10px;
  padding-right: 6px;
}
@media (max-width: 991px) {
  #gotop img {
    width: 80%;
    padding-top: 12px;
    padding-right: 9px;
  }
}

#gotop:hover {
  bottom: 50px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/* #gotop:hover{
    box-shadow: 3px 1px 10px 0px rgba(71,162,211, 0.1);
} */
#header {
  border-bottom: solid 4px #47a2d3;
}
#header .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 991px) {
  #header .row {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-width: 1440px) {
  .company_logo_box {
    width: 14%;
  }
}
@media (max-width: 991px) {
  .company_logo_box {
    width: 200px;
  }
}

@media (max-width: 1440px) {
  .ctrl-noneRWD {
    width: 86%;
  }
}
@media (max-width: 991px) {
  .ctrl-noneRWD {
    display: none;
  }
}

.qsearch-list {
  overflow: hidden;
}

#qsearch {
  padding: 10px 0 10px 10px;
}
#qsearch input.form-control {
  width: 190px;
  float: right;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: solid 1px #cfcfcf;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-search {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
  padding: 6px 0 6px 12px;
}

.btn-search:hover {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}

#qsearch .btn-primary:hover,
#qsearch .btn-primary.focus,
#qsearch .btn-primary:focus,
#qsearch .btn-primary:active,
#qsearch .btn-primary.active,
#qsearch .btn-primary:active:focus,
#qsearch .btn-primary:active:hover,
#qsearch .open > .dropdown-toggle.btn-primary {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}

.btn.active,
.btn:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.glyphicon-search:before {
  content: url(../images/head/search.png);
}

.glyphicon-search:hover::before {
  content: url(../images/head/search2.png);
  /* transition: all 0.5s ease-in-out; */
}

.ctrl-mainmenu {
  text-align: right;
}

#mainnav > ul > li {
  float: none;
  display: inline-block;
  position: relative;
}

.lan-T #mainnav > ul > li > a {
  padding: 15px 12px 10px;
}
@media (max-width: 1440px) {
  .lan-T #mainnav > ul > li > a {
    padding: 15px 10px 10px 4px;
  }
}

#mainnav > ul > li > a {
  padding: 15px 15px 10px;
}
@media (max-width: 1440px) {
  #mainnav > ul > li > a {
    padding: 15px 7px 10px;
  }
}

#mainnav {
  float: none;
  font-size: 18px;
  display: inline-block;
}
@media (max-width: 1199px) {
  #mainnav {
    font-size: 16px;
  }
}

#mainnav #incateall {
  display: none;
}
#mainnav #incateall + #inalldivider {
  display: none;
}

#mainnav ul li.dropdown::after {
  content: url(../images/head/drop.jpg);
  position: absolute;
  top: 34%;
  right: 0px;
}
@media (max-width: 1199px) {
  #mainnav ul li.dropdown::after {
    right: -2px;
  }
}

@media (max-width: 1280px) {
  .lan-T #mainnav {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .lan-T #mainnav {
    font-size: 14px;
  }
}

#mainnav ul li a.active {
  color: #47a2d3;
}

#mainnav ul li ul li a.active {
  color: #fff;
}

#mainnav ul li a.active::after {
  content: url(../images/head/active.jpg);
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

#mainnav ul li ul li a.active::after {
  content: none;
}

.caret {
  display: none;
}

#topnav {
  float: none;
  display: inline-block;
}

#topnav > ul {
  margin: 0;
}

#topnav > ul > li {
  float: none;
  display: inline-block;
}

#topnav > ul > li > div > a,
#topnav > ul > li > #language_area > div > a {
  /*  padding: 27px 5px 10px; */
  padding: 15px 5px 10px;
}

li.cart-list {
  width: 23px;
  margin: 0 12px;
}
@media (max-width: 1440px) {
  li.cart-list {
    margin: 0 6px;
  }
}

li.cart-list a {
  position: relative;
}

li.cart-list a::before {
  content: "";
  background-image: url(../images/head/inquire.png);
  background-size: 23px 27px;
  height: 27px;
  z-index: 999;
  position: absolute;
  bottom: -8px;
  width: 23px;
  left: 0px;
}

li.cart-list:hover a::before {
  background-image: url(../images/head/inquire2.png);
}

li.language-list {
  width: 26px;
}

li.language-list a {
  position: relative;
}

li.language-list a::before {
  content: "";
  background-image: url(../images/head/lang.png);
  background-size: 26px 27px;
  height: 27px;
  z-index: 999;
  position: absolute;
  bottom: -7px;
  width: 26px;
  left: 0;
}

li.language-list ul li a::before {
  content: none;
}

li.language-list:hover a::before {
  background-image: url(../images/head/lang2.png);
}

.simple_menu > li > ul > li > a:before {
  display: none;
}

#left_menu {
  background: #434343;
}

#left_menu a {
  color: #fff;
}

#left_menu .cartLink a {
  position: relative;
  height: 40px;
}

#left_menu .cartLink a::before {
  content: "";
  background-image: url(../images/head/inquire.png);
  background-size: 23px 27px;
  height: 27px;
  z-index: 999;
  position: absolute;
  bottom: 7px;
  width: 23px;
  right: 50%;
  /*     transform: translateX(-50%); */
}

#left_menu .simple_menu > li > ul > li > a {
  padding: 16px 35px;
}

.site-member {
  background: #47a2d3;
  text-align: center;
}

#left_menu .site-member > div.cartLink {
  display: block;
}

#left_menu .site-language #language_ul > li > a {
  background: #7d7d7d;
}

.simple_menu a .openmenu .simplemenu-normal-icon span:nth-child(1),
.simple_menu a .openmenu .simplemenu-normal-icon span:nth-child(2) {
  background: #fff;
}

.custom-site-menu ul {
  display: none;
}

.breadcrumb {
  background-color: rgba(0, 0, 0, 0);
  text-align: right;
  margin: 25px 0 50px;
}
@media (max-width: 600px) {
  .breadcrumb {
    margin: 15px 0;
  }
}
.breadcrumb li {
  vertical-align: top;
}

.breadcrumb li a.active {
  color: #333;
}

.page-header {
  text-align: center;
  padding: 0;
  margin: 0;
}
.page-header h1 {
  margin-bottom: 70px;
  font-family: "Ubuntu";
  position: relative;
}
@media (max-width: 991px) {
  .page-header h1 {
    font-size: 24px;
  }
}
@media (max-width: 425px) {
  .page-header h1 {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .page-header h1 {
    padding: 0 30px;
  }
}
@media (max-width: 425px) {
  .page-header h1 {
    font-size: 20px;
  }
}
.page-header h1 span {
  position: relative;
  display: inline-block;
  padding: 0 60px;
}
@media (max-width: 600px) {
  .page-header h1 span {
    padding: 0;
  }
}
.page-header h1 span::before {
  content: url(../images/all/h1before.png);
  vertical-align: middle;
  padding-right: 10px;
  position: absolute;
  left: 0;
  /*   @include rwd($mq-mobile-m-portrait){//375
      content: url(../images/all/h1before2.png);
  } */
}
@media (max-width: 600px) {
  .page-header h1 span::before {
    content: none;
  }
}
.page-header h1 span::after {
  content: url(../images/all/h1after.png);
  vertical-align: middle;
  padding-left: 10px;
  position: absolute;
  top: 0;
  right: 0;
  /*    @include rwd($mq-mobile-m-portrait){//375
      content: url(../images/all/h1after2.png);
  } */
}
@media (max-width: 600px) {
  .page-header h1 span::after {
    content: none;
  }
}

@media (max-width: 600px) {
  .page-header h1::before {
    content: url(../images/all/h1before2.png);
    position: absolute;
    left: 0;
    top: 0;
  }
}

@media (max-width: 600px) {
  .page-header h1::after {
    content: url(../images/all/h1after2.png);
    position: absolute;
    right: 0;
    top: 0;
  }
}

@media (max-width: 600px) {
  .search-keyword h1 {
    font-size: 24px;
  }
}
@media (max-width: 425px) {
  .search-keyword h1 {
    font-size: 20px;
  }
}

.cominfo-nav li {
  float: none;
}

.cominfo-nav li + li {
  margin-left: 0;
}

#footer {
  border-top: solid 4px #47a2d3;
}

.footer-top {
  padding: 25px 0;
  font-size: 18px;
}
@media (max-width: 991px) {
  .footer-top {
    padding: 25px;
  }
}
@media (max-width: 600px) {
  .footer-top {
    font-size: 16px;
  }
}

.footer-ti {
  font-size: 24px;
  color: #47a2d3;
  font-family: "Ubuntu";
}
@media (max-width: 600px) {
  .footer-ti {
    font-size: 18px;
  }
}

.footer-logo {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .footer-logo {
    margin-bottom: 20px;
  }
}
@media (max-width: 425px) {
  .footer-logo {
    width: 60%;
  }
}

.bright {
  border-right: solid 1px #cfcfcf;
  height: 249px;
}
@media (max-width: 1440px) {
  .bright {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .bright {
    padding-left: 15px;
    border-right: 0;
    height: auto;
  }
}

@media (max-width: 991px) {
  .footer-noinfo {
    display: none;
  }
}

.nav-list {
  margin-top: 15px;
}

@media (max-width: 991px) {
  .footer-nonesite {
    display: none;
  }
}

.add::before {
  content: url(../images/footer/add.png);
}

.tel::before {
  content: url(../images/footer/tel.png);
}

.fax::before {
  content: url(../images/footer/fax.png);
}

.mail::before {
  content: url(../images/footer/mail.png);
}

#cominfo {
  margin: 0;
}
@media (max-width: 1440px) {
  #cominfo {
    padding-right: 20px;
  }
}
#cominfo ul {
  margin-top: 15px;
}
#cominfo ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
#cominfo ul li::before {
  position: absolute;
  left: 0;
  top: 2px;
}

.copyright-privacy {
  text-align: center;
  background: #cfcfcf;
  padding: 15px 0;
  margin: 0;
}
.copyright-privacy #copyright {
  float: none;
}

.product-filter {
  background: #cfcfcf;
  padding: 15px;
  font-size: 18px;
  margin-bottom: 80px;
}
@media (max-width: 375px) {
  .product-filter {
    padding: 10px;
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.product-filter select {
  width: calc(20% - 24px);
  margin: 0 10px;
  padding: 18px;
  border: solid 1px #bfbfbf;
}
@media (max-width: 1280px) {
  .product-filter select {
    width: calc(33.3333333333% - 24px);
    margin: 10px;
  }
}
@media (max-width: 991px) {
  .product-filter select {
    width: calc(50% - 24px);
  }
}
@media (max-width: 600px) {
  .product-filter select {
    width: calc(100% - 24px);
  }
}
@media (max-width: 375px) {
  .product-filter select {
    padding: 22px 10px;
    margin: 5px;
    width: calc(100% - 11px);
  }
}

.thumbnail {
  border: 0;
}

.container_product #middle {
  background: url(../images/all/bg.jpg) no-repeat center;
  /* height: 1700px; */
  height: auto;
}
.container_product .product-cate-wrap {
  height: 1504px;
  position: relative;
}
@media (max-width: 1024px) {
  .container_product .product-cate-wrap {
    height: auto;
  }
}

.thumbnails {
  /*  position: relative; */
}
.thumbnails .catelist {
  position: absolute;
}
@media (max-width: 1024px) {
  .thumbnails .catelist {
    padding: 20px;
  }
}
.thumbnails .catelist .product-cate {
  position: relative;
}
.thumbnails .catelist .product-cate .thumbnail {
  background-color: rgba(0, 0, 0, 0);
}
.thumbnails .catelist .product-cate .thumbnail .caption {
  position: absolute;
  font-size: 24px;
  background: #fff;
  border-left: solid 8px #47a2d3;
  padding: 50px 40px;
  -webkit-box-shadow: 3px 1px 8px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 1px 8px -3px rgba(0, 0, 0, 0.3);
  font-family: "Ubuntu";
  z-index: 98;
}
@media (max-width: 991px) {
  .thumbnails .catelist .product-cate .thumbnail .caption {
    font-size: 20px;
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .thumbnails .catelist .product-cate .thumbnail .caption {
    position: static;
  }
}
@media (max-width: 425px) {
  .thumbnails .catelist .product-cate .thumbnail .caption {
    font-size: 18px;
  }
}
.thumbnails .catelist .product-cate .thumbnail .caption a {
  font-weight: normal;
}

.catelist:nth-child(1) {
  position: absolute;
  left: 0;
}
@media (max-width: 1024px) {
  .catelist:nth-child(1) {
    position: static;
  }
}
.catelist:nth-child(1) .caption {
  position: absolute;
  left: 0;
  top: 0;
}

.catelist:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1024px) {
  .catelist:nth-child(2) {
    position: static;
  }
}
.catelist:nth-child(2) .caption {
  position: absolute;
  right: 0;
  top: 0;
}

.product-cate .thumbnail {
  overflow: hidden;
  position: relative;
}

.product-cate .thumbnail a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}

.thumbnails .catelist:hover .product-cate .thumbnail .caption {
  background: #47a2d3;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.catelist:hover .caption .cate-name {
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.thumbnails .catelist:hover .product-cate .thumbnail .caption .cate-name {
  background: rgba(0, 0, 0, 0);
}

/* .thumbnails .catelist .product-cate .thumbnail .caption::before{
    display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	height: 100%;
	width: 0px;
	z-index: -1;
	content: '';
	background: #47a2d3;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.thumbnails .catelist:hover .product-cate .thumbnail .caption::before{
    left: 0%;
	right: auto;
	width: 100%;
} */
.prodlist {
  margin-bottom: 50px;
}
.prodlist .listimg {
  text-align: center;
}
.prodlist .cate-name {
  background: #fff;
  border-left: solid 8px #47a2d3;
  padding: 20px 30px;
  -webkit-box-shadow: 3px 1px 8px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 1px 8px -3px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}
.prodlist .cate-name a {
  text-align: left;
  font-weight: normal;
}

.prodlist .thumbnail {
  overflow: hidden;
  position: relative;
}

.prodlist .thumbnail a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}

.prodlist:hover .cate-name {
  background: #47a2d3;
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.item.popup-gallery.swiper-slide.swiper-slide-active {
  width: 100% !important;
}

.pro_show_content {
  position: relative;
}
.pro_show_content .pro_show_img {
  width: 100%;
  float: none;
}
.pro_show_content .pro_show_intro {
  width: 100%;
  float: none;
  position: absolute;
  right: 0;
  width: 200px;
  bottom: 0;
  background: url(../images/pd/inqbg1.png) no-repeat center;
  z-index: 999;
}
@media (max-width: 991px) {
  .pro_show_content .pro_show_intro {
    position: static;
  }
}
@media (max-width: 600px) {
  .pro_show_content .pro_show_intro {
    background-size: 70%;
    background-position: left;
  }
}
.pro_show_content .pro_show_intro .btn-primary {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
  font-size: 24px;
  padding-left: 38px;
  padding-top: 15px;
}
@media (max-width: 991px) {
  .pro_show_content .pro_show_intro .btn-primary {
    font-size: 18px;
    padding: 18px 40px;
  }
}
@media (max-width: 600px) {
  .pro_show_content .pro_show_intro .btn-primary {
    font-size: 16px;
    padding: 18px 0px 18px 26px;
  }
}

.pro_show_intro:hover {
  background: url(../images/pd/inqbg2.png) no-repeat center;
}
@media (max-width: 600px) {
  .pro_show_intro:hover {
    background-size: 70%;
    background-position: left;
  }
}

.showTop {
  margin: 45px 0 50px;
}
@media (max-width: 991px) {
  .showTop {
    margin: 20px 0;
  }
}
.showTop .showTop-ti {
  font-size: 24px;
  margin-bottom: 35px;
  font-family: "Ubuntu";
}
@media (max-width: 991px) {
  .showTop .showTop-ti {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.showTop p span {
  font-size: 24px;
  color: #48a2d2;
}
@media (max-width: 991px) {
  .showTop p span {
    font-size: 18px;
  }
}

/* .nav-tabs {
    border-bottom: 3px solid #47a2d3;
    padding-bottom: 1px;
} */
.nav-tabs {
  border-bottom: 3px solid #47a2d3;
  padding-bottom: 1px;
}
.nav-tabs li {
  width: calc(16.6666666667% - 17px);
  text-align: center;
  background: #fff;
  -webkit-box-shadow: 3px 1px 8px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 1px 8px -3px rgba(0, 0, 0, 0.3);
  margin-right: 20px;
}
@media (max-width: 991px) {
  .nav-tabs li {
    width: calc(16.6666666667% - 4px);
    margin-right: 4px;
  }
}
.nav-tabs li:last-child {
  margin-right: 0px;
}
.nav-tabs li a {
  padding: 30px 15px;
  font-size: 18px;
  border-radius: 0;
  margin-right: 0;
  border: 0;
  font-family: "Ubuntu";
}
@media (max-width: 1280px) {
  .nav-tabs li a {
    height: 100px;
  }
}
@media (max-width: 991px) {
  .nav-tabs li a {
    padding: 10px;
    font-size: 16px;
    height: 72px;
  }
}

/* .tabbable .nav>li>a {
    padding: 30px 15px;
    font-size: 18px;
} */
.nav-tabs li.active a::after {
  content: url(../images/pd/tabactive.png);
  position: absolute;
  bottom: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  background-color: #47a2d3;
  color: #fff;
  margin: 0;
}

/* #prodNav {
    margin: 50px 0;
} */
.tab-content {
  padding: 40px 0 100px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .tab-content {
    padding: 40px 0;
  }
}

.tab-content::after {
  content: "";
  background-image: url(../images/pd/bb.jpg);
  background-size: 1400px 20px;
  height: 20px;
  z-index: 999;
  position: absolute;
  bottom: 0;
  width: 1400px;
}

.tab-feature {
  padding: 0 40px;
}
@media (max-width: 767px) {
  .tab-feature {
    padding: 0;
  }
}
.tab-feature .tab-feature-block {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .tab-feature .tab-feature-block {
    margin-bottom: 15px;
  }
}
.tab-feature .tab-feature-block .tab-feature-ti {
  font-size: 18px;
  color: #47a2d3;
}

@media (max-width: 991px) {
  .ctrl-tableover {
    overflow-x: scroll;
    position: relative;
    padding-top: 39px;
  }
}
.ctrl-tableover .tabshow-table {
  width: 100%;
  text-align: center;
}
@media (max-width: 991px) {
  .ctrl-tableover .tabshow-table {
    width: 1000px;
  }
}
@media (max-width: 600px) {
  .ctrl-tableover .tabshow-table {
    width: 700px;
  }
}
.ctrl-tableover .tabshow-table th {
  background: #47a2d3;
  color: #fff;
  text-align: center;
  padding: 20px;
  border: solid 1px #cfcfcf;
}
@media (max-width: 600px) {
  .ctrl-tableover .tabshow-table th {
    padding: 10px;
  }
}
.ctrl-tableover .tabshow-table td {
  padding: 20px;
  border: solid 1px #cfcfcf;
}
@media (max-width: 600px) {
  .ctrl-tableover .tabshow-table td {
    padding: 10px;
  }
}
.ctrl-tableover .tabshow-table td.sptd {
  text-align: left;
}

@media (max-width: 991px) {
  .tabshow-table::before {
    content: url(../images/all/scroll.png);
    position: absolute;
    top: 0;
    left: 0;
  }
}

.tab-app ul {
  overflow: hidden;
  padding: 0;
}
.tab-app ul li {
  float: left;
  list-style: none;
  width: calc(25% - 1px);
  text-align: center;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 768px) {
  .tab-app ul li {
    width: calc(33.3333333333% - 1px);
  }
}
@media (max-width: 600px) {
  .tab-app ul li {
    width: calc(50% - 1px);
  }
}
@media (max-width: 425px) {
  .tab-app ul li {
    width: calc(100% - 0px);
  }
}

.pdshow-video iframe {
  display: block;
  margin: 30px auto 0;
}
@media (max-width: 767px) {
  .pdshow-video iframe {
    width: 100%;
    margin: 10px auto;
  }
}
@media (max-width: 375px) {
  .pdshow-video iframe {
    height: 100%;
  }
}

@media (max-width: 375px) {
  .pdshow-video-page iframe {
    height: 100%;
  }
}

.pro_edm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  text-align: center;
}

.pro_edm-item {
  padding: 0 15px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .pro_edm-item {
    width: 50%;
  }
}
@media (max-width: 425px) {
  .pro_edm-item {
    width: 100%;
  }
}
.pro_edm-item:hover a {
  border-color: #4398c7;
}
.pro_edm-item:hover a:before,
.pro_edm-item:hover a:after {
  opacity: 1;
}
.pro_edm-item:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.pro_edm-item a {
  display: block;
  border: 1px solid #cecece;
  overflow: hidden;
  position: relative;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
.pro_edm-item a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  opacity: 0;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
.pro_edm-item a:after {
  content: "\f00e";
  font-family: FontAwesome;
  color: #63b0da;
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
@media (max-width: 600px) {
  .pro_edm-item a:after {
    font-size: 35px;
  }
}
.pro_edm-item img {
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.related .related-ti {
  text-align: center;
  font-size: 32px;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .related .related-ti {
    font-size: 24px;
  }
}
@media (max-width: 425px) {
  .related .related-ti {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.related .cate-name {
  background: #fff;
  border-left: solid 8px #47a2d3;
  padding: 20px 30px;
  -webkit-box-shadow: 3px 1px 8px -3px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 1px 8px -3px rgba(0, 0, 0, 0.3);
  font-size: 18px;
  margin-top: 25px;
}
@media (max-width: 600px) {
  .related .cate-name {
    padding: 10px;
    font-size: 16px;
    margin-top: 15px;
  }
}
.related .cate-name a {
  text-align: left;
  font-weight: normal;
}

.related-ti::before {
  content: url(../images/all/h1before.png);
  vertical-align: middle;
  padding-right: 10px;
}
@media (max-width: 375px) {
  .related-ti::before {
    content: url(../images/all/h1before2.png);
  }
}

.related-ti::after {
  content: url(../images/all/h1after.png);
  vertical-align: middle;
  padding-left: 10px;
}
@media (max-width: 375px) {
  .related-ti::after {
    content: url(../images/all/h1after2.png);
  }
}

.relate-newxtclone {
  position: absolute;
  bottom: 50%;
  right: 150px;
}
@media (max-width: 1680px) {
  .relate-newxtclone {
    right: 0;
  }
}

.relate-prevclone {
  position: absolute;
  bottom: 50%;
  left: 150px;
}
@media (max-width: 1680px) {
  .relate-prevclone {
    left: 0;
  }
}

.relate-clone {
  position: relative;
}

.product-cate:hover .cate-name {
  background: #47a2d3;
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/* .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url(../images/all/pre.png);
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url(../images/all/next.png);
} */
.video-item h3 {
  color: #47a2d3;
  margin: 0 0 30px 0;
  padding-bottom: 5px;
  display: inline-block;
  border-bottom: 1px dotted #47a1d3;
}

.video-item {
  margin-top: 20px;
}

.video_title {
  margin-bottom: 30px;
}

.video_title h4 {
  color: #47a2d3;
}

.about_CHIA p {
  line-height: 1.86;
  margin: 0 0 2.7% 0;
}

.about_CHIA .about_video {
  padding-left: 0px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .about_CHIA .about_video {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .about_CHIA .about_video {
    padding-right: 0px;
  }
}

.certification li {
  line-height: 1.86;
  border-bottom: 1px dotted #47a2d3;
  padding-bottom: 5px;
}

.certification {
  margin-bottom: 30px;
}

.Corporate_app:nth-child(odd) {
  border-right: 2px solid rgba(187, 187, 187, 0.6588235294);
  margin-bottom: 30px;
}

.Corporate_app {
  width: 50%;
  float: left;
}

.Corporate_about .number {
  font-size: 72px;
  color: rgba(187, 187, 187, 0.6588235294);
  font-weight: bold;
  display: inline-block;
  vertical-align: top;
  margin: 0 30px;
}

.Corporate_app-txt {
  display: inline-block;
  width: calc(100% - 162px);
}

.Corporate_app-txt h4 {
  margin-bottom: 20px;
}

.Corporate_about h4 {
  font-size: 20px;
  font-weight: bold;
  color: #47a2d3;
}

.Corporate_about p {
  line-height: 1.86;
  margin: 0 0 2.7% 0;
}

.Corporate_app:nth-child(odd) hr {
  display: none;
  margin-top: 30px;
  margin-bottom: 30px;
  border: 0;
  border-top: 2px solid rgba(187, 187, 187, 0.6588235294);
}

.certification ul {
  padding: 0;
}

@media (max-width: 991px) {
  .Corporate_app {
    width: 100%;
    float: none;
  }
  .Corporate_app:nth-child(odd) {
    border-right: 0;
  }
  .Corporate_app:nth-child(odd) hr {
    display: block;
  }
}
@media (max-width: 480px) {
  .Corporate_app-txt {
    display: block;
    width: 100%;
  }
  .Corporate_about .number {
    display: block;
    margin: 0;
  }
  .certification ul {
    padding: 0;
  }
  .certification {
    margin-bottom: 0px;
  }
}
table tr th, table tr td {
  text-align: center;
  padding: 10px;
  border: 1px solid #f1f1f1;
}

table tr:first-child th {
  background: #47a2d3;
  color: #fff;
}

table tr th:first-child {
  white-space: nowrap;
  vertical-align: middle;
}

.table-spec {
  width: 100%;
}

.th-left {
  text-align: left;
}

.tr-bg {
  background: #e4e4e4;
}

table tr th {
  background: #efefef;
}

.sptd-bottom {
  text-align: left;
  padding: 12px;
}

.combination {
  padding: 0 30px;
}

.new_re {
  float: left;
  width: 50%;
}

.new_Recycle {
  width: 45%;
  float: left;
}

.new_rpe {
  width: 55%;
  float: left;
}

@media (max-width: 991px) {
  .table-spec::before {
    content: url(../images/all/scroll.png);
    position: absolute;
    top: 0;
    left: 0;
  }
}
.feature_li li {
  line-height: 1.86;
}

.pdshow-video-page {
  float: left;
  width: 50%;
  margin-top: 20px;
}

.pdshow-video-page iframe {
  max-width: 97%;
}

.pro_img {
  width: 205px;
  margin-bottom: 20px;
}

p.f-title {
  font-size: 18px;
  color: #47a2d3;
}

@media (max-width: 992px) {
  .new_Recycle {
    width: 100%;
    float: none;
  }
  .new_rpe {
    width: 100%;
    float: none;
  }
}
@media (max-width: 768px) {
  .new_re {
    float: none;
    width: 100%;
  }
  .pdshow-video-page {
    float: none;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .feature_li ul {
    padding-left: 15px;
  }
}
/**
* Simple fade transition,
*/
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.video-img {
  position: relative;
}

.video-hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 60px;
  opacity: 1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.31);
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.video-img .img-responsive:hover {
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.table.tablist-style3 tr td {
  vertical-align: middle;
}

.news_Brand img {
  padding: 5px;
}

.news_Brand {
  text-align: center;
}

.pete {
  float: left;
  width: 33.3%;
  text-align: center;
}
.pete p {
  font-weight: bold;
  color: #585f69;
  margin-top: 10px;
}

.material-item-content {
  float: left;
  width: 66.6%;
}
.material-item-content h4 {
  font-weight: bold;
  color: #585f69;
  font-size: 20px;
}
.material-item-content ul {
  padding: 0 20px;
}
.material-item-content li {
  line-height: 1.86;
}

.material-item {
  border-top: 1px solid #f1f1f1;
  padding-top: 30px;
}

.material-item-content > div {
  margin-bottom: 30px;
}

.qa_one p {
  line-height: 1.86;
}

.qa_turnkey {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.qa_turnkey ul {
  padding: 0 20px;
}

.qa_turnkey h4 {
  color: #47a2d3;
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.form-horizontal .control-label {
  text-align: left;
}

.container_faq #faqcate {
  background: #83c0e1;
  padding: 15px 15px 0px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: #fff;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.container_faq #faqlist {
  width: 80%;
  margin: 0 auto;
}

.container_faq .panel {
  background-color: #fff;
  border: 0px solid transparent;
}

.container_faq .panel-default {
  border-color: none;
}

.container_faq .panel-default > .panel-heading {
  background: none;
  border-color: none;
  color: #333333;
}

.container_faq .panel-group .panel-heading {
  border-bottom: 1px solid #47a2d3;
}

.container_faq .panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid #47a2d3;
}

@media (max-width: 768px) {
  .pete {
    float: none;
    width: 100%;
    text-align: center;
  }
  .material-item-content {
    float: none;
    width: 80%;
    margin: 0 auto;
    padding-top: 30px;
  }
  .container_faq #faqcate {
    width: 100%;
  }
  .container_faq #faqlist {
    width: 100%;
  }
  .qa_turnkey {
    width: 100%;
  }
}
.tablist-style2 {
  overflow: hidden;
}
.tablist-style2 .msg-list {
  float: left;
  width: calc(50% - 1px);
  position: relative;
  margin-bottom: 60px;
  text-align: center;
  padding: 0 10px;
}
@media (max-width: 768px) {
  .tablist-style2 .msg-list {
    float: none;
    width: calc(100% - 0px);
    padding: 0;
    margin-bottom: 30px;
  }
}
.tablist-style2 .msg-list .newsTitle {
  position: absolute;
  bottom: 33px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 18px;
  background: #fff;
  border-left: solid 8px #47a2d3;
  padding: 30px 50px;
  -webkit-box-shadow: 3px 1px 8px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 1px 8px -3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .tablist-style2 .msg-list .newsTitle {
    position: static;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .tablist-style2 .msg-list .newsTitle {
    padding: 20px;
  }
}

.msg-list {
  overflow: hidden;
  position: relative;
}

.msg-list a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}

.msg-list:hover .newsTitle {
  background: #47a2d3;
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.msgshow_img {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 425px) {
  .msgshow_img {
    margin-bottom: 30px;
  }
}

.msgshow-txtNormal {
  border-top: solid 3px #47a2d3;
  position: relative;
  padding: 40px 0 65px;
  overflow: hidden;
}

.msgshow-txtNormal::after {
  content: url(../images/pd/bb.jpg);
  bottom: 0;
  position: absolute;
}

.appshow .appshow-block {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .appshow .appshow-block {
    margin-bottom: 15px;
  }
}
.appshow .appshow-block .appshow-ti {
  font-size: 18px;
  color: #47a2d3;
}

.application {
  line-height: 2em;
}
.application p + p {
  margin-top: 20px;
}

.case h3 {
  font-size: 20px;
  color: #47a2d3;
}
@media (max-width: 600px) {
  .case h3 {
    font-size: 18px;
  }
}

.case_info {
  border-bottom: 1px solid #47a2d3;
  padding-bottom: 30px;
}
.case_info > ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.case_info > ul::after {
  content: "";
  display: table;
  clear: both;
}
.case_info > ul li {
  margin-bottom: 5px;
  width: calc(20% - 15px);
  float: left;
  background-color: #47a2d3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 180px;
  color: #fff;
}
.case_info > ul li:not(:nth-child(5n)) {
  margin-right: 18.75px;
}
@media (max-width: 991px) {
  .case_info > ul li {
    width: calc(33% - 5px);
  }
  .case_info > ul li:not(:nth-child(5n)) {
    margin-right: auto;
  }
  .case_info > ul li:not(:nth-child(3n)) {
    margin-right: 7.5px;
  }
}
@media (max-width: 479px) {
  .case_info > ul li {
    width: 100%;
    float: none;
    height: 100px;
  }
}
.case_info > ul strong {
  display: block;
  color: #fff;
  font-weight: normal;
  padding-bottom: 2px;
  position: relative;
  font-weight: bold;
}
.case_info > ul strong::after {
  content: "";
  display: block;
  margin: 10px auto;
  background-image: url(../images/icon-arrow.svg);
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
}
@media (max-width: 479px) {
  .case_info > ul strong::after {
    margin: 2px auto;
  }
}
.case_info ul + p {
  margin-top: 50px;
  padding: 0 50px;
}
@media (max-width: 767px) {
  .case_info ul + p {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .case_info ul + p {
    margin-top: 30px;
  }
}

.case_opt {
  margin-top: 50px;
}
@media (max-width: 600px) {
  .case_opt {
    margin-top: 30px;
  }
}
.case_opt > h3 {
  margin-bottom: 30px;
}
.case_opt > ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 767px) {
  .case_opt > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.case_opt > ul li {
  width: 49%;
  margin-right: 1%;
  padding: 10px 20px 10px 48px;
  border: 1px solid #47a2d3;
  border-radius: 50px;
  margin-bottom: 10px;
  position: relative;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
@media (max-width: 767px) {
  .case_opt > ul li {
    width: 100%;
    margin-right: 0;
  }
}
.case_opt > ul li::before {
  content: "";
  position: absolute;
  background-image: url(../images/icon-ok-b.svg);
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 20px;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.case_opt > ul li:hover {
  color: #fff;
  background-color: #47a2d3;
}
.case_opt > ul li:hover::before {
  background-image: url(../images/icon-ok.svg);
}

.case_pic {
  margin-top: 50px;
}
@media (max-width: 600px) {
  .case_pic {
    margin-top: 30px;
  }
}
.case_pic > .row {
  margin-top: -30px;
}
@media (max-width: 600px) {
  .case_pic > .row {
    margin-top: -20px;
  }
}
.case_pic .col-sm-6 {
  padding-top: 30px;
}
@media (max-width: 600px) {
  .case_pic .col-sm-6 {
    padding-top: 20px;
  }
}
.case_pic img {
  -webkit-transition: ease-in 0.2s;
  transition: ease-in 0.2s;
}
.case_pic p {
  margin: 10px 0;
  color: #47a1d3;
  font-size: 18px;
}
.case_pic a {
  display: block;
  overflow: hidden;
  position: relative;
}
.case_pic a:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}
.case_pic a:hover:before {
  opacity: 1;
}
.case_pic a:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.video-responsive {
  margin-top: 50px;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.tablist-style3 {
  border: none;
}
@media (max-width: 767px) {
  .tablist-style3 {
    width: 400px;
    max-width: 100%;
    margin: auto;
  }
}
.tablist-style3 thead {
  display: none;
}
.tablist-style3 tr {
  display: block;
  border: 3px solid #ddd;
  -webkit-box-shadow: 0 4px 4px #ddd;
          box-shadow: 0 4px 4px #ddd;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
.tablist-style3 tr + tr {
  margin-top: 30px;
}
.tablist-style3 tr:hover {
  border-color: #47a1d3;
}
.tablist-style3 tr td {
  text-align: left;
}
.tablist-style3 tr td:first-child {
  width: 400px;
  max-width: 400px;
  text-align: center;
}
@media (max-width: 1280px) {
  .tablist-style3 tr td:first-child {
    width: 350px;
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .tablist-style3 tr td:first-child {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .tablist-style3 tr td {
    width: 100%;
    max-width: 100%;
  }
}
.tablist-style3 img {
  width: 375px;
  max-width: 100%;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}
@media (max-width: 1280px) {
  .tablist-style3 img {
    width: 330px;
  }
}
@media (max-width: 767px) {
  .tablist-style3 img {
    width: 375px;
  }
}
.tablist-style3 .more {
  margin-top: 30px;
}
.tablist-style3 .more a {
  display: inline-block;
  padding: 5px 20px;
  -webkit-box-shadow: 3px 1px 8px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 1px 8px -3px rgba(0, 0, 0, 0.3);
  background: #fff;
  border-left: solid 8px #47a2d3;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.tablist-style3 .more:hover a {
  background: #47a2d3;
  color: #fff;
}

.table.tablist-style3 tr td {
  vertical-align: top;
  border: none;
}
@media (max-width: 767px) {
  .table.tablist-style3 tr td {
    display: block;
  }
}

.newsTitle {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 5px;
}

.newsTxt01 {
  color: #444444;
}

.news_content h4 {
  color: #47a2d3;
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}
.news_content h4 a {
  color: #47a2d3;
  border-bottom: 1px solid #47a2d3;
}
.news_content h4 a:hover {
  color: #333;
  border-bottom: 1px solid #333;
}
.news_content .news_pic {
  margin: 20px 0;
  text-align: center;
}
.news_content .news_pic img {
  margin-bottom: 5px;
}
.news_content .news_pic span {
  display: block;
  font-size: 15px;
  padding-top: 10px;
  color: #acacac;
}
.news_content ul li {
  line-height: 1.86;
}
.news_content ol li {
  line-height: 1.86;
}
.news_content span.news-txt {
  padding: 30px;
  display: block;
  font-style: italic;
}
.news_content a {
  border-bottom: 1px solid #acacac;
}
.news_content a:hover {
  border-bottom: 1px solid #47a2d3;
}

a.out {
  font-weight: bold;
}

.page-header {
  text-align: center;
  padding: 0;
  margin: 0;
}
.page-header .new-title {
  margin-bottom: 70px;
  font-family: "Ubuntu";
  position: relative;
  /*   background: #000; */
}
.page-header .new-title span {
  position: relative;
  display: inline-block;
  padding: 0 60px;
}
.page-header .new-title span::before {
  content: url(../images/all/h1before.png);
  vertical-align: middle;
  padding-right: 10px;
  position: absolute;
  left: 0;
}
.page-header .new-title span::after {
  content: url(../images/all/h1after.png);
  vertical-align: middle;
  padding-left: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

.news_content h2 {
  color: #47a2d3;
  margin-top: 20px;
}
.news_content table {
  margin-top: 30px;
  margin-bottom: 20px;
}
.news_content table tbody tr th {
  font-weight: normal;
  background-color: #47a2d3;
  color: #fff;
}
.news_content table tr:first-child th {
  background: #dddddd;
}
.news_content table tbody tr th,
.news_content table tbody tr td {
  text-align: left;
}

.news-pro-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 30px;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: 30px;
}
.news-pro-list .news-pro-box {
  width: 33.3333333333%;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .news-pro-list .news-pro-box {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .news-pro-list .news-pro-box + .news-pro-box {
    margin-top: 20px;
  }
}
.news-pro-list .news-img {
  margin-bottom: 15px;
}

.news-btn {
  margin-top: 20px;
}
.news-btn a {
  display: inline-block;
  font-size: 18px;
  background: #fff;
  border-left: solid 8px #47a2d3;
  padding: 20px 35px;
  -webkit-box-shadow: 3px 1px 8px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 1px 8px -3px rgba(0, 0, 0, 0.3);
}
.news-btn a:hover {
  background: #47a2d3;
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.global {
  font-size: 17px;
  line-height: 1.86;
}

.global-wrap {
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .global-wrap .col-md-9, .global-wrap .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
#accordionGlobal .card {
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
#accordionGlobal .card-header {
  padding: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
#accordionGlobal .card-header h2 {
  margin: 0;
}
#accordionGlobal .card-header .btn {
  display: block;
  color: #5e5c5c;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  position: relative;
  border-radius: 0;
}
#accordionGlobal .card-header .btn h6 {
  font-size: 18px;
}
#accordionGlobal .card-header .btn:hover {
  text-decoration: none;
  color: #63b0da;
  border-bottom: 2px solid #63b0da;
}
#accordionGlobal .card-header .btn:focus, #accordionGlobal .card-header .btn:active:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
}
#accordionGlobal .card-header .btn::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  display: block;
  background-color: #63b0da;
  position: absolute;
  right: 30px;
  top: 11px;
}
#accordionGlobal .card-header .btn[aria-expanded=true] {
  color: #63b0da;
  border-bottom: 2px solid #63b0da;
}
#accordionGlobal .card-body {
  padding: 1.25rem;
}

#accordionGlobal .card-header .btn[aria-expanded=true] h6::after {
  background-color: rgba(0, 0, 0, 0);
}

#accordionGlobal .card-header .btn h6::before, #accordionGlobal .card-header .btn h6::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #fff;
  z-index: 1;
}

#accordionGlobal .card-header .btn h6::before {
  top: 23px;
  width: 13px;
  height: 1px;
  right: 36px;
}

#accordionGlobal .card-header .btn h6::after {
  top: 17px;
  width: 1px;
  right: 42px;
  height: 13px;
}

#accordionGlobal .card-body ul {
  padding-left: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -30px;
}

@media (max-width: 1279px) {
  #accordionGlobal .card-body ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 991px) {
  #accordionGlobal .card-body ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (max-width: 375px) {
  #accordionGlobal .card-body ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#accordionGlobal .card-body ul li {
  width: calc(50% - 30px);
  margin-right: 30px;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 0.5em;
}

@media (max-width: 1279px) {
  #accordionGlobal .card-body ul li {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  #accordionGlobal .card-body ul li {
    width: calc(50% - 30px);
    margin-right: 30px;
  }
}
@media (max-width: 375px) {
  #accordionGlobal .card-body ul li {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .container_msg51 .tablist-style2 .msg-list .newsTitle {
    margin-top: 20px;
  }
}
.container_msg51 #tablistAll {
  display: block;
}
.container_msg51 .text_list {
  display: none;
}
.container_msg51 .tablist-style1,
.container_msg51 .tablist-style2 {
  display: none;
}

.allList .pic {
  width: 100%;
  margin: auto;
  text-align: center;
  margin-bottom: 90px;
}
@media (max-width: 1480px) {
  .allList .pic {
    margin-bottom: 45px;
  }
}
@media (max-width: 991px) {
  .allList .pic {
    margin-bottom: 0;
  }
}

.link_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -30px 80px -30px;
}
@media (max-width: 1480px) {
  .link_box {
    margin: 0 0 40px 0;
  }
}
.link_box .link_item {
  width: 33.3%;
  padding: 30px 20px;
}
@media (max-width: 1200px) {
  .link_box .link_item {
    width: 50%;
    padding: 20px;
  }
}
@media (max-width: 680px) {
  .link_box .link_item {
    width: 100%;
    padding: 10px 0;
  }
}
.link_box .link_item a {
  width: 100%;
  display: inline-block;
  font-size: 18px;
  background: #fff;
  border-left: solid 8px #47a2d3;
  padding: 30px 50px;
  -webkit-box-shadow: 3px 1px 8px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 1px 8px -3px rgba(0, 0, 0, 0.3);
}
.link_box .link_item a:hover {
  background: #47a2d3;
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .link_box .link_item a {
    padding: 20px;
  }
}

.tp_list_box {
  list-style: none;
  padding-left: 0;
}
.tp_list_box .tp_list_item {
  background: -webkit-gradient(linear, left top, right top, from(#efefef), color-stop(32%, #ffffff));
  background: linear-gradient(90deg, #efefef 0%, #ffffff 32%);
}
@media (max-width: 600px) {
  .tp_list_box .tp_list_item {
    background: -webkit-gradient(linear, left top, right top, from(#efefef), color-stop(70%, #ffffff));
    background: linear-gradient(90deg, #efefef 0%, #ffffff 70%);
  }
}
.tp_list_box .tp_list_item:nth-child(odd) {
  background: -webkit-gradient(linear, right top, left top, from(#efefef), color-stop(32%, #ffffff));
  background: linear-gradient(270deg, #efefef 0%, #ffffff 32%);
}
@media (max-width: 600px) {
  .tp_list_box .tp_list_item:nth-child(odd) {
    background: -webkit-gradient(linear, right top, left top, from(#efefef), color-stop(70%, #ffffff));
    background: linear-gradient(270deg, #efefef 0%, #ffffff 70%);
  }
}
.tp_list_box .tp_list_item:nth-child(odd) .text {
  padding-left: 70px;
}
@media (max-width: 1440px) {
  .tp_list_box .tp_list_item:nth-child(odd) .text {
    padding-left: 10px;
  }
}
@media (max-width: 600px) {
  .tp_list_box .tp_list_item:nth-child(odd) .text {
    padding-left: 0;
  }
}
.tp_list_box .tp_list_item:nth-child(even) .text {
  padding-right: 50px;
}
@media (max-width: 1440px) {
  .tp_list_box .tp_list_item:nth-child(even) .text {
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
  .tp_list_box .tp_list_item:nth-child(even) .text {
    padding-right: 0;
  }
}
.tp_list_box .tp_list_item .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
}
.tp_list_box .tp_list_item .wrap .hreh {
  position: absolute;
  top: -160px;
}
@media (max-width: 991px) {
  .tp_list_box .tp_list_item .wrap .hreh {
    top: -110px;
  }
}
.tp_list_box .tp_list_item .item {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: space-around;
      -ms-flex-line-pack: distribute;
          align-content: space-around;
}
.tp_list_box .tp_list_item .item.text .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 1440px) {
  .tp_list_box .tp_list_item .item.text {
    width: 70%;
    margin: 50px 0;
  }
}
@media (max-width: 768px) {
  .tp_list_box .tp_list_item .item.text {
    margin: 30px 0;
  }
}
@media (max-width: 600px) {
  .tp_list_box .tp_list_item .item.text {
    width: 100%;
    margin: 20px 0 0 0;
  }
}
@media (max-width: 1440px) {
  .tp_list_box .tp_list_item .item.pic {
    width: 30%;
  }
}
@media (max-width: 600px) {
  .tp_list_box .tp_list_item .item.pic {
    width: 100%;
    text-align: center;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
}
.tp_list_box .tp_list_item .item.pic img {
  mix-blend-mode: multiply;
}
@media (max-width: 600px) {
  .tp_list_box .tp_list_item .item.pic img {
    max-width: 300px;
  }
}
.tp_list_box .tp_list_item h3 {
  color: #47a2d3;
  border-bottom: 1px solid #47a2d3;
  font-weight: 600;
  line-height: 1.5;
  padding-bottom: 6px;
  display: inline-block;
  margin-top: 0;
}
.tp_list_box .tp_list_item h4 {
  color: #acacac;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 22px;
  margin-top: 0;
  width: 100%;
}
@media (max-width: 1440px) {
  .tp_list_box .tp_list_item h4 {
    margin-bottom: 10px;
  }
}
.tp_list_box .tp_list_item h5 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 6px;
  width: 100%;
}
.tp_list_box .tp_list_item ul {
  width: 100%;
}
.tp_list_box .tp_list_item ul.letter {
  list-style: upper-latin;
  padding-left: 20px;
}
.tp_list_box .tp_list_item ul.number {
  list-style: decimal;
  padding-left: 20px;
}
.tp_list_box .tp_list_item li,
.tp_list_box .tp_list_item p {
  width: 100%;
  line-height: 1.5;
  font-size: 18px;
  margin-bottom: 4px;
}

@media (max-width: 991px) {
  .container_msg53 .page-header h1,
  .container_msg54 .page-header h1 {
    margin-bottom: 35px;
  }
}
.container_msg53 .msgshow_img,
.container_msg54 .msgshow_img {
  display: none;
}
.container_msg53 .msgshow-txtNormal::after,
.container_msg54 .msgshow-txtNormal::after {
  display: none;
}
.container_msg53 .msgshow-txtNormal,
.container_msg54 .msgshow-txtNormal {
  border-top: none;
  padding: 0;
}