@charset "UTF-8";
/*  ===== 斷點變數 ===== */
/*  ===== 往上適應 ===== */
/*  ===== 往下適應 ===== */
/*  ===== 範圍內適應 ===== */
/*  ===== 基本漸層背景設定 ===== */
/*  ===== 以 em 計算font-size, letter-spacing(RWD時方便使用) ===== */
/*  ===== 文字置中時的 letter spacing 偏移修正 ===== */
/*  ===== letter spacing 偏移重設 ===== */
/*  ===== firefox font weight bold 統一設定為 normal (firefox在小字為粗體的時候會過粗) ===== */
/*  ===== a連結清除預設值 ===== */
/*  ===== 字體設定（全域/英文/中文) ===== */
/*  ===== 排版相關 ===== */
/*  ===== 超過文字省略為...(可設定行數) ===== */
/*  ===== 捲軸樣式設定 ===== */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

/**
 * Allows you to use retina images at various pixel densities.
 * Examples:
 *
 *   +retina(/images/mypic.jpg, 2);
 *   +retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 *
 * @param  {Value}  $path               The path to the file name minus extension.
 * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * @param  {Value}  $extras: null       Any other `background` values to be added.
 */
header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  z-index: 100;
}

header .logo-imgbox {
  padding: 15px 0 0 60px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1550px) {
  header .logo-imgbox {
    padding: 0 0 0 15px;
  }
}

header .logo-imgbox a {
  display: block;
  width: 175px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media screen and (min-width: 1200px) {
  header .logo-imgbox a:hover {
    width: 195px;
  }
}

header .logo-imgbox a .m-logo.active .__logo {
  display: none;
}

header .logo-imgbox a .m-logo.active .__logo-white {
  display: block;
}

header .logo-imgbox a img {
  width: 100%;
}

header .logo-imgbox a img.__logo-white {
  display: none;
}

header .menu {
  background-color: #0087ca;
  padding-right: 60px;
  padding-left: 60px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 1199px) {
  header .menu {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  header .menu {
    padding-right: 0;
    padding-left: 0;
    height: 60px;
  }
}

header .menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 100%;
}

@media (max-width: 767px) {
  header .menu > ul {
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    position: absolute;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
    right: 0;
    padding: 105px 0 25px;
    background-color: #0087ca;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    width: 100%;
    overflow: hidden;
  }
  header .menu > ul.active {
    -webkit-transform: translate(0, 40%);
            transform: translate(0, 40%);
  }
}

header .menu > ul span {
  color: #fff;
  cursor: default;
}

@media (max-width: 767px) {
  header .menu > ul span {
    display: none;
  }
}

header .menu > ul > li {
  height: 100%;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

header .menu > ul > li:last-child {
  padding-right: 0;
}

header .menu > ul > li:first-child {
  padding-left: 0;
}

@media (max-width: 991px) {
  header .menu > ul > li {
    padding: 0 25px;
  }
}

@media (max-width: 767px) {
  header .menu > ul > li {
    padding: 0 0 20px 0;
  }
}

@media (max-width: 767px) {
  header .menu > ul > li.m-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

header .menu a {
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.125em;
  line-height: 30px;
}

header .menu a:active, header .menu a:hover, header .menu a:visited, header .menu a:focus {
  text-decoration: none;
  outline: 0;
}

@media (max-width: 767px) {
  header .menu a {
    width: 100%;
  }
  header .menu a.hvr-underline-from-left::before {
    content: none;
  }
}

header .__product {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #0087ca;
  width: 100%;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  overflow: hidden;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  padding: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media screen and (max-width: 1460px) {
  header .__product {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 991px) {
  header .__product {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    height: 0;
  }
}

@media (max-width: 767px) {
  header .__product {
    position: relative;
    z-index: 0;
    padding: 0 15px;
  }
}

header .__product.active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  padding-top: 120px;
}

@media screen and (max-width: 1460px) {
  header .__product.active {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 991px) {
  header .__product.active {
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  header .__product.active {
    height: auto;
  }
}

header .__product > div {
  max-width: 1600px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media screen and (max-width: 1600px) {
  header .__product > div {
    max-width: 100%;
  }
}

@media screen and (max-width: 1460px) {
  header .__product > div {
    margin: 40px 50px 0;
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  header .__product > div {
    margin: 40px 0 0 0;
  }
}

@media (max-width: 767px) {
  header .__product > div {
    margin: 0;
  }
}

header .__product > div .product-list {
  width: calc(100% - 580px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1560px) {
  header .__product > div .product-list {
    width: calc(100% - 480px);
  }
}

@media screen and (max-width: 1460px) {
  header .__product > div .product-list {
    display: none;
  }
}

header .__product > div .product-list > div {
  position: relative;
  width: 460px;
  margin-bottom: 60px;
}

@media screen and (max-width: 1650px) {
  header .__product > div .product-list > div {
    width: 420px;
  }
}

header .__product > div .product-list a {
  text-decoration: none;
  color: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  font-size: 1.125em;
  letter-spacing: 1px;
  font-weight: normal;
  line-height: normal;
}

header .__product > div .product-list a:active, header .__product > div .product-list a:hover, header .__product > div .product-list a:visited, header .__product > div .product-list a:focus {
  text-decoration: none;
  outline: 0;
}

header .__product > div .product-list a:hover {
  opacity: .6;
}

@media screen and (max-width: 1650px) {
  header .__product > div .product-list a {
    font-size: 1em;
  }
}

header .__product > div .product-list a.title {
  font-size: 1.375em;
  font-weight: 900;
  letter-spacing: 0.02273em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  line-height: 22px;
  margin-bottom: 30px;
}

header .__product > div .product-list a.title span {
  cursor: pointer;
}

@media screen and (max-width: 1650px) {
  header .__product > div .product-list a.title {
    font-size: 1.25em;
    letter-spacing: 0.02em;
  }
}

header .__product > div .product-list a.title img {
  margin-right: 20px;
  max-width: 50px;
}

header .__product > div .product-list ul {
  padding-left: 70px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

header .__product > div .product-list ul li:not(:last-child) {
  margin-bottom: 10px;
}

header .__product > div .product-list-s {
  width: 45%;
}

@media screen and (max-width: 1366px) {
  header .__product > div .product-list-s {
    width: 50%;
  }
}

@media screen and (max-width: 1024px) {
  header .__product > div .product-list-s {
    width: 55%;
  }
}

@media screen and (min-width: 1461px) {
  header .__product > div .product-list-s {
    display: none;
  }
}

@media (max-width: 767px) {
  header .__product > div .product-list-s {
    width: 100%;
  }
}

header .__product > div .product-list-s > div:not(:last-child) {
  margin-bottom: 20px;
}

header .__product > div .product-list-s a.title {
  text-decoration: none;
  color: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  font-size: 1.25em;
  letter-spacing: 1px;
  font-weight: 900;
  line-height: normal;
}

header .__product > div .product-list-s a.title:active, header .__product > div .product-list-s a.title:hover, header .__product > div .product-list-s a.title:visited, header .__product > div .product-list-s a.title:focus {
  text-decoration: none;
  outline: 0;
}

header .__product > div .product-list-s a.title span {
  cursor: pointer;
}

header .__product > div .product-list-s a.title img {
  margin-right: 20px;
  width: 40px;
}

@media (max-width: 767px) {
  header .__product > div .product-list-s a.title img {
    width: 30px;
  }
}

@media screen and (max-width: 1460px) {
  header .__product > div .product-list-s a.title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 0;
  }
  header .__product > div .product-list-s a.title span {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  header .__product > div .product-list-s a.title span i {
    font-size: 2.5em;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
  header .__product > div .product-list-s a.title span i.active {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@media (max-width: 767px) {
  header .__product > div .product-list-s a.title {
    font-size: 1em;
  }
}

header .__product > div .product-list-s ul {
  padding-left: 60px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media (max-width: 767px) {
  header .__product > div .product-list-s ul {
    padding-left: 50px;
  }
}

header .__product > div .product-list-s ul a {
  line-height: normal;
}

header .__product > div .product-list-s ul li:not(:last-child) {
  margin-bottom: 5px;
}

@media screen and (max-width: 1460px) {
  header .__product > div .product-list-s ul {
    height: 0;
    overflow: hidden;
  }
  header .__product > div .product-list-s ul.active {
    height: auto;
  }
}

@media screen and (max-width: 1560px) {
  header .__product > div .menu-img {
    width: 480px;
  }
}

header .__product > div .menu-img div {
  width: 580px;
  padding-top: calc(100% / 1.45);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1560px) {
  header .__product > div .menu-img div {
    width: 100%;
  }
}

@media screen and (max-width: 1460px) {
  header .__product > div .menu-img div {
    width: 100%;
  }
}

@media (max-width: 767px) {
  header .__product > div .menu-img {
    display: none;
  }
}

header .__product > div .menu-img div:not(:first-child) {
  display: none;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  background-image: radial-gradient(circle at 50% 59%, #ffffff, #e0e0e0 127%);
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: #1a1a1a;
  letter-spacing: 0.0625em;
  font-family: 'Roboto', "Microsoft JhengHei", "PingFang TC" , "蘋果儷中黑",'sans-serif' , Arial;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  image-rendering: -webkit-optimize-contrast;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  font-size: 1em;
}

@media (max-width: 767px) {
  body {
    font-size: 1em;
  }
}

body.loading-out {
  opacity: 0;
}

body img {
  max-width: 100%;
}

h1 {
  margin-bottom: 0;
}

span {
  font-size: 100%;
}

p, a, li, span {
  font-size: inherit;
}

b, strong {
  font-weight: bold;
}

ul, li {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

p {
  margin-bottom: 0;
}

input:focus, textarea:focus {
  outline-offset: 0;
  outline: -webkit-focus-ring-color auto 0;
}

.button {
  width: 215px;
  height: 50px;
  border: none;
  background-color: #0087ca;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-weight: bold;
  letter-spacing: 0.1875em;
}

@-moz-document url-prefix() {
  .button {
    font-weight: normal;
  }
}

.button:focus {
  outline: none;
}

@media screen and (min-width: 1500px) {
  .container {
    max-width: 1440px;
  }
}

.vertical-title {
  font-size: 3.125em;
  font-weight: 900;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  margin: 0;
  letter-spacing: 0.06em;
}

@media (max-width: 991px) {
  .vertical-title {
    font-size: 2em;
  }
}

.main-swiper .row {
  margin-left: 0;
}

.one-product {
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 50.5px 0 40px 0;
  margin-bottom: 65px;
  width: 100%;
}

@media (max-width: 991px) {
  .one-product {
    max-width: 100%;
  }
}

.one-product .new {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: #0087ca;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.one-product .product-cover {
  width: 100%;
  padding-top: calc(100% / 1.458);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 60.5px;
}

@media (max-width: 767px) {
  .one-product .product-cover {
    margin-bottom: 30.5px;
  }
}

.content {
  padding: 0 40px;
}

@media (max-width: 767px) {
  .content {
    padding: 0 20px;
  }
}

.content .name {
  font-size: 1.375em;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
}

.content .intro {
  font-size: 0.875em;
  color: #4d4d4d;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
  min-height: 42px;
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 95px;
  width: 50px;
}

@media (max-width: 991px) {
  .page {
    margin-top: 50px;
  }
}

.page .swiper-pagination-fraction {
  position: relative;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.page .swiper-pagination-fraction > span {
  color: #fff;
  margin-bottom: 25px;
}

@media screen and (max-width: 1700px) {
  .page .swiper-pagination-fraction > span {
    text-shadow: #ccc 0.1em 0.1em 0.2em;
  }
}

.page .swiper-pagination-fraction > span:first-child {
  font-size: 1.25em;
  font-weight: 900;
  margin-bottom: 15px;
}

.page .swiper-pagination-fraction > span:not(:first-child) {
  font-size: 1em;
  font-weight: bold;
}

.page .swiper-pagination-fraction > span:nth-child(2) {
  margin-top: 7px;
}

.page > div._product {
  position: relative;
  top: 0;
  left: 0;
  margin-top: 0;
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: #0087ca;
  margin-bottom: 10px;
  -webkit-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
  outline: none;
}

@media (max-width: 991px) {
  .page > div._product {
    top: 90px;
  }
}

.page > div.swiper-button-next:after, .page > div.swiper-button-prev:after {
  font-size: 14px;
  font-weight: bold;
}

@-moz-document url-prefix() {
  .page > div.swiper-button-next:after, .page > div.swiper-button-prev:after {
    font-weight: normal;
  }
}

@media (max-width: 991px) {
  .page > div {
    width: 40px;
    height: 40px;
  }
}

.page.type-b .swiper-pagination-fraction {
  color: #000;
}

.page.type-b span {
  color: #1a1a1a;
  margin-bottom: 25px;
}

@media screen and (max-width: 1700px) {
  .page.type-b span {
    text-shadow: #ccc 0.1em 0.1em 0.2em;
  }
}

.page.type-b span:first-child {
  font-size: 1.25em;
  font-weight: 900;
  margin-bottom: 15px;
}

.page.type-b span:not(:first-child) {
  font-size: 1em;
  font-weight: bold;
}

.page.type-b span:nth-child(2) {
  margin-top: 7px;
}

.page.type-b div._product {
  background-color: #0087ca;
  color: #fff;
}

.one-event {
  position: relative;
  -webkit-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .one-event {
    max-width: 100%;
  }
}

.one-event .date {
  width: 180px;
  height: 70px;
  position: absolute;
  top: -35px;
  right: 0;
  background-color: #0087ca;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 767px) {
  .one-event .date {
    width: 140px;
    height: 50px;
    top: -25px;
  }
}

.one-event .date span {
  color: #fff;
}

.one-event .date span.-ym- {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-size: 0.875em;
  font-weight: bold;
  letter-spacing: 0.14286em;
  text-align: center;
}

@-moz-document url-prefix() {
  .one-event .date span.-ym- {
    font-weight: normal;
  }
}

@media (max-width: 767px) {
  .one-event .date span.-ym- {
    font-size: 0.75em;
    letter-spacing: 0.16667em;
  }
}

.one-event .date span.-d- {
  font-size: 2.5em;
  font-weight: 900;
}

@media (max-width: 767px) {
  .one-event .date span.-d- {
    font-size: 1.875em;
  }
}

.one-event .event-cover {
  width: 100%;
  padding-top: calc(100% / 1.599);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.one-event .content {
  background-color: #fff;
  padding: 25px;
}

.one-event .content .name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
  margin-bottom: 10px;
}

.one-event .content .intro {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
}

.back {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #0087ca;
  width: 50px;
  height: 50px;
  color: #fff;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 3em;
}

.back:active, .back:hover, .back:visited, .back:focus {
  text-decoration: none;
  outline: 0;
}

.index {
  background-color: #eee;
  background-image: url("../images/img_bg_round.png"), url("../images/img_bg_triangle_blue.png"), url("../images/img_bg_triangle_white.png");
  background-size: initial;
  background-position: center 230px, bottom 122px left -250px, bottom 122px right -1115px;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

@media screen and (max-width: 1600px) {
  .index {
    background-position: center 230px, bottom 122px left -250px, bottom 122px right -815px;
    background-size: 85%, 85%, 100%;
  }
}

@media (max-width: 1199px) {
  .index {
    background-position: center 230px, bottom 122px left -250px, bottom 122px right -715px;
  }
}

@media (max-width: 991px) {
  .index {
    background-position: center 230px, bottom 122px left -250px, bottom 122px right -515px;
    background-size: 100%, 100%, 100%;
  }
}

@media (max-width: 767px) {
  .index {
    background-position: center 230px, bottom 122px left -250px, bottom 122px right -415px;
  }
}

@media (max-width: 575px) {
  .index {
    background-position: center 30px, bottom 250px left -250px, bottom 290px right -315px;
  }
}

@media screen and (max-width: 414px) {
  .index {
    background-position: center 30px, bottom 350px left -150px, bottom 400px right -260px;
  }
}

.index .banner-swiper {
  margin-bottom: 75px;
}

@media (max-width: 575px) {
  .index .banner-swiper {
    margin: 20px 0;
  }
}

.index .banner-swiper a {
  display: block;
}

.index .banner-swiper a div {
  width: 100%;
  padding-top: calc(100% / 2.286);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.index .banner-swiper ._banner {
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: #0087ca;
  margin-bottom: 10px;
  -webkit-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
  outline: none;
}

@media (max-width: 991px) {
  .index .banner-swiper ._banner {
    width: 40px;
    height: 40px;
  }
}

.index .banner-swiper ._banner.swiper-button-next:after, .index .banner-swiper ._banner.swiper-button-prev:after {
  font-size: 14px;
  font-weight: bold;
}

@-moz-document url-prefix() {
  .index .banner-swiper ._banner.swiper-button-next:after, .index .banner-swiper ._banner.swiper-button-prev:after {
    font-weight: normal;
  }
}

.index .banner-swiper ._banner.swiper-button-disabled {
  pointer-events: auto;
}

.index .body__container {
  margin-bottom: 45px;
}

.index .body__container .products-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 135px;
}

@media (max-width: 575px) {
  .index .body__container .products-section {
    margin-bottom: 65px;
  }
}

.index .body__container .products-section a {
  text-decoration: none;
}

.index .body__container .products-section a:active, .index .body__container .products-section a:hover, .index .body__container .products-section a:visited, .index .body__container .products-section a:focus {
  text-decoration: none;
  outline: 0;
}

@media screen and (max-width: 1600px) {
  .index .body__container .products-section > div:first-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 1600px) {
  .index .body__container .event-section > div:first-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.index .body__container .event-section a {
  text-decoration: none;
}

.index .body__container .event-section a:active, .index .body__container .event-section a:hover, .index .body__container .event-section a:visited, .index .body__container .event-section a:focus {
  text-decoration: none;
  outline: 0;
}

@media (max-width: 991px) {
  .index .body__container .event-section a {
    margin-bottom: 60px;
  }
}

.index .body__container .event-section .row {
  margin-left: 0;
  margin-right: 0;
}

.index .body__container .event-section .vertical-title {
  color: #fff;
}

@media (max-width: 991px) {
  .index .body__container .event-section .vertical-title {
    color: #000;
  }
}

.index .body__container .event-section .more {
  text-decoration: none;
  font-size: 1.25em;
  color: #fff;
  font-weight: 900;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  margin-top: 50px;
  width: 60px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.index .body__container .event-section .more:active, .index .body__container .event-section .more:hover, .index .body__container .event-section .more:visited, .index .body__container .event-section .more:focus {
  text-decoration: none;
  outline: 0;
}

.index .body__container .event-section .more:hover {
  letter-spacing: 0.2em;
}

@media (max-width: 991px) {
  .index .body__container .event-section .more {
    color: #000;
    width: auto;
  }
}

.breadcrumb {
  padding: 100px 0;
  margin-bottom: 0;
  background-color: transparent;
}

@media screen and (max-width: 1366px) {
  .breadcrumb {
    padding: 75px 0;
  }
}

@media (max-width: 1199px) {
  .breadcrumb {
    padding: 50px 0;
  }
}

@media (max-width: 575px) {
  .breadcrumb {
    padding: 25px 0;
  }
}

.breadcrumb a, .breadcrumb li {
  font-size: 14px;
  color: #1a1a1a;
}

.breadcrumb li.active {
  color: #1a1a1a;
}

.editor {
  margin-bottom: 140px;
}

@media (max-width: 991px) {
  .editor {
    margin-bottom: 50px;
  }
}

.editor .title {
  font-size: 3.125em;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #000;
  margin-bottom: 80px;
}

@media (max-width: 575px) {
  .editor .title {
    margin-bottom: 40px;
  }
}

.editor article {
  line-height: 1.88;
  letter-spacing: 0.03125em;
  color: #1a1a1a;
}

.about[data-page="about"] .bg-gray {
  background-color: #ebebeb;
  width: 100%;
  height: 872px;
  -webkit-clip-path: polygon(0 35%, 100% 0%, 100% 65%, 0% 100%);
          clip-path: polygon(0 35%, 100% 0%, 100% 65%, 0% 100%);
  position: absolute;
  top: 340px;
  left: 0;
  z-index: -1;
}

.about[data-page="about"] .about-right {
  width: 50%;
  margin-top: 155px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

@media (max-width: 991px) {
  .about[data-page="about"] .about-right {
    width: 100%;
    position: relative;
    margin-top: 50px;
  }
}

.about[data-page="about"] .about-right .about-img {
  -webkit-clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
          clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
}

.about[data-page="about"] .about-right .text {
  font-family: 'Montserrat', sans-serif;
  font-size: 8.125em;
  font-weight: bold;
  letter-spacing: 0.00769em;
  color: #0087ca;
  line-height: 1.15;
  text-align: right;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@-moz-document url-prefix() {
  .about[data-page="about"] .about-right .text {
    font-weight: normal;
  }
}

@media screen and (max-width: 1366px) {
  .about[data-page="about"] .about-right .text {
    font-size: 6.25em;
  }
}

@media (max-width: 767px) {
  .about[data-page="about"] .about-right .text {
    font-size: 3.75em;
  }
}

@media screen and (max-width: 374px) {
  .about[data-page="about"] .about-right .text {
    font-size: 48px;
  }
}

.contact[data-page="contact"] {
  background-color: #eee;
  background-image: url("../images/img_bg_triangle_white.png");
  background-size: initial;
  background-position: bottom 122px right -1115px;
  background-repeat: no-repeat;
}

.contact[data-page="contact"] .form-wrap {
  margin-bottom: 120px;
}

.contact[data-page="contact"] .form-wrap > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact[data-page="contact"] .form-wrap > div:not(:last-child) {
  margin-bottom: 15px;
}

.contact[data-page="contact"] .form-wrap label {
  font-weight: bold;
  letter-spacing: 0.09375em;
  color: #000;
  margin-bottom: 0;
}

@-moz-document url-prefix() {
  .contact[data-page="contact"] .form-wrap label {
    font-weight: normal;
  }
}

.contact[data-page="contact"] .form-wrap .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

.contact[data-page="contact"] .form-wrap .inner .selectric-wrapper {
  width: 155px;
  margin-right: 25px;
}

@media (max-width: 991px) {
  .contact[data-page="contact"] .form-wrap .inner .selectric-wrapper {
    width: 105px;
  }
}

@media (max-width: 575px) {
  .contact[data-page="contact"] .form-wrap .inner .selectric-wrapper {
    width: 75px;
  }
}

.contact[data-page="contact"] .form-wrap .inner input {
  width: calc(100% - 180px);
}

@media (max-width: 991px) {
  .contact[data-page="contact"] .form-wrap .inner input {
    width: calc(100% - 130px);
  }
}

@media (max-width: 575px) {
  .contact[data-page="contact"] .form-wrap .inner input {
    width: calc(100% - 100px);
  }
}

.contact[data-page="contact"] .form-wrap input, .contact[data-page="contact"] .form-wrap .selectric-wrapper {
  height: 50px;
  border: none;
  border-bottom: 1px solid #999;
  background-color: transparent;
  width: 100%;
}

.contact[data-page="contact"] .form-wrap input + label, .contact[data-page="contact"] .form-wrap .selectric-wrapper + label {
  color: #d93b3b;
  font-size: 0.875em;
  position: absolute;
  top: 50%;
  right: 55px;
}

.contact[data-page="contact"] .form-wrap .selectric-wrapper {
  width: 100%;
}

.contact[data-page="contact"] .form-wrap .selectric-wrapper .selectric {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 1px solid #999;
  background-color: transparent;
}

.contact[data-page="contact"] .form-wrap .selectric-wrapper .selectric .label {
  font-size: 1em;
  line-height: 50px;
  height: 100%;
  color: #999;
  margin: 0 38px 0 0;
}

.contact[data-page="contact"] .form-wrap .selectric-wrapper .selectric .button {
  height: 100%;
  background-color: transparent;
}

.contact[data-page="contact"] .form-wrap textarea {
  margin-top: 15px;
  width: 100%;
  border: 1px solid #999;
  background-color: transparent;
  resize: none;
  height: 210px;
}

.contact[data-page="contact"] .form-wrap .form-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

@media (max-width: 767px) {
  .contact[data-page="contact"] .form-wrap .form-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact[data-page="contact"] .form-wrap .form-bottom .button {
    width: 100%;
  }
}

.contact[data-page="contact"] .form-wrap .form-bottom .captcha {
  width: 425px;
  height: 105px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .contact[data-page="contact"] .form-wrap .form-bottom .captcha {
    margin-bottom: 15px;
    width: 100%;
  }
}

.contact[data-page="contact"] .contact-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}

.contact[data-page="contact"] .contact-address .triangle {
  position: absolute;
  top: -40px;
  left: -380px;
  height: 849px;
  overflow: hidden;
}

@media screen and (max-width: 1600px) {
  .contact[data-page="contact"] .contact-address .triangle {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    left: -480px;
  }
}

@media screen and (max-width: 1358px) {
  .contact[data-page="contact"] .contact-address .triangle {
    -webkit-transform: scale(1);
            transform: scale(1);
    width: 490px;
    left: -100px;
    top: 375px;
    height: auto;
  }
}

@media (max-width: 767px) {
  .contact[data-page="contact"] .contact-address .triangle {
    left: -135px;
  }
}

@media (max-width: 575px) {
  .contact[data-page="contact"] .contact-address .triangle {
    width: 380px;
    left: -100px;
  }
}

.contact[data-page="contact"] .contact-address .address-wrap {
  max-width: 370px;
  position: absolute;
  top: 200px;
  left: calc( 50% - 45px);
  z-index: 1;
}

@media screen and (max-width: 1358px) {
  .contact[data-page="contact"] .contact-address .address-wrap {
    top: 45px;
    max-width: 205px;
    left: calc(50% - 78px);
  }
}

.contact[data-page="contact"] .contact-address .address-wrap .title {
  font-size: 3.125em;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 40px;
}

@media screen and (max-width: 1358px) {
  .contact[data-page="contact"] .contact-address .address-wrap .title {
    font-size: 2.25em;
    letter-spacing: 0.08333em;
    margin-bottom: 10px;
  }
}

.contact[data-page="contact"] .contact-address .address-wrap .name {
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 20px;
}

@-moz-document url-prefix() {
  .contact[data-page="contact"] .contact-address .address-wrap .name {
    font-weight: normal;
  }
}

@media screen and (max-width: 1358px) {
  .contact[data-page="contact"] .contact-address .address-wrap .name {
    letter-spacing: 0.0625em;
    font-size: 1em;
    margin-bottom: 5px;
  }
}

.contact[data-page="contact"] .contact-address .address-wrap .address {
  font-size: 0.875em;
  line-height: 1.7;
  letter-spacing: 0.05714em;
  color: #fff;
}

@media screen and (max-width: 1358px) {
  .contact[data-page="contact"] .contact-address .address-wrap .address {
    letter-spacing: 0.06667em;
    font-size: 0.75em;
  }
}

@media screen and (max-width: 1358px) {
  .contact[data-page="contact"] .contact-address iframe {
    width: 100%;
  }
}

.contact[data-page="contact"] .modal .modal-header {
  border-bottom: 0;
}

.contact[data-page="contact"] .modal .modal-body {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 1.5em;
  letter-spacing: 0.125em;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 56px;
}

@-moz-document url-prefix() {
  .contact[data-page="contact"] .modal .modal-body {
    font-weight: normal;
  }
}

.events[data-page="events"] .event-sw {
  padding: 0 2.5px;
  margin-bottom: 65px;
}

@media screen and (max-width: 1500px) {
  .events[data-page="events"] .event-sw {
    padding: 0 15px 0 0;
  }
}

@media (max-width: 575px) {
  .events[data-page="events"] .event-sw {
    padding: 0 15px;
  }
}

.events[data-page="events"] .swiper-container {
  margin: 0 0 5px 0;
}

.events[data-page="events"] .swiper-container.swiper_l .event-img {
  position: relative;
  width: 100%;
  padding-top: calc(100% / 1.59);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.events[data-page="events"] .swiper-container.swiper_s .event-img {
  padding-top: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.events[data-page="events"] .swiper-container.swiper_virtual {
  width: 395px;
}

.events[data-page="events"] .swiper-container.swiper_virtual .swiper-slide {
  padding-top: 1px;
  background-color: transparent;
}

.events[data-page="events"] .swiper-container .sw-text {
  width: 100%;
  position: absolute;
  bottom: 25px;
  left: 25px;
}

@media (max-width: 575px) {
  .events[data-page="events"] .swiper-container .sw-text {
    bottom: 10px;
    left: 10px;
  }
}

.events[data-page="events"] .swiper-container .sw-text .sw-title {
  font-size: 1.375em;
  font-weight: 900;
  letter-spacing: 0.04545em;
  color: #fff;
  margin-bottom: 5px;
}

@media (max-width: 575px) {
  .events[data-page="events"] .swiper-container .sw-text .sw-title {
    font-size: 1.125em;
  }
}

.events[data-page="events"] .swiper-container .sw-text .sw-content {
  font-size: 0.875em;
  letter-spacing: 0.07143em;
  color: #fff;
}

@media (max-width: 575px) {
  .events[data-page="events"] .swiper-container .sw-text .sw-content {
    font-size: 0.75em;
  }
}

.events[data-page="events"] .swiper-container.swiper_l {
  max-width: 795px;
}

.events[data-page="events"] .swiper-container.swiper_l .sw-text {
  max-width: calc(100% - 50px);
}

.events[data-page="events"] .swiper-container.swiper_s {
  max-width: 395px;
}

@media screen and (max-width: 1500px) {
  .events[data-page="events"] .swiper-container.swiper_s {
    max-width: calc(50% - 2.5px);
  }
}

@media (max-width: 767px) {
  .events[data-page="events"] .swiper-container.swiper_s {
    max-width: 100%;
    width: 100%;
  }
}

.events[data-page="events"] .swiper-container.swiper_s .sw-text {
  max-width: calc(100% - 50px);
}

.events[data-page="events"] .events-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 767px) {
  .events[data-page="events"] .events-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.events[data-page="events"] .events-top .swiper-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 795px;
}

@media screen and (max-width: 1500px) {
  .events[data-page="events"] .events-top .swiper-top {
    width: 66.6%;
  }
}

@media (max-width: 767px) {
  .events[data-page="events"] .events-top .swiper-top {
    width: 100%;
  }
}

.events[data-page="events"] .events-top .swiper-top .swiper-container {
  width: 100%;
}

.events[data-page="events"] .events-top .process {
  position: relative;
  width: 395px;
  background-color: #e6e6e6;
  padding: 50px;
  margin-left: 5px;
  margin-bottom: 5px;
}

@media screen and (max-width: 1500px) {
  .events[data-page="events"] .events-top .process {
    width: 33.3%;
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .events[data-page="events"] .events-top .process {
    width: 100%;
    margin-left: 0px;
  }
}

.events[data-page="events"] .events-top .process > div {
  width: calc(100% - 100px);
  position: absolute;
  top: 50px;
  left: 50px;
  max-height: 800px;
  overflow-y: scroll;
}

.events[data-page="events"] .events-top .process > div::-webkit-scrollbar {
  width: 7px;
}

.events[data-page="events"] .events-top .process > div::-webkit-scrollbar-button {
  width: 7px;
  height: 5px;
}

.events[data-page="events"] .events-top .process > div::-webkit-scrollbar-track {
  background-color: rgba(238, 238, 238, 0);
  border: 0;
  border-radius: 5px;
}

.events[data-page="events"] .events-top .process > div::-webkit-scrollbar-thumb {
  background-color: rgba(153, 153, 153, 0.3);
  border: 0;
  border-radius: 5px;
}

.events[data-page="events"] .events-top .process > div::-webkit-scrollbar-thumb:hover {
  background-color: rgba(153, 153, 153, 0.5);
}

@media screen and (max-width: 1500px) {
  .events[data-page="events"] .events-top .process > div {
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    top: 25px;
    left: 25px;
  }
}

@media (max-width: 767px) {
  .events[data-page="events"] .events-top .process > div {
    position: relative;
    max-height: 300px;
    width: 100%;
    top: 0;
    left: 0;
  }
}

.events[data-page="events"] .events-top .process .one-process {
  position: relative;
  padding-left: 30px;
  padding-bottom: 20px;
  margin-left: 5px;
}

.events[data-page="events"] .events-top .process .one-process::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0087ca;
  position: absolute;
  top: 7px;
  left: -5px;
}

.events[data-page="events"] .events-top .process .one-process:not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #b3b3b3;
  top: 7px;
  left: 0;
}

@media (max-width: 767px) {
  .events[data-page="events"] .events-top .process .one-process {
    padding-right: 10px;
  }
}

.events[data-page="events"] .events-top .process .one-process .year {
  font-weight: 900;
  letter-spacing: 0.03125em;
  color: #0087ca;
  margin-bottom: 5px;
}

.events[data-page="events"] .events-top .process .one-process .pr-content {
  font-size: 0.875em;
  color: #1a1a1a;
}

.events[data-page="events"] .events-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.events[data-page="events"] .events-bottom .swiper-container.swiper_l {
  width: 795px;
}

@media screen and (max-width: 1500px) {
  .events[data-page="events"] .events-bottom .swiper-container.swiper_l {
    width: 66.4%;
  }
}

@media (max-width: 767px) {
  .events[data-page="events"] .events-bottom .swiper-container.swiper_l {
    width: 100%;
  }
}

.events[data-page="events"] .events-bottom .swiper-container.swiper_l .event-img {
  position: relative;
  width: 100%;
  padding-top: calc(100% / 2.015);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.events[data-page="events"] .events-bottom .swiper-container.swiper_s {
  width: 395px;
}

@media screen and (max-width: 1500px) {
  .events[data-page="events"] .events-bottom .swiper-container.swiper_s {
    width: calc(100% / 3 - 5px);
  }
}

@media (max-width: 767px) {
  .events[data-page="events"] .events-bottom .swiper-container.swiper_s {
    width: 100%;
  }
}

.product-list-page[data-page="product-list-page"] {
  background-color: #eee;
  background-image: url("../images/img_bg_triangle_blue.png"), url("../images/img_bg_triangle_white.png");
  background-size: initial;
  background-position: bottom 122px left -250px, bottom 122px right -1115px;
  background-repeat: no-repeat, no-repeat;
}

@media screen and (max-width: 1600px) {
  .product-list-page[data-page="product-list-page"] {
    background-position: bottom 122px left -250px, bottom 122px right -815px;
    background-size: 85%, 100%;
  }
}

@media (max-width: 1199px) {
  .product-list-page[data-page="product-list-page"] {
    background-position: bottom 122px left -250px, bottom 122px right -715px;
  }
}

@media (max-width: 991px) {
  .product-list-page[data-page="product-list-page"] {
    background-position: bottom 122px left -250px, bottom 122px right -515px;
    background-size: 100%, 100%;
  }
}

@media (max-width: 767px) {
  .product-list-page[data-page="product-list-page"] {
    background-position: bottom 122px left -250px, bottom 122px right -415px;
  }
}

@media (max-width: 575px) {
  .product-list-page[data-page="product-list-page"] {
    background-position: bottom 250px left -250px, bottom 290px right -315px;
  }
}

@media screen and (max-width: 414px) {
  .product-list-page[data-page="product-list-page"] {
    background-position: bottom 350px left -150px, bottom 400px right -260px;
  }
}

.product-list-page[data-page="product-list-page"] .f-list {
  margin-bottom: 15px;
}

.product-list-page[data-page="product-list-page"] .f-list a {
  text-decoration: none;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.product-list-page[data-page="product-list-page"] .f-list a:active, .product-list-page[data-page="product-list-page"] .f-list a:hover, .product-list-page[data-page="product-list-page"] .f-list a:visited, .product-list-page[data-page="product-list-page"] .f-list a:focus {
  text-decoration: none;
  outline: 0;
}

.product-list-page[data-page="product-list-page"] .f-list a:hover {
  opacity: .75;
}

.product-list-page[data-page="product-list-page"] .f-list a:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 5px;
  width: 1px;
  height: 70px;
  background-color: #d2d2d2;
}

@media (max-width: 575px) {
  .product-list-page[data-page="product-list-page"] .f-list a {
    margin-bottom: 10px;
  }
}

.product-list-page[data-page="product-list-page"] .f-list a i {
  font-size: 2.625em;
}

.product-list-page[data-page="product-list-page"] .f-list a .class-first {
  color: #4d4d4d;
}

.product-list-page[data-page="product-list-page"] .f-list a .class-first img {
  width: 32px;
}

.product-list-page[data-page="product-list-page"] .f-list a .class-first img.img-active {
  display: none;
}

.product-list-page[data-page="product-list-page"] .f-list a .class-first > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.product-list-page[data-page="product-list-page"] .f-list a .class-first > div span {
  font-size: 1.125em;
  font-weight: bold;
}

@-moz-document url-prefix() {
  .product-list-page[data-page="product-list-page"] .f-list a .class-first > div span {
    font-weight: normal;
  }
}

.product-list-page[data-page="product-list-page"] .f-list a .class-first > div i {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  font-size: 3em;
}

.product-list-page[data-page="product-list-page"] .f-list a .class-first.active {
  color: #0087ca;
}

.product-list-page[data-page="product-list-page"] .f-list a .class-first.active img {
  display: none;
}

.product-list-page[data-page="product-list-page"] .f-list a .class-first.active img.img-active {
  display: block;
}

.product-list-page[data-page="product-list-page"] .f-list a .class-first.active span, .product-list-page[data-page="product-list-page"] .f-list a .class-first.active i {
  color: #0087ca;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.product-list-page[data-page="product-list-page"] .f-list a .class-first.active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.product-list-page[data-page="product-list-page"] .s-list {
  background-color: #e6e6e6;
  margin-bottom: 60px;
  overflow: hidden;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

.product-list-page[data-page="product-list-page"] .s-list > div {
  display: none;
  padding: 38px 30px 30px;
}

@media (max-width: 575px) {
  .product-list-page[data-page="product-list-page"] .s-list > div {
    padding: 15px 10px;
  }
}

.product-list-page[data-page="product-list-page"] .s-list > div.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-list-page[data-page="product-list-page"] .s-list > div a {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  text-decoration: none;
  color: #000;
}

.product-list-page[data-page="product-list-page"] .s-list > div a:active, .product-list-page[data-page="product-list-page"] .s-list > div a:hover, .product-list-page[data-page="product-list-page"] .s-list > div a:visited, .product-list-page[data-page="product-list-page"] .s-list > div a:focus {
  text-decoration: none;
  outline: 0;
}

.product-list-page[data-page="product-list-page"] .s-list > div a:hover {
  opacity: .75;
}

.product-list-page[data-page="product-list-page"] .s-list > div a:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 2px;
  top: -7px;
  width: 1px;
  height: 95px;
  background-color: #b3b3b3;
}

.product-list-page[data-page="product-list-page"] .s-list > div a .class-second {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.product-list-page[data-page="product-list-page"] .s-list > div a .class-second p {
  font-size: 0.875em;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding: 0 8px;
  word-break: initial;
}

@media (max-width: 575px) {
  .product-list-page[data-page="product-list-page"] .s-list > div a .class-second p {
    font-size: 1em;
    padding: 0;
  }
}

.product-list-page[data-page="product-list-page"] .s-list > div a .class-second i {
  margin-left: -8px;
  font-size: 3em;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.product-list-page[data-page="product-list-page"] .s-list > div a .class-second.active {
  color: #0087ca;
}

.product-list-page[data-page="product-list-page"] .s-list > div a .class-second.active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.product-list-page[data-page="product-list-page"] .t-list {
  margin-bottom: 80px;
  min-height: 1572px;
}

.product-list-page[data-page="product-list-page"] .t-list .row {
  -webkit-transition: all .5s;
  transition: all .5s;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.product-list-page[data-page="product-list-page"] .t-list .row a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.product-list-page[data-page="product-list-page"] .t-list .row a:active, .product-list-page[data-page="product-list-page"] .t-list .row a:hover, .product-list-page[data-page="product-list-page"] .t-list .row a:visited, .product-list-page[data-page="product-list-page"] .t-list .row a:focus {
  text-decoration: none;
  outline: 0;
}

.product-list-page[data-page="product-list-page"] .t-list .row a .one-product {
  margin-bottom: 50px;
}

.product-content[data-page="product-content"] .breadcrumb {
  padding: 100px 0 25px 0;
}

@media (max-width: 1199px) {
  .product-content[data-page="product-content"] .breadcrumb {
    padding: 50px 0;
  }
}

@media (max-width: 575px) {
  .product-content[data-page="product-content"] .breadcrumb {
    padding: 25px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product-content[data-page="product-content"] .back {
  margin-bottom: 75px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.product-content[data-page="product-content"] .back:hover {
  color: #fff;
  opacity: .9;
}

@media (max-width: 575px) {
  .product-content[data-page="product-content"] .back {
    margin-bottom: 20px;
  }
}

.product-content[data-page="product-content"] ._product, .product-content[data-page="product-content"] ._thumbs {
  color: #828282;
}

.product-content[data-page="product-content"] ._product:focus, .product-content[data-page="product-content"] ._thumbs:focus {
  outline: -webkit-focus-ring-color auto 0;
}

.product-content[data-page="product-content"] ._product i:focus, .product-content[data-page="product-content"] ._thumbs i:focus {
  outline: -webkit-focus-ring-color auto 0;
}

.product-content[data-page="product-content"] ._product.swiper-button-prev, .product-content[data-page="product-content"] ._thumbs.swiper-button-prev {
  left: -55px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media screen and (max-width: 1300px) {
  .product-content[data-page="product-content"] ._product.swiper-button-prev, .product-content[data-page="product-content"] ._thumbs.swiper-button-prev {
    left: -15px;
  }
}

.product-content[data-page="product-content"] ._product.swiper-button-prev::after, .product-content[data-page="product-content"] ._thumbs.swiper-button-prev::after {
  content: '';
}

@media (max-width: 767px) {
  .product-content[data-page="product-content"] ._product.swiper-button-prev, .product-content[data-page="product-content"] ._thumbs.swiper-button-prev {
    left: 5px;
  }
}

.product-content[data-page="product-content"] ._product.swiper-button-next, .product-content[data-page="product-content"] ._thumbs.swiper-button-next {
  right: -55px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media screen and (max-width: 1300px) {
  .product-content[data-page="product-content"] ._product.swiper-button-next, .product-content[data-page="product-content"] ._thumbs.swiper-button-next {
    right: -15px;
  }
}

.product-content[data-page="product-content"] ._product.swiper-button-next::after, .product-content[data-page="product-content"] ._thumbs.swiper-button-next::after {
  content: '';
}

@media (max-width: 767px) {
  .product-content[data-page="product-content"] ._product.swiper-button-next, .product-content[data-page="product-content"] ._thumbs.swiper-button-next {
    right: 5px;
  }
}

.product-content[data-page="product-content"] ._product i {
  font-size: 4em;
}

@media (min-width: 1200px) {
  .product-content[data-page="product-content"] ._product i {
    font-size: 6.25em;
  }
}

.product-content[data-page="product-content"] .product-main {
  margin-bottom: 176px;
}

@media (max-width: 767px) {
  .product-content[data-page="product-content"] .product-main {
    margin-bottom: 30px;
  }
}

.product-content[data-page="product-content"] .product-main .main-pic {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.product-content[data-page="product-content"] .product-main .main-pic ._zoom {
  position: absolute;
  z-index: -1;
  right: 300px;
  top: -150px;
}

@media screen and (max-width: 1700px) {
  .product-content[data-page="product-content"] .product-main .main-pic ._zoom {
    right: 350px;
  }
}

@media screen and (max-width: 1600px) {
  .product-content[data-page="product-content"] .product-main .main-pic ._zoom {
    right: 400px;
  }
}

@media screen and (max-width: 1500px) {
  .product-content[data-page="product-content"] .product-main .main-pic ._zoom {
    right: 350px;
  }
}

.product-content[data-page="product-content"] .product-main .p-class {
  color: #0087ca;
  margin-bottom: 5px;
  font-size: 1.25em;
  font-weight: 900;
  position: relative;
}

.product-content[data-page="product-content"] .product-main .p-class span {
  position: absolute;
  bottom: 4px;
  margin-left: 15px;
}

.product-content[data-page="product-content"] .product-main .p-class .svg {
  width: 45px;
  margin-right: 15px;
}

.product-content[data-page="product-content"] .product-main .p-class .svg path {
  fill: #0087ca;
}

.product-content[data-page="product-content"] .product-main .p-class .svg g {
  fill: transparent;
}

.product-content[data-page="product-content"] .product-main .p-name {
  color: #1a1a1a;
  font-size: 3.75em;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

@media (max-width: 575px) {
  .product-content[data-page="product-content"] .product-main .p-name {
    font-size: 3em;
  }
}

.product-content[data-page="product-content"] .product-main .p-intro {
  line-height: 1.94;
  margin-bottom: 50px;
}

@media (max-width: 575px) {
  .product-content[data-page="product-content"] .product-main .p-intro {
    margin-bottom: 25px;
  }
}

.product-content[data-page="product-content"] .product-main .product-swiper img {
  width: 100%;
}

@media (max-width: 575px) {
  .product-content[data-page="product-content"] .product-main .swiper-container-thumbs {
    margin-bottom: 25px;
  }
}

.product-content[data-page="product-content"] .product-main .swiper-container-thumbs .swiper-slide {
  opacity: .5;
}

.product-content[data-page="product-content"] .product-main .swiper-container-thumbs .swiper-slide > div {
  padding-top: calc(100% / 1.45);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.product-content[data-page="product-content"] .product-main .swiper-container-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.product-content[data-page="product-content"] .product-main .swiper-container-thumbs .swiper-button-prev {
  font-size: 3em;
  left: -5px;
}

.product-content[data-page="product-content"] .product-main .swiper-container-thumbs .swiper-button-prev::after {
  content: '';
}

.product-content[data-page="product-content"] .product-main .swiper-container-thumbs .swiper-button-next {
  font-size: 3em;
  right: -5px;
}

.product-content[data-page="product-content"] .product-main .swiper-container-thumbs .swiper-button-next::after {
  content: '';
}

.product-content[data-page="product-content"] .content-tab {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .product-content[data-page="product-content"] .content-tab {
    margin-bottom: 50px;
  }
}

.product-content[data-page="product-content"] .content-tab ul.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .product-content[data-page="product-content"] .content-tab ul.nav {
    margin-bottom: 30px;
  }
}

.product-content[data-page="product-content"] .content-tab .nav-link {
  font-size: 1.125em;
  margin-bottom: 0;
  background-color: transparent;
  color: #1a1a1a;
  font-weight: bold;
  padding: 24px 37.5px;
}

@-moz-document url-prefix() {
  .product-content[data-page="product-content"] .content-tab .nav-link {
    font-weight: normal;
  }
}

@media (max-width: 767px) {
  .product-content[data-page="product-content"] .content-tab .nav-link {
    padding: 12px 20px;
    font-size: 1em;
  }
}

@media screen and (max-width: 450px) {
  .product-content[data-page="product-content"] .content-tab .nav-link {
    font-size: 0.875em;
    padding: 12px 10px;
  }
}

@media screen and (max-width: 374px) {
  .product-content[data-page="product-content"] .content-tab .nav-link {
    padding: 12px 7px;
  }
}

.product-content[data-page="product-content"] .content-tab .nav-link.active {
  color: #0087ca;
}

.product-content[data-page="product-content"] .content-tab .tab-content .fea-content .title {
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-bottom: 25px;
}

@-moz-document url-prefix() {
  .product-content[data-page="product-content"] .content-tab .tab-content .fea-content .title {
    font-weight: normal;
  }
}

.product-content[data-page="product-content"] .content-tab .tab-content .fea-content .content {
  line-height: 1.94;
  letter-spacing: 0.07125em;
  padding: 0;
  margin-bottom: 50px;
}

.product-content[data-page="product-content"] .content-tab .tab-content .spe-title {
  font-size: 1.5625em;
  font-weight: bold;
  margin-bottom: 40px;
}

@-moz-document url-prefix() {
  .product-content[data-page="product-content"] .content-tab .tab-content .spe-title {
    font-weight: normal;
  }
}

@media (max-width: 575px) {
  .product-content[data-page="product-content"] .content-tab .tab-content .spe-title {
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .product-content[data-page="product-content"] .content-tab .tab-content .spe-content {
    margin-bottom: 30px;
  }
}

.product-content[data-page="product-content"] .content-tab .tab-content .spe-content li span {
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-content[data-page="product-content"] .content-tab .tab-content .spe-content li span:first-child {
  font-size: 0.875em;
  font-weight: bold;
  color: #999;
  letter-spacing: 0.03571em;
  min-width: 40%;
}

@-moz-document url-prefix() {
  .product-content[data-page="product-content"] .content-tab .tab-content .spe-content li span:first-child {
    font-weight: normal;
  }
}

@media (max-width: 575px) {
  .product-content[data-page="product-content"] .content-tab .tab-content .spe-content li span:first-child {
    min-width: 100%;
  }
}

.product-content[data-page="product-content"] .content-tab .tab-content .tab-pane {
  position: relative;
}

.product-content[data-page="product-content"] .content-tab .tab-content .tab-pane .tab-swiper a {
  display: block;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  cursor: default;
}

.product-content[data-page="product-content"] .content-tab .tab-content .tab-pane .tab-swiper a div {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 100%;
}

.product-content[data-page="product-content"] .zoomContainer {
  z-index: -1;
}

.product-content[data-page="product-content"] .zoomWindowContainer > div {
  z-index: -10 !important;
}

@media (max-width: 991px) {
  .product-content[data-page="product-content"] .zoomWindowContainer {
    display: none;
  }
}

.ie11 .event-section .vertical-title, .ie .event-section .vertical-title {
  max-height: 145px;
}

.ie11 .vertical-title, .ie .vertical-title {
  max-height: 475px;
}

.ie11 .more, .ie .more {
  max-height: 55px;
}

.ie11 .name, .ie .name {
  height: 26px;
  overflow: hidden;
}

.ie11 .intro, .ie .intro {
  height: 42px;
  overflow: hidden;
}

.ie11 .swiper-button-prev::after, .ie11 .swiper-button-next::after, .ie .swiper-button-prev::after, .ie .swiper-button-next::after {
  content: '';
  position: absolute;
  background-color: #fff;
  width: 10px;
  height: 10px;
  top: calc( 25px - 5px);
  left: calc( 25px - 5px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.ie11 .swiper-button-prev::after, .ie .swiper-button-prev::after {
  border-left: 1px solid #0087ca;
  border-bottom: 1px solid #0087ca;
  left: calc(25px - 2.5px);
}

.ie11 .swiper-button-next::after, .ie .swiper-button-next::after {
  left: calc( 25px - 7.5px);
  border-right: 1px solid #0087ca;
  border-top: 1px solid #0087ca;
}

.ie11.about[data-page="about"] .bg-gray, .ie.about[data-page="about"] .bg-gray {
  -webkit-transform: skewY(-10deg);
          transform: skewY(-10deg);
  height: 570px;
  top: 490px;
}

.ie11.about[data-page="about"] .about-right, .ie.about[data-page="about"] .about-right {
  margin-top: 250px;
}

.ie11.about[data-page="about"] .about-right .clip-wrap, .ie.about[data-page="about"] .about-right .clip-wrap {
  -webkit-transform: skewY(-10deg);
          transform: skewY(-10deg);
}

.ie11.about[data-page="about"] .about-right .clip-wrap .clip, .ie.about[data-page="about"] .about-right .clip-wrap .clip {
  height: 600px;
  overflow: hidden;
}

.ie11.about[data-page="about"] .about-right .clip-wrap .clip .about-img, .ie.about[data-page="about"] .about-right .clip-wrap .clip .about-img {
  -webkit-transform: skewY(10deg) translateY(-11%);
          transform: skewY(10deg) translateY(-11%);
}

.ie11.about[data-page="about"] .about-right .text, .ie.about[data-page="about"] .about-right .text {
  -webkit-transform: translateY(-35%);
          transform: translateY(-35%);
}

footer {
  -webkit-box-shadow: 10px 10px 50px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 10px 10px 50px 0 rgba(0, 0, 0, 0.1);
  background-image: radial-gradient(circle at 117% 28%, #ffffff, #e3e3e3 147%);
  padding: 60px 0;
  position: relative;
  z-index: 10;
}

@media (max-width: 575px) {
  footer {
    padding: 20px 0;
  }
}

@media (max-width: 575px) {
  footer .row > div {
    margin-bottom: 30px;
  }
}

footer .row > div:first-child {
  margin-bottom: 30px;
}

footer .row > div:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 575px) {
  footer .row > div:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media screen and (min-width: 1500px) {
  footer .row > div:last-child > div:not(.info) {
    margin-left: 70px;
  }
}

@media (max-width: 991px) {
  footer .row > div:last-child > div:not(.info) {
    margin-right: 55px;
  }
}

@media (max-width: 767px) {
  footer .row > div:last-child > div:not(.info) {
    margin-right: 30px;
  }
}

@media (max-width: 575px) {
  footer .row > div:last-child > div:not(.info) {
    margin-right: 0;
  }
}

footer a {
  color: #1a1a1a;
}

footer .company {
  font-size: 1.125em;
  font-weight: bold;
}

@-moz-document url-prefix() {
  footer .company {
    font-weight: normal;
  }
}

footer .address {
  font-size: 0.875em;
  line-height: 1.7;
  margin-bottom: 10px;
}

footer .copyright {
  font-size: 0.75em;
  color: #999;
}

footer .copyright .nsdi {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

footer .copyright .nsdi:hover {
  color: #0087ca;
}

footer .info {
  margin-left: 40px;
}

@media screen and (max-width: 1500px) {
  footer .info {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  footer .info {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
}

@media (max-width: 575px) {
  footer .info {
    margin-bottom: 30px;
  }
}

footer .info > div {
  margin-bottom: 10px;
  font-size: 0.875em;
  font-weight: 500;
}

footer .info > div span {
  display: inline-block;
  width: 70px;
  margin-right: 30px;
}

@media screen and (max-width: 1500px) {
  footer .info > div span {
    margin-right: 0;
  }
}

footer .info > div a {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

footer .info > div a:hover {
  color: #0087ca;
}

.test-box {
  width: 100px;
  height: 100px;
}

@media (min-width: 1200px) {
  .test-box {
    background-color: #0087ca;
  }
}

@media (min-width: 576px) and (max-width: 1199px) {
  .test-box {
    background-color: #000;
  }
}

.test-img {
  width: 480px;
  height: 200px;
  background: url("../images/img_test.jpg");
  background-size: cover;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .test-img {
    background: url("../images/img_test@2x.jpg");
    background-size: cover;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .test-img {
    background: url("../images/img_test@2x.jpg");
    background-size: cover;
  }
}
/*# sourceMappingURL=style.css.map */