@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.eot');
  src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.eot');
  src: url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Medium.woff2') format('woff2'), url('../fonts/Poppins-Medium.woff') format('woff'), url('../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.eot');
  src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-SemiBold.woff2') format('woff2'), url('../fonts/Poppins-SemiBold.woff') format('woff'), url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.eot');
  src: url('../fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Bold.woff2') format('woff2'), url('../fonts/Poppins-Bold.woff') format('woff'), url('../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}
body {
  font-family: "Poppins";
  max-width: 1920px;
  --color: #da151b;
  font-weight: 500;
  margin: 0 auto;
}
.container {
  width: 100%;
  max-width: 1630px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.font-w-600 {
  font-weight: 600;
}
.rc {
  color: var(--color);
}
.wc {
  color: #FFFFFF;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

#header.inner.active .nav {
  background-color: #2b2b2b;
}

#header .nav {
  color: #FFFFFF;
  transition: background-color .5s ease;
}

#header.bb .nav {
  color: #000000;
}

#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;
  height: 84px;
  line-height: 84px;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .logo img {
  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 > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  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;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 35px;
  font-size: 20px;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  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 {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  height: 100%;
  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;
}
#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: 16px;
  line-height: normal;
  background: #fff;
  top: 100%;
  left: -10px;
  min-width: 180px;
  white-space: nowrap;
  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);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#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 ul {
  position: absolute;
  left: 100%;
  top: 0;
  display: none;
}
#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:hover > ul {
  display: block;
}
#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: 0;
  margin-right: 0;
  background-color: var(--color);
  width: 57px;
  border-radius: 0 0 29px 29px;
  text-align: center;
  transition: .5s ease;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .h-search img {
  vertical-align: middle;
}
#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: var(--color);
}
#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;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner ul.slick-dots li {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
  margin: 15px 0;
  border-radius: 100%;
  border: 1px solid transparent;
  background-color: transparent;
  opacity: .7;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background-color: #FFFFFF;
  border-radius: inherit;
  margin-left: 10px;
  margin-top: 10px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  opacity: 1;
}
#banner ul.slick-dots li.slick-active:before {
  background-color: var(--color);
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.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 .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#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: var(--color) !important;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  right: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 20;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  right: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  right: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  right: 0;
}
#mobile.active:before {
  left: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 40px;
  }
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
@-webkit-keyframes ro {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes ro {
  from {
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes ro {
  from {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#banner {
  background-position: center bottom;
  background-size: 100% auto;
  background-color: #161514;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
#banner .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#banner .bg img {
  opacity: 0;
}
#banner li {
  height: 100vh;
}
#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 {
  color: #FFFFFF;
  line-height: 1;
}
#banner h2 span {
  font-size: 6em;
  display: block;
  font-weight: 600;
  font-style: italic;
}
#banner p {
  color: #FFFFFF;
  line-height: 1.3;
}
#banner .yuan {
  z-index: -1;
  width: 27.4%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
#banner .yuan img {
  -webkit-animation: ro 10s linear infinite;
  -moz-animation: ro 10s linear infinite;
  animation: ro 10s linear infinite;
}

.yuy ul {
  line-height: normal;
}
.baseBtn {
  color: #FFFFFF;
  background-color: var(--color);
  line-height: 3.2;
  height: 3.2em;
  border: 0;
  border-radius: 1.6em;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.baseBtn:hover {
  background-color: #000000;
}
@media (min-width: 1001px) {
  .mb {
    display: none;
  }
}
#index-body .fadein {
  opacity: 0;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}
#index-body .fadeinup {
  -webkit-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  opacity: 0;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}
#index-body .fadeinleft {
  -webkit-transform: translateX(-40px);
  -moz-transform: translateX(-40px);
  -ms-transform: translateX(-40px);
  transform: translateX(-40px);
  opacity: 0;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}
#index-body .fadeinright {
  -webkit-transform: translateX(40px);
  -moz-transform: translateX(40px);
  -ms-transform: translateX(40px);
  transform: translateX(40px);
  opacity: 0;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}
#index-body .section.active .fadein {
  opacity: 1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.8s;
  -moz-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
#index-body .section.active .fadeinup,
#index-body .section.active .fadeinleft,
#index-body .section.active .fadeinright {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.8s;
  -moz-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
#index-body .section.active .delay1 {
  -webkit-transition-delay: 0.9s;
  -moz-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
#index-body .section.active .delay2 {
  -webkit-transition-delay: 1s;
  -moz-transition-delay: 1s;
  transition-delay: 1s;
}
#index-body .section.active .delay3 {
  -webkit-transition-delay: 1.1s;
  -moz-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
#index-body .section.active .delay4 {
  -webkit-transition-delay: 1.2s;
  -moz-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
#index-body .section.active .delay5 {
  -webkit-transition-delay: 1.3s;
  -moz-transition-delay: 1.3s;
  transition-delay: 1.3s;
}
.home-1 {
  background-color: #e7e7e7;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.home-1 .cms {
  color: #FFFFFF;
  bottom: 5%;
}
.home-1 .cms.cms1 {
  left: 8%;
}
.home-1 .cms.cms2 {
  left: 67%;
}
.home-1 .fp-tableCell {
  vertical-align: top;
}
.home-1 .Tit span {
  color: var(--color);
}
.home-1 .play {
  cursor: pointer;
}
.home-1 .play .img {
  font-size: 0;
  width: 57%;
  height: auto;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(255, 21, 27, 0.4);
}
.home-1 .play .text {
  -webkit-text-stroke: 2px var(--color);
  color: transparent;
}
.home-1 .left {
  border: 2px solid var(--color);
  border-radius: 2.5em 0 0 0;
}
.home-2 {
  background-color: #e7e7e7;
}
.home-2 .list li:nth-of-type(1) > div {
  width: 80%;
  margin-left: 10%;
  margin-top: 2%;
}
.home-2 .list li:nth-of-type(3) > div {
  width: 80%;
  margin-left: 20%;
}
.home-2 .list li:nth-of-type(5) {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -moz-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}
.home-2 .list li > div .img {
  overflow: hidden;
}
.home-2 .list li > div .txt {
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  overflow: hidden;
  height: 100%;
  padding: 3% 0;
}
.home-2 .list li > div .txt > div {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  padding: 0 6%;
}
.home-2 .list li > div .txt > div p {
  color: #FFFFFF;
}
.home-2 .mask {
  pointer-events: none;
}
.home-2 .mask span {
  line-height: 1;
  font-size: 2em;
  left: 0;
  top: 0;
  color: #8d8d8d;
}
.home-2 .mask span:nth-of-type(1) {
  left: 5%;
  top: -5%;
}
.home-2 .mask span:nth-of-type(2) {
  left: 70%;
  top: 25%;
}
.home-2 .mask span:nth-of-type(3) {
  left: 33%;
  top: 60%;
}
.home-2 .mask span:nth-of-type(4) {
  left: 65%;
  top: 70%;
}
.home-2 .symbol {
  pointer-events: none;
}
.home-2 .symbol > div {
  color: #8d8d8d;
}
.home-2 .symbol > div:nth-of-type(1) {
  left: 29.6%;
  top: 23%;
}
.home-2 .symbol > div:nth-of-type(2) {
  left: 68.5%;
  top: 23%;
}
.home-2 .symbol > div:nth-of-type(3) {
  left: 85%;
  top: 43%;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.home-2 .symbol > div:nth-of-type(4) {
  left: 47%;
  top: 57%;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.home-2 .symbol > div:nth-of-type(5) {
  left: 14%;
  top: 45.5%;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.home-3 {
  background-color: #2b2b2b;
  color: #FFFFFF;
}
.home-3 .slick-track .slick-slide > div {
  height: auto!important;
}
.home-3 .dot {
  right: -8%;
  top: 0;
}
.home-3 .list ul {
  margin: -20px -37px;
}
.home-3 .list li {
  padding: 20px 37px;
}
.home-3 .list li > div .img {
  border-radius: 2em;
  overflow: hidden;
}
.home-3 .list li > div .txt {
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  padding: 3% 0;
}
.home-3 .list li > div .txt span {
  position: relative;
  z-index: 3;
  padding: 0 6%;
  display: block;
  width: 100%;
  color: #FFFFFF;
}
.home-3 .list li > div .txt > div {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  padding: 0 6%;
}
.home-3 .list li > div .txt > div p {
  color: #FFFFFF;
}
.home-3 .arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 2em;
  color: #FFFFFF;
  background-color: var(--color);
  text-align: center;
  line-height: 2em;
  border-radius: 50%;
  cursor: pointer;
}
.home-3 .arrow.arrow_l {
  right: 102%;
}
.home-3 .arrow.arrow_r {
  left: 102%;
}
.home-4 {
  background-color: #4b4b4b;
}
.home-4 .slick-track .slick-slide > div {
  height: auto!important;
}
.home-4 .list ul {
  margin: -23px -15px;
}
.home-4 .list li {
  padding: 23px 15px;
}
.home-4 .list li > div .img {
  overflow: hidden;
}
.home-4 .list li > div .txt {
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  overflow: hidden;
  height: 100%;
  padding: 3% 0;
}
.home-4 .list li > div .txt span {
  position: relative;
  z-index: 3;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  font-size: 20.82px;
  color: #FFFFFF;
  background-color: var(--color);
  border-radius: 50%;
}
.home-4 .list li > div .txt > div {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  padding: 0 6%;
}
.home-4 .list li > div .txt > div p {
  color: #FFFFFF;
  line-height: 1.5;
  min-height: 3em;
}
.home-5 {
  background-color: #cecece;
}
.home-5 .list ol li {
  padding: 0;
  padding-left: 20px;
  line-height: 1.8;
  position: relative;
  list-style-type: none !important;
}
.home-5 .list ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 7px;
  height: 7px;
  background-color: var(--color);
  border-radius: 50%;
}
.home-5 .list ol li p {
  display: inline;
  -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;
}
.home-5 .list ol li:hover p {
  background-size: 100% 1px;
  color: var(--color);
}
.home-5 .line {
  width: 14em;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  position: relative;
}
.home-5 .line em {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 20%;
  background-color: black;
  -webkit-transition: width .5s ease;
  -moz-transition: width .5s ease;
  transition: width .5s ease;
}
.home-5 .arrow {
  cursor: pointer;
}
.home-5 .arrow span.btn {
  width: 45px;
  height: 45px;
  line-height: 43px;
  text-align: center;
  border: 1px solid black;
  border-radius: 50%;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-5 .arrow:hover span.btn {
  color: #FFFFFF;
  border-color: var(--color);
  background-color: var(--color);
}
.home-6 ul.list {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
}
.home-6 ul.list li {
  width: 33.33%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.home-6 ul.list li > div {
  height: 100%;
}
.home-6 ul.list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  color: #fff;
  position: relative;
}
.home-6 ul.list li a .img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}
.home-6 ul.list li a .content {
  width: 100%;
  position: absolute;
  top: 40vh;
  left: 0;
  padding: 0 3.5vw;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}
.home-6 ul.list li a .content .text {
  line-height: 2;
}
.home-6 ul.list li a:hover .img {
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}
.home-7 {
  background-color: #e7e7e7;
}

.home-7 .top ul {
  margin: -15px 0;
}
.home-7 .top li {
  height: calc(100% - 30px);
  margin: 15px 0;
  border-left: 1px solid #afafaf;
}
.home-7 .top .box {
  height: 100%;
  background-color: #FFFFFF;
}
.home-7 .top .box::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #e14449;
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-7 .top .box > div {
  height: 100%;
  position: relative;
  z-index: 2;
}
.home-7 .top .box .icon {
  position: relative;
  z-index: 1;
}
.home-7 .top .box .icon::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 40%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #e14449;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-7 .top .box .name {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-7 .top .box .text {
  line-height: 1.7;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-7 .top .box:hover::before {
  opacity: 1;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.home-7 .top .box:hover .icon::before {
  background-color: rgba(255, 255, 255, 0.5);
}
.home-7 .top .box:hover .name {
  color: #FFFFFF;
}
.home-7 .top .box:hover .text {
  color: #FFFFFF;
}
.home-7 .bottom .num {
  line-height: .8;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.home-7 .bottom .num::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 1.6em;
  height: .3em;
  background-color: #e14449;
}
.home-8 {
  background-color: #4b4b4b;
  color: #FFFFFF;
}
.home-8 .list li .date {
  color: var(--color);
}
.home-8 .list li p {
  line-height: 1.75;
}
.home-8 .list li .btns a {
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3em;
  text-align: center;
  color: #000000;
  background-color: #d7d7d7;
  border-radius: 50%;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-8 .list li .btns a:hover {
  color: #FFFFFF;
  background-color: var(--color);
}
.home-9 {
  background-color: #e7e7e7;
}
.home-9 .slick-track .slick-slide > div {
  height: auto!important;
}
.home-9 .list ul {
  margin: -30px;
}
.home-9 .list li {
  padding: 30px;
}
.home-9 .dots {
  text-align: center;
}
.home-9 .dots li {
  display: inline-block;
  margin: 0 15px;
  width: 13px;
  height: 13px;
  background-color: #979797;
  border-radius: 50%;
}
.home-9 .dots li.slick-active {
  background-color: var(--color);
}
.home-9 .dots li button {
  display: none;
}
#footer {
  background-color: #333333;
  color: #FFFFFF;
}
#footer .container {
  max-width: 1530px;
}
#footer .form {
  max-width: 1000px;
  margin: auto;
}
#footer .form .left {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 35px;
}
#footer .form .left li {
  position: relative;
}
#footer .form .left li + li::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  height: 40%;
  border-left: 1px solid #9f9f9f;
}
#footer .form input {
  width: 100%;
  height: 70px;
  background-color: transparent;
  border: 0;
  padding: 0 20px;
}
#footer .form input[type="submit"] {
  background-color: var(--color);
  padding: 0;
  border-radius: 35px;
  width: 105px;
  background-image: url(../images/send-icon.png);
  background-position: center;
  background-repeat: no-repeat;
}
#footer .foot-block {
  max-width: 260px;
}
#footer h4 {
  color: #9f9f9f;
}
#footer .social-links a {
  width: 2em;
  height: 2em;
  line-height: 2em;
  border-radius: 50%;
  text-align: center;
  position: relative;
}
#footer .social-links a::before,
#footer .social-links a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .social-links a::before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}
#footer .foot-bottom p {
  color: #9f9f9f;
}
#footer .foot-bottom img.login {
  height: 18px;
}
#ewm {
  width: 130px;
  border: 8px solid #FFFFFF;
}
.baseTit {
  line-height: 1;
}
@media (max-width: 1700px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 25px;
    font-size: 17px;
  }
  .home-3 .list ul {
    margin: -15px -30px;
  }
  .home-3 .list li {
    padding: 15px 30px;
  }
  .home-4 .list ul {
    margin: -15px;
  }
  .home-4 .list li {
    padding: 15px;
  }
  .home-9 .list ul {
    margin: -23px;
  }
  .home-9 .list li {
    padding: 23px;
  }
}
@media (max-width: 1450px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 20px;
    font-size: 16px;
  }
  .home-3 .list ul {
    margin: -15px;
  }
  .home-3 .list li {
    padding: 15px;
  }
  .home-9 .list ul {
    margin: -15px;
  }
  .home-9 .list li {
    padding: 15px;
  }
}
@media (max-width: 1250px) {
  #banner,
  .inner-banner {
    margin-top: 0;
  }
}
@media (max-width: 1000px) {
  #banner .yuan {
    width: 50%;
  }
  .hide-1000 {
    display: none;
  }
  .home-1 .fp-tableCell {
    vertical-align: middle;
  }
  .home-2 .list li > div {
    width: 100%!important;
    margin: 0!important;
  }
  .home-2 .mask {
    display: none;
  }
  .home-2 .symbol {
    display: none;
  }
  .home-2 .list li:nth-of-type(5) {
    -webkit-box-ordinal-group: unset;
    -webkit-order: unset;
    -moz-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
  }
  .home-3 .dot {
    width: 35%;
  }
  .home-3 .list ul {
    margin: -6px;
  }
  .home-3 .list li {
    padding: 6px;
  }
  .home-3 .arrow {
    position: static;
    transform: translateY(0);
  }
  .home-4 .list ul {
    margin: -6px;
  }
  .home-4 .list li {
    padding: 6px;
  }
  .home-9 .list ul {
    margin: -6px;
  }
  .home-9 .list li {
    padding: 6px;
  }
  .home-3 .list li > div .img {
    border-radius: 1.5em;
  }
  .home-5 .line {
    width: 10em;
  }
  #index-body .home-7 .top li {
    width: 50%;
  }
  #index-body .home-7 .top li:nth-of-type(1) {
    width: 100%;
  }
  #index-body .home-7 .top li + li {
    border-left: 0;
    border-top: 1px solid #afafaf;
  }
  .home-7 .bottom ul {
    margin: -10px;
  }
  .home-7 .bottom li {
    width: 50%;
    padding: 10px;
    text-align: center;
  }
  .home-7 .bottom .num::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .home-8 .right {
    text-align: left;
  }
  #footer .form input {
    height: 55px;
  }
  #footer .form input[type="submit"] {
    width: 100%;
  }
  #footer .foot-block {
    max-width: 100%;
    width: 45%;
  }
  #ewm {
    display: none;
  }
}
@media (max-width: 768px) {
  .home-6 ul.list li {
    width: 100%;
    height: 80vh;
  }
  .home-1 .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .home-1 .left {
    width: 100%;
  }
  .home-1 .right {
    width: 100%;
  }
  .home-5 .line {
    width: 6em;
  }
}
@media (max-width: 700px) {
  #banner .yuan {
    width: 80%;
  }
  .home-9 .dots li {
    margin: 0 5px;
    width: 8px;
    height: 8px;
  }
  #footer .form .left li {
    width: 100%;
  }
  #footer .form .left li + li::before {
    display: none;
  }
  #footer .form .left {
    border-radius: 12px;
  }
  #footer .form input[type="submit"] {
    border-radius: 12px;
  }
  #footer .foot-block {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .home-2 {
    padding: 60px 0;
  }
  .home-6 ul.list li {
    height: 50vh;
  }
  .home-7 {
    padding: 60px 0;
  }
  #index-body .home-7 .top li {
    width: 100%;
  }
  .home-7 .bottom li {
    width: 100%;
  }
}



.more_btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.more_btn .more {
  position: relative;
  font-size: 18px;
  font-weight: 300;
  color: black;
  padding: 0 30px;
  overflow: hidden;
  height: 55px;
  line-height: 55px;
  border-radius: 27px;
  border: 1px solid black;
  display: inline-block;

}
.more_btn .more span {
  position: relative;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
.more_btn .more::after {
  content: attr(data-text);
  text-align: center;
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%!important;
  height: 100%!important;
  color: white;
  font-size: inherit;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  -webkit-transform: translateY(-60px) skewX(0) ;
  -moz-transform: translateY(-60px) skewX(0);
  -ms-transform: translateY(-60px) skewX(0) ;
  transform: translateY(-60px) skewX(0);
}

.more_btn .arrow {
  background-color: black;
  display: inline-block;
  border-radius: 100%;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-left: -20px;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.more_btn .arrow img {
  vertical-align: middle;
  -webkit-filter: invert(1);
  filter: invert(1);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.more_btn:hover span {
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  opacity: 0;
}
.more_btn:hover .more::after {
  top: 0%;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  right: 0!important;
}
.more_btn:hover .arrow {
  background-color: var(--color);
}
.more_btn:hover .arrow img {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}



.inner-banner {
  position: relative;
  height: 500px;
}
.inner-banner .content {
  left: 0;
  bottom: 5%;
  width: 100%;
}
.inner-banner .ui.container h2 {
  font-weight: 600;
  color: white;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.inner-banner .ui.container .box .mbx {
  color: white;
}
.inner-banner .ui.container .box .mbx a {
  position: relative;
  padding-right: 15px;
}
.inner-banner .ui.container .box .mbx a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--color);
}
.inner-banner .ui.container .box .more_btn .more {
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}
.inner-banner .ui.container .box .more_btn .arrow {
  background: var(--color);
}

@media screen and (max-width: 700px) {
  .inner-banner > img {
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .inner-banner .ui.container .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .inner-banner .ui.container .box .mbx {
    margin-bottom: 20px;
  }
}

.about-page .about-1 .title em {
  color: var(--color);
}

.about-page .about-1 .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.about-page .about-1 .content .con {
  width: 62%;
  color: #282727;
  line-height: 1.8;
}
.about-page .about-1 .content .right {
  width: 38%;
}
.about-page .about-1 .content .right .ig {
  margin: 0 0 0 auto;
  text-align: center;
  font-weight: 600;
}
.about-page .about-1 .content .right span {
  font-size: 2em;
  line-height: 1;
  color: var(--color);
}
.about-page .about-1 .content .right p {
  color: #0d0d0d;
}

.about-page .about-1 .video {
  padding-top: 38%;
}


.about-page .about-2 {
  background-color: #494949;
}

.about-page .about-2 .box {
  position: relative;
  z-index: 1;
}

.about-page .about-2 .box .text {
  color: #fff;
}
.about-page .about-2 .box .text .tipsTitleCont .tipsTitle1 .cir {
  background-color: #fff;
}
.about-page .about-2 .box .text .con {
  line-height: 1.8;
}
.about-page .about-2 .box .text .list {
  margin-top: 29px;
}
.about-page .about-2 .box .text .list ul {
  margin-bottom: -25px;
}
.about-page .about-2 .box .text .list ul li {
  position: relative;
  padding-left: 47px;
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 25px;
}
.about-page .about-2 .box .text .list ul li::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 0;
  width: 30px;
  height: 2px;
  background: white;
}
/*.about-page .about-2 .box::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 81.25%;
  height: 100%;
  background: #bf0000;
}*/




.about-page .about-3 {
  background: #494949;
  color: white;
}
.about-page .about-3 .top {
  position: relative;
  margin-bottom: 80px;
}
.about-page .about-3 .top .i-tag {
  padding-top: 20px;
}
.about-page .about-3 .top .i-title {
  width: 45%;
  margin-left: 40px;
}

.about-page .about-3 .top .more_btn .arrow {
  background: white;
}
.about-page .about-3 .top .more_btn .arrow img {
  -webkit-filter: invert(0);
  filter: invert(0);
}
.about-page .about-3 .top .more_btn .more {
  border-color: white;
  color: white;
}
.about-page .about-3 .list {
  padding-left: 160px;
}
.about-page .about-3 .list ul {
  margin: -11px;
}
.about-page .about-3 .list ul .slick-list {
  padding-right: 30%;
}
.about-page .about-3 .list ul li {
  padding: 11px;
}
.about-page .about-3 .list ul li .box {
  position: relative;
  border-bottom: 2px solid var(--base-color);
}
.about-page .about-3 .list ul li .box .h4 {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 80px 20px 10px;
}
.about-page .about-3 .list ul li .box .arrow {
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  border-radius: 100%;
  display: inline-block;
  background: white;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.about-page .about-3 .list ul li .box .arrow img {
  vertical-align: middle;
  display: inline-block;
}
.about-page .about-3 .list .btn {
  margin-top: 20px;
}
.about-page .about-3 .list .btn span {
  width: 2em;
  height: 2em;
  display: inline-block;
  text-align: center;
  line-height: 2em;
  color: black;
  background: white;
  margin-right: 15px;
  transition: .5s ease;
  cursor: pointer;
}
.about-page .about-3 .list .btn span:hover {
  color: white;
  background-color: var(--color);
}
.about-page .about-3 .list .btn span img {
  vertical-align: middle;
}
.about-page .about-3 .list .btn span.prev img {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.about-page .about-3 .list .btn span.next img {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}



.i-advantage {
  padding-bottom: 90px;
  padding-top: 90px;
  position: relative;
}
.i-advantage .bg {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fafafa;
  width: 71%;
  height: 70%;
  z-index: -1;
}
.i-advantage .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
}
.i-advantage .top .i-title {
  width: 60%;
  margin-left: 55px;
}
.i-advantage .top .more_btn {
  position: absolute;
  right: 0;
}
.i-advantage .top .more_btn a.more:before{
  display: none;
}
.i-advantage .top .more_btn a.more:after{
  background: transparent;
}
.i-advantage .top .more_btn a.more{
  color: #000;
}
.i-advantage .top .more_btn .more {
  border-color: rgba(0, 0, 0, 0.1);
}
.i-advantage .top .more_btn .more::after {
  color: black;
}



.i-advantage ul {
  margin: -25px;
}
.i-advantage ul .slick-list {
  padding-top: 20px;
}
.i-advantage ul li {
  padding: 25px;
  height: 100%;
}
.i-advantage ul li .box {
  height: 100%;
  border: 1px solid #b5b5b5;
  position: relative;
  padding: 70px 35px;
  background: white;
}
.i-advantage ul li .box .num {
  font-size: 18px;
  width: 48px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  background: #bf0000;
  color: white;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.i-advantage ul li .box .h5 {
  font-size: 28px;
  font-weight: 600;
  margin: 30px 0 15px;
}
.i-advantage ul li .box .des {
  font-size: 17px;
  color: #4d4d4d;
}
.i-advantage ul li .box .border i {
  position: absolute;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  transition: .2s;
  background: #000;
}
.i-advantage ul li .box .border i:nth-child(1) {
  left: -1px;
  top: 0;
  width: 1px;
  height: 0;
}
.i-advantage ul li .box .border i:nth-child(2) {
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
}
.i-advantage ul li .box .border i:nth-child(3) {
  right: -1px;
  bottom: 0;
  width: 1px;
  height: 0;
}
.i-advantage ul li .box .border i:nth-child(4) {
  right: 0;
  top: -1px;
  width: 0;
  height: 1px;
}
.i-advantage ul li .box:hover .border i:nth-child(1) {
  height: 100%;
}
.i-advantage ul li .box:hover .border i:nth-child(2) {
  width: 100%;
  -webkit-transition-delay: .2s;
  -moz-transition-delay: .2s;
  transition-delay: .2s;
}
.i-advantage ul li .box:hover .border i:nth-child(3) {
  height: 100%;
  -webkit-transition-delay: .4s;
  -moz-transition-delay: .4s;
  transition-delay: .4s;
}
.i-advantage ul li .box:hover .border i:nth-child(4) {
  width: 100%;
  -webkit-transition-delay: .6s;
  -moz-transition-delay: .6s;
  transition-delay: .6s;
}



@media screen and (max-width: 1600px) {
  .about-page .about-3 .list {
    padding-left: 90px;
  }


  .i-advantage ul {
    margin: -13px;
  }
  .i-advantage ul li {
    padding: 13px;
  }

}

@media screen and (max-width: 1200px) {
  .about-page .about-3 .list ul li .box .h4 {
    font-size: 20px;
  }
}


@media screen and (max-width: 1000px) {
  .about-page .about-1 .content {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .about-page .about-1 .content .con {
    width: 100%;
  }
  .about-page .about-1 .content .right {
    display: none;
  }


 
  .about-page .about-2 .box {
    padding: 0 15px;
    max-width: 700px;
    margin: auto;
  }

  .about-page .about-2 .box::after {
    display: none;
  }
  .about-page .about-2 .box .text {
    color: #000;
  }
  .about-page .about-2 .box .text .tipsTitleCont .tipsTitle1 .cir {
    background-color: #bf0000;
  }



  .about-page .about-3 .list {
    padding-left: 15px;
    padding-right: 15px;
  }
  .about-page .about-3 .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-3 .top .i-title {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }

  .about-page .about-3 .list ul .slick-list {
    padding-right: 0;
  }



  .i-advantage .top .more_btn {
    position: relative;
  }
  .i-advantage .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .i-advantage .top .i-title {
    width: 100%;
    margin-left: 0;
    margin: 20px 0;
  }

}




.about-page .i-advantage.honor .bg {
  height: 75%;
  width: 100%;
  top: 0;
  z-index: 0;
}



@media screen and (max-width: 1400px) {
  .i-advantage .top .more_btn{
    position: relative;
  }

  .about-page .i-advantage.honor .top{
    flex-wrap: wrap;
  }
   .i-advantage .top .i-title{
    width: 100%;
     margin: 20px 0;
    margin-left: 0;
   
  }
}

@media screen and (max-width: 1200px) {
  .about-page .i-advantage.honor .top{
    flex-wrap: wrap;
  }

  .i-advantage .top .i-title{
    width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 1000px) {
  .about-page .i-advantage{
    background: #fff;
  }
}


.contact-page {
  background: #f8f8f8;
}
.contact-page .init-1 {
  background: #eee;
}
.contact-page .init-1 h1 {
  border-bottom: 1px solid #6e6b70;
  padding: 50px 0 20px;
  text-transform: capitalize;
}

.contact-page .init-1 ul li {
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .init-1 ul li:hover {
  -webkit-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}
.contact-page .init-1 ul li:hover i {
  color: var(--color);
  border: 2px solid var(--color);
}
.contact-page .init-1 ul li:hover .img {
  border: 2px solid var(--color);
}
.contact-page .init-1 ul li:hover .img img {
  -webkit-filter: grayscale(0) brightness(1);
  filter: grayscale(0) brightness(1);
}
.contact-page .init-1 ul li i,
.contact-page .init-1 ul li .img {
  width: 2.5em;
  height: 2.5em;
  border: 2px solid #da151b;
  border-radius: 100%;
  line-height: 2.5em;
  text-align: center;
  color: #da151b;
  margin: 0 auto;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .init-1 ul li .img {
  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;
}
.contact-page .init-1 ul li .img img {
  max-width: 50%;
  -webkit-filter: grayscale(1) brightness(0.6);
  filter: grayscale(1) brightness(0.6);
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
.contact-page .init-1 ul li h3 {
  color: #051524;
  padding: 20px 0 10px;
  font-weight: bold;
}
.contact-page .init-1 ul li p {
  color: #414951;
}



.contact-page .init-2 .init-2-box .left h1 {
  background: var(--color);
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.contact-page .init-2 .init-2-box .left .content ul {
  margin-top: 10px;
}
.contact-page .init-2 .init-2-box .left .content ul li {
  border-bottom: 1px solid #e0e8f0;
}
.contact-page .init-2 .init-2-box .left .content ul li span {
  display: inline-block;
  width: 60px;
  text-align: center;
  margin-right: 20px;
}
.contact-page .init-2 .init-2-box .left .content ul li p {
  color: #242424;
  font-weight: bold;
}


#addForm2 {
  background-color: #fff;
  -webkit-box-shadow: 13px 15px 60px 0 rgba(9, 36, 60, 0.1);
  box-shadow: 13px 15px 60px 0 rgba(9, 36, 60, 0.1);
}
#addForm2 h4 {
  color: #051524;
  text-transform: uppercase;
  font-weight: bold;
}
#addForm2 span {
  font-weight: 400;
  font-style: normal;
  color: #6b6b6b;
  display: block;
}
#addForm2 input {
  width: 100%;
  font-weight: 400;
  font-style: normal;
  color: #848b91;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 10px 15px;
  outline: none;
  background-color: #ececec;
  border-radius: 0;
  border: none;
  margin-bottom: 20px;
}
#addForm2 textarea {
  width: 100%;
  font-weight: 400;
  font-style: normal;
  color: #848b91;
  font-size: 16px;
  line-height: 24px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 10px 15px;
  outline: none;
  background-color: #ececec;
  border-radius: 0;
  border: none;
  margin-bottom: 20px;
  height: 100px;
}
#addForm2 .contact-submit {
  margin-top: 30px;
  text-align: center;
  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: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#addForm2 .contact-submit input[type="submit"] {
  max-width: 200px;
  font-weight: 500;
  font-style: normal;
  line-height: 36px;
  font-size: 20px;
  color: #fff !important;
  background-color: var(--color);
  /*border-radius: 28px;*/
  text-align: center;
  margin-right: 0 !important;
  margin-bottom: 0;
  padding: 9px 30px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#addForm2 .contact-submit #ewm {
  padding: 4px;
  border: 1px solid #ccc;
  width: 130px;
}
#addForm2 .contact-submit input[type="submit"]:hover {
  background-color: var(--color);
}


@media screen and (max-width: 700px) {
  .contact-page .init-2 .init-2-box .left {
    display: none;
  }
}





.i-tag {
  font-size: 20px;
  font-weight: 600;
  color: var(--color);
}
.i-tag i {
  display: inline-block;
  vertical-align: middle;
  background-color: var(--color);
  width: 40px;
  height: 1px;
  margin-right: 20px;
}


.faq-page .right .i-title {
  margin-bottom: 60px;
}
.faq-page .right ul li {
  border: 1px solid #d5d8dc;
  padding: 20px;
  margin-bottom: 20px;
}
.faq-page .right ul li .h4 {
  font-weight: bold;
  position: relative;
}
.faq-page .right ul li .h4 .iconfont {
  position: absolute;
  right: 0;
}
.faq-page .right ul li .content {
  margin-top: 20px;
  display: none;
}




.news-page ul {
  margin: -15px;
}
.news-page ul li {
  padding: 15px;
}
.news-page ul li .box {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 50px;
  border-radius: 12px;
}
.news-page ul li .box .time {
  font-size: 18px;
  opacity: 0.8;
}
.news-page ul li .box .h3 {
  font-size: 28px;
  font-weight: 600;
  margin: 12px 0 20px;
  height: 66px;
 line-height: 1.5;
}
.news-page ul li .box .content {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.news-page ul li .box .more_btn .more::after {
  color: black;
}

.newdet-page .newdet-1 {
  text-align: center;
}
.newdet-page .newdet-1 h1 {
  font-weight: bold;
}
.newdet-page .newdet-1 .time {
  opacity: 0.8;
  margin: 20px 0;
}
.newdet-page .newdet-1 .content {
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding: 30px 0;
  text-align: left;
  line-height: 35px;
}
.newdet-page .newdet-1 .m-link{
  text-align: left;
  line-height: 1.6;
}






.case-page .init-1 ul > p{
  font-size: 16px;
  letter-spacing: 0;
  margin: 20px;
}

.case-page .init-1 ul li .box{
  position: relative;
}
.case-page .init-1 ul li .box .img{
  display: block;
  overflow: hidden;
}
.case-page .init-1 ul li .box{
  position: relative;
  z-index: 2;
}
.case-page .init-1 ul li .box::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .1);
  z-index: 2;
}
.case-page .init-1 ul li .box .cont{
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  color: #fff;
}
.case-page .init-1 ul li .box .cont .sub{
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  transition: all .5s;
  background: #bf0000;
  transform: scaleX(0);
  z-index: -1;
  transform-origin: left;
}
.case-page .init-1 ul li .box .cont .cat{
  font-size: 16px;
  font-weight: 500;
}
.case-page .init-1 ul li .box .cont .title{
  font-weight: 600;
  margin-top: 6px;
  display: block;
  max-width: 400px;
}
.case-page .init-1 ul li .box .cont .moreC{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #fff;
}
.case-page .init-1 ul li .box .cont .moreC .more{
  position: absolute;
  width: 100%;
  overflow: hidden;
  height: 100%;
}
.case-page .init-1 ul li .box .cont .moreC .more i{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all .5s;
  font-size: 36px;
}
.case-page .init-1 ul li .box .cont .moreC .more i.i1{
  left: -50px;
}
.case-page .init-1 ul li .box:hover .cont .sub{
  transform: scaleX(1);
}
.case-page .init-1 ul li .box:hover .cont .moreC .more i{
  transform: translateX(50px);
  color: #bf0000;
}


@media (max-width: 1000px) {
  .case-page .init-1 ul li .box .cont{
    padding: 40px 10px;
  }
  .case-page .init-1 ul li .box .cont .moreC{
    height: 40px;
    width: 40px;
  }
}






.service-page .service-1 .box .right {
  padding-left: 4%;
}
.service-page .service-1 .box .right .text {
  line-height: 1.8;
}
.service-page .service-1 .list {
  margin-top: 70px;
}
.service-page .service-1 .list ul {
  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;
  gap: 12px;
}
.service-page .service-1 .list ul li {
  width: 25%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-1 .list ul li .img {
  display: block;
  height: 600px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}
.service-page .service-1 .list ul li .content {
  left: 5%;
  width: 90%;
  bottom: 5%;
  color: white;
}

.service-page .service-1 .list ul li h2,
.service-page .service-1 .list ul li .text {
  transform: translateY(100px);
  opacity: 0;
}

.service-page .service-1 .list ul li.active {
  width: 50%;
}

.service-page .service-1 .list ul li.active h2,
.service-page .service-1 .list ul li.active .text {
  transform: translateY(0);
  opacity: 1;
  transition: .5s ease;
  transition-delay: .5s;
}

@media screen and (max-width: 1800px) {
  .service-page .service-1 .list ul li .img {
    height: 480px;
  }
}

@media screen and (max-width: 1450px) {
  .service-page .service-1 .list ul li .img {
    height: 380px;
  }
  .service-page .service-1 .list {
    margin-top: 40px;
  }
}


@media screen and (max-width: 700px) {
  .service-page .service-1 .list {
    display: none;
  }
}











.prodet-page .prodet-1 .left {
  width: 35%;
}
.prodet-page .prodet-1 .left a {
  background: #fff;
  border-radius: 10px;
  display: block;
  text-align: center;
  padding: 77px 50px;
}
.prodet-page .prodet-1 .right {
  width: 65%;
  padding-left: 48px;
}
.prodet-page .prodet-1 .right .content {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.51;
  margin: 25px 0 60px;
}
.prodet-page .prodet-1 .right .gallery ul {
  margin: -10px;
}
.prodet-page .prodet-1 .right .gallery ul .slick-track{
  margin-left: 0;
}
.prodet-page .prodet-1 .right .gallery ul li {
  padding: 10px;
}
.prodet-page .prodet-1 .right .gallery ul li a {
  border-radius: 10px;
  display: block;
  background: #fff;
  padding: 30px 50px;
}
.prodet-page .prodet-1 .right .gallery ul li a img {
  width: auto;
  margin: auto;
}
.prodet-page .prodet-1 .right .more_btn .more::after {
  color: black;
}
.prodet-page .prodet-2 ul.options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  height: 96px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.prodet-page .prodet-2 ul.options li {
  font-size: 30px;
  padding: 0 60px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0 0 50px 0;
  position: relative;
}
.prodet-page .prodet-2 ul.options li a {
  position: relative;
}
.prodet-page .prodet-2 ul.options li a::after {
  content: "";
  position: absolute;
  left: -17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: var(--color);
}
.prodet-page .prodet-2 ul.options li.active {
  background: var(--color);
  color: white;
}
.prodet-page .prodet-2 ul.options li.active a::after {
  background: white;
}
.prodet-page .prodet-2 .box {
  padding: 70px 0;
}

.prodet-page .prodet-2 .box .content ul li{
  list-style-type: disc;
}
.prodet-page .prodet-2 .list {
  padding: 70px 0;
}
.prodet-page .prodet-2 .list ul {
  margin: -15px;
}
.prodet-page .prodet-2 .list ul li {
  padding: 15px;
  text-align: center;
}
.prodet-page .prodet-2 .list ul li .img-box {
  background: #fff;
  border-radius: 10px;
  padding: 50px;
}
.prodet-page .prodet-2 .list ul li p {
  font-size: 18px;
  margin-top: 15px;
}

.prodet-page .prodet-2 .box .content input {
  width: 46%;
  font-weight: 300;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #dbdbdb;
  height: 63px;
  margin-bottom: 30px;
}
.prodet-page .prodet-2 .box .content p {
  width: 100%;
  font-weight: 300;
  opacity: 0.6;
  margin-bottom: 20px;
}
.prodet-page .prodet-2 .box .content textarea {
  width: 100%;
  height: 177px;
  font-size: 18px;
  padding: 18px 8px;
  background-color: transparent;
  border: 1px solid #dbdbdb;
}
.prodet-page .prodet-2 .box .content input[type="submit"] {
  background: #bc000d;
  color: white;
  border: none;
  width: 186px;
  height: 57px;
  margin-top: 45px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.prodet-page .prodet-2 .box .content input[type="submit"]:hover {
  background: #000;
}

@media (max-width:1000px) {
  .prodet-page .prodet-1 .left{
    width: 100%;
  }
  .prodet-page .prodet-1 .right{
    width: 100%;
    padding-left: 0;
    padding-top:20px; 
  }
  .prodet-page .prodet-1 .right .gallery ul li a{
    padding: 10px;
  }
  .prodet-page .prodet-2 ul.options{
    height: 80px;
    flex-wrap: wrap;
  }
  .prodet-page .prodet-2 ul.options li{
    padding:0 25px;
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  .prodet-page .prodet-2 ul.options {
    height: auto;
    flex-wrap: wrap;
  }
}


table td,
table th {
  word-break: normal;
}

.inner-page {
  background-color: #efefef;
}

.inner-page .slideBarBox .slideBarLeft {
  width: 30%;
  padding-right: 5%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.inner-page .slideBarBox .slideBarLeft .border {
  border: 1px solid #bebebe;
  margin-bottom: 30px;
}
.inner-page .slideBarBox .slideBarLeft .border span.h6 {
  font-weight: 900;
  font-size: 20px;
  line-height: 1.2;
  display: block;
}
.inner-page .slideBarBox .slideBarLeft .border.search {
  padding: 25px;
}
.inner-page .slideBarBox .slideBarLeft .border.search form {
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f5f5f5;
  padding: 0 .8em;
  font-size: 14px;
}
.inner-page .slideBarBox .slideBarLeft .border.search form input {
  height: 50px;
  line-height: 50px;
  border: none;
  background-color: transparent;
  width: 100%;
}
.inner-page .slideBarBox .slideBarLeft .border.search form input[type="submit"] {
  width: 30px;
  background: url("../images/icon-search.png") center center no-repeat;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.inner-page .slideBarBox .slideBarLeft .border.nav span.h6 {
  padding: 25px;
  color: white;
  background-color: var(--color);
}
.inner-page .slideBarBox .slideBarLeft .border.nav .navList ul li a {
  font-size: 22px;
  font-weight: 500;
  padding: 18px 25px;
  border-top: 1px solid #bebebe;
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .slideBarBox .slideBarLeft .border.nav .navList ul li a:hover,
.inner-page .slideBarBox .slideBarLeft .border.nav .navList ul li a.active {
  color: var(--color);
}
.inner-page .slideBarBox .slideBarLeft .border.nav .navList ul li li a {
  font-size: 18px;
  font-weight: normal;
  padding: 15px;
  padding-left: 35px;
}
.inner-page .slideBarBox .slideBarLeft .border.img {
  padding: 50px 25px;
  text-align: center;
  color: white;
}
.inner-page .slideBarBox .slideBarLeft .border.img span.h6 {
  text-transform: uppercase;
  margin-bottom: 1em;
}
.inner-page .slideBarBox .slideBarLeft .border.img hr {
  border: none;
  display: block;
  height: 1px;
  background-color: white;
}
.inner-page .slideBarBox .slideBarLeft .border.img .text {
  margin: 1.2em 0;
  color: inherit;
  font-weight: normal;
}
.inner-page .slideBarBox .slideBarLeft .border.img .text p {
  font-size: 90%;
}
.inner-page .slideBarBox .slideBarLeft .border.img span.phone {
  display: block;
  font-weight: 900;
  font-size: 18px;
  /*text-transform: uppercase;*/
  margin: 1em 0;
}
.inner-page .slideBarBox .slideBarLeft .border.img a.btn {
  font-weight: 500;
  font-size: 16px;
  border-radius: 30px;
  text-transform: uppercase;
  background-color: var(--color);
  line-height: 2.625em;
  height: 2.625em;
  max-width: 90%;
  display: block;
  margin: 0 auto;
}
.inner-page .slideBarBox .slideBarLeft .border.hot {
  padding: 25px 30px;
}
.inner-page .slideBarBox .slideBarLeft .border.hot span.h6 {
  padding-bottom: 1em;
  border-bottom: 1px solid #bebebe;
  margin-bottom: 1em;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList ul li,
.product-det-page .product-det-2 .left .navList ul li.hot ul li {
  padding: 7px 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;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList ul li .img,
.product-det-page .product-det-2 .left .navList ul li.hot ul li .img {
  width: 35%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0%;
  border: 1px solid #bebebe;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList ul li .content,
.product-det-page .product-det-2 .left .navList ul li.hot ul li .content {
  padding-left: 5%;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList ul li .content span.cat,
.product-det-page .product-det-2 .left .navList ul li.hot ul li .content span.cat {
  font-weight: normal;
  font-size: 18px;
  /*color: var(--color);*/
  line-height: 1.2;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList ul li .content span.title,
.product-det-page .product-det-2 .left .navList ul li.hot ul li .content span.title {
  font-weight: 500;
  font-size: 22px;
  color: #120c0b;
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList ul li .content span.title:hover,
.product-det-page .product-det-2 .left .navList ul li.hot ul li .content span.title:hover {
  color: var(--color);
}
.product-det-page .product-det-2 .left .navList ul li.hot ul li .content span {
  padding: 0;
  background: transparent;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList.news ul li .img {
  width: 40%;
  border: none;
  padding: 0;
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList.news ul li .content time {
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: var(--color);
}
.inner-page .slideBarBox .slideBarLeft .border.hot .proList.news ul li .content span.h5 {
  font-size: 16px;
  color: #120c0b;
  line-height: 1.8;
display: -webkit-box;
-webkit-box-orient: vertical;
}
.inner-page .slideBarBox .slideBarLeft .border.mail {
  padding: 25px 30px;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form input {
  display: block;
  line-height: 42px;
  height: 42px;
  border: none;
  background-color: transparent;
  font-size: 16px;
  font-weight: normal;
  /*text-transform: uppercase;*/
  margin-top: 1.5em;
  width: 100%;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="text"] {
  border-bottom: 1px solid #bebebe;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="text"]::-webkit-input-placeholder {
  color: #120c0b;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="text"]:-moz-placeholder {
  color: #120c0b;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="text"]::-moz-placeholder {
  color: #120c0b;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="text"]:-ms-input-placeholder {
  color: #120c0b;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="text"]::placeholder {
  color: #120c0b;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="text"]:focus {
  border-color: var(--color);
}
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="submit"] {
  background-color: var(--color);
  text-align: center;
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .slideBarBox .slideBarLeft .border.mail form input[type="submit"]:hover {
  background-color: black;
}
.inner-page .slideBarBox .slideBarRight {
  width: 70%;
}



.productList ul {
  margin: -20px;
}
.productList ul li {
  padding: 20px;
}
.productList ul li a.img-box {
  display: block;
  /*padding: 70px 18% 40px;*/
  background-color: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.productList ul li:not(.on) a.img-box {
  overflow: unset;
}
.productList ul li a.img-box img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
}
.productList ul li .content {
  padding: 0 5%;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.productList ul li .content span.h6 {
  font-weight: 600;
  font-size: 22px;
  color: #120c0b;
  display: block;
  padding: 1em 0 .7em;
  border-bottom: 1px solid #bebebe;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.productList ul li .content .text {
  font-size: 15px;
  line-height: 1.6;
  margin-top: 1em;
  padding: 0 5%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: -webkit-box;
  height: 4.8em;
}
.productList ul li:not(.on):hover a.img-box {
  background-color: var(--color);
}
.productList ul li:not(.on):hover a.img-box img {
  -webkit-transform: translateY(49%);
  -moz-transform: translateY(49%);
  -ms-transform: translateY(49%);
  transform: translateY(49%);
}
.productList ul li:not(.on):hover .content {
  -webkit-transform: translateY(-310%);
  -moz-transform: translateY(-310%);
  -ms-transform: translateY(-310%);
  transform: translateY(-310%);
}
.productList ul li:not(.on):hover .content span.h6 {
  color: white;
  border-bottom-color: white;
}
.productList ul li:not(.on):hover .content .text {
  color: white;
}

@media screen and (max-width: 1600px) {
  #index-body .init-3 .list ul li span.year,
  .productList ul li .content span.h6 {
    font-size: 20px;
  }
  .productList ul li .content .text {
    font-size: 14px;
    line-height: 2;
    height: 5.6em;
  }
}

@media screen and (max-width: 1450px) {
  #index-body .init-3 .list ul li span.year,
  .productList ul li .content span.h6,
  #index-body .init-6 .bottom ul li .content span.h6 {
    font-size: 18px;
  }

  .productList ul li:not(.on):hover .content {
    -webkit-transform: translateY(-300%);
    -moz-transform: translateY(-300%);
    -ms-transform: translateY(-300%);
    transform: translateY(-300%);
  }
}

@media screen and (max-width: 1250px) {
  .productList ul li a.img-box {
    padding: 30px 18%;
  }
  .productList ul li:not(.on):hover .content,
  .productList ul li:not(.on):hover a.img-box img {
    -webkit-transform: translateY(0) !important;
    -moz-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
  .productList ul li:not(.on):hover .content span.h6 {
    color: #120c0b !important;
    border-bottom-color: #ececec !important;
  }
  .productList ul li:not(.on):hover .content .text {
    color: #120c0b !important;
  }
  .productList ul li {
    padding: 5px;
  }
  .productList ul {
    margin: -5px;
  }
  .productList ul li .content .text {
    padding: 0;
  }
}

@media screen and (max-width: 700px) {
  #index-body .init-3 .list ul li span.year,
  .productList ul li .content span.h6,
  #index-body .init-6 .bottom ul li .content span.h6 {
    font-size: 16px;
    line-height: 30px;
  }
}


.product-list-page .productList ul,
.prodet-product-link .productList ul {
  margin: -15px -6px;
}
.product-list-page .productList ul li,
.prodet-product-link .productList ul li {
  padding: 15px 6px;
}

.product-list-page .productList ul li:not(.on):hover .content,
.prodet-product-link .productList ul li:not(.on):hover .content,
.small-product-link .productList ul li:not(.on):hover .content {
  -webkit-transform: translateY(-180%);
  -moz-transform: translateY(-180%);
  -ms-transform: translateY(-180%);
  transform: translateY(-180%);
}

.product-list-page {
  padding: 100px 0 130px;
}

@media screen and (max-width: 1450px) {
  .product-list-page .productList ul li,
  .prodet-product-link .productList ul li {
    padding: 10px 5px;
  }
  .product-list-page .productList ul,
  .prodet-product-link .productList ul {
    margin: -10px -5px;
  }
}







._page_container {
    font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif;
    font-size: 13px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    user-select: none;
}
.m-page ._page_container {
  text-align: right;
}
._page_container input[type=number] {
    -moz-appearance: textfield;
}
._page_container input[type=number]::-webkit-inner-spin-button, ._page_container input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
._page_container ._pages {
    display: inline-block;
    margin: 0 auto;
    vertical-align: top;
}
._page_container ._pages li {
    display: inline-block;
    list-style: none;
    vertical-align: top;
    color: #303133;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
    margin: 0 5px;
    border-radius: 2px;
    cursor: pointer;
}
._page_container ._pages li {
  height: 28px;
}
._page_container ._pages li._prev_:before,
._page_container ._pages li._next_:before {
  content: "\e76e";
  font-family: "iconfont";
}
._page_container ._pages li._next_:before {
  content: "\e76f";
}
._page_container ._pages li:hover {
    color: #1c3686;
}

._page_container ._pages li:first-child, ._page_container ._pages li:last-child {
    font-size: 18px;
}

._page_container ._pages ._prev, ._page_container ._pages ._next, ._page_container ._pages ._home, ._page_container ._pages ._last {
    font-size: 12px;
    font-weight: 400;
    padding: 0 8px;
}

._page_container ._jumper {
    display: inline-block;
    color: #606266;
    margin-left: 10px;
    vertical-align: top;
}

._page_container ._jumper ._count {
    margin-right: 10px;
    padding: 0;
}

._page_container ._jumper ._jumper_input {
    display: inline-block;
    font-size: 14px;
    color: #606266;
    width: 50px;
    height: 26px;
    text-align: center;
    margin: 0 5px;
    padding: 3px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    background: 0 0;
    outline: none;
    box-sizing: border-box;
}
._page_container ._jumper ._jumper_input:focus {
    border-color: #1c3686;
}
._pages_1 li {
    background-color: #fff;
}
._active_1 {
    color: #fff !important;
    background-color: var(--color) !important;
}
._active_2 {
    color: #1c3686 !important;
}
._disabled {
    cursor: not-allowed !important;
}
._disabled_c {
    color: #999 !important;
}
.m-pagejs {
  margin-top: 60px;
}







.slideBarBox .tagList .tagBox {
  margin-bottom: 30px;
  border: 1px solid #bebebe;
}
.slideBarBox .tagList .tagBox h5 {
  font-size: 18px;
  font-weight: bold;
  padding: 25px;
  border-bottom: 1px solid #bebebe;
}
.slideBarBox .tagList .tagBox h5 i.iconfont {
  float: right;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  cursor: hand;
}
.slideBarBox .tagList .tagBox h5 i.iconfont.active {
  transform: rotateX(180deg)
}
.slideBarBox .tagList .tagBox .select {
  padding: 25px;
}
.slideBarBox .tagList .tagBox .select ul li {
  cursor: pointer;
  cursor: hand;
  user-select: none;
}
.slideBarBox .tagList .tagBox .select ul li i.fa {
  margin-right: .5em;
}
.slideBarBox .tagList .tagBox .select ul li.active i.fa:before {
  content: "\f046";
}



.other-md .img {
  border-radius: 50%;
}


.our-video {
  background-color: #e7e7e7;
}

.our-video .content {
  background-color: #FFFFFF;
  border-radius: 0 0 16px 16px;
}


.our-video .line {
  width: 14em;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  position: relative;
}
.our-video .line em {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 20%;
  background-color: black;
  -webkit-transition: width .5s ease;
  -moz-transition: width .5s ease;
  transition: width .5s ease;
}
.our-video .arrow {
  cursor: pointer;
}
.our-video .arrow span.btn {
  width: 45px;
  height: 45px;
  line-height: 43px;
  text-align: center;
  border: 1px solid black;
  border-radius: 50%;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-video .arrow:hover span.btn {
  color: #FFFFFF;
  border-color: var(--color);
  background-color: var(--color);
}




.inner-page .m-page {
  margin-top: 90px;
  text-align: center;
}
.inner-page .m-page a,
.inner-page .m-page span {
  margin: 0 13px;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 100%;
  font-size: 18px;
  color: #301500;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-weight: normal;
}
.inner-page .m-page a:after,
.inner-page .m-page span:after {
  content: '';
  width: 130%;
  height: 130%;
  position: absolute;
  left: -15%;
  top: -15%;
  border-radius: inherit;
  border: 2px solid #ececec;
}
.inner-page .m-page a:hover,
.inner-page .m-page span.current {
  background: var(--color);
  color: #fff;
}

@media screen and (max-width: 1600px) {
  .inner-page .m-page a,
  .inner-page .m-page span {
    font-size: 16px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    margin: 0 10px;
  }
}

@media screen and (max-width: 1000px) {
  .inner-page .m-page a,
  .inner-page .m-page span {
    font-size: 14px;
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
}



.yuy > span {
  transition: .5s ease;
}