
body {
  font-family: "Poppins";
  font-weight: 300;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  width: 1530px;
}
:root {
  --font: 'FuturaLT';
}


#menuContent {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 445px;
  height: 100%;
  z-index: 999;
  background: #1e1e2a;
  color: white;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#menuContent .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 45px 56px;
}
#menuContent .flex .info h3 {
  font-size: 20px;
  line-height: 1.8;
  margin: 20px 0;
  color: #fff;
  text-transform: capitalize;
}
#menuContent .flex .info p {
  font-size: 16px;
  line-height: 2;
  color: #ccc;
}
#menuContent .flex .info .more {
  text-align: center;
  background: transparent;
  color: #fff;
  font-weight: bold;
  position: relative;
  z-index: 1;
  outline: none;
  cursor: pointer;
  -webkit-transition: color 0.4s ease;
  -moz-transition: color 0.4s ease;
  transition: color 0.4s ease;
  overflow: hidden;
  white-space: nowrap;
  font-size: 16px;
  margin-top: 25px;
  display: inline-block;
  background: #c3a786;
  padding: 10px 30px;
  /*border-radius: 5px;*/
}
#menuContent .flex .info .more span {
  position: relative;
  z-index: 1;
}
#menuContent .flex .info .more::before {
  position: absolute;
  content: '';
  background: black;
  width: 0%;
  height: 100%;
  top: 0px;
  right: 0px;
  z-index: -1;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}
#menuContent .flex .info .more:hover::before {
  width: 100%;
  left: 0px;
}
#menuContent .flex .contact {
  margin-top: 60px;
}
#menuContent .flex .contact h3 {
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
}
#menuContent .flex .contact ul {
  margin-top: 20px;
}
#menuContent .flex .contact ul li {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 12px;
}
#menuContent .flex .contact ul li i {
  display: inline-block;
  margin-right: 10px;
  color: #c3a786;
  font-size: 20px;
  vertical-align: top;
  margin-top: 1px;
}
#menuContent .flex .contact ul li span {
  display: inline-block;
  width: 90%;
  font-size: 16px;
}
#menuContent .flex .contact ul li:last-child {
  margin-bottom: 0;
}
#menuContent .flex .share {
  margin-top: 20px;
}
#menuContent .flex .share ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
  -webkit-transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  transition: all 900ms ease;
}
#menuContent .flex .share ul li a {
  position: relative;
  width: 36px;
  height: 36px;
  color: #ccc;
  z-index: 1;
  font-size: 13px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background: transparent;
  border: 1px solid #ededed;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}
#menuContent .flex .share ul li a:hover {
  color: #fff;
  background: #c3a786;
  border-color: #c3a786;
}
#menuContent .flex span.close {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 40px;
  cursor: pointer;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#menuContent .flex span.close::after,
#menuContent .flex span.close::before {
  content: '';
  width: 90%;
  height: 2px;
  background: white;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 5%;
}
#menuContent .flex span.close::after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#menuContent .flex span.close::before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#menuContent .ui.container {
  position: static;
}
#menuContent.active {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
#header.inner .nav {
  background: #1e2126;
}
#header .nav {
  display: inline-block;
  width: 100%;
  background: rgba(30, 33, 38, 0.4);
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 25px;
  font-size: 18px;
  font-weight: 400;
  color: white;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover > a {
  background-size: 100% 1px;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  padding: 25px 0;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 50% / 0px 1px no-repeat;
  background: -webkit-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 50% / 0px 1px no-repeat;
  background: -moz-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 50% / 0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 50% / 0px 1px no-repeat;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 15px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 25px;
  margin-right: 25px;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .menu-btn {
  cursor: pointer;
}
#header .nav .ui.menu .menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #FFFFFF;
}
#header .nav .ui.menu .menu-btn span + span {
  margin-top: 6px;
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: #fd2318;
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin: 0 5px;
  border-radius: 100%;
  border: 1px solid transparent;
  padding: 4px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li::before {
  content: "";
  display: block;
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: #FFFFFF;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
table {
  width: 100%;
  margin-bottom: 20px;
  word-break: break-word;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: 50%;
}
table td:first-child {
  color: #2d2d2d;
}
table td:last-child {
  color: #666;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a {
  width: 50px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a:hover {
  background-color: #fd2318;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: #fd2318 !important;
}
#mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
}
#mobile:before {
  content: '';
  width: 100%;
  height: 200%;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
#mobile .m-search {
  padding: 10px 15px;
  background: #0d95e8;
  z-index: 2;
  position: relative;
}
#mobile .m-search form {
  width: 100%;
  padding-right: 50px;
  position: relative;
}
#mobile .m-search form input {
  width: 100%;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background: url("../images/icon-search-black.png") center left 5px no-repeat white;
  background-size: 14px;
  padding-left: 25px;
  font-size: 14px;
}
#mobile .m-search form input[type="submit"] {
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/icon-search-white.png") center center no-repeat;
}
#mobile .m-logo {
  text-align: center;
  background: #333;
  z-index: 1;
  position: relative;
  line-height: 60px;
  height: 60px;
}
#mobile .m-logo img {
  max-height: 40px;
  display: inline-block;
  vertical-align: middle;
  max-width: 200px;
}
#mobile .m-btn {
  position: absolute;
  bottom: 16px;
  left: 15px;
  width: 30px;
  z-index: 2;
  height: 24px;
}
#mobile .m-btn i {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: white;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .m-btn i.ie1 {
  margin-top: -10px;
}
#mobile .m-btn i.ie3 {
  margin-top: 10px;
}
#mobile .box {
  position: fixed;
  background: white;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 0;
  height: 100%;
  overflow: auto;
  top: 0;
  padding: 25px;
  padding-top: 145px;
}
#mobile .m-nav ul li {
  display: block;
  position: relative;
}
#mobile .m-nav ul li a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  text-transform: capitalize;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-right: 40px;
}
#mobile .m-nav ul li a:hover {
  background: #eee;
  padding-left: 15px;
}
#mobile .m-nav ul li i {
  position: absolute;
  right: 0;
  top: 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#mobile .m-nav ul li i:before {
  content: "\f105";
  font-family: "FontAwesome";
}
#mobile .m-nav ul li.children > i:before {
  content: "\f107";
}
#mobile .m-nav ul li.children.active > i:before {
  content: "\f106";
}
#mobile .m-nav ul li ul {
  display: none;
}
#mobile .m-nav ul li li a {
  padding-left: 30px;
  position: relative;
  font-size: 14px;
}
#mobile .m-nav ul li li a:after {
  content: '-';
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .m-nav ul li li a:hover {
  padding-left: 30px;
}
#mobile .yuy {
  padding: 20px 0;
}
#mobile .yuy h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
#mobile .yuy ul li {
  width: auto;
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  padding-right: 5px;
  border-right: 1px solid #eee;
  margin-bottom: 5px;
}
#mobile .yuy ul li img {
  max-width: 30px;
}
#mobile h6 {
  font-size: 20px;
  text-align: center;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #eee;
}
#mobile #gotop {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #eee;
  background: white;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  position: fixed;
  right: 10px;
  bottom: 20px;
  display: none;
}
#mobile.active .m-btn i {
  margin: 0 !important;
}
#mobile.active .m-btn i.ie1 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#mobile.active .m-btn i.ie2 {
  opacity: 0;
}
#mobile.active .m-btn i.ie3 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#mobile.active:before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#mobile.active .box {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 70px;
  }
  #nav-height {
    display: none;
  }
}
.hover-language {
  margin-right: 25px;
}
.hover-language .zhuyu {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
}
.hover-language ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  white-space: nowrap;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
.hover-language ul.sub-menu li a {
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 12px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
.hover-language ul.sub-menu li:hover a {
  background: #ffb11b;
  color: white;
}
.hover-language:hover ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#banner {
  position: relative;
}
#banner li {
  position: relative;
}
#banner li > video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#banner .content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner h2 {
  margin-bottom: 15px;
  font-size: 100px;
  line-height: 1.2;
  font-family: var(--font);
  font-weight: bold;
  color: #FFFFFF;
}
#banner p {
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
}
#banner .share {
  position: absolute;
  left: 3%;
  bottom: 10%;
  text-align: center;
}
#banner .share .links {
  display: inline-block;
  vertical-align: bottom;
}
#banner .share .links a {
  display: block;
  color: #FFFFFF;
}
#banner .share .links a:hover {
  color: #c3a786;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}
#banner .share .links a + a {
  margin-top: 22px;
}
#banner .share .text {
  margin-left: 50px;
  display: inline-block;
  vertical-align: bottom;
}
#banner .share .text > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  color: #FFFFFF;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}
#banner .share .text > div::after {
  content: "";
  margin: auto 15px;
  display: block;
  width: 110px;
  border-bottom: 1px solid #FFFFFF;
}
.baseTit {
  font-size: 56px;
  font-family: var(--font);
  font-weight: bold;
}
.baseBtn {
  display: inline-block;
  font-size: 0;
  white-space: nowrap;
}
.baseBtn span {
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
}
.baseBtn i {
  margin-left: 35px;
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid currentcolor;
  position: relative;
}
.baseBtn i::before {
  content: "";
  display: block;
  width: 35px;
  border-bottom: 1px solid currentColor;
  position: absolute;
  right: 11px;
  top: 50%;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.baseBtn i::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 3px;
  height: 3px;
  border-radius: inherit;
  background-color: currentcolor;
}
.baseBtn:hover i {
  border-style: dotted;
  -webkit-animation: rotate 2s linear infinite;
  -moz-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  animation-delay: .3s;
}
.baseBtn:hover i::before {
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

@-webkit-keyframes rotateX {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotateX {
    0% {
        -moz-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotateX {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.init-1 {
  min-height: 100vh;
  color: #FFFFFF;
}
.init-1 .circle {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 17%;
  height: 70vh;
  width: 70vh;
  transform: translateX(-50%);
}
.init-1 .circle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/product-circle.png)no-repeat center;
  background-size: 100% 100%;
  -webkit-animation: rotateX 40s .3s linear infinite;
  -moz-animation: rotateX 40s .3s linear infinite;
  animation: rotateX 40s .3s linear infinite;
}
.init-1 .bgs {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.init-1 .bgs .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
}
.init-1 .bgs .bg.active {
  opacity: 1;
  z-index: 1;
}
.init-1 .bgs .pic {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 11;
  height: 100%;
  width: 100%;
  background: inherit;
}
.init-1 .bgs .pic::after,
.init-1 .bgs .pic::before {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: inherit;
  -webkit-mask-image: url(../images/mask.png);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-filter: blur(5px);
  filter: blur(5px);
}
.init-1 .bgs .pic::after {
  z-index: 2;
  opacity: .8;
}
.init-1 .bgs .pic::before {
  background-color: black;
  background-image: unset;
  z-index: 1;
}
.init-1 .line {
  position: absolute;
  width: 36%;
  height: 1px;
  left: 0;
  top: 50.3%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.init-1 .line i {
  width: .5rem;
  height: .5rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  border-radius: 100%;
}
.init-1 .line::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  opacity: .7;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -moz-transition: transform 1s, -moz-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s, -moz-transform 1s;
}
.init-1 .line-2 {
  right: 0;
  left: auto;
}
.init-1 .line-2 i {
  left: 0;
  right: auto;
}
.init-1 .line-2::after {
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}
.init-1 .content {
  z-index: 9;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.init-1 .content li .box {
  padding: 20%;
  min-height: 50vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: .5;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.init-1 .content li .box .tag {
  color: #e9c4af;
  margin-bottom: -30px;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.init-1 .content li .box .tag::after {
  content: "";
  display: block;
  width: 1px;
  height: 0;
  margin: auto;
  background-color: #FFFFFF;
  opacity: .8;
  -webkit-transition: height .5s ease;
  -moz-transition: height .5s ease;
  transition: height .5s ease;
}
.init-1 .content li .box .name {
  margin-bottom: 30px;
  font-size: 25px;
  line-height: 1.5;
  min-height: 3em;
  font-weight: bold;
  font-family: var(--font);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.init-1 .content .slick-active.slick-center li .box {
  opacity: 1;
}
.init-1 .content .slick-active.slick-center li .box .tag {
  margin-bottom: 10px;
  opacity: 1;
}
.init-1 .content .slick-active.slick-center li .box .tag::after {
  height: 60px;
}
.init-1 .content .slick-active.slick-center li .box .name {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
.init-1.on .line::after {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
.i-category {
  background: url(../images/cate-bg.jpg) no-repeat;
  color: #FFFFFF;
  position: relative;
}
.i-category::after {
  
  width: 160px;
  height: 240px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #c3a786;
}
.i-category .box {
  padding: 70px 70px 0;
  position: relative;
}
.i-category .left {
  width: 75%;
  vertical-align: bottom;
  margin-bottom: 190px;
  padding-right: 150px;
}
.i-category .right {
  width: 25%;
  vertical-align: bottom;
  position: relative;
  z-index: 1;
}
.i-category .right .btns {
  margin: auto;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.i-category .right .btns .all {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #FFFFFF;
}
.i-category .right .btns .arrows span.arrow {
  cursor: pointer;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.i-category .right .btns .arrows span.arrow:hover {
  opacity: 1;
}
.i-category .cate_name {
  font-size: 48px;
  letter-spacing: 2px;
  font-family: var(--font);
  font-weight: bold;
  color: #FFFFFF;
  position: absolute;
  z-index: 1;
  left: 54%;
  bottom: 30%;
  width: 545px;
  padding: 15px 30px;
}
.i-category .cate_name::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 50%;
  background: url(../images/cate-bg.jpg);
}
.i-category .bottom {
  position: absolute;
  width: 100%;
  height: 190px;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 210px;
  padding-right: 70px;
}
.i-category .bottom .ll {
  width: 20%;
}
.i-category .bottom .ll .page {
  font-size: 32px;
  font-family: var(--font);
  font-weight: bold;
  color: #FFFFFF;
}
.i-category .bottom .rr {
  width: 80%;
}
.i-category .bottom .rr > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.i-category .bottom .rr > div::after {
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 15px;
  border-bottom: 1px solid #FFFFFF;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -moz-transition: transform 1s, -moz-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s, -moz-transform 1s;
}
.i-category.on .bottom .rr > div::after {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
@-webkit-keyframes ks {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes ks {
  from {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate2 {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@-moz-keyframes rotate2 {
  from {
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -moz-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes rotate2 {
  from {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.our-about {
  background: url(../images/base-bg.jpg) center;
  padding: 100px 0 130px;
}
.our-about .Title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.our-about .Title .baseTit {
  margin: 0 35px;
}
.our-about .play {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
}
.our-about .play::before {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(195, 167, 134, 0.35);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.our-about .content {
  margin-bottom: 40px;
  line-height: 1.8;
  padding-top: 60px;
  position: relative;
}
.our-about .content h1 {
  display: inline;
}
.our-about .content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
 
  border-left: 1px solid #000000;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -moz-transition: transform 1s, -moz-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s, -moz-transform 1s;
}
.our-about .list {
  margin-top: 90px;
}
.our-about .baseBtn {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
.our-about.on .content::before {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
.base_data ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.base_data li .box {
  width: 186px;
  height: 186px;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.base_data li .box .dot {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-animation: rotate 10s linear infinite;
  -moz-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}
.base_data li .box .dot::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -webkit-calc(50% - 5px);
  top: -moz-calc(50% - 5px);
  top: calc(50% - 5px);
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 11px;
  background-color: #000000;
}
.base_data li .box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/data-box.png) no-repeat center;
  background-size: 100% 100%;
  -webkit-animation: rotate 10s linear infinite;
  -moz-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}
.base_data li .box > div.num {
  font-size: 36px;
  color: #c3a786;
  font-family: var(--font);
  font-weight: bold;
}
.base_data li .box > div:last-child {
  font-weight: 500;
}
.base_data li .p {
  margin-top: 20px;
  font-size: 20px;
  font-family: var(--font);
  font-weight: 400;
}
.base_data li:nth-child(2) .box .dot {
  -webkit-animation: rotate2 10s linear infinite;
  -moz-animation: rotate2 10s linear infinite;
  animation: rotate2 10s linear infinite;
}
.base_data li:nth-child(2) .box .dot::before {
  left: -webkit-calc(50% - 5px);
  left: -moz-calc(50% - 5px);
  left: calc(50% - 5px);
  top: -5px;
}
.base_data li:nth-child(2) .box::before {
  -webkit-animation: rotate2 10s linear infinite;
  -moz-animation: rotate2 10s linear infinite;
  animation: rotate2 10s linear infinite;
}
.i-advantage {
  background: url(../images/solution-bg.jpg) no-repeat center;
  background-size: cover;
  color: #FFFFFF;
  padding: 90px 0;
}
.i-advantage .left .img {
  display: inline-block;
  position: relative;
}
.i-advantage .left .img > img {
  border-radius: 0 150px 0 150px;
}
.i-advantage .left .img .cms {
  position: absolute;
  right: -66px;
  bottom: -66px;
  -webkit-animation: rotate 10s linear infinite;
  -moz-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}
.i-advantage .right {
  margin-top: 7%;
}
.i-advantage .baseBtn {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
.i-advantage .text1 {
  font-style: italic;
  color: #dcdcdc;
  padding-left: 15%;
  line-height: 2;
  margin-top: 30px;
  margin-bottom: 15px;
}
.i-advantage .text2 {
  padding-right: 15%;
  line-height: 2;
  margin-bottom: 40px;
}
.i-advantage .list {
  margin-top: 140px;
}
.i-advantage .list ul {
  margin: -15px;
}
.i-advantage .list li {
  padding: 15px;
}
.i-advantage .list li img {
  display: block;
  margin: auto;
  opacity: .3;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.i-advantage .list li img:hover {
  opacity: 1;
}
.our-news {
  background: url(../images/base-bg.jpg) center;
  padding: 100px 0;
}
.our-news .text {
  max-width: 470px;
}
.our-news .list li {
  padding: 20px 80px 20px 20px;
  position: relative;
}
.our-news .list li::after {
  content: "";
  font-size: 300px;
  line-height: 1;
  color: #c3a786;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.our-news .list li .img {
  position: relative;
}
.our-news .list li .img .date {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -80px;
}
.our-news .list li .img .date span {
  letter-spacing: 1px;
}
.our-news .list li .img .date time {
  font-style: italic;
}
.our-news .list li .name {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}
.our-news .list li .name a {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 100% / 0px 1px no-repeat;
  background: -webkit-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: -moz-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
}
.our-news .list li .name:hover > a {
  background-size: 100% 1px;
}
#footer {
  background-color: #202328;
  color: #FFFFFF;
}
#footer .foot-top {
  padding: 65px 0 35px;
}
#footer .foot-top .top {
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#footer .foot-top .top .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#footer .foot-top .top .left span {
  font-style: italic;
  color: #c3c3c3;
}
#footer .foot-top .top .left .Tit {
  font-size: 48px;
  font-family: var(--font);
  font-weight: 400;
}
#footer .foot-top .top .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#footer .foot-top .top .right .btn {
  margin-right: 40px;
}
#footer .foot-top .top .right .btn a {
  display: inline-block;
  padding: 15px 30px;
  font-weight: 500;
  color: #000000;
  background-color: #e9e9ea;
  border: 1px solid #e9e9ea;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
#footer .foot-top .top .right .btn a:hover {
  color: #e9e9ea;
  background-color: transparent;
}
#footer .foot-top .top .right .desc {
  padding-left: 70px;
  position: relative;
}
#footer .foot-top .top .right .desc img {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#footer .foot-top .top .right .desc span {
  font-size: 25px;
  font-family: var(--font);
  font-weight: 400;
}
#footer .foot-top .top .right .desc .phone {
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
}
#footer .foot-top .bottom {
  padding: 80px 0;
}
#footer .foot-top .bottom .codes {
  margin-top: 30px;
}
#footer .foot-top .bottom .codes .share .links {
  display: inline-block;
  vertical-align: bottom;
}
#footer .foot-top .bottom .codes .share .links a {
  display: inline-block;
  color: #FFFFFF;
}
#footer .foot-top .bottom .codes .share .links a:hover {
  color: #c3a786;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}
#footer .foot-top .bottom .codes .share .links a + a {
  margin-left: 30px;
}
#footer .foot-top .bottom .codes .share .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
#footer .foot-top .bottom .codes .share .text::before {
  content: "";
  margin: auto 15px auto auto;
  display: block;
  width: 50%;
  border-bottom: 1px solid #FFFFFF;
}
#footer .foot-top .bottom .foot-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#footer .foot-top .bottom .foot-content .foot-block {
  max-width: 350px;
}
#footer .foot-top .bottom .foot-content .foot-block.case {
  max-width: 240px;
}
#footer .foot-top .bottom .foot-content .foot-block h4 {color:#FFF;
  font-size: 24px;
  font-family: var(--font);
  font-weight: bold;
}
#footer .foot-top .bottom .foot-content .foot-block ul li {
  color: #e7e7e7;
  font-size: 16px;
  line-height: 2;
}
#footer .foot-top .bottom .foot-content .foot-block ul li span {
  color: #FFFFFF;
  font-weight: 500;
}
#footer .foot-top .bottom .foot-content .foot-block ul li a {color: #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 100% / 0px 1px no-repeat;
  background: -webkit-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: -moz-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
}
#footer .foot-top .bottom .foot-content .foot-block ul li:hover > a {
  color: #FFFFFF;
  background-size: 100% 1px;
}
#footer .foot-top .bottom .foot-content .foot-block ol {
  margin: -2px;
}
#footer .foot-top .bottom .foot-content .foot-block ol li {
  padding: 2px;
}
#footer .foot-bottom {
  background-color: #0b0d10;
}
#footer .foot-bottom .footlink {
  width: 400px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0 10px;
    opacity: 0.5;
    font-size: 16px;
}
#footer .foot-bottom p,
#footer .foot-bottom a {color: #fff;
  display: inline-block;
  vertical-align: middle;
}
#footer .foot-bottom img {
  max-height: 16px;
}
#ewm {
  width: 75px;
  border: 3px solid #FFFFFF;
}
@media (max-width: 1530px) {
  .ui.container {
    width: 1230px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 15px;
    font-size: 16px;
  }
  #header .nav .ui.menu .h-search {
    margin-left: 15px;
    margin-right: 15px;
  }
  .hover-language {
    margin-right: 15px;
  }
  #banner h2 {
    font-size: 60px;
  }
  #banner p {
    font-size: 18px;
  }
  #banner .share {
    display: none;
  }
  .init-1 .content li .box {
    padding: 10%;
  }
  .i-category .cate_name {
    font-size: 32px;
    width: 400px;
  }
  .baseTit {
    font-size: 40px;
  }
  .i-advantage .right {
    margin-top: 0;
  }
  .i-advantage .baseBtn {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  #footer .foot-top .bottom .foot-content .foot-block h4 {
    font-size: 20px;
  }
  #footer .foot-top .bottom .foot-content .foot-block {
    max-width: 300px;
  }
  #footer .foot-top .bottom .codes .share .links a + a {
    margin-left: 20px;
  }
}
@media (max-width: 1230px) {
  .ui.container {
    width: 1000px;
  }
  #header .nav .ui.menu .logo {
    width: 250px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 10px;
    font-size: 14px;
  }
  #banner h2 {
    font-size: 40px;
  }
  #banner p {
    font-size: 16px;
  }

  .init-1 .circle{
    display: none;
  }

  .init-1 {
    min-height: auto;
    padding: 60px 0;
  }
  .init-1 .content {
    position: relative;
    z-index: 1;
    left: auto;
    top: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .init-1 .content .slick-active.slick-center li .box .name {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .init-1 .content li .box {
    min-height: 400px;
  }
  .init-1 .content li .box .name {
    font-size: 20px;
    min-height: auto;
  }
  .init-1 .content .slick-active.slick-center li .box .tag::after {
    height: 20px;
  }
  .font-18 {
    font-size: 14px;
  }
  .font-16 {
    font-size: 14px;
  }
  .i-category::after {
    width: 100px;
    height: 160px;
  }
  .i-category .box {
    padding: 35px 35px 0;
  }
  .i-category .left {
    width: 75%;
    padding-right: 70px;
  }
  .i-category .right {
    width: 25%;
  }
  .i-category .right .btns .all {
    font-size: 14px;
  }
  .i-category .right .btns {
    width: 120px;
    height: 120px;
    padding: 10px;
  }
  .i-category .left {
    margin-bottom: 100px;
  }
  .i-category .bottom {
    height: 100px;
    padding-left: 140px;
  }
  .i-category .bottom .ll .page {
    font-size: 24px;
  }
  .i-category .cate_name {
    font-size: 20px;
    width: 300px;
    letter-spacing: 1px;
    padding: 10px 20px;
  }
  .baseTit {
    font-size: 32px;
  }
  .our-about .baseBtn {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .base_data li .p {
    font-size: 16px;
  }
  .base_data li .box > div.num {
    font-size: 24px;
  }
  .base_data li .box {
    width: 150px;
    height: 150px;
  }
  .base_data ul {
    display: block;
  }
  .base_data li {
    width: 33.33%!important;
  }
  .our-about .list {
    margin-top: 60px;
  }
  .i-advantage .text1 {
    padding-left: 0;
  }
  .i-advantage .text2 {
    padding-right: 0;
  }
  .i-advantage .left .img .cms {
    width: 90px;
    height: 90px;
    right: -45px;
    bottom: -45px;
  }
  .i-advantage .list {
    margin-top: 90px;
  }
  #footer .foot-top .top .left .Tit {
    font-size: 32px;
  }
  #footer .foot-top .top .right .desc span {
    font-size: 18px;
  }
  #footer .foot-top .top .right .desc .phone {
    font-size: 20px;
  }
  #footer .foot-top .top .right .btn a {
    padding: 10px 15px;
  }
  #footer .foot-top .bottom .foot-content .foot-block ul li {
    font-size: 14px;
  }
  #footer .foot-top .bottom .foot-content .foot-block h4 {
    font-size: 16px;
  }
  .hide-1200 {
    display: none!important;
  }
  #footer .foot-bottom img {
    max-height: 14px;
  }
}
@media (max-width: 1000px) {
  .i-strength .grid-box .column{max-width:30%;}
  .ui.container {
    max-width: 90%;
  }
#header .nav .ui.menu{
   width:100%;
  }
  #mobile {
    display: block;
  }
  #banner h2 {
    font-size: 30px;
  }
  .init-1 .line {
    display: none;
  }
  .init-1 .content li .box {
    opacity: 1;
  }
  .init-1 .content li .box .tag {
    margin-bottom: 10px;
    opacity: 1;
  }
  .init-1 .content li .box .tag::after {
    height: 20px;
  }
  .i-category .left {
    padding-right: 35px;width: 64% ! important;
  }
    .i-category .right {
    width: 36% ! important;
  }
  .i-category .box{display: flex;
    align-items: center;
    justify-content: center;}
  .i-category .cate_name {
    font-size: 16px;
    width: 250px;
  }
  .i-category .bottom .ll .page {
    font-size: 18px;
  }
  .init-1 .content li .box {
    min-height: auto;
  }
  .init-1 .content li .box {
    padding: 5%;
  }
  .our-about {
    padding: 60px 0;
  }
  .baseTit {
    font-size: 24px;
  }
  .i-advantage {
    padding: 60px 0;
  }
  .i-advantage .left {
    width: 100%!important;
    padding: 0;
  }
  .i-advantage .left .img .cms {
    right: 50%;
    bottom: 50%;
    margin-right: -45px;
    margin-bottom: -45px;
  }
  .i-advantage .right {
    width: 100%!important;
    padding: 0;
    margin-top: 40px;
  }
  .i-advantage .list {
    margin-top: 40px;
  }
  .our-news {
    padding: 60px 0;
  }
  .our-news .fl,
  .our-news .fr {
    float: none;
  }
  .our-news .text {
    max-width: 100%;
  }
  .our-news .list li .name {
    font-size: 16px;
  }
  .our-news .list li::after {
    font-size: 200px;
  }
  #footer .foot-top {
    padding: 0;
  }
  #footer .foot-top .top .box {
    display: block;
  }
  #footer .foot-top .top .right {
    margin-top: 25px;
  }
  #footer .foot-top .bottom {
    padding: 40px 0;
  }
  .hide-1000 {
    display: none!important;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 100%;
  }
  #banner h2 {
    font-size: 24px;
  }
  #banner h2 br {
    display: none;
  }
  #banner p {
    font-size: 14px;
  }
  .i-category .left {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
  .i-category .right {
    display: none;
  }
  .i-category::after {
    display: none;
  }
  .i-category .cate_name {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    padding: 0;
  }
  .i-category .cate_name::before {
    display: none;
  }
  .i-category .bottom {
    position: relative;
    left: auto;
    bottom: auto;
    padding: 0;
    display: block;
    height: auto;
    margin-top: 30px;
  }
  .i-category .bottom .ll {
    display: none;
  }
  .i-category .bottom .rr {
    width: 100%;
  }
  .i-category .box {
    padding: 60px 15px;
  }
  .baseTit {
    font-size: 18px;
  }
  .base_data li {
    width: 100% !important;
  }
  .base_data li + li {
    margin-top: 20px;
  }
  .base_data li .box {
    width: 100px;
    height: 100px;
  }
  .base_data li .box > div.num {
    font-size: 18px;
  }
  .base_data li .p {
    font-size: 14px;
  }
  .i-advantage .left .img > img {
    border-radius: 0 50px 0 50px;
  }
  #footer .foot-top .top .right {
    display: block;
  }
  #footer .foot-top .top .right .desc {
    margin-top: 25px;
  }
  #footer .foot-top .bottom .foot-content {
    display: block;
  }
  #footer .foot-top .bottom .foot-content .foot-block {
    max-width: 100%;
  }
  #footer .foot-top .bottom .foot-content .foot-block + .foot-block {
    margin-top: 30px;
  }
}
.inner-banner {
  background-color: #f9f6f3;
  padding: 90px 0;
}
.inner-banner .name {
  font-size: 36px;
  font-weight: 500;
}
.mbx span {
  color: #c3a786;
}
@media (max-width: 1000px) {
  .inner-banner {
    padding: 60px 0;
  }
  .inner-banner .name {
    font-size: 24px;
  }

div#seo_other {
    display: none;
}




}
.innerTag {
  color: #c3a786;
}
.innerTit {
  font-family: var(--font);
}
.about-page .about-1 {
  padding-right: 11%;
}
.about-page .about-1 .left {
  padding-right: 4%;
  vertical-align: middle;
}
.about-page .about-1 .left .play {
  color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 145px;
  height: 145px;
  line-height: 145px;
  text-align: center;
  cursor: pointer;
}
.about-page .about-1 .left .play:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/play-icon2.png) no-repeat center;
  background-size: 100% 100%;
  animation: rotate 5s linear infinite;
}
.about-page .about-1 .right {
  padding-left: 4%;
  vertical-align: middle;
}
.about-page .about-1 .right .Tit::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 104%;
  width: 128px;
  border-bottom: 2px solid #000000;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -moz-transition: transform 1s, -moz-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s, -moz-transform 1s;
}
.about-page .about-1 .right .text {
  line-height: 1.8;
  max-height: 14.4em;
  overflow-y: auto;
}
.about-page .about-1 .right .list {
  margin-top: 80px;
  margin-left: -10%;
}
.about-page .about-1 .right .base_data ul {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-page .about-1 .right .base_data ul li {
  width: auto;
}
.about-page .about-1 .right .pro_list {
  margin-top: 80px;
  margin-left: -10%;
}
.about-page .about-1 .right .pro_list ul {
  margin: -30px;
}
.about-page .about-1 .right .pro_list li {
  padding: 30px;
}
.about-page .about-1.on .right .Tit::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
.about-page .about-2 {
  padding-top: 120px;
}
.about-page .about-2 .right {
  position: relative;
}
.about-page .about-2 .right > ul li {
  margin-bottom: 45px;
  padding-right: 65px;
}
.about-page .about-2 .right > ul li img {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.about-page .about-2 .right .slick-slide {
  position: relative;
}
.about-page .about-2 .right .slick-current.slick-center {
  z-index: 1;
}
.about-page .about-2 .right .slick-current.slick-center li img {
  -webkit-transform: translate(0, 45px);
  -moz-transform: translate(0, 45px);
  -ms-transform: translate(0, 45px);
  transform: translate(0, 45px);
}
.about-page .about-2 .right .dots {
  position: absolute;
  left: 30px;
  right: 65px;
  bottom: 5%;
}
.about-page .about-2 .right .dots li {
  margin: 0 3px;
  width: 7px;
  height: 7px;
  border-radius: 7px;
  background-color: #000000;
  display: inline-block;
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  cursor: pointer;
}
.about-page .about-2 .right .dots li button {
  display: none;
}
.about-page .about-2 .right .dots li.slick-active {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
.about-page .about-2 .list {
  padding: 100px 0;
  max-width: 1200px;
  margin: auto;
  position: relative;
}
.about-page .about-2 .list ul {
  margin: -15px;
}
.about-page .about-2 .list li {
  padding: 15px;
}
.about-page .about-2 .list li img {
  display: block;
  margin: auto;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.about-page .about-2 .list li:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.about-page .about-2 .list span.arrow {
  font-size: 30px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.about-page .about-2 .list span.arrow.arrow_l {
  left: 0;
}
.about-page .about-2 .list span.arrow.arrow_r {
  right: 0;
}
.about-page .about-3 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.about-page .about-3 li .box {
  color: #FFFFFF;
  background-color: #202328;
  padding: 15% 10%;
  height: 100%;
}
.about-page .about-3 li .box .name {
  font-size: 30px;
  font-family: var(--font);
  font-weight: bold;
  line-height: 3;
  color: #c3a786;
}
.about-page .about-3 li .box .name span {
  line-height: 1.5;
  display: inline-block;
  vertical-align: bottom;
}
.about-page .about-3 li .box .text {
  line-height: 1.8;
}
.about-page .about-3 li:nth-child(2) .box {
  background-color: #4f5155;
}
.about-page .about-4 {
  padding-top: 90px;
}
.about-page .about-4 .text {
  line-height: 1.8;
}
.about-page .about-4 .list ul {
  margin: -20px;
}
.about-page .about-4 .list li {
  padding: 20px;
}
.about-page .about-5 {
  padding: 170px 0 120px;
  background: url(../images/about-5-bg.jpg) no-repeat left 40% top;
}
.about-page .about-5 .text {
  line-height: 1.8;
}
.about-page .about-5 .left {
  padding-top: 60px;
  padding-left: 100px;
  position: relative;
}
.about-page .about-5 .left img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  width: 75%;
}
.about-page .about-5 .left img:last-child {
  position: relative;
  z-index: 1;
}
.about-page .about-5 .right {
  margin-top: 100px;
}
.about-page .about-6 {
  padding: 120px 0;
  background: url(../images/about-6-bg.jpg) no-repeat center;
  background-attachment: fixed;
  color: #FFFFFF;
}
.about-page .about-6 ul {
  margin: -45px;
}
.about-page .about-6 li {
  padding: 45px;
}
.about-page .about-6 li .num {
  font-size: 89px;
  font-family: var(--font);
  font-weight: bold;
  color: #c3a786;
}
.about-page .about-6 li .text {
  line-height: 1.8;
}
.about-page .about-7 {
  padding: 130px 0;
}
.about-page .about-7 span.arrow {
  font-size: 16px;
  display: inline-block;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  line-height: 45px;
  text-align: center;
  border: 1px solid currentcolor;
  opacity: .5;
  cursor: pointer;
}
.about-page .about-7 span.arrow:hover {
  opacity: 1;
}
.about-page .about-7 .list {
  margin-top: 80px;
}
.about-page .about-7 .list li {
  padding-right: 50%;
  position: relative;
}
.about-page .about-7 .list li .content {
  position: absolute;
  width: 70%;
  right: 50px;
  top: 50%;
  padding: 20px;
  background: rgb(255 255 255 / 90%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.about-page .about-7 .list li .content .name {
  font-size: 30px;
  font-family: var(--font);
  font-weight: 400;
}
.about-page .about-7 .list li .content .text {
  margin-top: 15px;
  line-height: 1.8;
}
@media (max-width: 1600px) {
  .about-page .about-1 {
    padding-right: 5%;
  }
  .about-page .about-3 li .box .name {
    font-size: 24px;
  }
  .about-page .about-3 li .box {
    padding: 10% 5%;
  }
}
@media (max-width: 1400px) {
  .about-page .about-1 {
    padding-right: 15px;
  }
  .about-page .about-1 .left {
    padding-right: 0;
  }
  .about-page .about-1 .right .list {
    margin-left: 0;
  }
  .about-page .about-1 .right .text {
    max-height: 10.8em;
  }
  .innerTit {
    font-size: 32px;
  }
  .about-page .about-2 .left {
    margin-top: 0;
  }
  .about-page .about-5 .right {
    margin-top: 0;
  }
  .about-page .about-6 ul {
    margin: -25px;
  }
  .about-page .about-6 li {
    padding: 25px;
  }
  .about-page .about-6 li .num {
    font-size: 60px;
  }
  .about-page .about-7 .list li .content .name {
    font-size: 24px;
  }
}
@media (max-width: 1000px) {
  .about-page .about-1 {
    padding: 60px 0;
  }
  .about-page .about-1 .box {
    max-width: 700px;
    margin: auto;
    padding: 0 15px;
  }
  .about-page .about-1 .left {
    width: 100%;
  }
  .about-page .about-1 .right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .about-page .about-1 .right .Tit::before {
    display: none;
  }
  .about-page .about-1 .right .text {
    max-height: unset;
  }
  .about-page .about-1 .right .list {
    margin-top: 40px;
  }
  .about-page .about-2 {
    padding-top: 60px;
  }
  .about-page .about-2 .left {
    width: 100%;
    padding: 0;
  }
  .about-page .about-2 .right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .about-page .about-2 .right .dots {
    left: 0;
  }
  .about-page .about-2 .list {
    padding: 60px 0;
  }
  .about-page .about-3 ul {
    display: block;
  }
  .about-page .about-3 li {
    width: 100%!important;
  }
  .about-page .about-3 li .box {
    padding: 60px 5%;
  }
  .about-page .about-3 li .box .name {
    line-height: normal;
  }
  .about-page .about-3 li .box .text {
    margin-top: 20px;
  }
  .about-page .about-4 {
    padding-top: 60px;
  }
  .about-page .about-5 {
    padding: 120px 0 60px;
  }
  .about-page .about-5 .left {
    width: 100%;
  }
  .about-page .about-5 .right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .about-page .about-6 {
    padding: 60px 0;
  }
  .about-page .about-6 ul {
    margin: -15px;
  }
  .about-page .about-6 li {
    padding: 15px;
    width: 50%!important;
  }
  .about-page .about-6 li .num {
    font-size: 40px;
  }
  .about-page .about-7 {
    padding: 60px 0;
  }
  .about-page .about-7 .list {
    margin-top: 40px;
  }
}
@media (max-width: 700px) {
  .innerTit {
    font-size: 24px;
  }
  .about-page .about-3 li .box .name {
    font-size: 20px;
  }
  .about-page .about-5 .left {
    padding-top: 40px;
    padding-left: 50px;
  }
  .about-page .about-2 .right > ul li img {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
  .about-page .about-2 .right .slick-current.slick-center li img {
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
  .about-page .about-2 .right > ul li {
    margin-bottom: 0;
    padding-right: 0;
  }
  .about-page .about-2 .right .dots {
    right: 0;
  }
  .about-page .about-7 .list ul {
    margin: -15px;
  }
  .about-page .about-7 .list li {
    padding-right: 0;
    padding: 15px;
  }
  .about-page .about-7 .list li .content {
    position: relative;
    right: auto;
    top: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .about-page .about-6 li {
    width: 100%!important;
  }
}
.app-page {
  padding-bottom: 120px;
}
.app-page .app-1 {
  padding: 90px 0;
}
.app-page .app-1 .text {
  line-height: 1.8;
  margin-top: 20px;
}
.app-page .app-2 + .app-2 {
  margin-top: 170px;
}
.app-page .app-2:not(:last-child) .box {
  border-bottom: 1px solid #8a8a8a;
}
.app-page .app-2 .box {
  padding-bottom: 55px;
}
.app-page .app-2 .left {
  width: 40%;
  vertical-align: middle;
}
.app-page .app-2 .right {
  width: 60%;
  padding-left: 50px;
  vertical-align: middle;
}
.app-page .app-2 .right .name {
  font-size: 30px;
  font-family: var(--font);
  font-weight: bold;
}
.app-page .app-2 .right .text {
  line-height: 1.8;
  margin-top: 15px;
}
.app-page .app-2 .right .list {
  margin-top: 40px;
}
.app-page .app-2 .right .list ul {
  margin: -19px;
}
.app-page .app-2 .right .list li {
  padding: 19px;
}
@media (max-width: 1000px) {
  .app-page .app-1 {
    padding: 60px 0;
  }
  .app-page .app-2 .left {
    width: 100%;
    text-align: center;
  }
  .app-page .app-2 .right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .app-page .app-2 + .app-2 {
    margin-top: 60px;
  }
  .app-page {
    padding-bottom: 60px;
  }
  .app-page .app-2 .right .name {
    font-size: 24px;
  }
  .app-page .app-2 .right .list ul {
    margin: -10px;
  }
  .app-page .app-2 .right .list li {
    padding: 10px;
  }
}
.case-page {
  padding: 120px 0;
}
.case-page ul {
  margin: -45px -17px;
}
.case-page li {
  padding: 45px 17px;
}
.case-page li .name {
  font-size: 18px;
  font-weight: 400;
  text-align: left;
}
.case-page li .name a{
   -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 100% / 0px 1px no-repeat;
  background: -webkit-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: -moz-linear-gradient(left, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 100% / 0px 1px no-repeat;
}
.case-page li .name:hover > a{
  color: #000;
  background-size: 100% 1px;
}
@media (max-width: 1000px) {
  .case-page {
    padding: 60px 0;
  }
  .case-page li .name {
    font-size: 16px;
  }
  .case-page ul {
    margin: -15px;
  }
  .case-page li {
    padding: 15px;
  }
}
.trends-page .trends-1 {
  margin-top: 200px;
}
.trends-page .trends-2 {
  margin-top: 120px;
}
.trends-page .trends-2 .left {
  width: 45%;
  vertical-align: middle;
  padding-right: 5%;
}
.trends-page .trends-2 .right {
  width: 55%;
  position: relative;
  vertical-align: middle;
}
.trends-page .trends-2 .right .Tit {
  font-size: 30px;
  font-family: var(--font);
  font-weight: bold;
  position: relative;
}
.trends-page .trends-2 .right .Tit::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 104%;
  width: 128px;
  border-bottom: 2px solid #000000;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -moz-transition: transform 1s, -moz-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s, -moz-transform 1s;
}
.trends-page .trends-2 .right .text span {
  font-weight: 400;
  font-style: italic;
}
.trends-page .trends-2 .right .list {
  margin: 40px 0 40px -20%;
  padding: 40px 80px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.trends-page .trends-2 .right .list ul {
  margin: -15px;
}
.trends-page .trends-2 .right .list li {
  padding: 15px;
}
.trends-page .trends-2 .right .list li > div {
  display: inline-block;
  padding-left: 70px;
}
.trends-page .trends-2 .right .list i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.trends-page .trends-2 .right .list .num {
  font-size: 32px;
  font-family: var(--font);
  font-weight: bold;
}
.trends-page .trends-2.on .right .Tit::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
.trends-page .trends-3 {
  margin-top: 120px;
}
.trends-page .trends-3.row .box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.trends-page .trends-3.row .box .right {
  padding-left: 0;
  padding-right: 10%;
  text-align: right;
}
.trends-page .trends-3.row .box .right .name::before {
  left: 104%;
  right: auto;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}
.trends-page .trends-3 .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.trends-page .trends-3 .box .left {
  width: 53%;
}
.trends-page .trends-3 .box .left img {
  width: 100%;
}
.trends-page .trends-3 .box .left ul.slick-dots {
  position: absolute;
  left: 50%;
  bottom: 5%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.trends-page .trends-3 .box .left ul.slick-dots li {
  margin: 0 3px;
  width: 7px;
  height: 7px;
  border-radius: 7px;
  background-color: #000;
  display: inline-block;
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  cursor: pointer;
}
.trends-page .trends-3 .box .left ul.slick-dots li button {
  display: none;
}
.trends-page .trends-3 .box .left ul.slick-dots li.slick-active {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
.trends-page .trends-3 .box .right {
  width: 47%;
  padding-left: 10%;
}
.trends-page .trends-3 .box .right .name {
  font-size: 30px;
  font-family: var(--font);
  font-weight: bold;
  position: relative;
}
.trends-page .trends-3 .box .right .name::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  margin-top: -1px;
  right: 104%;
  width: 170px;
  border-bottom: 2px solid #000000;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -moz-transition: transform 1s, -moz-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s, -moz-transform 1s;
}
.trends-page .trends-3.on .box .right .name::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
}
.trends-page .trends-4 {
  padding: 140px 0;
}
.trends-page .trends-4 .Tit {
  font-size: 30px;
  font-family: var(--font);
  font-weight: bold;
}
.trends-page .trends-4 .form {
  max-width: 1080px;
  margin: 50px auto 0;
}
.trends-page .trends-4 .form ul {
  margin: -10px;
}
.trends-page .trends-4 .form li {
  padding: 10px;
}
.trends-page .trends-4 .form li.wid-100 {
  width: 100%;
}
.trends-page .trends-4 .form input,
.trends-page .trends-4 .form textarea {
  width: 100%;
  padding: 15px 30px;
  font-size: 14px;
  border: 1px solid #d2d2d2;
}
.trends-page .trends-4 .form input[type="submit"] {
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: #000000;
  font-weight: bold;
  letter-spacing: 1px;
  width: auto;
  border: 1px solid #000;
  transition: .5s ease;
}
.trends-page .trends-4 .form input[type="submit"]:hover {
  background-color: transparent;
  color: #000;
}
@media (max-width: 1400px) {
  .about-page .about-1 .right .pro_list {
    margin-left: 0;
  }
  .trends-page .trends-2 .right .list {
    padding: 20px 40px;
  }
  .trends-page .trends-2 .right .list .num {
    font-size: 24px;
  }
}
@media (max-width: 1000px) {
  .about-page .about-1 .right .pro_list {
    margin-top: 40px;
  }
  .about-page .about-1 .right .pro_list ul {
    margin: -15px;
  }
  .about-page .about-1 .right .pro_list li {
    padding: 15px;
  }
  .trends-page .trends-1 {
    margin-top: 60px;
  }
  .trends-page .trends-2 {
    margin-top: 90px;
  }
  .trends-page .trends-2 .right .Tit::before {
    display: none;
  }
  .trends-page .trends-2 .left {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .trends-page .trends-2 .right {
    width: 100%;
    margin-top: 40px;
  }
  .trends-page .trends-2 .right .Tit {
    font-size: 24px;
  }
  .trends-page .trends-2 .right .list {
    margin: 20px 0 20px;
  }
  .trends-page .trends-3 {
    margin-top: 90px;
  }
  .trends-page .trends-3 .box {
    display: block;
  }
  .trends-page .trends-3 .box .left {
    width: 100%;
  }
  .trends-page .trends-3 .box .right {
    width: 100%;
    text-align: left!important;
    padding: 0!important;
    margin-top: 40px;
  }
  .trends-page .trends-3 .box .right .name::before {
    display: none;
  }
  .trends-page .trends-3 .box .right .name {
    font-size: 24px;
  }
  .trends-page .trends-4 {
    padding: 90px 0;
  }
  .trends-page .trends-4 .Tit {
    font-size: 24px;
  }
}









/* inner */

#about_list h3 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.4;
}
#about_list h3 b {
  font-size: 24px;
  line-height: 44px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
@media screen and (max-width: 1500px) {
  #about_list h3 {
    font-size: 40px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 500px) {
  #about_list h3 {
    font-size: 30px;
    line-height: 1.6;
  }
  .xinyuehide {
    display: none !important;
  }
}


@-webkit-keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}



.pro_box {
  position: relative;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.pro_box h4 {
  position: absolute;
  width: 100%;
  left: 0;
  top: 5%;
}
.pro_box .img .img2{
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  opacity: 0;
  transition: .5s ease;
}
.pro_box .img:hover .img2{
  opacity: 1;
}
.pro_box .link_btn {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 5%;
  opacity: 0;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.pro_box .link_btn a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid #c0bbb7;
  margin: 0 5px;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.pro_box .link_btn a .alert {
  position: absolute;
  left: 50%;
  bottom: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
  line-height: 24px;
  padding: 0 10px;
  border-radius: 4px;
  color: #FFFFFF;
  background: #333333;
  opacity: 0;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.pro_box .link_btn a .alert::after {
  content: "";
  width: 0px;
  height: 0px;
  border-top: 5px solid #333333;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.pro_box .link_btn a img {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.pro_box .link_btn a:hover {
  background: #c3a786;
  border-color: #c3a786;
}
.pro_box .link_btn a:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.pro_box .link_btn a:hover .alert {
  bottom: -webkit-calc(100%  + 10px);
  bottom: -moz-calc(100%  + 10px);
  bottom: calc(100%  + 10px);
  opacity: 1;
}
.pro_box:hover {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.pro_box:hover .link_btn {
  opacity: 1;
}


.news_box {
  padding: 30px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  background: #FFFFFF;
}
.news_box .img {
  width: 55%;
  position: relative;
}
.news_box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news_box .img::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.news_box .img::after {
  content: url(../images/plus_icon.png);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 30px;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.news_box .img:hover::before {
  opacity: 1;
}
.news_box .img:hover::after {
  opacity: 1;
}
.news_box .mml-text {
  width: 45%;
  padding-left: 25px;
}
.news_box .mml-text time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgba(0, 0, 0, 0.5);
  font-family: 'BodoniXT';
}
.news_box .mml-text time img {
  display: inline-block;
  margin-right: 10px;
}

@media screen and (max-width: 1000px) {
  .news_box .img {
    width: 100%;
  }
  .news_box .mml-text {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
}

@media screen and (max-width: 700px) {
  .news_box {
    padding: 15px;
  }
}

.btn1 {
  display: inline-block;
  width: 160px;
  height: 50px;
  line-height: 50px!important;
  text-align: center;
  color: #FFFFFF;
  background: #c3a786;
  font-family: var(--font);
}

.btn1:hover {
    background: #000;
}

h2.about {
  font-size: 40px;
  line-height: 1.6;
  font-family: var(--font);
  position: relative;
}
h2.about::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 120px;
  line-height: .6;
  color: #a28d64;
  opacity: .1;
}
.contact-us {
  background: url(../images/contact_bg.png) no-repeat center;
  padding: 90px 0;
  position: relative;
}
.contact-us h2 {
  font-size: 48px;
  line-height: 1.8;
  color: #FFFFFF;
  font-family: var(--font);
}
.contact-us .left {
  width: 50%;
}
.contact-us .right {
  width: 50%;
  padding-left: 100px;
}
.contact-us .form input {
  height: 55px;
  width: 100%;
  padding: 0 20px;
  font-size: 16px;
  border: none;
}
.contact-us .form ul {
  margin: -15px;
}
.contact-us .form ul li {
  padding: 15px;
}
.contact-us .form ul li.wid-100 {
  width: 100%;
}
.contact-page .contact-1 {
  padding: 60px 0;
  background: url(../images/contact_1_bg.jpg) no-repeat left 75% center;
  position: relative;
  overflow: hidden;
}
.contact-page .contact-1 .img {
  content: url(/bag-manufacturers/2023/09/04/1.png);
  position: absolute;
  bottom: 0;
  right: -3%;
  width: 33%;
}
.contact-page .contact-1 h2 {
  font-size: 40px;
  line-height: 1.4;
  font-family: var(--font);
}
.contact-page .contact-1 .left {
  width: 50%;
}
.contact-page .contact-1 .right {
  width: 50%;
  padding-left: 100px;
}
.contact-page .contact-1 .right ul {
 /* max-width: 350px;*/
  margin-top: 140px;
}
.contact-page .contact-1 .right ul li {
  padding-left: 130px;
  position: relative;
}
.contact-page .contact-1 .right ul li:not(:last-child) {
  margin-bottom: 60px;
  line-height: 2;
}
.contact-page .contact-1 .right ul li i {
  width: 100px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.contact-page .contact-1 .form {
  background: #FFFFFF;
  padding: 80px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.contact-page .contact-1 .form input,
.contact-page .contact-1 .form textarea {
  width: 100%;
  border: 1px solid #cecac7;
}
.contact-page .contact-1 .form input {
  height: 50px;
}
.contact-page .contact-1 .form textarea {
  height: 135px;
}
.contact-page .contact-1 .form ul {
  margin: -20px -10px;
}
.contact-page .contact-1 .form ul li {
  padding: 20px 10px;
}
.contact-page .contact-1 .form ul li.wid-100 {
  width: 100%;
}
.contact-page .contact-2 {
  padding: 100px 0;
  line-height: 2;
}
.contact-page .contact-2 h2 {
  font-size: 48px;
  font-family: var(--font);
}
h2.inner {
  font-size: 40px;
  line-height: 1.4;
  font-family: var(--font);
}
.customization-page .customization-1 {
  padding: 140px 0;
  background: url(../images/customization_1_bg.jpg) no-repeat center right;
}
.customization-page .customization-1 h4 {
  font-family: var(--font);
}
.customization-page .customization-1 .left {
  width: 50%;
  padding-right: 100px;
}
.customization-page .customization-1 .left ul li {
  padding-left: 100px;
  position: relative;
  overflow: hidden;
}
.customization-page .customization-1 .left ul li i {
  position: absolute;
  left: 0;
  top: 0;
}
.customization-page .customization-1 .left ul li p {
  margin-bottom: 50px;
}
.customization-page .customization-1 .left ul li:not(:last-child):before {
  content: "";
  position: absolute;
  left: 33px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #c3a786;
}
.customization-page .customization-1 .right {
  width: 50%;
}
.customization-page .customization-2 {
  background: url(../images/customization_2_bg.jpg) no-repeat center;
  background-size: cover;
  color: #FFFFFF;
  padding: 120px 0 170px;
}
.customization-page .customization-2 .box {
  padding: 0 5%;
  position: relative;
}
.customization-page .customization-2 .box::before {
  content: url(../images/yh.png);
  position: absolute;
  left: 0;
  top: 0;
}
.customization-page .customization-2 h4 {
  font-size: 36px;
}
.customization-page .customization-2 p {
  line-height: 2;
}
.customization-page .customization-3 {
  padding: 70px 0;
}
.customization-page .customization-3 li h4 {
  line-height: 80px;
  text-align: center;
  color: #FFFFFF;
  background: #a28d64;
}
.customization-page .customization-3 li .mml-text {
  padding: 20px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.customization-page .customization-3 li .mml-text p {
  min-height: 144px;
}
.customization-page .customization-3 li:hover .mml-text {
  background: #d0c6b1;
}
.side_bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
}
.side_bar .side_left {
  width: 75%;
  padding-top: 90px;
  padding-bottom: 90px;
  padding-left: 60px;
}
.side_bar .side_left .content {
  line-height: 2;
}
.side_bar .side_left .lixinpro1 {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.6;
  color: #a28d64;
  margin-bottom: 10px;
}
.side_bar .side_left .lixinpro2 {
  font-size: 16px;
  line-height: 2;
  margin-top: 10px;
}
.side_bar .side_right {
  width: 25%;
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  padding-right: 60px;
}
.side_bar .side_right::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: 0;
  left: -500px;
  background: #f9f9f9;
}
.side_bar .side_right .content{
  position: sticky;
  top: 100px;
}
.side_bar .side_right h2 {
  font-size: 30px;
  line-height: 1.6;
  font-family: var(--font);
}
.side_bar .side_right .search form {
  position: relative;
}
.side_bar .side_right .search input {
  width: 100%;
  height: 58px;
  border: 1px solid #c0bbb7;
  font-size: 16px;
  padding-left: 15px;
  line-height: 30px;
  padding-right: 58px;
}
.side_bar .side_right .search button {
  width: 58px;
  height: 58px;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  background: transparent;
}
.side_bar .side_right .category ul li a{
  display: block;
}
.side_bar .side_right .category ul li a {
  margin-bottom: 20px;
}
.side_bar .side_right .category ul li ol li{
  list-style-type: disc;
  margin-left: 20px;
}
.side_bar .side_right .hot_pro ul li:not(:last-child) {
  margin-bottom: 30px;
}
.side_bar .side_right .hot_pro .img {
  width: 25%;
  vertical-align: middle;
}
.side_bar .side_right .hot_pro .img img {
  background: #FFFFFF;
  border: 1px solid #c0bbb7;
}
.side_bar .side_right .hot_pro .mml-text {
  width: 75%;
  vertical-align: middle;
  line-height: 1.8;
}
.side_bar .side_right .hot_pro .mml-text .start i {
  color: #f9595f;
}
.side_bar .side_right .ins .img {
  position: relative;
}
.side_bar .side_right .ins .img::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.side_bar .side_right .ins .img::after {
  content: "\f16d";
  font-family: FontAwesome;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 20px;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.side_bar .side_right .ins .img:hover::before {
  opacity: 1;
}
.side_bar .side_right .ins .img:hover::after {
  opacity: 1;
}
.product-page {
  overflow: hidden;
}
.product-page .product_list ul {
  margin: -15px;
}
.product-page .product_list ul li {
  padding: 15px;
}
.product-page .product_list .fenleih1 {
    font-size: 30px;
    line-height: 1.6;
    font-weight: 600;
}
.product-page .product_list ul li h3.product_name {
  line-height: 32px;
}
.product-page .pro_box {
  border: 1px solid #c0bbb7;
}

@media screen and (max-width: 500px) {
  .product-page .product_list ul{
    margin: -5px;
  }
  
  .product-page .product_list ul li{
    width: 100%!important;
    padding: 5px;
  }
}


.news-page .news_list ul li:not(:last-child) {
  margin-bottom: 90px;
}
.newdet-page time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgba(0, 0, 0, 0.5);
  font-family: var(--font);
}
.newdet-page time img {
  display: inline-block;
  margin-right: 10px;
}
.newdet-page .share {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
.newdet-page .share h4 {
  display: inline-block;
  vertical-align: middle;
}

.newdet-page .share div{
  display: inline-block;
}

.newdet-page .share a {
  display: inline-block;
  vertical-align: middle;
  margin-left: 25px;
  font-size: 24px;
  line-height: 44px;
}
.faq-page .faq-1 {
  padding-top: 70px;
  position: relative;
}
.faq-page .faq-1::before {
  content: attr(data-text);
  position: absolute;
  top: -40%;
  right: 20%;
  -webkit-transform: rotate(15deg);
  -moz-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  transform: rotate(15deg);
  font-size: 390px;
  font-weight: bold;
  color: #fbf2df;
  opacity: .87;
}
.faq-page .faq-1 h2 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 50px;
  font-family: var(--font);
}
.faq-page .faq-2 {
  padding: 140px 0;
}
.faq-page .faq-2 .box {
  margin: -15px;
}
.faq-page .faq-2 .left {
  width: 100%;
  padding: 15px;
}
.faq-page .faq-2 .right {
  width: 25%;
  padding: 15px;
}
.faq-page .faq-2 ul li:not(:last-child) {
  margin-bottom: 20px;
}
.faq-page .faq-2 ul li h4 {
  height: 70px;
  line-height: 70px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  background: #fcf4e3;
  padding-left: 40px;
  padding-right: 70px;
  
  cursor: pointer;
  cursor: hand;
}
.faq-page .faq-2 ul li h4::after {
  content: "+";
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 30px;
  position: absolute;
  right: 0;
  top: 0;
  font-family: initial;
}
.faq-page .faq-2 ul li .text {
  padding: 15px 40px;
  display: none;
}
.faq-page .faq-2 ul li.active h4 {
  color: #FFFFFF;
  background: #a28d64;
}
.faq-page .faq-2 ul li.active h4::after {
  content: "-";
  color: #FFFFFF;
  background: #2f1e12;
}
.faq-page .faq-search {
  max-width: 770px;
  margin: auto;
}
.faq-page .faq-search form {
  position: relative;
}
.faq-page .faq-search input {
  font-size: 16px;
  line-height: 30px;
  width: 100%;
  height: 65px;
  border: 1px solid #c8c4c1;
  background: transparent;
  padding: 0 20px;
}
.faq-page .faq-search button {
  width: 65px;
  height: 65px;
  background: transparent;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
}


.inner-page .m-page {
  text-align: right;
  float: none;
  margin: 30px -5px 0;
}
.inner-page .m-page a,
.inner-page .m-page span {
  display: inline-block;
  text-align: center;
  width: 45px;
  height: 35px;
  font-size: 16px;
  line-height: 36px;
  border-radius: 5px;
  color: #111;
  font-weight: 500;
  -moz-box-shadow: 0 2px 10px 0 #d8dde6;
  -o-box-shadow: 0 2px 10px 0 #d8dde6;
  box-shadow: 0 2px 10px 0 #d8dde6;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  margin: 5px;
}

.inner-page .m-page span,
.inner-page .m-page a:hover {
  background: #c3a786 none repeat scroll 0 0;
  color: #fff;
}



.map{
  margin-bottom: -30px;
}

.amap-logo{
  display: none!important;
}




@media screen and (max-width: 1400px) {

  h2.about::before{
    font-size: 100px;
  }


  .side_bar .side_left{
    padding-left: 30px;
  }
  .side_bar .side_right{
    padding-right: 30px;
  }



  .customization-page .customization-1 .left{
    padding-right: 30px;
  }
  .customization-page .customization-1 .left ul li p{
    margin-bottom: 30px;
  }


  .contact-page .contact-1 .form{
    padding: 30px;
  }

  .contact-page .contact-1 .right{
    padding-left: 50px;
  }

  .contact-page .contact-1 .right ul{
    margin-top: 60px;
  }

  .contact-page .contact-1 .right ul li{
    padding-left: 100px;
  }
}


@media screen and (max-width: 1000px) {
  
  .contact-us .left{
    width: 100%;
    padding: 0;
  }

  .contact-us .right{
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }

  .contact-us{
    background-size: cover;
  }

  h2.about::before{
    display: none;
  }


  .faq-page .faq-2 .left{
    width: 100%;
  }

  .faq-page .faq-2 .right{
    display: none;
  }

  .faq-page .faq-1::before{
    display: none;
  }

  .faq-page .faq-1 h2{
    font-size: 30px;
    line-height: 1.6;
  }
 .product-page .product_list .fenleih1{
   font-size: 24px;
   line-height: 44px;
 }
  .faq-page .faq-2{
    padding: 60px 0;
  }

  .faq-page .faq-2 ul li h4{
    padding-left: 15px;
    height: 100px;
    line-height: 30px;
    font-size: 16px;
    padding-top: 10px;
  }

  .faq-page .faq-2 ul li:not(:last-child){
    margin-bottom: 20px;
  }

  .faq-page .faq-1{
    padding: 0;
  }


  .side_bar .side_left{
    width: 100%;
    padding: 0;
  }

  .side_bar .side_right{
    display: none;
  }


  .customization-page .customization-1{
    background: transparent;
  }
  
  .customization-page .customization-1 .left{
    width: 100%;
    padding: 0;
  }

  .customization-page .customization-1 .right{
    display: none;
  }

  .customization-page .customization-1{
    padding: 0;
  }

  .customization-page .customization-3 ul li{
    width: 50%!important;
  }


  .contact-page .contact-1 .left{
    width: 100%;
  }

  .contact-page .contact-1 .right{
    width: 100%;
    padding: 0;
  }

  .contact-page .contact-1{
    background: transparent;
  }

  .contact-page .contact-1 .right ul{
    max-width: initial;
  }
}


@media screen and (max-width: 700px) {

  .contact-us h2{
    font-size: 30px;
  }

  h2.inner{
    font-size: 24px;
    line-height: 44px;
  }

  .customization-page .customization-2{
    padding: 60px 0;
  }

  .contact-page .contact-1 h2{
    font-size: 24px;
    line-height: 44px;
  }

  .contact-page .contact-2 h2{
    font-size: 24px;
  }
}

@media screen and (max-width: 500px) {
  .contact-us .form input{
    height: 40px;
    font-size: 14px;
  }

  .customization-page .customization-3 ul li{
    width: 100%!important;
  }
}


.gl-page ul{
  margin: -15px;
}

.gl-page ul li{
  padding: 15px;
}

.amap-copyright{
  display: none!important;
}


@media screen and (max-width: 1000px) {
  .newdet-page .share a{
    font-size: 18px;
    line-height: 32px;
  }
}






/* mask */
#mask {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 999;
  display: none;
}

#mask .slick-track {
  margin-left: 0;
}

#mask .mask-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

#mask .mask-close {
  position: absolute;
  z-index: 1;
  right: 30px;
  top: 30px;
  color: #000;
  cursor: pointer;
  font-size: 18px;
}

#mask .mask-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
}

#mask .mask-inner .item{
  width: 80%;
  margin: auto;
  max-height: 100%;
  overflow-y: auto;
}

#mask .mask-inner .item .box{
  padding: 40px;
  background-color: white;
  position: relative;
  box-shadow: 0 0 10px #ccc;
}

#mask .mask-inner .item .box .left{
  padding: 20px;
}
#mask .mask-inner .item .box .left ul.mask-big-slick{
  box-shadow: 0 0 10px #ccc;
}
#mask .mask-inner .item .box .right{
  padding: 20px;
}

#mask .mask-inner .item .box .right .content {
  line-height: 1.5;
  max-height: 15em;
  overflow-y: auto;
}

#mask .mask-inner .item .box .right .small-slick{
  margin: -15px;
	overflow-y: auto;
	display:-webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

#mask .mask-inner .item .box .right ul.mask-small-slick .slick-current li img{
  box-shadow: 0 0 15px #666;
}

#mask .mask-inner .item .box .right ul.mask-small-slick li{
  padding: 15px;
}



@media screen and (max-width: 1000px) {
  #mask .mask-inner .item .box .right .name{
    font-size: 24px;
  }
}
@media screen and (max-width: 700px) {
  #mask .mask-close{
    right: 0;
    top: 0;
  }
  #mask .mask-inner .item .box{
    padding: 0;
  }
  #mask .mask-inner .item .box .left{
    width: 100%!important;
  }
  #mask .mask-inner .item .box .right{
    width: 100%!important;
  }
  #mask .mask-inner .item .box .right .name{
    font-size: 20px;
  }

  #mask .mask-inner .item .box .right .content{
    max-height: 9em;
  }
}



.prodet-4 ul{
  margin: -15px;
}
.prodet-4 ul li{
  padding: 15px;
}




/* pop_form */
#pop_from {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-height: 80%;
    width: 900px;
    max-width: 90%;
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.1);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 222;
    background: white;
    overflow: auto;
    border-radius: 5px;
}
#pop_from .left {
    vertical-align: middle;
}
#pop_from .right {
    padding: 5%;
    vertical-align: middle;
}
#pop_from .right .Tit {
    font-size: 25px;
    font-family: var(--font);
    font-weight: bold;
}

#pop_from .right .form {
    margin: auto;
}
#pop_from .right .form input{
    margin-bottom: 20px;
    padding: 8px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #b2b2b2;
}
#pop_from .right .form input[type="submit"] {
    border: none;
    color: #fff;
    background-color: #000;
    font-size: 14px;
    text-transform: uppercase;
    width: auto;
    padding: 10px 20px;
    margin-top: 15px;
    margin-bottom: 0;
}

#pop_from .right .p {
    color: #7b7b7b;
}
#pop_from .right .p a {
    color: #c3a786;
    border-bottom: 1px solid #c3a786;
}
#pop_close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

@media (max-width: 1000px){
    #pop_from .left {
        display: none;
    }
    #pop_from .right {
        width: 100%!important;
    }
}
/* end */





/* 鼠标效果 */
#cursor {
	position: fixed;
	mix-blend-mode: normal;
    left: -47px;
    top: -47px;
    width: 94px;
    height: 94px;
	z-index: 100;
	pointer-events: none;
}

#cursor .follow {
	background-color:rgb(195 167 134 / 65%);
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: -2px;
	top: -2px;
	transform: scale(.2);
	transition: transform 0.45s ease,opacity 0.3s ease;
	opacity: 0;
	border-radius: 50%;
}

#cursor.visible .follow {
	transform: scale(1);
    opacity: 1;
}


#cursor .dot {
  	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	transform: translateY(-50%);
	color: #c3a786;
}
#cursor i {
    top: 0;
    color: #fff;
    font-size: 21px;
    opacity: 0;
    position: absolute;
}
#cursor i {
    transition: transform .2s ease, opacity .2s ease;
}
#cursor i.fa-angle-left {
	top: -9px;
	transform: translateX(17px);
	left: 23px;
}
#cursor i.fa-angle-right {
	top: -9px;
	transform: translateX(-17px);
	right: 27px;
}
#cursor.visible i {
	transition: transform 0.45s ease,opacity 0.3s ease,color 0.3s ease
}
#cursor.visible i.fa-angle-left,
#cursor.visible i.fa-angle-right,
#cursor.visible:before,
#cursor.visible .color-circle,
#cursor.visible span {
	transform: scale(1);
	opacity: 1
}

#cursor.visible.pointer-down .follow {
	transform: scale(.15)
}

#cursor.visible.pointer-down i {
	color: inherit!important
}

#cursor.visible.pointer-down i.fa-angle-left {
	transform: translateX(-10px)
}

#cursor.visible.pointer-down i.fa-angle-right {
	transform: translateX(10px)
}
/* end */