@charset "UTF-8";
/**
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.5.0 (11/03/2018)
 */
/**
 * Lightcase settings
 *
 * Note: Override default settings for your project without touching this source code by simply
 * defining those variables within a SASS map called '$lightcase-custom'.
 *
 * // Example usage
 * $lightcase-custom: (
 *   'breakpoint': 768px
 * );
 */
@font-face {
  font-family: 'lightcase';
  src: url("fonts/font/lightcase.eot");
  src: url("fonts/font/lightcase.eot#iefix") format("embedded-opentype"), url("fonts/font/lightcase.woff") format("woff"), url("fonts/font/lightcase.ttf") format("truetype"), url("fonts/font/lightcase.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class*='lightcase-icon-']:before {
  font-family: 'lightcase', sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* Codes */
.lightcase-icon-play:before {
  content: '\e800';
}

.lightcase-icon-pause:before {
  content: '\e801';
}

.lightcase-icon-close:before {
  content: '\e802';
}

.lightcase-icon-prev:before {
  content: '\e803';
}

.lightcase-icon-next:before {
  content: '\e804';
}

.lightcase-icon-spin:before {
  content: '\e805';
}

/**
 * Mixin providing icon defaults to be used on top of font-lightcase.
 *
 * Example usage:
 * @include icon(#e9e9e9)
 */
/**
 * Mixin providing icon defaults including a hover status to be used
 * on top of font-lightcase.
 *
 * Example usage:
 * @include icon-hover(#e9e9e9, #fff)
 */
/**
 * Provides natural content overflow behavior and scrolling support
 * even so for touch devices.
 *
 * Example usage:
 * @include overflow()
 */
/**
 * Neutralizes/resets dimensions including width, height, position as well as margins,
 * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
 *
 * Example usage:
 * @include clear(true)
 *
 * @param boolean $important
 */
@-webkit-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

#lightcase-case {
  display: none;
  position: fixed;
  z-index: 2002;
  top: 50%;
  left: 50%;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

@media screen and (max-width: 480px) {
  html[data-lc-type=inline] #lightcase-case,
  html[data-lc-type=ajax] #lightcase-case {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 55px 0 70px 0;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
  }
}

@media screen and (min-width: 481px) {
  html:not([data-lc-type=error]) #lightcase-content {
    position: relative;
    z-index: 1;
    text-shadow: none;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -webkit-backface-visibility: hidden;
  }
}

@media screen and (min-width: 481px) {
  html[data-lc-type=image] #lightcase-content,
  html[data-lc-type=video] #lightcase-content {
    background-color: #fff;
  }
}

html[data-lc-type=inline] #lightcase-content,
html[data-lc-type=ajax] #lightcase-content,
html[data-lc-type=error] #lightcase-content {
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

@media screen and (max-width: 480px) {
  html[data-lc-type=inline] #lightcase-content,
  html[data-lc-type=ajax] #lightcase-content,
  html[data-lc-type=error] #lightcase-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}

html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 480px) {
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
    padding: 15px;
  }
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner > * {
    width: 100% !important;
    max-width: none !important;
  }
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *:not(iframe),
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *:not(iframe),
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner > *:not(iframe) {
    height: auto !important;
    max-height: none !important;
  }
}

@media screen and (max-width: 480px) {
  #lightcase-content .lightcase-contentInner {
    max-height: 65vh;
  }
  html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 480px) and (min-width: 481px) {
  html[data-lc-type=image] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=video] #lightcase-content .lightcase-contentInner {
    line-height: 0.75;
  }
}

@media screen and (max-width: 480px) {
  #lightcase-content .lightcase-contentInner img {
    display: block;
    max-height: 100% !important;
    margin: 0 auto;
  }
}

html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
  position: relative;
  overflow: hidden !important;
}

@media screen and (max-width: 480px) {
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}

@media screen and (min-width: 481px) {
  html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    padding: 30px;
    overflow: visible;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 480px) {
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #fff;
  }
}

@media screen and (min-width: 481px) {
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #333;
  }
}

#lightcase-case p.lightcase-error {
  margin: 0;
  font-size: 17px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa;
}

@media screen and (max-width: 480px) {
  #lightcase-case p.lightcase-error {
    padding: 30px 0;
  }
}

@media screen and (min-width: 481px) {
  #lightcase-case p.lightcase-error {
    padding: 0;
  }
}

.lightcase-isMobileDevice .lightcase-open body {
  max-width: 100%;
  max-height: 100%;
}

#lightcase-info {
  position: absolute;
  padding-top: 15px;
}

#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
  text-overflow: ellipsis;
}

#lightcase-info #lightcase-title {
  font-size: 17px;
  color: #fff;
}

@media screen and (max-width: 480px) {
  #lightcase-info #lightcase-title {
    position: fixed;
    top: 10px;
    left: 0;
    max-width: 87.5%;
    padding: 5px 15px;
    background: #333;
  }
}

#lightcase-info #lightcase-caption {
  clear: both;
  font-size: 13px;
  color: #fff;
}

#lightcase-info #lightcase-sequenceInfo {
  font-size: 11px;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .lightcase-fullScreenMode #lightcase-info {
    padding-left: 15px;
    padding-right: 15px;
  }
  html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
    position: static;
  }
}

#lightcase-loading {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  position: fixed;
  z-index: 2001;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  font-size: 32px;
  text-shadow: 0 0 15px #fff;
  -moz-transform-origin: 50% 53%;
  -webkit-animation: lightcase-spin 0.5s infinite linear;
  animation: lightcase-spin 0.5s infinite linear;
}

#lightcase-loading, #lightcase-loading:focus {
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}

#lightcase-loading > span {
  display: inline-block;
  text-indent: -9999px;
}

a[class*='lightcase-icon-'] {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  outline: none;
  cursor: pointer;
}

a[class*='lightcase-icon-'], a[class*='lightcase-icon-']:focus {
  text-decoration: none;
  color: white;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}

a[class*='lightcase-icon-'] > span {
  display: inline-block;
  text-indent: -9999px;
}

a[class*='lightcase-icon-']:hover {
  color: white;
  text-shadow: 0 0 15px white;
}

.lightcase-isMobileDevice a[class*='lightcase-icon-']:hover {
  color: #aaa;
  text-shadow: none;
}

a[class*='lightcase-icon-'].lightcase-icon-close {
  position: fixed;
  top: 15px;
  right: 15px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  outline: none;
}

a[class*='lightcase-icon-'].lightcase-icon-prev {
  left: 15px;
}

a[class*='lightcase-icon-'].lightcase-icon-next {
  right: 15px;
}

a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
  left: 50%;
  margin-left: -0.5em;
}

@media screen and (min-width: 481px) {
  a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
    opacity: 0;
  }
}

@media screen and (max-width: 480px) {
  a[class*='lightcase-icon-'] {
    bottom: 15px;
    font-size: 24px;
  }
}

@media screen and (min-width: 481px) {
  a[class*='lightcase-icon-'] {
    bottom: 50%;
    margin-bottom: -0.5em;
  }
  a[class*='lightcase-icon-']:hover,
  #lightcase-case:hover ~ a[class*='lightcase-icon-'] {
    opacity: 1;
  }
}

#lightcase-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 2000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: #333;
}

@media screen and (max-width: 480px) {
  #lightcase-overlay {
    opacity: 0.95 !important;
  }
}

html.open-fixed {
  overflow: hidden;
  position: relative;
  max-height: 100%;
  height: 100%;
  width: 100%;
}

/* ==========================================================================
    new header 2020/12
 ==========================================================================*/
#headerbox {
  height: 90px;
  width: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background: #fff;
}

#headerbox .zoom {
  max-width: 1790px;
  margin: 0 auto;
  padding: 25px 25px 0 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#headerbox .logo {
  width: 120px;
  height: 46px;
}

#headerbox .logo a {
  display: block;
  height: 100%;
  background: url("images/logo.png") center no-repeat;
  background-size: contain;
}

#headerbox .search {
  width: 45px;
  position: relative;
  text-align: center;
}

#headerbox .search .toggle {
  color: #2661bf;
  cursor: pointer;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

#headerbox .search .toggle i {
  font-size: 24px;
}

#headerbox .search .box {
  width: 265px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 70px;
  background-color: #606060;
  border-radius: 45px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0.5s, top 0.5s;
  transition: opacity 0.5s, visibility 0.5s, top 0.5s;
}

#headerbox .search .box .form-control {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 48px;
  background-color: #606060;
  color: #fff;
  font-size: 14px;
}

#headerbox .search .box .form-control:hover, #headerbox .search .box .form-control:focus {
  background-color: #484848;
}

#headerbox .search .box button {
  width: 35px;
  height: 35px;
  margin-top: -17.5px;
  padding: 0 10px;
  position: absolute;
  right: 8px;
  top: 50%;
  border-radius: 50%;
  background-color: #fff;
  color: #606060;
}

#headerbox .search .box button i {
  font-size: 16px;
  color: #606060;
  position: relative;
  right: 2px;
}

#headerbox .search.show .toggle, #headerbox .search.show2 .toggle, #headerbox .search.active .toggle {
  color: #83abeb;
}

#headerbox .search.show .box, #headerbox .search.show2 .box, #headerbox .search.active .box {
  top: 60px;
  opacity: 1;
  visibility: visible;
}

#headerbox ul.tools {
  padding-top: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  text-align: center;
}

#headerbox ul.tools > li {
  margin-right: 8px;
  position: relative;
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
}

#headerbox ul.tools > li.lang .toggle {
  cursor: pointer;
  color: #666666;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

#headerbox ul.tools > li.lang.show i, .no-touch #headerbox ul.tools > li.lang.show2 i {
  color: #83abeb;
}

#headerbox ul.tools > li.lang.show ul.sub, .no-touch #headerbox ul.tools > li.lang.show2 ul.sub {
  opacity: 1;
  visibility: visible;
  top: 60px;
}

#headerbox ul.tools > li.lang ul.sub {
  width: 105px;
  padding: 10px;
  position: absolute;
  left: -35px;
  top: 70px;
  border-radius: 10px;
  background-color: rgba(110, 110, 110, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0.5s, top 0.5s;
  transition: opacity 0.5s, visibility 0.5s, top 0.5s;
}

#headerbox ul.tools > li.lang ul.sub li {
  display: inline-block;
  vertical-align: middle;
}

#headerbox ul.tools > li.lang ul.sub li a {
  padding: 0 5px;
  color: #fff;
  line-height: 32px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.no-touch #headerbox ul.tools > li.lang ul.sub li a:hover {
  opacity: 0.5;
}

#headerbox ul.tools > li .no-touch a:hover i {
  color: #83abeb;
}

#headerbox ul.tools > li i {
  color: #2661bf;
  font-size: 24px;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

#headerbox ul.tools > li.stock {
  margin-right: 0;
}

#headerbox ul.tools > li.stock span {
  color: #555;
  font-weight: bold;
  font-size: 18px;
}

#headerbox .menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: lighter;
  margin-left: 190px;
}

#headerbox .menu ul {
  -webkit-overflow-scrolling: touch;
}

#headerbox .menu ul li {
  float: left;
  padding: 0 35px 0 15px;
}

#headerbox .menu ul li .nav-toggle, #headerbox .menu ul li .title {
  display: block;
  padding: 8px 0 35px 0;
  color: #555555;
  line-height: 25px;
  font-weight: bold;
  cursor: pointer;
}

#headerbox .menu ul li .nav-toggle {
  overflow: hidden;
  position: relative;
}

#headerbox .menu ul li .nav-toggle:after {
  content: '';
  display: block;
  bottom: 0;
  z-index: 50;
  left: 0;
  width: 0;
  height: 3px;
  background: #395BB2;
  position: absolute;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}

#headerbox .menu ul li .nav-toggle span {
  display: table;
  position: relative;
  z-index: 2;
}

#headerbox .menu ul li .nav-toggle.show {
  color: #184387 !important;
}

#headerbox .menu ul li.active .nav-toggle, #headerbox .menu ul li.active .title {
  color: #000;
  font-weight: bold;
}

#headerbox .menu ul li.active .nav-toggle:after {
  opacity: 1;
  width: 150px;
  background-color: #888;
}

.no-touch #headerbox .menu ul li:hover .nav-toggle, .no-touch #headerbox .menu ul li:hover .title {
  color: #395BB2;
}

.no-touch #headerbox .menu ul li:hover .nav-toggle:after {
  width: 100%;
}

#headerbox .menu ul .mCSB_scrollTools {
  opacity: 0;
}

#headerbox .menu ul .mCSB_scrollTools .mCSB_draggerRail {
  background-color: rgba(0, 0, 0, 0.2);
}

#headerbox .menu ul .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #1d2a4b;
}

#headerbox .menu ul .mCSB_inside > .mCSB_container {
  padding-right: 0;
}

#headerbox .menu ul .sub {
  display: none;
  width: 100%;
  max-height: calc(100vh - 110px);
  padding: 40px 0 15px 0;
  position: fixed;
  left: 0;
  top: 90px;
  background-color: rgba(255, 255, 255, 0.95);
  border-top: 3px solid #174387;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#headerbox .menu ul .sub ul.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1750px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 25px;
}

#headerbox .menu ul .sub ul.list li {
  width: calc(100% / 7);
  padding: 0 75px 35px 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 210px;
  min-width: 205px;
}

#headerbox .menu ul .sub ul.list li:nth-last-of-type(1) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

#headerbox .menu ul .sub ul.list li.active a, #headerbox .menu ul .sub ul.list li.active .sub-toggle {
  color: #395BB2;
}

#headerbox .menu ul .sub ul.list li a, #headerbox .menu ul .sub ul.list li .sub-toggle {
  display: block;
  padding: 0 0 15px 0;
  color: #555555;
  font-weight: bold;
  line-height: 24px;
  font-size: 20px;
  -webkit-transition: background 0.5s, color 0.5s;
  transition: background 0.5s, color 0.5s;
}

.no-touch #headerbox .menu ul .sub ul.list li a:hover {
  color: #395BB2;
}

#headerbox .menu ul .sub ul.list li .sub-toggle {
  position: relative;
}

#headerbox .menu ul .sub ul.list li ul.third {
  padding-top: 5px;
}

#headerbox .menu ul .sub ul.list li ul.third li {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

#headerbox .menu ul .sub ul.list li ul.third li.active a {
  color: #83abeb;
}

.no-touch #headerbox .menu ul .sub ul.list li ul.third li.active a:hover {
  color: #395BB2;
}

#headerbox .menu ul .sub ul.list li ul.third li a {
  color: #555555;
  font-size: 16px;
  font-weight: normal;
  border-bottom: none;
}

.no-touch #headerbox .menu ul .sub ul.list li ul.third li a:hover {
  color: #395BB2;
}

#headerbox .menu ul .sub:hover .mCSB_scrollTools {
  opacity: 1;
}

#headerbox .menu ul .sub.sideUp {
  z-index: 1;
}

#headerbox .menu ul .sub.active {
  z-index: 10;
}

#headerbox .menunav-toggle {
  display: none;
  width: 20px;
  height: 35px;
  right: 25px;
  position: absolute;
  top: 12px;
  z-index: 1;
  color: #1d2a4b;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
}

#headerbox .menunav-toggle .bar {
  width: 20px;
  height: 2px;
  position: absolute;
  background-color: #1d2a4b;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#headerbox .menunav-toggle .bar.bar1 {
  top: 17px;
}

#headerbox .menunav-toggle .bar.bar2 {
  top: 24px;
}

#headerbox .menunav-toggle .bar.bar3 {
  top: 31px;
}

#headerbox .menunav-toggle.active .bar {
  top: 26px;
}

#headerbox .menunav-toggle.active .bar.bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#headerbox .menunav-toggle.active .bar.bar2 {
  opacity: 0;
}

#headerbox .menunav-toggle.active .bar.bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (max-width: 1650px) {
  #headerbox .menu {
    margin-left: 25px;
  }
}

@media (max-width: 1500px) {
  #headerbox ul.tools li {
    margin-right: 0;
  }
  #headerbox .menu ul li {
    padding: 0 15px;
  }
  #headerbox .menu ul .sub ul.list li {
    padding: 0 35px 35px 0;
    width: calc(100% / 5);
    max-width: calc(100% / 5);
  }
  #headerbox .menu ul .sub ul.list li ul.third li {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1300px) {
  #headerbox ul.tools li i:before {
    margin: 0;
  }
}

@media (max-width: 1255px) {
  #headerbox .menu {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-right: 20px;
  }
  #headerbox .menu .menuList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #headerbox .menu .menuList li {
    padding: 0 8px;
  }
}

@media (max-width: 1200px) {
  #headerbox {
    height: 60px;
  }
  #headerbox .zoom {
    padding: 14px 25px 0 25px;
  }
  #headerbox .logo {
    width: 80px;
    height: auto;
  }
  #headerbox .menunav-toggle {
    display: block;
  }
  #headerbox ul.tools {
    margin-right: 50px;
    padding-top: 8px;
  }
  #headerbox ul.tools li.lang.show ul.sub, .no-touch #headerbox ul.tools li.lang.show2 ul.sub {
    top: 38px;
  }
  #headerbox ul.tools li.stock {
    padding-left: 10px;
  }
  #headerbox .search.show .box, #headerbox .search.show2 .box, #headerbox .search.active .box {
    top: 38px;
  }
  #headerbox .menu {
    -webkit-transform: translateX(375px);
            transform: translateX(375px);
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    border-top: 3px solid #174387;
    z-index: 100;
    position: fixed;
    top: 60px;
    right: 0;
    background: #fff;
    width: 100%;
    max-width: 375px;
    margin-left: 0;
    overflow-y: auto;
    padding-right: 0;
  }
  #headerbox .menu.show {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  #headerbox .menu .menuList {
    display: block;
  }
  #headerbox .menu .menuList li {
    padding: 0;
  }
  #headerbox .menu ul {
    width: 100%;
    padding: 10px 0 30px 0;
  }
  #headerbox .menu ul li {
    float: none;
    width: 100%;
    padding: 0;
  }
  #headerbox .menu ul li .nav-toggle, #headerbox .menu ul li .title {
    padding: 8px 15px;
  }
  #headerbox .menu ul li .nav-toggle:after {
    content: '\e809';
    font-size: 13px;
    font-family: "fontello";
    height: auto;
    width: auto;
    color: #555;
    right: 15px;
    bottom: auto;
    left: auto;
    top: calc(50% - 12px);
    background-color: transparent;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  #headerbox .menu ul li .nav-toggle.show:after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .no-touch #headerbox .menu ul li:hover .nav-toggle:after {
    color: #395BB2;
    width: auto;
  }
  #headerbox .menu ul .sub {
    display: none;
    position: relative;
    top: auto;
    left: auto;
    border-top: none;
    padding: 0;
    background: #184387;
    max-height: 100%;
    height: auto;
  }
  #headerbox .menu ul .sub ul.list {
    padding: 0;
  }
  #headerbox .menu ul .sub ul.list li {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  #headerbox .menu ul .sub ul.list li a, #headerbox .menu ul .sub ul.list li .sub-toggle {
    font-size: 17px;
    color: #fff;
    padding: 10px 15px;
  }
  .no-touch #headerbox .menu ul .sub ul.list li a:hover, .no-touch #headerbox .menu ul .sub ul.list li .sub-toggle:hover {
    color: #fff;
    background: #2c67b3;
  }
  #headerbox .menu ul .sub ul.list li .sub-toggle {
    position: relative;
  }
  #headerbox .menu ul .sub ul.list li .sub-toggle:after {
    content: '\e809';
    font-size: 13px;
    font-weight: normal;
    font-family: "fontello";
    height: auto;
    width: auto;
    color: #fff;
    right: 15px;
    top: calc(50% - 12px);
    background-color: transparent;
    position: absolute;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  #headerbox .menu ul .sub ul.list li .sub-toggle.show:after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  #headerbox .menu ul .sub ul.list li ul.third {
    display: none;
    border-top: none;
    padding: 0;
  }
  #headerbox .menu ul .sub ul.list li ul.third li a {
    color: #bbc2d4;
    padding: 10px 25px;
  }
  .no-touch #headerbox .menu ul .sub ul.list li ul.third li a:hover {
    color: #fff;
    background: #2c67b3;
  }
  #headerbox .menu .mCSB_scrollTools {
    opacity: 0;
  }
  #headerbox .menu .mCSB_scrollTools .mCSB_draggerRail {
    background-color: rgba(0, 0, 0, 0.2);
  }
  #headerbox .menu .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #1d2a4b;
  }
  #headerbox .menu .mCSB_inside > .mCSB_container {
    padding-right: 0;
  }
  #headerbox .menu:hover .mCSB_scrollTools {
    opacity: 1;
  }
}

@media (max-width: 785px) {
  #headerbox .menunav-toggle {
    top: 10px;
  }
  #headerbox .menu ul .sub ul.list li a, #headerbox .menu ul .sub ul.list li .sub-toggle {
    font-size: 15px;
  }
  #headerbox .menu ul .sub ul.list li ul.third li a {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  #headerbox .zoom {
    padding: 17px 25px 0 25px;
  }
  #headerbox .menunav-toggle {
    top: 10px;
  }
  #headerbox ul.tools {
    margin-right: 40px;
    padding-top: 5px;
  }
  #headerbox ul.tools li {
    margin-left: 8px;
  }
  #headerbox ul.tools li.stock {
    display: none;
  }
  #headerbox .menu {
    max-width: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  #headerbox .search .box {
    width: 230px;
  }
}

.lity, .lity .lity-wrap {
  left: 0px;
}

.max-xs-size .xs-banner {
  width: 100%;
  position: relative;
  min-height: calc(100vh - 60px);
  overflow: hidden;
}

.max-xs-size .xs-banner .video {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 60px);
}

.max-xs-size .xs-banner .video .video-btn {
  position: absolute;
  z-index: 50;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

.max-xs-size .xs-banner .video .video-btn .tit {
  color: #fff;
  padding-bottom: 30px;
  line-height: 1.4;
  font-weight: 600;
  font-size: 34px;
}

.max-xs-size .xs-banner .video .video-btn .box {
  display: inline-block;
  cursor: pointer;
}

.max-xs-size .xs-banner .video .video-btn .box span {
  display: block;
}

.max-xs-size .xs-banner .video .video-btn .box .icon {
  width: 50px;
  height: 50px;
  margin: auto;
}

.max-xs-size .xs-banner .video .video-btn .box .word {
  color: #fff;
  font-weight: 600;
}

.max-xs-size .xs-banner .video video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.max-xs-size .xs-banner .scroll-arrow {
  position: absolute;
  bottom: 60px;
  width: 40px;
  margin: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.max-xs-size .xs-banner .scroll-arrow .icon-down {
  font-size: 40px;
  color: #fff;
}

.max-xs-size .xs-banner .scroll-arrow .icon-down:before {
  margin: 0;
}

#home .banner .slider li.video {
  position: relative;
  height: 38vw;
  overflow: hidden;
}

#home .banner .slider li.video .video-btn {
  position: absolute;
  z-index: 50;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

#home .banner .slider li.video .video-btn .tit {
  color: #fff;
  padding-bottom: 30px;
  line-height: 1.25;
  font-weight: 600;
  max-width: 1200px;
  margin: auto;
}

#home .banner .slider li.video .video-btn .box {
  display: inline-block;
  cursor: pointer;
}

#home .banner .slider li.video .video-btn .box span {
  display: block;
  text-align: center;
}

#home .banner .slider li.video .video-btn .box .icon_mobile {
  display: none;
}

#home .banner .slider li.video .video-btn .box .word {
  color: #fff;
  font-weight: 600;
}

#home .banner .slider li.video video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#home .banner .slider li .video-js {
  width: 100%;
  height: 38vw;
}

#home .banner .slider li .video-js .vjs-tech {
  min-height: 100%;
  min-width: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#home .banner .slider li .video-js .vjs-big-play-button {
  display: none !important;
}

#home .banner .slider li .movie-wrapper {
  position: relative;
}

.max-md-size #home .banner .slider li.video {
  height: 56vw;
}

.max-xs-size #home .banner .slider li.video {
  position: relative;
  height: calc(57vw + 250px);
  display: none;
}

.max-xs-size #home .banner .slider li.video video {
  position: absolute;
  z-index: 50;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /*top:0;left:0;transform:translate(0,0);height:56vw;*/
}

#footer .zoom {
  padding: 0 80px 30px 40px;
  max-width: 1820px;
  margin: 0 auto;
}

@media (max-width: 1800px) {
  #footer .zoom {
    padding: 0 60px 30px 30px;
  }
}

@media (max-width: 785px) {
  #footer .zoom {
    padding: 0 30px 30px 30px;
  }
}

@media (max-width: 576px) {
  #footer .zoom {
    padding: 0 30px 10px 30px;
  }
}

@media (max-width: 350px) {
  #footer .zoom {
    padding: 0 15px 10px 15px;
  }
}

@media (max-width: 785px) {
  #footer {
    padding: 30px 0 0 0;
  }
}

.max-bg-size #footer .goTop.active {
  top: 30px;
}

.max-xs-size #footer .goTop.active {
  top: -20px;
}

.foot-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 992px) {
  .foot-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.foot-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 44%;
  max-width: 705px;
}

.foot-about .logo {
  width: 180px;
}

.foot-about .about-text {
  padding-left: 35px;
  line-height: 1.75;
  margin-top: -6px;
  width: calc(100% - 180px);
}

@media (max-width: 1600px) {
  .foot-about {
    max-width: 100%;
    width: calc(100% - 580px);
  }
}

@media (max-width: 1200px) {
  .foot-about {
    width: calc(100% - 550px);
  }
  .foot-about .logo {
    width: 150px;
  }
  .foot-about .about-text {
    width: calc(100% - 150px);
  }
}

@media (max-width: 1100px) {
  .foot-about {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .foot-about .logo {
    width: 100%;
  }
  .foot-about .logo img {
    max-width: 150px;
  }
  .foot-about .about-text {
    width: 100%;
    padding: 25px 0 0 0;
  }
}

@media (max-width: 992px) {
  .foot-about {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    padding-right: 50px;
  }
  .foot-about .logo {
    width: 150px;
  }
  .foot-about .about-text {
    width: calc(100% - 150px);
    padding: 0 0 0 25px;
  }
}

@media (max-width: 785px) {
  .foot-about {
    padding-right: 0;
  }
  .foot-about .logo {
    text-align: center;
    width: 100%;
  }
  .foot-about .logo img {
    max-width: 120px;
  }
  .foot-about .about-text {
    display: none;
  }
}

@media (max-width: 576px) {
  .foot-about .logo img {
    max-width: 90px;
  }
}

.foot-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: -3px;
  padding-left: 45px;
}

.foot-container .aboutlink {
  padding: 0;
  max-width: 350px;
}

.foot-container .quicklink {
  padding: 0;
  max-width: 525px;
}

.foot-container .quicklink .link-tit {
  padding-top: 5px;
}

.foot-container .link-tit {
  font-weight: bold;
  width: 100%;
  line-height: 1;
  height: 33px;
}

.foot-container ul.linkbox {
  float: left;
  margin-top: 20px;
  width: 100%;
}

.foot-container ul.linkbox li {
  float: left;
  padding: 0 45px 12px 0;
}

.foot-container ul.linkbox li a {
  display: inline-block;
  white-space: nowrap;
  min-width: 130px;
}

@media (max-width: 1750px) {
  .foot-container .aboutlink {
    max-width: 310px;
  }
  .foot-container .quicklink {
    max-width: 465px;
  }
  .foot-container ul.linkbox li {
    padding: 0 25px 12px 0;
  }
}

@media (max-width: 1600px) {
  .foot-container {
    padding-right: 40px;
  }
  .foot-container .aboutlink {
    max-width: 165px;
  }
  .foot-container .quicklink {
    max-width: 290px;
  }
  .foot-container ul.linkbox li {
    padding: 0 15px 12px 0;
  }
}

@media (max-width: 1200px) {
  .foot-container {
    padding-right: 20px;
  }
}

@media (max-width: 992px) {
  .foot-container {
    width: 100%;
    max-width: 100%;
    padding: 25px 0 0 0;
    margin-top: 0;
  }
  .foot-container .aboutlink {
    max-width: 290px;
  }
  .foot-container .quicklink {
    max-width: 435px;
  }
  .foot-container .quicklink .link-tit {
    padding-top: 4px;
  }
}

@media (max-width: 850px) {
  .foot-container .quicklink {
    max-width: 290px;
  }
}

@media (max-width: 785px) {
  .foot-container {
    padding: 0;
  }
  .foot-container .aboutlink {
    display: none;
  }
  .foot-container .quicklink {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .foot-container .quicklink .link-tit {
    display: none;
  }
  .foot-container .link-tit {
    text-align: center;
  }
  .foot-container ul.linkbox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .foot-container ul.linkbox li {
    width: auto;
    padding: 0 10px 10px 10px;
  }
  .foot-container ul.linkbox li a {
    min-width: auto;
  }
}

@media (max-width: 576px) {
  .foot-container .quicklink {
    max-width: 300px;
  }
  .foot-container ul.linkbox li {
    padding: 0 5px 8px 5px;
  }
}

.foot-center {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 35px;
  padding-right: 65px;
}

@media (max-width: 1500px) {
  .foot-center {
    padding-right: 40px;
  }
}

@media (max-width: 992px) {
  .foot-center {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 785px) {
  .foot-center {
    padding-right: 0;
    padding-top: 20px;
  }
}

.followlink {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.followlink .tit {
  font-weight: bold;
}

.followlink ul {
  display: inline-block;
  padding-left: 15px;
}

.followlink ul li {
  display: inline-block;
  padding: 0 5px;
}

.followlink ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 992px) {
  .followlink {
    width: 100%;
    max-width: 100%;
    padding-top: 25px;
  }
}

@media (max-width: 785px) {
  .followlink .tit {
    display: none;
  }
  .followlink ul {
    padding-left: 0;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .followlink ul li {
    padding: 0 4px 10px 4px;
  }
}

.searchbox {
  width: 100%;
  max-width: 360px;
}

.searchbox .form {
  position: relative;
}

.searchbox .form .form-control {
  height: 42px;
  background-color: #113772;
  border: none;
  border-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  color: #fff;
  font-size: 14px;
}

.searchbox .form .form-control::-webkit-input-placeholder, .searchbox .form .form-control::-moz-placeholder, .searchbox .form .form-control::-o-placeholder, .searchbox .form .form-control::-ms-placeholder, .searchbox .form .form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.searchbox .form button {
  width: 42px;
  height: 42px;
  position: absolute;
  right: 5px;
  top: 0;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

@media (max-width: 785px) {
  .searchbox {
    margin-left: auto;
    margin-right: auto;
  }
  .searchbox .form .form-control {
    border-radius: 20px;
  }
}

.foot-bottom {
  background: #113773;
  width: 100%;
  padding: 28px 0;
  line-height: 20px;
}

.foot-bottom .container {
  max-width: 1800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 30px 0 30px;
}

 .foot-bottom .links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.foot-bottom .rights .text {
  /* padding-right: 15px; */
}

.foot-bottom .rights .h-line {
  width: auto;
  height: 16px;
  margin-right: 15px;
  line-height: 1;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.foot-bottom .rights a {
  padding-right: 15px;
}

.foot-bottom .script {
  padding-left: 70px;
  display: inline-block;
}

.foot-bottom .script .text {
  display: inline-block;
}

.foot-bottom .script .text .icon img {
  display: inline-block;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  margin: 0 5px 0 15px;
}

@media (max-width: 1800px) {
  /* .foot-bottom .container {
    padding: 0 128px 0 30px;
  } */
}

@media (max-width: 1500px) {
  /* .foot-bottom .container {
    padding: 0 104px 0 30px;
  } */
}

@media (max-width: 1100px) {
  .foot-bottom .container {
    flex-direction: column;
    align-items: center;
    padding: 0 30px;
  }
  .foot-bottom .rights {
    width: 100%;
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .foot-bottom .rights a:nth-last-of-type(1) {
    padding-right: 0;
  }
  .foot-bottom .script {
    width: 100%;
    max-width: 100%;
    padding: 10px 0 10px 0;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .foot-bottom {
    padding: 20px 0 30px 0;
  }
  .foot-bottom .rights {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .foot-bottom .rights .text {
    padding-right: 0px;
    padding-bottom: 5px;
    width: 100%;
    text-align: center;
  }
  .foot-bottom .rights .d-none {
    display: none;
  }
  .foot-bottom .script {
    max-width: 275px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 0 5px 0;
  }
  .foot-bottom .script .text .icon img {
    margin: 0 5px 0 0;
  }
}

.shareBox {
  background: #184387;
  border-radius: 99em;
  width: 60px;
  position: fixed;
  right: 55px;
  bottom: 110px;
  top: auto;
  z-index: 10;
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}

.shareBox .share-items {
  padding: 10px 0 7px 0;
  width: 44px;
  margin: 0 auto;
  position: relative;
}

.shareBox .share-items li {
  padding: 0 0 3px 0;
}

.shareBox .share-items li a {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
  opacity: 1 !important;
  background: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.5s ease !important;
  transition: all 0.5s ease !important;
}

.shareBox .share-items li a i:before {
  font-size: 18px;
}

.shareBox .share-items li a:hover {
  opacity: 1 !important;
  background: rgba(255, 255, 255, 0.2);
}

.shareBox.show {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.shareBox.active {
  position: absolute;
  bottom: auto;
  top: -240px;
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

@media (max-width: 1400px) {
  .shareBox {
    right: 12px;
    width: 50px;
    bottom: 90px;
  }
  .shareBox.active {
    top: -195px;
    bottom: auto;
  }
  .shareBox .share-items {
    width: 40px;
    padding: 6px 0;
  }
  .shareBox .share-items li {
    padding: 0;
  }
  .shareBox .share-items li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

.max-lg-size .shareBox {
  width: 50px;
  right: 12px;
  bottom: 90px;
}

.max-lg-size .shareBox.active {
  top: -195px;
  bottom: auto;
}

.max-lg-size .shareBox .share-items {
  width: 40px;
  padding: 6px 0;
}

.max-lg-size .shareBox .share-items li {
  padding: 0;
}

.max-lg-size .shareBox .share-items li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.max-sm-size .shareBox {
  width: 40px;
  right: 10px;
  bottom: 80px;
}

.max-sm-size .shareBox.active {
  top: -160px;
  bottom: auto;
}

.max-sm-size .shareBox .share-items {
  width: 32px;
  padding: 4px 0;
}

.max-sm-size .shareBox .share-items li {
  padding: 0;
}

.max-sm-size .shareBox .share-items li a {
  width: 32px;
  height: 32px;
  line-height: 32px;
}

.max-sm-size .shareBox .share-items li a i:before {
  font-size: 16px;
}

.max-xs-size .shareBox {
  bottom: 80px;
}

.max-xs-size .shareBox.active {
  top: -165px;
  bottom: auto;
}

/*cookie + privacy*/
/*# sourceMappingURL=style_nav.css.map */