@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Regular.ttf) format('truetype'), url(../fonts/Montserrat-Regular.eot) format('eot'), url(../fonts/Montserrat-Regular.woff) format('woff'), url(../fonts/Montserrat-Regular.woff2) format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Medium.ttf) format('truetype'), url(../fonts/Montserrat-Medium.eot) format('eot'), url(../fonts/Montserrat-Medium.woff) format('woff'), url(../fonts/Montserrat-Medium.woff2) format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-SemiBold.ttf) format('truetype'), url(../fonts/Montserrat-SemiBold.eot) format('eot'), url(../fonts/Montserrat-SemiBold.woff) format('woff'), url(../fonts/Montserrat-SemiBold.woff2) format('woff2');
  font-weight: 600;
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Bold.ttf) format('truetype'), url(../fonts/Montserrat-Bold.eot) format('eot'), url(../fonts/Montserrat-Bold.woff) format('woff'), url(../fonts/Montserrat-Bold.woff2) format('woff2');
  font-weight: bold;
}
@font-face {
  font-family: 'Anton-Regular';
  src: url(../fonts/Anton-Regular.ttf) format('truetype'), url(../fonts/Anton-Regular.eot) format('eot'), url(../fonts/Anton-Regular.woff) format('woff'), url(../fonts/Anton-Regular.woff2) format('woff2');
}
body {
  font-family: "Montserrat";
  font-weight: 500;
}
:root {
  --font: 'Anton-Regular';
  --color: #ec0017;
  --color2: #021841;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  width: 1260px;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
#header .nav {
  display: inline-block;
  width: 100%;
  background: #f4f4f4;
}
#header .nav > .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: 120px;
}
#header .nav > .menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav > .menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
}
#header .nav > .menu .menu-box ul.menu > li {
  margin-right: 40px;
  font-size: 16px;
  -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;
}
#header .nav > .menu .menu-box ul.menu > li::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: #ec0017;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
#header .nav > .menu .menu-box ul.menu > li.active:before,
#header .nav > .menu .menu-box ul.menu > li:hover::before {
  opacity: 1;
}
#header .nav > .menu .menu-box ul.menu > li > a {
  display: block;
  padding: 25px 0;
}
#header .nav > .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;
  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 #fd2318;
  display: none \9;
}
#header .nav > .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 > .menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav > .menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav > .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 > .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 > .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 > .menu .msgBtn {
  display: inline-block;
  color: #FFFFFF;
  background-color: #ec0017;
  padding: 15px 35px;
  border-radius: 5px;
  cursor: pointer;
}
#header .nav > .menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 30px;
  margin-right: 30px;
  cursor: pointer;
  cursor: hand;
}
#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 .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100% !important;
  height: auto !important;
  display: block;
  overflow: auto;
}
table tbody {
  display: table;
  width: 100% !important;
  min-width: 700px;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: auto !important;
  height: auto !important;
  word-break: normal;
}
table tr {
  width: auto !important;
  height: auto !important;
}

.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: #fff;
  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: black;
  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: 120px;
  }
}
.hover-language .zhuyu img {
  vertical-align: middle;
}
.hover-language .zhuyu span {
  margin-left: 3px;
  display: inline-block;
  vertical-align: middle;
}
.hover-language ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 100%;
  right: 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::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/banner-mask.png);
}
#banner .content {
  position: absolute;
  width: 64%;
  left: 18%;
  top: 20%;
}
#banner h2 {
  margin-bottom: 20px;
  font-size: 4.6875vw;
  line-height: 1.2;
  font-family: var(--font);
  color: #FFFFFF;
  text-transform: uppercase;
}
#banner h2 span {
  display: inline-block;
  padding: 0 30px;
  background-color: var(--color);
}
#banner p {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: 20px;
  color: #FFFFFF;
}
#banner .small {
  position: absolute;
  left: 5%;
  top: 27%;
  width: 6%;
}
#banner .small .item img {
  border: 8px solid transparent;
  -webkit-transition: border-color 0.5s ease;
  -moz-transition: border-color 0.5s ease;
  transition: border-color 0.5s ease;
}
#banner .small .item.active img {
  border-color: #FFFFFF;
}
#banner .play {
  position: absolute;
  z-index: 1;
  left: 71%;
  top: 39%;
  border-radius: 50%;
  cursor: pointer;
}
#banner .play::before,
#banner .play::after {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.28);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
#banner .play::after {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}
#banner .dots {
  position: absolute;
  left: 18%;
  bottom: 8%;
}
#banner .dots li {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #FFFFFF;
  position: relative;
}
#banner .dots li::before {
  content: "";
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
  border-radius: inherit;
  border: 3px solid transparent;
}
#banner .dots li.slick-active {
  background-color: var(--color);
}
#banner .dots li.slick-active::before {
  border-color: #FFFFFF;
}
#banner .dots li + li {
  margin-left: 23px;
}
#banner .dots li button {
  display: none;
}
@-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(2);
    transform: scale(2);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    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(2);
    transform: scale(2);
    opacity: .3;
  }
  to {
    -moz-transform: scale(2);
    transform: scale(2);
    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(2);
    -moz-transform: scale(2);
    transform: scale(2);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
.baseBtn {
  display: inline-block;
  color: #FFFFFF;
  background-color: var(--color);
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  min-width: 180px;
  text-align: center;
}
.baseTit {
  font-size: 45px;
  font-family: var(--font);
}
.baseTit span {
  padding: 0 10px;
  color: #FFFFFF;
  background-color: var(--color);
}
.module-1 {
  max-width: 1700px;
  margin-left: auto;
  background-color: #191919;
  color: #FFFFFF;
  padding: 90px 0 0;
}
.module-1 .container {
  max-width: 1500px;
}
.module-1 .right {
  padding-left: 60px;
  padding-bottom: 100px;
  border-left: 2px solid var(--color);
}
.module-1 .right p {
  margin-bottom: 40px;
}
.module-1 a.link {
  color: var(--color);
  border-bottom: 1px solid currentColor;
}
.fixed-bar {
  position: fixed;
  z-index: 222;
  right: 15px;
  bottom: 15%;
}
.fixed-bar .dom {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  line-height: 56px;
  text-align: center;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
  cursor: pointer;
}
.fixed-bar .dom.on,
.fixed-bar .dom:hover {
  border-color: #e60013;
  background-color: #e60013;
}
.fixed-bar .dom img {
  vertical-align: middle;
}
.fixed-bar .dom + div {
  margin-top: 15px;
}
@media (max-width: 1000px) {
  .fixed-bar {
    display: none;
  }
}
.our-product {
  padding: 100px 0;
}
.our-product .arrow {
  display: inline-block;
  cursor: pointer;
}
.our-product .arrow.arrow_l {
  margin-right: 25px;
}
.our-product .arrow path {
  fill: #c5c5c5;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-product .arrow:hover path {
  fill: var(--color);
}
.our-product .list {
  margin-top: 40px;
  padding-top: 50px;
  border-top: 1px solid #b5b5b5;
}
.our-product .list ul {
  margin: -15px;
}
.our-product .list li {
  padding: 15px;
}
.our-product .list li .name {
  font-weight: 600;
}
.our-product .list li p {
  color: #505050;
}
@-webkit-keyframes sh {
  0% {
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@-moz-keyframes sh {
  0% {
    -moz-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }
}
@keyframes sh {
  0% {
    -webkit-transform: translate3d(0, 10%, 0);
    -moz-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }
}
.i-category {
  padding: 90px 0 110px;
  background-color: #f6f6f6;
  overflow: hidden;
}
.i-category .options {
  margin-top: 40px;
  border-bottom: 1px solid #b5b5b5;
}
.i-category .options .item {
  padding: 10px;
  margin-bottom: -1px;
  font-weight: 600;
  color: #b4b4b4;
  display: inline-block;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.i-category .options .item.active {
  color: #000000;
  border-color: var(--color);
}
.i-category .ret {
  margin-top: 36px;
}
.i-category .ret .item {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.i-category .ret .item.active {
  opacity: 1;
  position: static;
  visibility: visible;
  -webkit-transition: 1.5s ease;
  -moz-transition: 1.5s ease;
  transition: 1.5s ease;
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: sh;
  -moz-animation-name: sh;
  animation-name: sh;
}
.i-category .ret .item ul {
  margin: -7px;
}
.i-category .ret .item li {
  padding: 7px;
}
.i-category .ret .item .img {
  border-radius: 5px;
}
.i-category .ret .item .img .name {
  text-align: center;
  top: 50%;
  left: 5%;
  width: 90%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #FFFFFF;
}
.i-category .text {
  margin-top: 40px;
  font-weight: 600;
}
.i-category .text a {
  color: var(--color);
  border-bottom: 1px solid currentColor;
}
.our-news {
  background: url(../images/news-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 100px 0 120px;
}
.our-news .arrow {
  display: inline-block;
  cursor: pointer;
}
.our-news .arrow.arrow_l {
  margin-right: 25px;
}
.our-news .arrow path {
  fill: #c5c5c5;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-news .arrow:hover path {
  fill: var(--color);
}
.our-news .list {
  margin-top: 30px;
}
.our-news .list ul {
  margin: -15px;
}
.our-news .list li {
  padding: 15px;
}
.our-news .list .box {
  background-color: #FFFFFF;
  overflow: hidden;
  border-radius: 5px;
  -webkit-transition: -webkit-box-shadow 0.5s ease;
  transition: -webkit-box-shadow 0.5s ease;
  -moz-transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease, -webkit-box-shadow 0.5s ease;
}
.our-news .list .box:hover {
  -webkit-box-shadow: 0 0 21px rgba(0, 0, 0, 0.21);
  box-shadow: 0 0 21px rgba(0, 0, 0, 0.21);
}
.our-news .list .box .img {
  width: 35%;
  height: 270px;
}
.our-news .list .box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.our-news .list .box .content {
  width: 65%;
  padding: 5%;
}
.our-news .list .box .content .name {
  font-size: 25px;
  font-weight: bold;
}
.our-news .list .box .content .date {
  color: #969696;
}
.our-news .list .box .content .text {
  color: #363636;
}
.our-news .bottom {
  margin-top: 30px;
}
.our-news .bottom .left .item {
  font-weight: 600;
  border-bottom: 2px solid var(--color);
}
.our-news .bottom .left .item + .item {
  margin-left: 30px;
}
.i-advantage {
  background: url(../images/adv-bg.jpg) no-repeat center;
  background-size: cover;
  position: relative;
  padding-top: 415px;
}
.i-advantage::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.i-advantage li {
  background-color: var(--color);
  color: #FFFFFF;
  padding: 40px;
}
.i-advantage li:nth-of-type(2) {
  background-color: #191919;
}
.i-advantage li .num {
  font-size: 70px;
  line-height: 1;
  font-family: var(--font);
}
.our-about {
  position: relative;
  padding: 200px 0 120px;
}
.our-about::before {
  content: attr(data-text);
  position: absolute;
  left: 9%;
  top: 0;
  font-size: 262.13px;
  line-height: 1.2;
  color: #f5f5f5;
  font-family: var(--font);
}
.our-about .left {
  width: 41%;
}
.our-about .right {
  width: 54%;
  margin-top: 7%;
}
.our-about a.link {
  color: var(--color);
  border-bottom: 1px solid currentColor;
}
.i-contact {
  background: url(../images/contact-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 75px 0;
}
#footer {
  background-color: #212121;
  color: #FFFFFF;
}
#footer .foot-top {
  padding: 70px 0;
}
#footer .foot-top .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 .foot-block {
  max-width: 340px;
}
#footer .foot-top .foot-block .text {
  color: #949494;
}
#footer .foot-top .foot-block h4 {
  margin: 30px 0;
  font-size: 25px;
  font-family: var(--font);
  text-transform: uppercase;
}
#footer .foot-top .foot-block li a {
  color: #6d6c6d;
}
#footer .foot-top .foot-block li a:hover {
  color: #FFFFFF;
}
#footer .foot-top .foot-block .social-links a {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-size: 14px;
  font-family: FontAwesome;
  border-radius: 50%;
  background-color: #272727;
}
#footer .foot-top .foot-block .social-links a + a {
  margin-left: 18px;
}
#footer .foot-top .foot-block .social-links a:hover {
  background-color: var(--color);
}
#footer .foot-bottom {
  border-top: 1px solid #414545;
}
#footer .foot-bottom p,
#footer .foot-bottom a {
  color: #949494;
  display: inline-block;
  vertical-align: middle;
}
#footer .foot-bottom img {
  height: 14px;
}
@media (max-width: 1800px) {
  .font-18 {
    font-size: 16px;
  }
  .font-20 {
    font-size: 18px;
  }
  .font-24 {
    font-size: 20px;
  }
  #banner p {
    font-size: 18px;
  }
}
@media (max-width: 1600px) {
  #header .nav > .menu {
    height: auto;
  }
  #header .nav > .menu .logo {
    width: 150px;
  }
  #header .nav > .menu .msgBtn {
    padding: 10px 20px;
  }
  .our-about::before {
    left: 0;
  }
}
@media (max-width: 1440px) {
  #header .nav > .menu .menu-box ul.menu > li {
    margin-right: 30px;
  }
  #header .nav > .menu .msgBtn {
    display: none;
  }
  #header .nav > .menu .h-search {
    margin-left: 0;
  }
  #banner p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .font-20 {
    font-size: 16px;
  }
  .font-24 {
    font-size: 18px;
  }
  .baseBtn {
    height: auto;
    line-height: 1.5;
    min-width: auto;
    padding: 10px 30px;
  }
}
@media (max-width: 1260px) {
  .ui.container {
    width: 1000px;
  }
  #header .nav > .menu .logo {
    width: 100px;
  }
  #header .nav > .menu .menu-box ul.menu > li {
    font-size: 14px;
    margin-right: 25px;
  }
  #header .nav > .menu .menu-box ul.menu > li::before {
    display: none;
  }
  #header .nav > .menu .h-search {
    margin-right: 20px;
  }
  #banner .small {
    display: none;
  }
  #banner .dots {
    left: 5%;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
  }
  #banner .dots li {
    display: block;
  }
  #banner .dots li + li {
    margin-left: 0;
    margin-top: 23px;
  }
  .baseTit {
    font-size: 34px;
  }
  .font-16 {
    font-size: 14px;
  }
  .font-18 {
    font-size: 14px;
  }
  .font-20 {
    font-size: 14px;
  }
  .font-24 {
    font-size: 16px;
  }
  .our-news .list .box .content .name {
    font-size: 20px;
  }
  .i-advantage {
    padding-top: 300px;
  }
  .i-advantage li .num {
    font-size: 50px;
  }
  .our-about {
    padding: 120px 0;
  }
  .our-about::before {
    font-size: 150px;
  }
}
@media (max-width: 1000px) {
  .ui.container {
    width: 700px;
  }
  #nav-height {
    display: none;
  }
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  #banner .dots {
    display: none;
  }
  #banner .content {
    left: 5%;
    width: 90%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
  }
  #banner .play {
    display: none;
  }
  #banner h2 {
    font-size: 30px;
    line-height: 1.5;
  }
  #banner h2 br {
    display: none;
  }
  #banner h2 span {
    padding: 0 .5em;
  }
  #banner p {
    font-size: 14px;
  }
  .module-1 {
    padding: 60px 0 0;
  }
  .module-1 .left {
    width: 100%;
  }
  .module-1 .right {
    width: 100%;
    padding-left: 0;
    padding-bottom: 60px;
    padding-top: 30px;
    margin-top: 30px;
    border-left: 0;
    border-top: 2px solid var(--color);
  }
  .module-1 .right p {
    margin-bottom: 30px;
  }
  .baseTit {
    font-size: 30px;
  }
  .our-product {
    padding: 60px 0;
  }
  .our-product .left {
    float: none;
    text-align: center;
  }
  .our-product .right {
    display: none;
  }
  .i-category {
    padding: 60px 0;
  }
  .our-news {
    padding: 60px 0;
  }
  .our-news .bottom .left {
    float: none;
  }
  .our-news .bottom .right {
    display: none;
  }
  .i-advantage {
    padding-top: 30%;
  }
  .i-advantage .box {
    width: 100%;
  }
  .i-advantage li .num {
    font-size: 40px;
  }
  .our-about {
    padding: 60px 0;
  }
  .our-about::before {
    display: none;
  }
  .our-about .left {
    float: none;
    width: 100%;
    display: none;
  }
  .our-about .right {
    float: none;
    width: 100%;
    margin-top: 0;
  }
  .i-contact {
    padding: 40px 0;
  }
  .hide-1000 {
    display: none!important;
  }
  #footer .foot-top {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  #banner h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 100%;
  }
  .i-advantage li {
    padding: 5%;
  }
  .baseTit {
    font-size: 24px;
  }
  #footer .foot-top .foot-content {
    display: block;
  }
  #footer .foot-top .foot-block {
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  #banner li {
    height: 300px;
  }
  #banner li > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .our-news .list .box .img {
    width: 100%;
    height: auto;
    float: none;
  }
  .our-news .list .box .content {
    width: 100%;
    float: none;
  }
  .our-news .bottom .left .item + .item {
    margin-left: 20px;
  }
}






.inner-banner {
  height: 600px;
  background-position: center center;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  color: #fff;
  z-index: 1;
}
.inner-banner::before {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}


@media screen and (max-width: 700px) {
  .inner-banner {
    height: auto;
    padding-top: 100px;
  }
}

.m-page {
  text-align: center;
  padding-top: 20px;
}
.m-page a,
.m-page span {
  display: inline-block;
  margin: 2px 4px;
  min-width: 30px;
  line-height: 36px;
  height: 30px;
  color: #555;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
.m-page a:hover {
  color: #da1c28;
}
.m-page span {
  background-color: #da1c28;
  color: #fff;
}


.inner-page h3.title {
  font-size: 40px;
  line-height: 1.2;
  /*font-weight: bold;*/
}
.inner-page h3.title em {
  color: #da1c28;
}
.inner-page .sidebox .sideleft {
  width: 25%;
  position: sticky;
  top: 100px;
}
.inner-page .sidebox .sideleft .widget {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.inner-page .sidebox .sideleft .widget form {
  position: relative;
}
.inner-page .sidebox .sideleft .widget form input {
  width: 100%;
  padding: 10px;
  border: 0;
  background: #f8f8f8;
  margin-bottom: 0;
  height: 40px;
  font-size: 16px;
  line-height: 2;
}
.inner-page .sidebox .sideleft .widget form button {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #da1c28;
  color: #fff;
  border: 0;
  padding: 8px 16px;
  cursor: pointer;
  height: 40px;
}
.inner-page .sidebox .sideleft .widget h6 {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 24px;
  line-height: 1.8;
  margin-bottom: 15px;
  /*font-weight: bold;*/
      font-family: var(--font);
  color: #000;
}
.inner-page .sidebox .sideleft .widget ul {
  margin-bottom: 0;
  padding: 0;
}
.inner-page .sidebox .sideleft .widget ul li {
  margin-bottom: 15px;
  color: #555;
  font-size: 18px;
  line-height: 1.5;
  padding-left: 7px;
  position: relative;
  overflow: hidden;
}
.inner-page .sidebox .sideleft .widget ul li a {
  padding-left: 10px;
  line-height: 28px;
}
.inner-page .sidebox .sideleft .widget ul li:last-child {
  margin-bottom: 0;
}
.inner-page .sidebox .sideleft .widget ul li i {
  font-size: 16px;
  margin-right: 20px;
  position: absolute;
  left: 0;
  top: 4px;
}
.inner-page .sidebox .sideleft .widget ul li:hover,
.inner-page .sidebox .sideleft .widget ul li.active {
  color: #da1c28;
}
.inner-page .sidebox .sideleft .widget ul li ul {
  display: none;
  margin-top: 15px;
}
.inner-page .sidebox .sideleft .widget ul li ul li a {
  padding-left: 0;
  color: #999;
}
.inner-page .sidebox .sideleft .widget ul li ul li a.active {
  color: #da1c28;
}
.inner-page .sidebox .sideleft .widget .recent li {
  display: block;
}
.inner-page .sidebox .sideleft .widget .recent li .thum {
  width: 100px;
  overflow: hidden;
  float: left;
}
.inner-page .sidebox .sideleft .widget .recent li a.title {
  display: block;
  margin-left: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-top: 32px;
}
.inner-page .sidebox .sideleft .widget .form1 {
  text-align: center;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="text"],
.inner-page .sidebox .sideleft .widget .form1 textarea {
  width: 100%;
  padding: 10px;
  border: 0;
  background: #f8f8f8;
  margin-bottom: 0;
  margin-bottom: 15px;
  height: 40px;
  font-size: 16px;
}
.inner-page .sidebox .sideleft .widget .form1 textarea {
  height: 70px;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="submit"] {
  background: #da1c28;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  height: 40px;
  padding: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.inner-page .sidebox .sideleft .widget .form1 input[type="submit"]:hover {
  background: #000;
}
.inner-page .sidebox .sideright {
  width: 75%;
  padding: 0 10px 0px 50px;
}

@media screen and (max-width: 1366px) {
  .inner-page .sidebox .sideleft {
    width: 28%;
  }
  .inner-page .sidebox .sideright {
    width: 72%;
  }
  .inner-page .sidebox .sideleft .widget .recent li a.title {
    margin-left: 98px;
  }
}
@media screen and (max-width: 1000px) {
  .inner-page .sidebox .sideleft {
    display: none;
  }
  .inner-page .sidebox .sideright {
    width: 100%;
    padding-left: 0;
  }
  .inner-page .sidebox .sideright {
    padding: 0 0 50px 0;
  }
}

.product-page {
  background: #fcfcfc;
}
.product-page .sideright .top {
  width: 100%;
  /*width: 45%;*/
}
.product-page .sideright .top h3,
.product-page .sideright .top h1 {
  font-size: 26px;
  line-height: 1.6;
  margin-bottom: .5em;
  font-weight: bold;
}
.product-page .sideright .top h3 em {
  color: #da1c28;
  font-weight: bold;
}
.product-page .sideright .top .desc {
  font-size: 14px;
  line-height: 2;
  padding: 1em 0;
}
.product-page .sideright .top .box {
  display: flex;
  flex-wrap: wrap;
}
.product-page .sideright .top .img {
  width: 43%;
}
.product-page .sideright .top .img .img-box {
  min-height: 400px;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.product-page .sideright .top .content {
  width: 57%;
  padding-left: 2%;
}
.product-page .sideright .list {
  margin-top: 40px;
}
.product-page .sideright .list ul {
  margin: 0 -48px -38.4px 0;
}
.product-page .sideright .list ul li {
  padding: 0 48px 38.4px 0;
}
.product-page .sideright .list ul li .box {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  position: relative;
  display: block;
}
.product-page .sideright .list ul li .box i {
  position: absolute;
  z-index: 1;
  background: #da1c28;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  width: 0;
  height: 0;
}
.product-page .sideright .list ul li .box i.ie1 {
  width: 2px;
  top: 0;
  left: 0;
}
.product-page .sideright .list ul li .box i.ie2 {
  width: 2px;
  bottom: 0;
  right: 0;
}
.product-page .sideright .list ul li .box i.ie3 {
  height: 2px;
  top: 0;
  right: 0;
}
.product-page .sideright .list ul li .box i.ie4 {
  height: 2px;
  bottom: 0;
  left: 0;
}
.product-page .sideright .list ul li .box .img {
  width: 100%;
  /*padding: 10% 3%;*/
}
.product-page .sideright .list ul li .box .text {
  padding: 23.2px 20.8px 20.8px;
}
.product-page .sideright .list ul li .box .text span {
  color: #0047af;
  font-weight: bold;
}
.product-page .sideright .list ul li .box .text h4 {
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.product-page .sideright .list ul li .box .text p {
  font-size: 16px;
  line-height: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 6px;
}
.product-page .sideright .list ul li .box:hover i.ie1 {
  height: 100%;
  bottom: 0;
  top: auto;
}
.product-page .sideright .list ul li .box:hover i.ie2 {
  height: 100%;
  top: 0;
}
.product-page .sideright .list ul li .box:hover i.ie3 {
  width: 100%;
  left: 0;
}
.product-page .sideright .list ul li .box:hover i.ie4 {
  width: 100%;
  right: 0;
  left: auto;
}
.product-page #index-body {
  background: #fff;
}
@media screen and (max-width: 1600px) {
  .product-page .sideright .top .content {
    width: 100%;
    padding-left: 0;
  }
  .product-page .sideright .top .img {
    width: 100%;
  }
  .product-page .sideright .top .img .img-box {
    background-position: center bottom;
  }
}
@media screen and (max-width: 1366px) {
  .product-page .sideright .list ul li {
    width: 50%;
  }
  .product-page .sideright .top .content {
    width: 100%;
    padding-left: 0;
  }
  .product-page .sideright .top .img {
    width: 100%;
  }
  .product-page .sideright .top .img .img-box {
    min-height: 280px;
  }
}

@media screen and (max-width: 700px) {
  .product-page .sideright .top {
    width: 100%;
    /*display: none!important;*/
  }
  .product-page .sideright .top h1.Auxil-h1 {
    font-size: 16px;
  }
  .product-page .sideright .top .desc {
    font-size: 14px;
    line-height: 2;
  }
  .product-page .sideright .list ul li {
    width: 100%;
  }
  .product-page .sideright .top .img .img-box {
    min-height: 220px;
  }
}
.prodet-page {
  background: #fff;
}
.prodet-page .product-box .prodet-1 .left {
  width: 50%;
}
.prodet-page .product-box .prodet-1 .left .swiper {
  overflow: hidden;
  margin-top: 20px;
  padding: 5px;
}
.prodet-page .product-box .prodet-1 .left .swiper-slide {
  border: #ccc solid 1px;
}
.prodet-page .product-box .prodet-1 .left .swiper-slide img {
  width: 100%;
}
.prodet-page .product-box .prodet-1 .left a {
  display: block;
  border: 1px solid #eee;
}
.prodet-page .product-box .prodet-1 .left a img {
  width: 100%;
}
.prodet-page .product-box .prodet-1 .left .img {
  border: 1px solid #eee;
}
.prodet-page .product-box .prodet-1 .left ul li i,
.prodet-page .product-box .prodet-1 .left ul li span {
  display: none !important;
}
.prodet-1 .left .small ul {
  margin-right: -9px;
}
.prodet-1 .left .small ul li {
  padding-right: 10px;
}
.prodet-page .product-box .prodet-1 .left ul .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-indent: -9999em;
  width: 40px;
  height: 40px;
  border: none;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  background-size: 8px;
  background-position: center center;
  background-repeat: no-repeat;
}
.prodet-page .product-box .prodet-1 .left ul .slick-arrow.slick-prev {
  background-image: url("../images/banner-btn-l.png");
  left: 10px;
}
.prodet-page .product-box .prodet-1 .left ul .slick-arrow.slick-next {
  background-image: url("../images/banner-btn-r.png");
  right: 10px;
}
.prodet-page .product-box .prodet-1 .right {
  padding-left: 50px;
  width: 50%;
}
.prodet-page .product-box .prodet-1 .right .title {
  font-size: 28px;
  line-height: 1.6;
  /*font-weight: 700;*/
      font-family: var(--font);
}
.prodet-page .product-box .prodet-1 .right h3.title {
  font-size: 24px;
}
.prodet-page .product-box .prodet-1 .right .text {
  margin: 24px 0;
  font-size: 16px;
  line-height: 30px;
  max-height: 25em;
  overflow: auto;
}
.prodet-page .product-box .prodet-1 .right .share {
  padding: 10px 0;
}
.prodet-page .product-box .prodet-1 .right .share h4 {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 2;
}
.prodet-page .product-box .prodet-1 .right .share ul {
  display: inline-block;
  vertical-align: middle;
}
.prodet-page .product-box .prodet-1 .right .share ul li {
  width: auto;
  color: #666;
  margin: 5px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  font-size: 14px;
}
.prodet-page .product-box .prodet-1 .right .share ul li:hover {
  color: #da1c28;
}
.prodet-page .product-box .prodet-1 .right a.tel {
  font-size: 18px;
  color: #da1c28;
  display: block;
}
.prodet-page .product-box .prodet-1 .right a.contact {
  display: inline-block;
  vertical-align: middle;
  line-height: 50px;
  height: 50px;
  background: #da1c28;
  color: white;
  padding: 0 35px;
  font-size: 20px;
  margin-top: 10px;
}
.prodet-page .product-box .prodet-2 {
  padding: 30px 0 0 0;
  line-height: 1.8;
}
.prodet-page .product-box .prodet-2 .options ul {
  background: #fff;
}
.prodet-page .product-box .prodet-2 .options ul li {
  width: auto;
  line-height: 40px;
  height: 40px;
      background: #f1f1f1;
  padding: 0 20px;
  color: #3d474a;
  border-radius: 0;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  cursor: pointer;
}
.prodet-page .product-box .prodet-2 .options ul li:hover,
.prodet-page .product-box .prodet-2 .options ul li.active {
  color: white;
  background: #da1c28;
}
.prodet-page .product-box .prodet-2 .ret {
  padding-top: 20px;
}
.prodet-page .product-box .prodet-2 .ret strong {
  font-weight: bold;
  font-size: 1.2em;
}
.prodet-page .product-box .prodet-2 .ret ul li {
  display: none;
}
.prodet-page .product-box .prodet-2 .ret p {
  padding: 5px 0;
  background: transparent !important;
  line-height: 30px !important;
}
.prodet-page .product-box .prodet-2 .ret form {
  margin-top: 30px;
  padding: 10px;
  background: #fff;
  box-shadow: #e7e7e7 0 0 10px 0;
}
.prodet-page .product-box .prodet-2 .ret form ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prodet-page .product-box .prodet-2 .ret form ul li {
  margin-top: 10px;
  width: 48%;
  display: inline-block;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(5) {
  width: 100%;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(5) textarea {
  width: 100%;
  border: #ccc solid 1px;
  padding: 5px;
  font-size: 16px;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(6) {
  width: 100%;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(6) input {
  background: #da1c28;
  color: #fff;
  transition: all .5s;
}
.prodet-page .product-box .prodet-2 .ret form ul li:nth-child(6) input:hover {
  background: #000;
}
.prodet-page .product-box .prodet-2 .ret form ul li input {
  padding: 5px;
  border: #ccc solid 1px;
  width: 100%;
  font-size: 16px;
}
.prodet-page .product-box .prodet-3 h3.title {
  font-size: 30px;
  line-height: 1.6;
  margin-bottom: 30px;
  /*font-weight: 700;*/
      font-family: var(--font);
      padding-top: 100px;
}
.prodet-page .product-box .prodet-3 ul {
  margin: -10px;
}
.prodet-page .product-box .prodet-3 ul .slick-track {
  margin: 0;
}
.prodet-page .product-box .prodet-3 ul li {
  padding: 10px;
}
.prodet-page .product-box .prodet-3 ul li .box {
  display: block;
  background: white;
  -moz-box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
  -o-box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
  box-shadow: 0 0 8px rgba(125, 125, 125, 0.2);
}
.prodet-page .product-box .prodet-3 ul li .box a.img-box {
  display: block;
}
.prodet-page .product-box .prodet-3 ul li .box .content {
  display: block;
  padding: 20px 10px;
  text-align: center;
  /*margin-top: 10px;*/
}
.prodet-page .product-box .prodet-3 ul li .box .content h3 {
  font-size: 18px;
  line-height: 28px;
  color: #111;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /*min-height: 114px;*/
}
.prodet-page .product-box .prodet-3 ul li .box .content h3:hover {
  color: #da1c28;
}
.prodet-page .product-box .prodet-3 ul li .box .content h5 {
  display: block;
  font-size: 14px;
  line-height: 2;
  text-transform: uppercase;
  font-weight: bold;
}
.prodet-page .product-box .prodet-3 ul li .box .content p {
  display: block;
  font-size: 16px;
  color: #888;
  line-height: 30px;
  margin: 5px 0 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.prodet-page .product-box .prodet-3 ul li .box .content a.more {
  display: inline-block;
  vertical-align: middle;
  line-height: 32px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #da1c28;
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.prodet-page .product-box .prodet-3 ul li .box .content a.more i {
  margin-left: 5px;
}
.prodet-page .product-box .prodet-3 ul li .box .content a.more:hover {
  color: white;
  background: #da1c28;
}
@media screen and (max-width: 1400px) {
  .prodet-page .product-box .prodet-1 .right .text {
    max-height: 12em;
  }
}
@media screen and (max-width: 700px) {
  .prodet-page .product-box .prodet-1 .left {
    width: 100%;
  }
  .prodet-page .product-box .prodet-1 .right {
    width: 100%;
    padding: 24px 0 0 0;
  }
  .prodet-page .product-box .prodet-1 .right .title {
    font-size: 24px;
    line-height: 1.8;
  }
}
.news-page {
  background: #fff;
}
.news-page .sideright {
  padding: 0 50px 50px 0 !important;
}
.news-page .sideright .list ul {
  margin-right: -16px;
}
.news-page .sideright .list ul li {
  padding-right: 16px;
  margin-bottom: 48px;
}
.news-page .sideright .list ul li .img {
  position: relative;
}
.news-page .sideright .list ul li .img img {
  width: 100%;
}
.news-page .sideright .list ul li .img .date {
  display: inline-block;
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #da1c28;
  color: #fff;
  padding: 6px 12px;
  text-align: center;
  line-height: 1.5em;
  border-radius: 2px;
}
.news-page .sideright .list ul li .img .date span {
  display: block;
  font-size: 14px;
  line-height: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.news-page .sideright .list ul li .img .date i {
  display: block;
  font-size: 24px;
  line-height: 1.8;
  font-style: normal;
  color: #fff;
  font-weight: 700;
}
.news-page .sideright .list ul li .con {
  padding: 30px;
  background-color: #fff;
  border-radius: 0;
  overflow: hidden;
  -webkit-transition: 0.2s cubic-bezier(0.3, 0.58, 0.55, 1);
  transition: 0.2s cubic-bezier(0.3, 0.58, 0.55, 1);
}
.news-page .sideright .list ul li .con h5,
.news-page .sideright .list ul li .con h5 a {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
  margin-bottom: 15px;
}
.news-page .sideright .list ul li .con h5:hover,
.news-page .sideright .list ul li .con h5 a:hover {
  color: #da1c28;
}
.news-page .sideright .list ul li .con p {
  color: #555;
  font-size: 16px;
  line-height: 2;
}
.news-page .sideright .list ul li .con i {
  color: #da1c28;
  font-size: 18px;
}
.news-page .sideright .list ul li .con .divider {
  width: 100%;
  min-height: 1px;
  background-color: rgba(0, 0, 0, 0.04);
  margin-top: 20px;
  margin-bottom: 20px;
}
.news-page .sideright .list ul li .con .news-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #101010;
  font-size: 16px;
  line-height: 1.25em;
  font-weight: 400;
}
.news-page .sideright .list ul li .con .news-info .news-info-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px;
  margin-bottom: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.news-page .sideright .list ul li .con .news-info .news-info-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0px;
  margin-bottom: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.news-page .sideright .list ul li .con .news-info .news-icon-wrapper {
  margin-right: 7px;
}
.news-page .sideright .list ul li .con .news-info .card-news-service-text,
.news-page .sideright .list ul li .con .news-info .card-news-date-text {
  font-size: 16px;
  line-height: 2;
  color: #555;
}
.news-page .sideright .list ul li .con a.link-btn {
  display: inline-block;
  position: relative;
  padding-bottom: 1px;
  margin-bottom: -1px;
  border-bottom: 1px solid #ccc;
}
.news-page .sideright .list ul li .con a.link-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: #da1c28;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.news-page .sideright .list ul li .con a.link-btn:hover::before {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .news-page .sideright {
    padding: 0 0 50px 0 !important;
  }
}
@media screen and (max-width: 700px) {
  .news-page .sideright .list ul {
    margin-right: 0;
  }
  .news-page .sideright .list ul li {
    width: 100%;
    padding-right: 0;
  }
  .news-page .sideright .list ul li .con {
    padding: 20px 10px;
  }
  .news-page .sideright .list ul li .con h5,
  .news-page .sideright .list ul li .con h5 a {
    font-size: 20px;
  }
  .news-page .sideright .list ul li .con p {
    font-size: 14px;
  }
  .news-page .sideright .list ul li .con .news-info .card-news-service-text,
  .news-page .sideright .list ul li .con .news-info .card-news-date-text {
    font-size: 14px;
  }
  .news-page .sideright .list ul li .con .news-info .news-info-right {
    font-size: 14px;
  }
}
.newdet-page .section-title2 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  position: relative;
  margin-bottom: 20px;
}
.newdet-page {
  padding: 100px 0;
}
.newdet-page p {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
}
.newdet-page blockquote {
  border-left: 7px solid #da1c28;
  padding: 45px;
  display: block;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  margin: 35px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #555;
}
.newdet-page blockquote p {
  margin-bottom: 0 !important;
  color: inherit;
  max-width: 650px;
  width: 100%;
  position: relative;
  z-index: 3;
  margin-bottom: 0;
}
.newdet-page blockquote::before {
  content: '\f10e';
  font-family: 'FontAwesome';
  position: absolute;
  right: 40px;
  bottom: 40px;
  font-size: 110px;
  opacity: 0.07;
  line-height: 1;
  color: #000;
}
.newdet-page blockquote a {
  color: inherit;
}
.newdet-page blockquote cite {
  display: inline-block;
  font-size: 16px;
  position: relative;
  padding-left: 48px;
  border-color: inherit;
  line-height: 1;
  margin-top: 22px;
  font-style: normal;
  color: #da1c28;
  font-weight: 600;
}
.newdet-page blockquote cite::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 45px;
  height: 1px;
  border-top: 1px solid;
  border-color: inherit;
  color: #da1c28;
}
.newdet-page .n-content {
  font-size: 18px;
  line-height: 32px;
  color: #555;
}

.newdet-page .news-post-comment-wrap {
  display: flex;
  margin-bottom: 60px;
}
.newdet-page .news-post-comment-wrap .news-post-user-comment {
  margin-right: 30px;
  flex: 0 0 auto;
}
.newdet-page .news-post-comment-wrap .news-post-user-comment img {
  border-radius: 100%;
  width: 100px;
}
.newdet-page .news-post-comment-wrap .news-post-user-content {
  margin-right: 26px;
}
.newdet-page .news-post-comment-wrap .news-post-user-content h3 {
  font-size: 18px;
  color: #000;
  font-weight: 700;
}
.newdet-page .news-post-comment-wrap .news-post-user-content h3 span {
  font-size: 12px;
  color: #555;
  font-weight: 400;
  margin-left: 15px;
}
.newdet-page .news-post-comment-wrap .news-post-user-content .news-post-repay {
  font-size: 14px;
  color: #555;
  margin: 0;
  font-weight: 400;
  transition: .5s;
  -webkit-transition: .5s;
}
.newdet-page .news-post-comment-wrap .news-post-user-content .news-post-repay:hover {
  color: #da1c28;
}
.newdet-page .s_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
.newdet-page .s_link .list {
  width: 50%;
  padding: 50px 0;
  padding-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
.newdet-page .s_link .list .img {
  width: 80px;
  height: 80px;
  min-width: 80px;
}
.newdet-page .s_link .list .img img {
  -o-object-fit: cover;
  object-fit: cover;
}
.newdet-page .s_link .list .cont a {
  display: block;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.newdet-page .s_link .list .cont a:hover {
  color: #da1c28;
}
.newdet-page .s_link .list .cont .tip {
  font-size: 16px;
  color: #444;
}
.newdet-page .s_link .list .cont .des {
  color: #000;
  font-size: 16px;
  margin-top: 10px;
}
.newdet-page .s_link .list.next {
  padding-right: 0;
  padding-left: 15px;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  border-left: 1px solid #d9d9d9;
}
.newdet-page .s_link .list.next .img {
  margin-left: 20px;
}
.newdet-page .s_link .list.next .cont {
  margin-left: 0;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  text-align: right;
}
.newdet-page .news-comment-section {
  padding-top: 48px;
}
.newdet-page .news-comment-section h3 {
  font-size: 18px;
  color: #000;
  font-weight: 700;
}
.newdet-page .news-comment-section form {
  margin-top: 15px;
}
.newdet-page .news-comment-section form .column {
  padding: 0;
}
.newdet-page .news-comment-section form li input[type="text"],
.newdet-page .news-comment-section form li textarea {
  max-width: 100%;
  margin-bottom: 10px;
  padding: 15px 0;
  height: auto;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-width: 0 0 1px;
  border-style: solid;
  display: block;
  width: 100%;
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  background-image: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  border-color: ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.newdet-page .news-comment-section form li input[type="text"]:focus,
.newdet-page .news-comment-section form li textarea:focus {
  border-bottom-width: 1px;
  border-color: #da1c28;
}
.newdet-page .news-comment-section form li button {
  font-weight: 600;
  display: inline-block;
  height: auto;
  padding: 14px 30px;
  border: 1px solid transparent;
  border-radius: 80px;
  background-color: #da1c28;
  -webkit-transition: border-color 400ms ease, background-color 400ms ease;
  transition: border-color 400ms ease, background-color 400ms ease;
  color: #fff;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
}
.newdet-page .news-comment-section form li button:hover {
  background: #000;
}
.newdet-page .news-comment-section form li.wid-100 {
  width: 100%;
}
@media screen and (max-width: 700px) {
  .newdet-page blockquote {
    padding: 20px 10px;
  }
  .newdet-page .grid-box {
    margin-right: 0;
  }
  .newdet-page .column {
    padding: 10px 0;
    width: 100%;
  }
  .newdet-page .column:nth-child(1) {
    padding: 10px 0;
  }
  .newdet-page .news-post-comment-wrap {
    display: block;
  }
  .newdet-page .news-post-comment-wrap .news-post-user-comment {
    text-align: center;
  }
  .newdet-page .news-post-comment-wrap .news-post-user-content {
    margin: 32px 0 0 0;
  }
  .newdet-page .news-comment-section form .column {
    width: 100%;
  }
  .newdet-page .s_link .list {
    width: 100%;
  }
  .newdet-page .s_link .list.next {
    border: none;
    border-top: 1px solid #d9d9d9;
  }
}
@media screen and (max-width: 500px) {
  .newdet-page .s_link {
    margin-top: 20px;
  }
  .newdet-page .s_link .list {
    padding: 20px 0;
  }
}
.contact-page .contact-1 {
  padding: 96px 0;
}
.contact-page .contact-1 .left {
  padding-right: 8%;
}
.contact-page .contact-1 .left h5 {
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 15px;
}
.contact-page .contact-1 .left p {
  font-size: 18px;
  line-height: 32px;
  color: #555;
  margin-bottom: 24px;
}
.contact-page .contact-1 .left ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #555;
  text-decoration: none;
}
.contact-page .contact-1 .left ul li .contact-link-icon {
  margin-right: 20px;
  margin-bottom: 36px;
  width: 60px;
  max-height: 60px;
  min-height: 60px;
  min-width: 60px;
  background-color: #da1c28;
  color: #fff;
  font-size: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact-page .contact-1 .left ul li .contact-link-icon i,
.contact-page .contact-1 .left ul li .contact-link-icon span {
  background: #da1c28;
  color: #fff;
  width: 100%;
  text-align: center;
}
.contact-page .contact-1 .left ul li .contact-link-title {
      margin-bottom: 0px;
    color: #000;
    font-size: 20px;
    font-weight: 700;;
  margin-top: 0px;
}
.contact-page .contact-1 .left ul li .contact-link-text {
  color: #555;
  font-size: 18px;
  line-height: 32px;
}
.contact-page .contact-1 .right {
  text-align: right;
  padding-left: 7%;
}
.contact-page .contact-1 .right .form-wrap {
  position: relative;
  border-radius: 0px 0px 40px 0px;
}
.contact-page .contact-1 .right .form-wrap .form-box {
  padding: 40px;
  background: #fff;
  z-index: 3;
  margin-bottom: 30px;
  margin-right: 30px;
  text-align: left;
  border-radius: 0px 0px 40px;
}
.contact-page .contact-1 .right .form-wrap .form-box::before {
  content: '';
  position: absolute;
  top: 90px;
  right: 10px;
  left: 120px;
  bottom: -20px;
  background: #da1c28;
  z-index: -1;
  border-radius: 0px 0px 40px;
}
.contact-page .contact-1 .right .form-wrap .form-box::after {
  content: '';
  width: 50%;
  position: absolute;
  top: -5%;
  bottom: 55%;
  left: -5%;
  background-image: url(../images/dots.png);
  background-repeat: repeat;
  z-index: -1;
}
.contact-page .contact-1 .right .form-wrap .form-box h5 {
  color: #000;
  font-size: 40px;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 15px;
}
.contact-page .contact-1 .right .form-wrap .form-box li.wid-100 {
  width: 100%;
}
.contact-page .contact-1 .right .form-wrap .form-box li input,
.contact-page .contact-1 .right .form-wrap .form-box li textarea {
  max-width: 100%;
  margin-bottom: 10px;
  padding: 15px 0;
  height: auto;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-width: 0 0 1px;
  border-style: solid;
  display: block;
  width: 100%;
  line-height: 1.8;
  font-size: 18px;
  font-weight: 400;
  color: #555;
  background-image: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  border-color: ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.contact-page .contact-1 .right .form-wrap .form-box li input:focus,
.contact-page .contact-1 .right .form-wrap .form-box li textarea:focus {
  border-bottom-width: 1px;
  border-color: #da1c28;
}
.contact-page .contact-1 .right .form-wrap .form-box li textarea {
  height: 127px;
}
.contact-page .contact-1 .right .form-wrap .form-box li .button-secondary {
  font-weight: 600;
  display: inline-block;
  height: auto;
  padding: 14px 30px;
  border: 1px solid transparent;
  font-size: 16px;
  border-radius: 80px;
  background-color: #da1c28;
  -webkit-transition: border-color 400ms ease, background-color 400ms ease;
  transition: border-color 400ms ease, background-color 400ms ease;
  color: #fff;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
}
.contact-page .contact-1 .right .form-wrap .form-box li .button-secondary:hover {
  background: #000;
}
.contact-page .contact-1 .map {
  margin-top: 72px;
}
.contact-page .contact-2 {
  background: #f5f5f5;
  padding: 96px 0;
}
.contact-page .contact-2 .contact-link-icon {
  font-size: 48px;
  color: #d12138;
}
.contact-page .contact-2 .list ul {
  margin: -10px;
}
.contact-page .contact-2 .list ul li {
  padding: 10px;
  text-align: center;
}
.contact-page .contact-2 .list ul li .box {
  padding: 20px;
  background-color: white;
  border-radius: 30px;
}
.contact-page .contact-2 .list ul li .box span.h6 {
  font-size: 18px;
  font-weight: bold;
}
.contact-page .contact-2 .list ul li .box .text {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 1.5em;
}
.contact-page .contact-2 .header p {
  font-size: 16px;
  line-height: 2;
  color: #555;
  margin-bottom: 15px;
}
.contact-page .contact-2 .header .section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
  position: relative;
  margin-bottom: 20px;
}
.contact-page .contact-2 .header .section-title span {
  color: #da1c28;
}
.contact-page .contact-2 .content ul {
  margin-right: -32px;
}
.contact-page .contact-2 .content ul li {
  padding-right: 32px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 30px;
}
.contact-page .contact-2 .content ul li .title {
  padding: 30px 30px 30px 80px;
  cursor: pointer;
  position: relative;
  border: none;
  border: 1px solid #fff;
  margin-bottom: 0px;
  background-color: #fff;
}
.contact-page .contact-2 .content ul li .title::after {
  content: "\f27b";
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 16px;
  position: absolute;
  top: 20px;
  left: 20px;
  background: #da1c28;
  padding: 9px 14px;
  color: #fff;
}
.contact-page .contact-2 .content ul li .title h6 {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
  color: #000;
}
.contact-page .contact-2 .content ul li .accordion-info {
  display: none;
  padding: 20px;
  margin-top: 0px;
  margin-left: 0px;
  background: #fff;
  font-size: 16px;
  line-height: 30px;
  color: #555;
}
.contact-page .contact-2 .content ul li.active .title {
  color: #fff;
  background: #da1c28;
  border: 1px solid #da1c28;
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}
.contact-page .contact-2 .content ul li.active .title h6 {
  color: #fff;
}
.contact-page .contact-2 .content ul li.active .title::after {
  background: #fff;
  color: #da1c28;
}
@media screen and (max-width: 1366px) {
  .contact-page .contact-1 .right {
    padding-left: 10%;
  }
}
@media screen and (max-width: 1200px) {
  .contact-page .contact-1 .right {
    padding-left: 4%;
  }
  .contact-page .contact-2 .content ul li {
    width: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .contact-page .contact-1 .left {
    width: 100%;
    padding-right: 0;
  }
  .contact-page .contact-1 .right {
    width: 100%;
    padding: 32px 0 0 0;
  }
}
@media screen and (max-width: 700px) {
  .contact-page .contact-2 .content ul li {
    width: 100%;
  }
}
.news-page.product #index-body .product .content ul li .box .text h4 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news-page.product #index-body .product .content ul li .box .text p {
  overflow: unset;
  text-overflow: unset;
  display: inline-block;
}
.news-page.product #index-body .product {
  background-color: #fff;
  padding: 24.8px 0 80px;
}

.seoPublic .Auxil-through {
  padding: 15px 0;
  background: none !important;
}
.seoPublic .Auxil-through a {
  display: inline-block;
  line-height: 40px;
  height: 40px;
  padding: 0 25px;
  font-size: 14px;
  color: black;
  border: 1px solid #eee;
  background: #f8f8f8;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}
.seoPublic .Auxil-through a:hover {
  background: #da1c28;
  color: white;
}

.mbx {
  padding: 12px 0;
  background: #f2f2f2;
  font-size: 16px;
  line-height: 28px;
}

.inner-page span.h2 {
  font-size: 45px;
  color: #000;
  /*font-weight: 600;*/
  line-height: 1.5;
  display: block;
  font-family: var(--font);
  text-transform: uppercase;
}


.news-page.newsBox {
  padding: 70px 0 130px;
  /*    background: #efeeee;*/
}
.news-page.newsBox span.h2 {
  font-size: 48px;
}
.news-page.newsBox .list {
  margin-top: 30px;
}
.news-page.newsBox .list ul {
  margin: -15px;
}
.news-page.newsBox .list ul li {
  padding: 15px;
}
.news-page.newsBox .list ul li time {
  display: block;
  font-size: 16px;
  color: #d12138;
  line-height: 1.2;
  margin-top: 15px;
}
.news-page.newsBox .list ul li .h6 {
  font-size: 24px;
  font-weight: bold;
  color: #191919;
  margin: .6em 0 0.7em;
  line-height: 1.5;
  transition: .5s;
}
.news-page.newsBox .list ul li .h6:hover {
  color: #da1c28;
}
.news-page.newsBox .list ul li p {
  font-size: 16px;
  color: #828181;
  line-height: 1.8;
}

.news-page .news-1 {
  padding: 80px 0;
  background-color: white;
}
.news-page .news-1 .left {
  width: 53%;
  vertical-align: middle;
}
.news-page .news-1 .right {
  padding-left: 4%;
  width: 47%;
  vertical-align: middle;
}
.news-page .news-1 .right time {
  font-size: 16px;
  color: #d12138;
  display: block;
  font-weight: bold;
  line-height: 1.2;
}
.news-page .news-1 .right span.h6 {
  font-size: 30px;
  font-weight: bold;
  color: #191919;
  line-height: 1.2;
  margin: .3em 0 1em;
  display: block;
}


@media screen and (max-width: 1000px) {
  .product-page .sideright .list ul li .box .text h4 {
    font-size: 16px;
  }
  .product-page .sideright .list ul li .box .text p {
    font-size: 14px;
  }
  .news-page.newsBox .list ul li {
    width: 50%;
  }
  .news-page.newsBox .list ul li .h6 {
    font-size: 18px;
  }
}
@media screen and (max-width: 700px) {
  .news-page.newsBox .list ul li {
    width: 100%;
  }
  .news-page .news-1 .right {
    padding-left: 0;
    margin-top: 20px;
    width: 100%;
  }
  .news-page .news-1 .left {
    width: 100%;
  }
  .news-page .news-1 .right span.h6 {
    font-size: 24px;
  }
  .news-page.newsBox span.h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 500px) {
  .inner-page span.h2 {
    font-size: 20px;
  }
}


.pd1 .Cit h2 {
  max-width: 960px;
}
.pd1 {
  padding: 62px 0 30px;
}
.pd1 .ev {
  display: block;
  padding: 10px 0 20px;
  position: relative;
  margin-bottom: 110px;
}
.pd1 .ev:nth-of-type(even) .wrap {
  flex-direction: row-reverse;
}
.pd1 .ev:nth-of-type(even) .intr {
  padding-left: 5%;
  padding-right: 0;
}
.pd1 .ev:nth-of-type(even)::after {
  left: auto;
  right: 0;
}
.pd1-wrap {
  padding: 40px 0 0;
}
.pd1 .ev::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 74%;
  height: 100%;
  background: #F8F8F8;
  z-index: -1;
  transition: all ease .8s;
  border-radius: 40px;
}
.pd1 .ev:hover::after {
  width: 89.6%;
  background: #eaeaea;
}
.pd1 .ev:nth-of-type(even)::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.pd1 .ev:nth-of-type(odd)::after {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.pd1 .ev .intr {
  width: 47%;
  padding-right: 5%;
}
.pd1 .ev .pic {
  width: 50%;
}
.pd1 .ev .pic img {
  width: 100%;
}
.pd1 .ev h2 {
  font-size: 40px;
  font-weight: 600;
  color: #da1c28;
}
.pd1 .ev h2::after {
  content: '';
  display: block;
  width: 37px;
  height: 6px;
  /*background: #D5D5D5;*/
  margin: 0px 0 10px;
}
.pd1 .ev .text {
  color: #666666;
  line-height: 32px;
  max-height: 260px;
  padding-right: 20px;
  overflow-y: auto;
}

.pd2 {
  /*  padding: 40px 0 ;*/
  /*  background: #F5F7FA;*/
  overflow-x: hidden;
  overflow-y: auto;
}
.pd2 .content {
  margin-top: 40px;
}
.pd2 .ev {
  width: 24%;
  margin-bottom: 46px;
  transition: all ease .8s;
}
.zhanwei {
  width: 24%;
}
.pd2 .ev .pic {
  width: 100%;
  padding: 20px 0;
  background: #fff;
  text-align: center;
}
.pd2 .ev .pic img {
  max-width: 90%;
  transition: all ease .8s;
}
.pd2 .ev:hover .pic img {
  transform: scale(1.1);
}
.pd2 .ev .intr {
  padding: 20px 15px;
  background: #f7f7f7;
  color: #FFFFFF;
  position: relative;
}
.pd2 .ev .intr::after {
  content: '';
  display: block;
  height: 0;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: #da1c28;
  transition: all ease .3s;
}
.pd2 .ev:hover .intr::after {
  height: 100%;
}
.pd2 .ev .intr h2 {
  font-size: 18px;
  line-height: 1.8;
  /*white-space: nowrap;*/
  text-overflow: ellipsis;
  overflow: hidden;
  transition: all ease .3s;
  color: #000;
  position: relative;
  z-index: 2;
}
.pd2 .ev .intr b {
  display: block;
  width: 32px;
  height: 2px;
  /*margin: 10px 0;*/
  transition: all ease .3s;
  /*background: #9C9999;*/
  position: relative;
  z-index: 2;
}
.pd2 .ev .intr p {
  font-size: 16px;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #9C9999;
  transition: all ease .3s;
  position: relative;
  z-index: 2;
}
.pd2 .ev:hover .intr h2 {
  color: #fff;
}
.pd2 .ev:hover .intr h2::after {
  background: #FFFFFF;
}
.pd2 .ev:hover .intr p {
  color: #fff;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex-xc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flex-xb {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-xend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.flex-yc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.flex-xc-yc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.flex-column {
  flex-direction: column;
}



.p98 {
  padding-top: 98px;
}
.p98_ {
  padding-bottom: 98px;
}
.m60 {
  margin-top: 60px;
}
.p98 {
  padding-top: 98px;
}

.flexBetween {
  display: flex;
  justify-content: space-between;
}
.flexCenter {
  display: flex;
  justify-content: center;
}
.flexStart {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}













.newproduct-page {
  background-color: #f7f7f7;
  padding: 90px 0;
}

.newproduct-page .desc {
  line-height: 32px;
  max-height: 12em;
  overflow-y: auto;
}


@media (max-width: 1230px) {
  .pd2 .ev .intr {
    padding: 15px;
  }

  .pd2 .ev .intr h2 {
    font-size: 16px;
  }
}

@media (max-width: 1000px) {
  .pd2 .ev {
    width: 32%;
  }

  .pd1 .ev .intr {
    width: 100%;
    padding-right: 0;
  }

  .pd1 .ev .pic {
    width: 100%;
  }

  .pd1 .ev h2 {
    font-size: 24px;
  }
}

@media (max-width: 700px) {
  .pd2 .ev {
    width: 49%;
  }
}

@media (max-width: 500px) {
  .pd2 .ev {
    width: 100%;
  }
}




/* about */
a.more {
  font-size: 16px;
  padding: 1em 2em;
  line-height: 2;
  background-color: var(--color);
  color: white;
  display: inline-block;
  border-radius: 2em;
  border: 1px solid var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
a.more img {
  display: inline-block;
  vertical-align: middle;
  margin-left: .6em;
  margin-top: -0.3em;
}
a.more:hover {
  background-color: black;
}


span.tag {
  font-weight: 500;
  font-size: 20px;
  color: var(--color);
  /*text-transform: uppercase;*/
  display: block;
  margin-bottom: .5em;
}


.about-page .about-1 {
  background-color: #f0f0f0;
}
.about-page .about-1 .left {
  vertical-align: middle;
}
.about-page .about-1 .left .content {
  max-width: 750px;
  margin-left: auto;
  display: block;
  padding-right: 10%;
}
.about-page .about-1 .left .content span.h2 {
  /*font-weight: 500;*/
  margin-top: 1.3em;
  font-family: var(--font);
}
.about-page .about-1 .left .content .list {
  font-size: 16px;
  line-height: 2;
  margin: 1em 0 3.75em;
}
.about-page .about-1 .left .content .list ul li {
  font-weight: 300;
  color: #272727;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: .3em;
}
.about-page .about-1 .left .content .list ul li:before {
  content: '';
  /*width: .5em;
  height: .5em;*/
  border-radius: 100%;
  background-color: #e9a924;
  display: block;
  /*margin-right: .8em;*/
  margin-top: .4em;
}
.about-page .about-1 .left .content a.more {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-page .about-1 .left .content a.more i.iconfont {
  margin-right: 1.2em;
}
.about-page .about-1 .right {
  vertical-align: middle;
}
.about-page .about-1 .right .img {
  height: 590px;
  background-size: cover;
  background-position: center;
}
.about-page .about-2 {
  padding: 160px 0;
  background-image: url("../images/about-2-bg.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
}
.about-page .about-2 .ui.container {
  max-width: 1230px;
}
.about-page .about-2 .list {
  margin-top: 100px;
}
.about-page .about-2 .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;
}
.about-page .about-2 .list ul li {
  width: auto;
}
.about-page .about-2 .list ul li span.h6 {
  font-weight: 500;
  font-size: 62px;
  color: #272727;
  line-height: 1;
  margin-bottom: .45em;
  display: block;
}
.about-page .about-2 .list ul li span.h6 sup {
  vertical-align: top;
}
.about-page .about-2 .list ul li .text {
  font-weight: 300;
  text-transform: uppercase;
}
.about-page .about-3 {
  background-color: var(--color2);
  color: white;
  padding-top: 70px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.about-page .about-3 .waves {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  top: 55%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
  opacity: .6;
}
.about-page .about-3 .waves:before {
  content: '';
  width: 100%;
  height: 10%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(var(--color2)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, var(--color2), transparent);
  background-image: -moz-linear-gradient(bottom, var(--color2), transparent);
  background-image: linear-gradient(to top, var(--color2), transparent);
}
.about-page .about-3 span.h2 {
  color: inherit;
}
.about-page .about-3 .box {
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.about-page .about-3 .box:before {
  content: '';
  width: 4px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -4px;
  z-index: -1;
  background-color: var(--color);
}
.about-page .about-3 .box:after {
  content: '';
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--color2)));
  background-image: -webkit-linear-gradient(top, transparent, var(--color2));
  background-image: -moz-linear-gradient(top, transparent, var(--color2));
  background-image: linear-gradient(to bottom, transparent, var(--color2));
}
.about-page .about-3 .box ul {
  padding: 110px 0;
  margin-right: -20px;
  padding-right: 20px;
  height: 810px;
  overflow: auto;
}
.about-page .about-3 .box ul li {
  width: 50%;
  display: block;
  margin-bottom: 30px;
  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;
  position: relative;
}
.about-page .about-3 .box ul li:before,
.about-page .about-3 .box ul li:after {
  content: '';
  width: 48%;
  background-image: url("../images/icon-about-3-line.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: 25%;
}
.about-page .about-3 .box ul li .content {
  width: 44%;
  max-width: 100%;
  text-align: left;
}
.about-page .about-3 .box ul li .content span.h3 {
  font-weight: 500;
  font-size: 30px;
  line-height: 1.8;
  margin-bottom: .6em;
  display: block;
}
.about-page .about-3 .box ul li .content .text {
  color: #bababa;
}
.about-page .about-3 .box ul li i.dots {
  width: 20px;
  height: 20px;
  background-color: #f4f4f4;
  display: block;
  position: absolute;
  left: 100%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 47px;
  border-radius: 100%;
}
.about-page .about-3 .box ul li i.dots:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: inherit;
  background-color: inherit;
  opacity: .3;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-3 .box ul li:hover i.dots:before {
  -webkit-transform: scale(1.7);
  -moz-transform: scale(1.7);
  -ms-transform: scale(1.7);
  transform: scale(1.7);
}
.about-page .about-3 .box ul li:nth-child(odd):before {
  display: none;
}
.about-page .about-3 .box ul li:nth-child(even) {
  margin-left: auto;
  text-align: right;
}
.about-page .about-3 .box ul li:nth-child(even):after {
  display: none;
}
.about-page .about-3 .box ul li:nth-child(even):before {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.about-page .about-3 .box ul li:nth-child(even) i.dots {
  left: 0;
}
.about-page .about-3 .box ul li:nth-child(even) .content {
  margin-left: auto;
}
.about-page .about-4 {
  padding: 160px 0 180px;
}
.about-page .about-4 span.h2 {
  margin-bottom: 1.7em;
}
.about-page .about-4 .list {
  border-bottom: 1px solid #cacaca;
}
.about-page .about-4 .list 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;
}
.about-page .about-4 .list ul li {
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  cursor: pointer;
  cursor: hand;
}
.about-page .about-4 .list ul li i {
  width: 120px;
  text-align: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.about-page .about-4 .list ul li i img {
  margin: 0 auto;
}
.about-page .about-4 .list ul li span.h6 {
  font-size: 20px;
  color: #585858;
  line-height: 1.4;
  padding-bottom: 1.5em;
  position: relative;
  max-width: 260px;
  display: block;
  height: 100%;
}
.about-page .about-4 .list ul li span.h6:before {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -2px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background-color: var(--color);
}
.about-page .about-4 .list ul li:hover span.h6:before,
.about-page .about-4 .list ul li.active span.h6:before {
  width: 100%;
}
.about-page .about-4 .bottom {
  margin-top: 50px;
}
.about-page .about-4 .bottom .slide {
  height: 600px;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 10%;
  background-size: cover;
  background-position: center;
}
.about-page .about-4 .bottom .slide .content {
  width: 51%;
  padding: 6% 4%;
  background-color: rgba(255, 255, 255, 0.75);
}
.about-page .about-4 .bottom .slide .content span.h6 {
  font-size: 20px;
  font-weight: normal;
  display: block;
  margin-bottom: 1em;
}
.about-page .about-4 .bottom .slide .content .text {
  font-weight: 300;
}
.about-page .about-5 {
  padding: 170px 0 150px;
  background-color: var(--color2);
  color: white;
  position: relative;
}
.about-page .about-5 .ui.container {
  position: static;
}
.about-page .about-5 .left {
  width: 34.5%;
  position: relative;
  z-index: 1;
  margin-top: 5%;
}
.about-page .about-5 .left span.h2 {
  margin-bottom: 2em;
  width: 135%;
  color: inherit;
}
.about-page .about-5 .center {
  width: 32%;
  vertical-align: middle;
}
.about-page .about-5 .center .img {
  height: 620px;
  background-size: cover;
  background-position: center;
}
.about-page .about-5 .right {
  width: 33.5%;
  padding-left: 3%;
  vertical-align: middle;
}
.about-page .about-5 .down {
  width: 60px;
  height: 60px;
  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;
  background-color:var(--color);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  cursor: pointer;
  cursor: hand;
  border-radius: 100%;
  z-index: 1;
}
.about-page .about-5 .down img {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.about-page .about-5 .down:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: inherit;
  background-color: var(--color);
  opacity: .3;
  -webkit-transform: scale(1.4);
  -moz-transform: scale(1.4);
  -ms-transform: scale(1.4);
  transform: scale(1.4);
  z-index: -1;
}
.about-page .about-6 {
  padding: 120px 0;
  text-align: center;
}
.about-page .about-6 span.h2 {
  margin-bottom: 1.5em;
}
.about-page .about-6 .list ul {
  margin: -20px;
}
.about-page .about-6 .list ul li {
  padding: 20px;
}
.about-page .about-6 .list ul li a.img-box {
  display: block;
}
.about-page .about-6 .list ul li a.img-box img {
  width: 100%;
}
.about-page .about-6 .list ul li span.h6 {
  font-weight: 500;
  font-size: 16px;
  color: #021841;
  margin-top: 1.5em;
  display: block;
  text-transform: capitalize;
}
.about-page .about-6 .list ul li:hover span.h6 {
  text-decoration: underline;
}

.faq-page {
  padding: 10px 0 100px;
}
.faq-page span.h2 {
  margin: 1.4em 0;
}
.faq-page .list {
  position: relative;
}
.faq-page .list:before {
  content: '';
  width: 2px;
  height: 100%;
  background-color: var(--color);
  opacity: .32;
  position: absolute;
  left: 29px;
  z-index: -1;
}
.faq-page .list ul li {
  margin-bottom: 25px;
  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;
}
.faq-page .list ul li:last-child {
  margin-bottom: 0;
}
.faq-page .list ul li i {
  width: 60px;
  margin-right: 25px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.faq-page .list ul li .content {
  padding: 25px 30px 30px;
  background-color: #f5f5f5;
  width: 100%;
}
.faq-page .list ul li .content span.h6 {
  font-size: 20px;
  font-weight: normal;
  color: var(--color2);
  margin-bottom: .5em;
  display: block;
}
.faq-page .list ul li .content .text {
  font-weight: 300;
}


.cornerstone-page span.h2 {
  font-weight: 500;
}
.cornerstone-page span.h3 {
  font-size: 34px;
  display: block;
  line-height: 1;
  color: var(--color2);
}
.cornerstone-page .text {
  font-weight: 300;
}
.cornerstone-page .cornerstone-1 {
  padding: 90px 0 150px;
}
.cornerstone-page .cornerstone-1 span.h2 {
  margin-top: 1em;
}
.cornerstone-page .cornerstone-1 .text {
  margin-top: 2em;
  max-width: 780px;
}
.cornerstone-page .cornerstone-1 .options {
  margin-top: 90px;
  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;
  font-size: 20px;
  color: var(--color2);
  line-height: 1;
  border-bottom: 1px solid #dfdfdf;
}
.cornerstone-page .cornerstone-1 .options span {
  margin: 0 1.5em;
  padding-bottom: 1em;
  position: relative;
  cursor: pointer;
  cursor: hand;
}
.cornerstone-page .cornerstone-1 .options span:before {
  content: '';
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: -3px;
  background-color: var(--color);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.cornerstone-page .cornerstone-1 .options span:hover:before,
.cornerstone-page .cornerstone-1 .options span.active:before {
  opacity: 1;
}
.cornerstone-page .cornerstone-1 .ret {
  margin-top: 70px;
}
.cornerstone-page .cornerstone-1 .ret ul {
  margin: -10px;
}
.cornerstone-page .cornerstone-1 .ret ul li {
  padding: 10px;
}
.cornerstone-page .cornerstone-1 .ret ul li img {
  width: 100%;
}
.cornerstone-page .cornerstone-2 {
  padding: 16% 0 10%;
  background-image: url("../images/cornerstone-2-bg.jpg");
  background-position: center;
  background-size: cover;
  color: white;
}
.cornerstone-page .cornerstone-2 span.h3 {
  color: inherit;
  margin-bottom: 1em;
}
.cornerstone-page .cornerstone-2 .text {
  max-width: 620px;
}
.cornerstone-page .cornerstone-3 {
  padding: 110px 0 80px;
  background-color: #f9f9f9;
  text-align: center;
}
.cornerstone-page .cornerstone-3 .ui.container {
  max-width: 1230px;
}
.cornerstone-page .cornerstone-3 span.h3 {
  margin-bottom: 2.6em;
}
.cornerstone-page .cornerstone-3 .list ul {
  margin: -15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.cornerstone-page .cornerstone-3 .list ul li {
  padding: 15px;
}
.cornerstone-page .cornerstone-3 .list ul li .box {
  background-color: white;
  padding: 70px 7%;
  height: 100%;
  -o-box-shadow: 0 10px 7px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0 10px 7px rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 7px rgba(0, 0, 0, 0.07);
}
.cornerstone-page .cornerstone-3 .list ul li .box span.h6 {
  font-weight: bold;
  font-size: 22px;
  color: var(--color2);
  display: block;
  margin-bottom: 2.8em;
}
.cornerstone-page .cornerstone-3 .list ul li .box .text {
  text-align: left;
}
.cornerstone-page .cornerstone-3 .list ul li i.arrows {
  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;
}
.cornerstone-page .cornerstone-4 {
  padding: 100px 0;
}
.cornerstone-page .cornerstone-4 .ui.container {
  max-width: 1230px;
}
.cornerstone-page .cornerstone-4 .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;
}
.cornerstone-page .cornerstone-4 .box .left {
  width: 30%;
  padding-right: 5%;
}
.cornerstone-page .cornerstone-4 .box .left span.h2 {
  font-weight: normal;
}
.cornerstone-page .cornerstone-4 .box .right {
  width: 70%;
}
.cornerstone-page .cornerstone-4 .box .right .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;
  margin: -10px;
}
.cornerstone-page .cornerstone-4 .box .right .list ul li {
  font-size: 22px;
  width: 100%;
  padding: 10px;
}
.cornerstone-page .cornerstone-4 .box .right .list ul li span {
  font-size: 1.09090909em;
  color: #ec0017;
  line-height: 1.2;
  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-bottom: .2em;
}
.cornerstone-page .cornerstone-4 .box .right .list ul li span:after {
  content: '';
  width: 100%;
  height: 2px;
  background-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(var(--color)), to(transparent));
  background-image: -webkit-linear-gradient(right, transparent, var(--color), transparent);
  background-image: -moz-linear-gradient(right, transparent, var(--color), transparent);
  background-image: linear-gradient(to left, transparent, var(--color), transparent);
}
.cornerstone-page .cornerstone-4 .box .right .list ul li p {
  font-weight: bold;
  color: var(--color2);
  white-space: nowrap;
}
.cornerstone-page .cornerstone-4 .box .right .list ul li:last-child {
  width: auto;
}
.cornerstone-page .cornerstone-4 .box .right .list ul li:last-child span:after {
  display: none;
}
.cornerstone-page .cornerstone-5 {
  background-color: #f9f9f9;
  overflow: hidden;
}
.cornerstone-page .cornerstone-5 .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.cornerstone-page .cornerstone-5 .box .left {
  width: 37.5%;
  padding-right: 8%;
}
.cornerstone-page .cornerstone-5 .box .left .img {
  height: 100%;
  background-size: cover;
  background-position: center;
}
.cornerstone-page .cornerstone-5 .box .right {
  padding: 90px 0;
  width: 62.5%;
}
.cornerstone-page .cornerstone-5 .box .right .box2 {
  max-width: 990px;
}
.cornerstone-page .cornerstone-5 .box .right .box2 .text {
  margin-top: 1.5em;
  max-width: 840px;
}
.cornerstone-page .cornerstone-5 .box .right .box2 .form {
  margin-top: 60px;
}
.cornerstone-page .cornerstone-5 .box .right .box2 .form ul {
  margin: -10px -20px;
}
.cornerstone-page .cornerstone-5 .box .right .box2 .form ul li {
  padding: 10px 20px;
}
.cornerstone-page .cornerstone-5 .box .right .box2 .form ul li input,
.cornerstone-page .cornerstone-5 .box .right .box2 .form ul li textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #acacac;
  font-size: 16px;
  font-weight: 300;
  background-color: transparent;
  padding: .7em 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.cornerstone-page .cornerstone-5 .box .right .box2 .form ul li input::-webkit-input-placeholder, .cornerstone-page .cornerstone-5 .box .right .box2 .form ul li textarea::-webkit-input-placeholder {
  color: #707070;
}
.cornerstone-page .cornerstone-5 .box .right .box2 .form ul li input:-moz-placeholder, .cornerstone-page .cornerstone-5 .box .right .box2 .form ul li textarea:-moz-placeholder {
  color: #707070;
}
.cornerstone-page .cornerstone-5 .box .right .box2 .form ul li input::-moz-placeholder, .cornerstone-page .cornerstone-5 .box .right .box2 .form ul li textarea::-moz-placeholder {
  color: #707070;
}
.cornerstone-page .cornerstone-5 .box .right .box2 .form ul li input:-ms-input-placeholder, .cornerstone-page .cornerstone-5 .box .right .box2 .form ul li textarea:-ms-input-placeholder {
  color: #707070;
}
.cornerstone-page .cornerstone-5 .box .right .box2 .form ul li input::placeholder,
.cornerstone-page .cornerstone-5 .box .right .box2 .form ul li textarea::placeholder {
  color: #707070;
}
.cornerstone-page .cornerstone-5 .box .right .box2 .form ul li input:focus,
.cornerstone-page .cornerstone-5 .box .right .box2 .form ul li textarea:focus {
  border-color: var(--color);
}
.cornerstone-page .cornerstone-5 .box .right .box2 .form ul li textarea {
  height: 140px;
}
.cornerstone-page .cornerstone-5 .box .right .box2 .form ul li.wid-100 {
  width: 100%;
}
.cornerstone-page .cornerstone-5 .box .right .box2 .form ul li a.more {
  margin-top: 2em;
}
.cornerstone-page .cornerstone-6 {
  padding: 80px 0;
  color: white;
  background-image: url('../images/service-5.jpg');
  background-position: center;
  background-size: cover;
}
.cornerstone-page .cornerstone-6 span.h2 {
  color: inherit;
}
.cornerstone-page .cornerstone-6 .options {
  display: block;
  font-size: 14px;
  margin: 3em 0;
}
.cornerstone-page .cornerstone-6 .options span {
  display: inline-block;
  padding: .5em 2em;
  border-radius: 2em;
  background-color: white;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
  cursor: pointer;
  cursor: hand;
  color: black;
}
.cornerstone-page .cornerstone-6 .options span.active {
  background-color: var(--color);
  color: white;
}
.cornerstone-page .cornerstone-6 .box {
  background-color: white;
  padding: 25px 0;
  color: black;
}
.cornerstone-page .cornerstone-6 .box .slide span.h5{
  font-size: 20px;
  font-weight: 500;
  display: block;
  margin-bottom: 1.5em;
  text-align: center;
}
.cornerstone-page .cornerstone-6 .box .slide .text {
  font-size: 14px;
}
.cornerstone-page .cornerstone-6 .box .slide .text table td {
  border: none;
  padding: .8em 5%;
}
.cornerstone-page .cornerstone-6 .box .slide .text table td:first-child {
  width: 25% !important;
}
.cornerstone-page .cornerstone-6 .box .slide .text table td:last-child {
  width: 30% !important;
}
.cornerstone-page .cornerstone-6 .box .slide .text table {
  border: none;
}
.cornerstone-page .cornerstone-6 .box .slide .text table tr {
  background-color: transparent;
}
.cornerstone-page .cornerstone-6 .box .slide .text table tr:first-child {
  font-weight: 500;
  background-color: #e9e9e9;
}
.cornerstone-page .cornerstone-7 {
  padding-top: 120px;
  background-color: #f9f9f9;
}
.cornerstone-page .cornerstone-7 .left {
  width: 78%;
  margin-top: 5%;
}
.cornerstone-page .cornerstone-7 .left .map {
  position: relative;
}
.cornerstone-page .cornerstone-7 .left .map i {
  position: absolute;
  transform-origin: center bottom;
  transform: scale(.5);
  cursor: pointer;
  cursor: hand;
  transition: .5s;
}
.cornerstone-page .cornerstone-7 .left .map i.active {
  transform: scale(1);
}
.cornerstone-page .cornerstone-7 .left .map i:nth-child(1) {
  left: 23%;
  top: 29%;
}
.cornerstone-page .cornerstone-7 .left .map i:nth-child(2) {
  left: 46%;
  top: 28%;
}
.cornerstone-page .cornerstone-7 .left .map i:nth-child(3) {
  left: 42%;
  top: 61%;
}
.cornerstone-page .cornerstone-7 .left .map i:nth-child(4) {
  left: 70%;
  top: 47%;
}
.cornerstone-page .cornerstone-7 .left .map i:nth-child(5) {
  left: 71%;
  top: 56%;
}
.cornerstone-page .cornerstone-7 .left .map i:nth-child(6) {
  left: 75%;
  top: 39%;
}
.cornerstone-page .cornerstone-7 .left .map i:nth-child(7) {
  left: 79%;
  top: 38%;
}
.cornerstone-page .cornerstone-7 .right {
  width: 27%;
  margin-left: -5%;
}
.cornerstone-page .cornerstone-7 .right span.h2 {
  font-weight: normal;
  margin-bottom: 2em;
}
.cornerstone-page .cornerstone-7 .right .slide {
  font-size: 30px;  
  padding-left: 1em;
}
.cornerstone-page .cornerstone-7 .right span.h6 {
  font-weight: 500;
  padding: .7em 0;
  position: relative;
  display: block;
  margin-bottom: .2em;
}
.cornerstone-page .cornerstone-7 .right span.h6:before {
  content: '';
  width: .3em;
  height: .3em;
  background-color: var(--color);
  position: absolute;
  left: -1em;
  top: 50%;
  transform: translateY(-50%);
}
.cornerstone-page .cornerstone-7 .right span.h6:after {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  left: -.85em;
  top: 0;
  background-color: var(--color);
}



.manufacturing-page span.h2 {
  font-weight: normal;
}
.manufacturing-page .text {
  font-weight: 300;
}
.manufacturing-page .manufacturing-1 {
  padding-top: 90px;
}
.manufacturing-page .manufacturing-1 .box {
  margin-top: 45px;
}
.manufacturing-page .manufacturing-1 .box .left {
  padding-right: 2%;
  vertical-align: middle;
}
.manufacturing-page .manufacturing-1 .box .left .img {
  height: 400px;
  background-size: cover;
  background-position: center;
  display: block;
}
.manufacturing-page .manufacturing-1 .box .right {
  padding-left: 5%;
  vertical-align: middle;
}
.manufacturing-page .manufacturing-1 .box .right .text {
  margin-top: 2em;
}
.manufacturing-page .manufacturing-2 {
  padding: 110px 0;
}
.manufacturing-page .manufacturing-2 .left {
  vertical-align: middle;
  width: 40%;
}
.manufacturing-page .manufacturing-2 .right {
  width: 60%;
  vertical-align: middle;
}
.manufacturing-page .manufacturing-2 .right 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;
}
.manufacturing-page .manufacturing-2 .right ul li {
  width: auto;
  color: var(--color2);
  text-align: center;
}
.manufacturing-page .manufacturing-2 .right ul li span.h6 {
  font-size: 50px;
  font-weight: normal;
  display: block;
  line-height: 1;
}
.manufacturing-page .manufacturing-2 .right ul li span.h6 sup {
  font-size: .5em;
}
.manufacturing-page .manufacturing-2 .right ul li .text {
  margin-top: .5em;
}
.manufacturing-page .manufacturing-2 .right ul li i.line {
  height: 80%;
  width: 2px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f39e44), to(transparent));
  background-image: -webkit-linear-gradient(top, #f39e44, transparent);
  background-image: -moz-linear-gradient(top, #f39e44, transparent);
  background-image: linear-gradient(to bottom, #f39e44, transparent);
  display: block;
  margin-top: 5px;
}
.manufacturing-page .manufacturing-3 {
  padding-bottom: 140px;
}
.manufacturing-page .manufacturing-3 .box {
  height: 540px;
  background-size: cover;
  background-position: center;
  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;
  position: relative;
  z-index: 1;
}
.manufacturing-page .manufacturing-3 .box:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(var(--color2)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, var(--color2), transparent);
  background-image: -moz-linear-gradient(bottom, var(--color2), transparent);
  background-image: linear-gradient(to top, var(--color2), transparent);
  z-index: -1;
}
.manufacturing-page .manufacturing-3 .box .box2 {
  padding: 8%;
  color: white;
  width: 100%;
}
.manufacturing-page .manufacturing-3 .box .box2 span.h2 {
  color: inherit;
}
.manufacturing-page .manufacturing-3 .box .box2 .left {
  padding-right: 5%;
}
.manufacturing-page .manufacturing-4 {
  padding: 120px 0;
  background-color: #f9f9f9;
}
.manufacturing-page .manufacturing-4 .left {
  vertical-align: middle;
  padding-right: 11%;
}
.manufacturing-page .manufacturing-4 .left .text {
  margin-top: 1.5em;
}
.manufacturing-page .manufacturing-4 .right {
  padding-left: 5%;
  vertical-align: middle;
}
.manufacturing-page .manufacturing-4 .right .list ul {
  margin: -10px;
}
.manufacturing-page .manufacturing-4 .right .list ul li {
  padding: 10px;
}
.manufacturing-page .manufacturing-4 .right .list ul li a.img-box {
  display: block;
}
.manufacturing-page .manufacturing-5 {
  padding: 110px 0;
  text-align: center;
  background-color: var(--color2);
  color: white;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.manufacturing-page .manufacturing-5 .waves {
  position: absolute;
  top: 0;
  width: 30%;
  height: 100%;
  z-index: -1;
  opacity: .6;
}
.manufacturing-page .manufacturing-5 .waves.ie1 {
  left: 0;
}
.manufacturing-page .manufacturing-5 .waves.ie1 canvas {
  -webkit-transform: rotate(90deg) translateX(50%);
  -moz-transform: rotate(90deg) translateX(50%);
  -ms-transform: rotate(90deg) translateX(50%);
  transform: rotate(90deg) translateX(50%);
  -webkit-transform-origin: center top;
  -moz-transform-origin: center top;
  -ms-transform-origin: center top;
  transform-origin: center top;
}
.manufacturing-page .manufacturing-5 .waves.ie2 {
  right: 0;
}
.manufacturing-page .manufacturing-5 .waves.ie2 canvas {
  -webkit-transform: rotate(-90deg) translateX(-100%);
  -moz-transform: rotate(-90deg) translateX(-100%);
  -ms-transform: rotate(-90deg) translateX(-100%);
  transform: rotate(-90deg) translateX(-100%);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.manufacturing-page .manufacturing-5 span.h2 {
  color: inherit;
  margin-bottom: 3em;
}
.manufacturing-page .manufacturing-5 .list {
  position: relative;
}
.manufacturing-page .manufacturing-5 .list ul {
  font-size: 20px;
  margin: 0 -1em;
  position: relative;
}
.manufacturing-page .manufacturing-5 .list ul:before {
  content: '';
  height: 3px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(var(--color)), to(transparent));
  background-image: -webkit-linear-gradient(right, transparent, var(--color), transparent);
  background-image: -moz-linear-gradient(right, transparent, var(--color), transparent);
  background-image: linear-gradient(to left, transparent, var(--color), transparent);
}
.manufacturing-page .manufacturing-5 .list ul li {
  padding: 0 1em;
}
.manufacturing-page .manufacturing-5 .list ul li span.h6 {
  padding: 1.5em .5em;
  display: block;
  font-weight: 500;
  border-radius: 2em;
  background-color: var(--color);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-x: hidden;
  line-height: 1.2;
  text-transform: capitalize;
}
.manufacturing-page .manufacturing-5 .list ul li i.dots {
  width: 1em;
  height: 1em;
  border-radius: 100%;
  background-color: #e9a924;
  position: relative;
  display: block;
  margin: 2.5em auto;
}
.manufacturing-page .manufacturing-5 .list ul li i.dots:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: inherit;
  background-color: inherit;
  opacity: .5;
  -webkit-transform: scale(1.4);
  -moz-transform: scale(1.4);
  -ms-transform: scale(1.4);
  transform: scale(1.4);
}
.manufacturing-page .manufacturing-5 .list ul li span.num {
  height: 2.8em;
  font-size: 1.5em;
  display: block;
  line-height: 1.2;
}
.manufacturing-page .manufacturing-5 .list ul .slick-slide:nth-child(even) li {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -moz-box-orient: vertical;
  -moz-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.manufacturing-page .manufacturing-5 .list ul .slick-slide:nth-child(even) li span.num {
  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: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.manufacturing-page .manufacturing-5 .list .btn {
  font-size: 20px;
}
.manufacturing-page .manufacturing-5 .list .btn div {
  width: 2em;
  height: 2em;
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--color2);
  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;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.manufacturing-page .manufacturing-5 .list .btn div.prev {
  left: 2em;
}
.manufacturing-page .manufacturing-5 .list .btn div.next {
  right: 2em;
}
.manufacturing-page .manufacturing-5 .list .btn div:hover {
  background-color: var(--color);
  color: white;
}
.manufacturing-page .manufacturing-6 {
  padding: 110px 0;
  text-align: center;
}
.manufacturing-page .manufacturing-6 span.h2 {
  margin-bottom: 1em;
  font-weight: bold;
}
.manufacturing-page .manufacturing-6 .list ul {
  margin: -15px -20px;
}
.manufacturing-page .manufacturing-6 .list ul li {
  padding: 15px 20px;
}
.manufacturing-page .manufacturing-6 .list ul li a.img-box {
  display: block;
}
.manufacturing-page .manufacturing-6 .list ul li a.img-box:before {
  content: '';
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(var(--color2)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, var(--color2), transparent);
  background-image: -moz-linear-gradient(bottom, var(--color2), transparent);
  background-image: linear-gradient(to top, var(--color2), transparent);
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
.manufacturing-page .manufacturing-6 .list ul li a.img-box img {
  width: 100%;
}
.manufacturing-page .manufacturing-6 .list ul li a.img-box span {
  font-weight: 500;
  font-size: 16px;
  position: absolute;
  padding: 1em;
  left: 0;
  width: 100%;
  bottom: 0;
  color: white;
  z-index: 2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
  text-transform: capitalize;
}
.manufacturing-page .manufacturing-6 .list ul li a.img-box:hover:before,
.manufacturing-page .manufacturing-6 .list ul li a.img-box:hover span {
  opacity: 1;
}




.quality-page span.h2 {
  font-weight: normal;
}
.quality-page .text {
  font-weight: 300;
}
.quality-page span.h3 {
  font-size: 34px;
  line-height: 1.5;
  display: block;
  margin-bottom: 1em;
  color: var(--color2);
}
.quality-page .quality-1 {
  padding: 60px 0 100px;
  text-align: center;
}
.quality-page .quality-1 .text {
  margin-top: 2em;
}
.quality-page .quality-2 .slide {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.quality-page .quality-2 .slide .left {
  padding-right: 7%;
}
.quality-page .quality-2 .slide .left * {
  height: 100%;
}
.quality-page .quality-2 .slide .left .img {
  height: 100%;
  background-size: cover;
  background-position: center;
  display: block;
  /*border: 1px solid #c9cfd2;*/
}
.quality-page .quality-2 .slide .right {
  padding: 20px 0;
  padding-left: 3%;
}
.quality-page .quality-2 .slide:nth-child(even) {
  direction: rtl;
}
.quality-page .quality-2 .slide:nth-child(even) .left {
  padding-left: 7%;
  padding-right: 0;
}
.quality-page .quality-2 .slide:nth-child(even) .right {
  padding-left: 0;
  padding-right: 3%;
  direction: ltr;
}
.quality-page .quality-3 {
  padding: 70px 0 90px;
  background-color: #f9f9f9;
}
.quality-page .quality-3 .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;
}
.quality-page .quality-3 .box .left {
  width: 60%;
}
.quality-page .quality-3 .box .right {
  padding-left: 10%;
  width: 40%;
}
.quality-page .quality-3 .list {
  margin-top: 60px;
}
.quality-page .quality-3 .list ul {
  margin: -7px;
}
.quality-page .quality-3 .list ul li {
  padding: 7px;
}
.quality-page .quality-3 .list ul li a.img-box {
  display: block;
}
.quality-page .quality-4 .list ul {
  margin: -10px;
}
.quality-page .quality-4 .list ul li {
  padding: 10px;
}
.quality-page .quality-4 .list ul li a.img-box {
  display: block;
  border: 1px solid #c9cfd2;
}
.quality-page .quality-4 .list ul li a img {
  width: 100%;
}
.quality-page .quality-4 .list ul li span.h6 {
  font-size: 18px;
  font-weight: 500;
  color: var(--color2);
  display: block;
  margin-top: .6em;
  text-align: center;
}
.quality-page .quality-4 .btn {
  font-size: 20px;
}
.quality-page .quality-4 .btn div {
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #999;
  color: white;
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  transition: .5s;
  cursor: pointer;
  cursor: hand;
}
.quality-page .quality-4 .btn div.prev {
  right: 103%;
}
.quality-page .quality-4 .btn div.next {
  left: 103%;
}
.quality-page .quality-4 .btn div:hover {
  background-color: var(--color);
  color: white;
}
.quality-page .quality-5 {
  padding: 110px 0;
}
.quality-page .quality-5 .box .left {
  vertical-align: middle;
  padding-right: 4%;
}
.quality-page .quality-5 span.h2 {
  margin-bottom: .5em;
}
.quality-page .quality-5 .list ul li {
  font-size: 16px;
  padding: 1em 0;
  border-bottom: 1px solid #e3e6ea;
}
.quality-page .quality-5 .list ul li span.h6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}
.quality-page .quality-5 .list ul li span.h6 i {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  position: relative;
}
.quality-page .quality-5 .list ul li span.h6 i:after,
.quality-page .quality-5 .list ul li span.h6 i:before {
  content: '';
  width: 100%;
  height: 2px;
  background-color: black;
  transition: .5s;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.quality-page .quality-5 .list ul li span.h6 i:before {
  transform: translateY(-50%) rotate(90deg);
}
.quality-page .quality-5 .list ul li .text {
  margin-top: 1em;
  display: none;
}
.quality-page .quality-5 .list ul li.active span.h6 i:before {
  transform: translateY(-50%) rotate(0);
}
.quality-page .quality-5 .list ul li.active span.h6 i:after,
.quality-page .quality-5 .list ul li.active span.h6 i:before {
  background-color: var(--color)
}
.quality-page .quality-5 .list ul li.active span.h6 {
  color: var(--color);
}
.quality-page .quality-5 .box .right {
  padding-left: 7%;
  vertical-align: middle;
}
.quality-page .quality-5 .box .right .slick {
  position: relative;
}
.quality-page .quality-5 .box .right .slick img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  transition: .5s;
}
.quality-page .quality-5 .box .right .slick img.active {
  opacity: 1;
  position: static;
  z-index: 1;
}
.quality-page .quality-7 {
  padding: 100px 0;
}
.quality-page .quality-7 span.h2 {
  font-weight: normal;
  text-align: center;
  margin-bottom: 1.5em;
}
.quality-page .quality-7 .box {
  margin-top: 60px;
}
.quality-page .quality-7 .box .left {
  width: 66%;
  padding-right: 4%;
}
.quality-page .quality-7 .box .left .text {
  font-size: 14px;
}
.quality-page .quality-7 .box .left .text>* {
  margin: 1em 0;
}
.quality-page .quality-7 .box .left .text .f18 {
  font-size: 1.3em;
}
.quality-page .quality-7 .box .left .text .f20 {
  font-size: 1.45em;
}
.quality-page .quality-7 .box .left .text .f24 {
  font-size: 1.7em;
}
.quality-page .quality-7 .box .left .text span {
  color: var(--color2);
}
.quality-page .quality-7 .box .right {
  width: 34%;
}

@media screen and (max-width: 1600px) {
  a.more {
    font-size: 14px;
  }

  span.tag {
    font-size: 16px;
  }

  .about-page .about-1 .left {
    padding-left: 15px;
  }
  .about-page .about-1 .right .img {
    height: 480px;
  }
  .about-page .about-1 .left .content .list {
    font-size: 14px;
    margin-bottom: 2em;
  }
  .about-page .about-2 {
    padding: 100px 0;
  }
  .about-page .about-2 .list ul li span.h6,
  .manufacturing-page .manufacturing-2 .right ul li span.h6 {
    font-size: 40px;
  }
  .about-page .about-3 .box {
    margin-top: 40px;
  }
  .about-page .about-3 .box ul {
    height: 500px;
  }
  .about-page .about-3 .box ul li .content span.h3 {
    font-size: 24px;
  }
  .about-page .about-3 .box ul {
    padding: 70px 0;
    padding-right: 20px;
  }
  .about-page .about-4 {
    padding: 100px 0;
  }
  .about-page .about-4 .list ul li i {
    width: 100px;
  }
  .about-page .about-4 .list ul li span.h6 {
    font-size: 16px;
  }
  .about-page .about-5,
  .about-page .about-6 {
    padding: 100px 0;
  }




  .cornerstone-page .cornerstone-1 .options {
    font-size: 16px;
    margin-top: 50px;
  }
  .cornerstone-page .cornerstone-1 .options span {
    margin: 0 1em;
  }
  .cornerstone-page .cornerstone-1 .ret {
    margin-top: 40px;
  }
  .cornerstone-page .cornerstone-1,
  .cornerstone-page .cornerstone-3 {
    padding: 70px 0;
  }
  .cornerstone-page .cornerstone-3 span.h3 {
    margin-bottom: 1.5em;
  }
  .cornerstone-page .cornerstone-3 .list ul li .box {
    padding: 10% 7%;
  }
  .cornerstone-page .cornerstone-3 .list ul li .box span.h6 {
    margin-bottom: 1.5em;
    font-size: 18px;
  }
  .cornerstone-page .cornerstone-4 .box .right .list ul li {
    font-size: 18px;
  }
  .cornerstone-page .cornerstone-5 .box .right .box2 {
    padding-right: 15px;
  }

  .quality-page span.h3,
  .cornerstone-page span.h3 {
    font-size: 28px;
  }



  .manufacturing-page .manufacturing-1 {
    padding-top: 70px;
  }
  .manufacturing-page .manufacturing-3 .box {
    height: 400px;
  }
  .manufacturing-page .manufacturing-3 {
    padding-bottom: 70px;
  }
  .manufacturing-page .manufacturing-4 .left {
    padding-right: 7%;
  }
  .manufacturing-page .manufacturing-5 span.h2 {
    margin-bottom: 2em;
  }
  .manufacturing-page .manufacturing-5 .list ul {
    font-size: 16px;
  }
  .manufacturing-page .manufacturing-5 .list ul li span.h6 {
    padding: 1em .5em;
  }

  .manufacturing-page .manufacturing-5 .list ul li span.num {
    height: 2.1em;
  }
}

@media screen and (max-width: 1250px) {
  .service-page .service-2,
  .about-page .about-4 {
    padding: 60px 0;
  }

  .about-page .about-2 .list {
    margin-top: 60px;
  }
  .about-page .about-4 .bottom .slide {
    padding: 0 5%;
    height: 500px;
  }
  .about-page .about-4 .bottom .slide .content {
    padding: 3%;
  }
  .about-page .about-5 .center .img {
    height: 500px;
  }
  .about-page .about-5,
  .about-page .about-6,
  .cornerstone-page .cornerstone-4 {
    padding: 70px 0;
  }


  .faq-page .list ul li .content {
    padding: 20px;
  }
  .faq-page .list ul li i {
    width: 50px;
  }
  .faq-page .list:before {
    left: 24px;
  }

  .quality-page span.h3,
  .cornerstone-page span.h3 {
    font-size: 24px;
  }

  .cornerstone-page .cornerstone-4 {
    padding: 70px 0;
  }
  .cornerstone-page .cornerstone-1 .options span {
    margin: 0 .5em;
  }
  .cornerstone-page .cornerstone-1 .options {
    font-size: 14px;
  }
  .cornerstone-page .cornerstone-5 .box .right {
    padding: 60px 0;
  }

  .cornerstone-page .cornerstone-7 {
    display: none;
  }

  .quality-page .quality-4 .btn div.prev {
    left: 0;
    right: auto;
  }
  .quality-page .quality-4 .btn div.next {
    right: 0;
    left: auto;
  }

  .quality-page .quality-7 .box .left {
    padding-right: 0;
    width: 100%;
  }
  .quality-page .quality-7 .box .right {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  span.tag {
    font-size: 14px;
  }
  
  .about-page .about-1 .right .img {
    height: 360px;
  }
  .about-page .about-1 .left {
    width: 100%;
    padding: 30px 15px;
  }
  .about-page .about-1 .right {
    width: 100%;
  }
  .about-page .about-1 .left .content {
    padding-right: 0;
  }
  .about-page .about-2 {
    background-size: contain;
  }
  .about-page .about-2 .list ul li span.h6,
  .manufacturing-page .manufacturing-2 .right ul li span.h6 {
    font-size: 32px;
  }
  .about-page .about-4 .list ul li i {
    width: 60px;
  }
  .about-page .about-4 .list ul li i img {
    max-height: 40px;
  }
  .about-page .about-4 .list ul li span.h6 {
    font-size: 14px;
  }
  .about-page .about-2 {
    padding: 60px 0;
  }
  .about-page .about-4 .bottom .slide .content {
    width: 80%;
  }
  .about-page .about-4 .bottom .slide {
    height: auto;
    padding: 5%;
  }
  .about-page .about-5 .left span.h2 {
    width: 100%;
    margin-bottom: 1em;
  }
  .about-page .about-5 .left {
    margin-top: 0;
    width: 100%;
  }
  .about-page .about-5 .center {
    display: none;
  }
  .about-page .about-5 .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .about-page .about-5 .down {
    width: 45px;
    height: 45px;
  }

  .faq-page .list ul li .content span.h6 {
    font-size: 16px;
  }


  .cornerstone-page .cornerstone-1 .options {
    display: none;
  }
  .cornerstone-page .cornerstone-1 .ret ul li {
    width: 25%;
  }
  .cornerstone-page .cornerstone-1 .ret .slide {
    display: block !important;
  }
  .cornerstone-page .cornerstone-3 .list ul li {
    width: 50%;
  }
  .cornerstone-page .cornerstone-3 .list ul li:nth-child(2) {
    display: none;
  }
  .cornerstone-page .cornerstone-4 .box .left {
    width: 100%;
    padding-right: 0;
  }
  .cornerstone-page .cornerstone-4 .box .right {
    width: 100%;
    margin-top: 30px;
  }
  .cornerstone-page .cornerstone-4 .box {
    display: block;
  }
  .cornerstone-page .cornerstone-5 .box .right .box2 .form ul li input,
  .cornerstone-page .cornerstone-5 .box .right .box2 .form ul li textarea {
    font-size: 14px;
  }
  .cornerstone-page .cornerstone-5 .box .right .box2 .form ul li {
    padding: 5px;
  }
  .cornerstone-page .cornerstone-5 .box .right .box2 .form ul {
    margin: -5px;
  }


  .manufacturing-page .manufacturing-2 .left {
    width: 100%;
  }
  .manufacturing-page .manufacturing-2 .right {
    width: 100%;
    margin-top: 20px;
  }
  .manufacturing-page .manufacturing-1 .box .right {
    padding-left: 0;
    width: 100%;
    margin-top: 20px;
  }
  .manufacturing-page .manufacturing-1 .box .left {
    width: 100%;
    padding-right: 0;
  }
  .manufacturing-page .manufacturing-1 .box .left .img,
  .mould-page .mould-1 .box .left .img,
  .mould-page .mould-3 .right .img {
    height: 240px;
  }
  .manufacturing-page .manufacturing-3 .box .box2 .left,
  .manufacturing-page .manufacturing-4 .left,
  .mould-page .mould-1 .box .left,
  .mould-page .mould-3 .left,
  .mould-page .mould-4 .left {
    width: 100%;
    padding-right: 0;
  }
  .manufacturing-page .manufacturing-3 .box .box2 .right,
  .manufacturing-page .manufacturing-4 .right,
  .mould-page .mould-1 .box .right,
  .mould-page .mould-3 .right,
  .mould-page .mould-4 .right {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }
  .manufacturing-page .manufacturing-5 .list ul {
    font-size: 14px;
  }


  .quality-page .quality-2 .slide .left,
  .quality-page .quality-3 .box .left {
    padding: 0 !important;
    width: 100%;
  }
  .quality-page .quality-2 .slide .right,
  .quality-page .quality-3 .box .right {
    padding: 0 !important;
    width: 100%;
    margin-top: 20px;
  }
  .quality-page .quality-2 .slide,
  .quality-page .quality-3 .box {
    direction: ltr !important;
    display: block;
  }
  .quality-page .quality-2 .slide .left .img {
    height: 240px;
  }
  .quality-page .quality-3 {
    padding: 50px 0;
  }
}


@media screen and (max-width: 700px) {
  .about-page .about-2 .list ul li span.h6,
  .manufacturing-page .manufacturing-2 .right ul li span.h6 {
    font-size: 28px;
  }

  .about-page .about-3 .box ul li .content {
    width: 50%;
  }
  .about-page .about-3 .box ul li .content span.h3 {
    font-size: 18px;
  }
  .about-page .about-2 .list ul li span.h6,
  .manufacturing-page .manufacturing-2 .right ul li span.h6 {
    font-size: 22px;
  }
  .about-page .about-2 .list ul li {
    width: 50%;
    padding: 10px;
  }
  .about-page .about-2 .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
  }
  .about-page .about-4 .bottom .slide .content {
    width: 100%;
  }
  .about-page .about-6 .list ul li {
    padding: 10px;
  }
  .about-page .about-6 .list ul {
    margin: -10px;
  }
  .about-page .about-4 .list {
    display: none;
  }


  .cornerstone-page .cornerstone-5 .box .left {
    display: none;
  }
  .cornerstone-page .cornerstone-5 .box .right {
    width: 100%;
  }
  .cornerstone-page .cornerstone-5 .box .right .box2 {
    padding: 0 15px;
  }
  .cornerstone-page .cornerstone-5 .box .right .box2 .form {
    margin-top: 30px;
  }
  .cornerstone-page .cornerstone-5 .box .right .box2 .form ul li {
    width: 100%;
  }
  .cornerstone-page .cornerstone-4 .box .right .list ul li {
    font-size: 16px;
  }
  .cornerstone-page .cornerstone-4 .box .right .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cornerstone-page .cornerstone-4 .box .right .list ul li span:after {
    display: none;
  }
  .cornerstone-page .cornerstone-1 .ret ul li {
    width: 33.333%;
  }

  .manufacturing-page .manufacturing-5 .list .btn div.prev {
    left: 1em;
  }
  .manufacturing-page .manufacturing-5 .list .btn div.next {
    right: 1em;
  }
  .manufacturing-page .manufacturing-1,
  .quality-page {
    padding-top: 50px;
  }
}

@media screen and (max-width: 500px) {
  a.more {
    padding: .7em 1.5em;
  }

  .about-page .about-3 .box ul li:before,
  .about-page .about-3 .box ul li:after {
    display: none;
  }
  .about-page .about-3 .box ul li {
    width: 100%;
    padding-left: 20px;
  }
  .about-page .about-3 .box ul li .content {
    width: 100%;
    position: relative;
  }
  .about-page .about-3 .box ul li i.dots {
    width: 10px;
    height: 10px;
    left: 0;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    top: 6px;
  }
  .about-page .about-3 .box:before {
    left: 8px;
    width: 2px;
  }
  .about-page .about-3 .box ul {
    padding: 20px 0;
    padding-right: 20px;
  }
  .about-page .about-3 .box:after {
    height: 15%;
  }
  .about-page .about-4 .bottom .slide .content span.h6 {
    font-size: 18px;
  }

  .faq-page .list ul li i {
    margin-right: 10px;
  }


  .cornerstone-page .cornerstone-1 .ret ul li {
    width: 50%;
  }
  .cornerstone-page .cornerstone-3 .list ul li {
    width: 100%;
  }
  .cornerstone-page .cornerstone-3 .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }


  .manufacturing-page .manufacturing-2 .right ul li {
    width: 100%;
    text-align: left;
    padding: 5px;
  }
  .manufacturing-page .manufacturing-2 .right ul li i.line {
    display: none;
  }
  .manufacturing-page .manufacturing-2 .right ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -5px;
  }
}






/* 证书 */

.certification-page {
    padding-top: 100px;
}
.certification-page .certification-1 {
    padding-bottom: 100px;
}
.certification-page .certification-1 .title_c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.certification-page .certification-1 .top ul {
    margin: 0 -20px;
/*     display:flex; */
/*     flex-wrap:wrap; */
}
.certification-page .certification-1 .top.certificate ul {
    display:flex;
    flex-wrap:wrap;
}
.certification-page .certification-1 .top ul li {
    padding: 0 20px;
}
.certification-page .certification-1 .top ul li .box {
    display: block;
    position: relative;
/*     background: #F0F0F0; */
/*     border-radius: 10px; */
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-align: center;
    height: 100%;
/*     padding: 15px; */
}
.certification-page .certification-1 .top.certificate ul li .box {
    background: #F0F0F0;
    border-radius: 10px;
	 padding: 15px;
	margin-top:60px;
}
.certification-page .certification-1 .top.certificate ul li .box .img {
	margin-bottom:-80px;
	position:relative;
	top:-80px;
}
.certification-page .certification-1 .top ul li .box img {
	display:block;
	margin:0 auto;
}
.certification-page .certification-1 .top ul li .box .tit {
    font-size: 20px;
    font-family: var(--font);
    /*font-weight: bold;*/
    color: #000000;
    line-height: 1;
	padding-top:1em;
	display:none;
}
.certification-page .certification-1 .top ul li .box .cona {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 2;
    opacity: 0.8;
    margin-top: 30px;
}
.certification-page .certification-1 .top.certificate ul li .box .cona {
	min-height:16em;
}
/* .certification-page .certification-1 .top ul li:hover .box {
    background: #073280;
} */
.certification-page .certification-1 .top.certificate ul li .box .tit {
	display:block;
}
.certification-page .certification-1 .top.certificate ul li:hover .box {
    background: #72b632;
}
.certification-page .certification-1 .top ul li:hover .box .tit,
.certification-page .certification-1 .top ul li:hover .box .cona {
    color: #ffffff;
}


.gallery-page {
  padding: 90px 0;
}
.gallery-page ul{
  margin: -15px;
}
.gallery-page ul li{
  padding: 15px;
}
.gallery-page ul li a{
  display: block; 
  background: white;
}








.video-page .video-1 {
  padding: 38px 0 90px;
  background: #f6f6f6;
}
.video-page .video-1 .tag,
.video-page .video-2 .tag{
  color: #72b632;
}
.video-page .video-1 .header h2.title {
  margin-top: 14px;
  line-height: 1.2;
}
.video-page .video-1 .content {
  margin-top: 40px;
}
.video-page .video-1 .content ul {
  margin: -10px -12px;
}
.video-page .video-1 .content ul li {
  padding: 10px 12px;
}
.video-page .video-1 .content ul li .ig {
  display: block;
  -webkit-box-shadow: 0 0 10px #ddd;
  box-shadow: 0 0 10px #ddd;
  background-color: #fff;
  padding: 14px;
}
.video-page .video-1 .content ul li .ig video {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}
.video-page .video-2 {
  padding: 93px 0 107px;
}
.video-page .video-2 .header h2.title {
  margin-top: 14px;
}
.video-page .video-2 .content {
  margin-top: 57px;
}
.video-page .video-2 .content ul {
  margin: 0 -26px -25px 0;
}
.video-page .video-2 .content ul li {
  padding: 0 26px 25px 0;
}
.video-page .video-2 .content ul li .ig {
  background: #eee;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  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;
}
.video-page .video-2 .content ul li .ig span {
  display: inline-block;
}
.video-page .video-2 .content ul li .ig .fl {
  padding: 0 15px;
  width: 75%;
}
.video-page .video-2 .content ul li .ig .fr {
  width: 150px;
  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;
}
.video-page .video-2 .content ul li .ig .fr img {
  margin-right: 15px;
}
.video-page .video-2 .content ul li .ig:hover {
  background: #ec0017;
  color: white;
}
.video-page .video-2 .content ul li .ig:hover .fr img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 1280px) {
  .video-page .video-2 .content ul li .ig .fl {
    width: 70%;
  }
}
@media screen and (max-width: 1100px) {
  .video-page .video-2 .content ul li .ig .fl {
    width: 68%;
  }
}
@media screen and (max-width: 1000px) {
  .video-page .video-1 {
    padding: 38px 0 60px;
  }
  .video-page .video-1 .content ul li {
    width: 50%;
  }
  .video-page .video-2 .content ul li {
    width: 100%;
  }
  .video-page .video-2 {
    padding: 60px 0;
  }
  .video-page .video-2 .content {
    margin-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .video-page .video-1 {
    padding: 30px 0;
  }
  .video-page .video-1 .content ul li {
    width: 100%;
  }
  .video-page .video-2 .content ul li .ig {
    font-size: 16px;
    height: auto;
    line-height: 1;
    padding: 10px 0;
  }
  .video-page .video-2 .content ul li .ig .fl {
    width: 100%;
  }
  .video-page .video-2 .content ul li .ig .fr {
    width: 100%;
    padding: 10px 0 0 15px;
  }
}







.sustainability-page .sustainability-1 .container {
  width: 100% !important;
  padding: 0;
}
.sustainability-page .sustainability-1 .img {
  position: relative;
  z-index: 10;
  overflow: hidden
}
.sustainability-page .sustainability-1 .img::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -300%;
  width: 100%;
  height: 100%;
  background: url(../images/acc12.png) no-repeat center;
  transition: 0.5s
}
.sustainability-page .sustainability-1 .img:hover::after {
  bottom: 0
}
.sustainability-page .sustainability-1 .img .mask {
  position: absolute;
  left: 0;
  bottom: 105px;
  width: 100%;
  text-align: center;
  z-index: 11
}
.sustainability-page .sustainability-1 .img .mask .tit3 {
  font-size: 45px;
  /*font-weight: bold;*/
   font-family: var(--font);
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1;

}
.sustainability-page .sustainability-1 .img .mask p {
  font-size: 24px;
  font-weight: 300;
  color: #FFFFFF;
  max-width: 1054px;
  margin: 0 auto;
  margin-top: 40px;
}
.sustainability-page .sustainability-2 {
  background: #F5F5F5;
}
.sustainability-page .sustainability-2 .img {
  position: relative;
  padding: 241px 0 212px;
}
.sustainability-page .sustainability-2 .img .title {
  position: absolute;
  left: 0;
  top: 13.3%;
  text-align: left;
}
.sustainability-page .sustainability-2 .img .title span {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #00378C;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3.5px;
}
.sustainability-page .sustainability-2 .img .title p {
  font-size: 18px;
  font-weight: 300;
  color: #1D1D1D;
  margin-top: 25px;
  max-width: 645px;
}
.sustainability-page .sustainability-2 .img ul li {
  text-align: center;
}
.sustainability-page .sustainability-2 .img ul li .imga {
  display: inline-block;
  position: relative;
}
.sustainability-page .sustainability-2 .img ul li .imga::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0px 19px 27px 0px rgba(5, 32, 83, 0.88);
  box-shadow: 0px 10px 10px 0px rgba(163, 163, 163, 0.88);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
}
.sustainability-page .sustainability-2 .img ul li .imga:hover::after {
  opacity: 1;
}
.sustainability-page .sustainability-2 .img ul li .tit {
  font-size: 24px;
  font-weight: bold;
  color: #0F4099;
  text-transform: capitalize;
  margin-top: 20px;
  max-width: 260px;
}
.sustainability-page .sustainability-2 .img ul li:nth-child(1) {
  position: absolute;
  left: 0;
  bottom: 17.8%;
}
.sustainability-page .sustainability-2 .img ul li:nth-child(2) {
  position: absolute;
  left: 20.25%;
  bottom: 9.9%;
}
.sustainability-page .sustainability-2 .img ul li:nth-child(3) {
  position: absolute;
  left: 41.125%;
  bottom: 9.5%;
}
.sustainability-page .sustainability-2 .img ul li:nth-child(4) {
  position: absolute;
  right: 20.5%;
  bottom: 22.4%;
}
.sustainability-page .sustainability-2 .img ul li:nth-child(5) {
  position: absolute;
  right: 2.8%;
  bottom: 37.8%;
}
.sustainability-page .sustainability-3 {
  padding-top: 143px;
      padding-bottom: 100px;
}
.sustainability-page .sustainability-3 ul li .box {
  background: linear-gradient(265deg, #e22324, #e22324);
}
.sustainability-page .sustainability-3 ul li .box .img {
  vertical-align: middle;
}
.sustainability-page .sustainability-3 ul li .box .con {
  vertical-align: middle;
  padding: 0 30px;
  transition: 0.5s;
}
.sustainability-page .sustainability-3 ul li .box .con .tit {
  font-size: 30px;
  /*font-weight: bold;*/
  color: #ffffff;
  font-family: var(--font);
  text-transform: uppercase;
  transition: 0.5s;
}
.sustainability-page .sustainability-3 ul li .box .con .cona {
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
  margin-top: 25px;
  line-height: 1.5;
  max-height: 9em;
  overflow-y: auto;
  transition: 0.5s;
}


.sustainability-page .sustainability-3 ul li:nth-child(even) .box .img {
  position: relative;
  left: 50%;
}
.sustainability-page .sustainability-3 ul li:nth-child(even) .box .con {
  position: relative;
  left: -50%;
}
.sustainability-page .sustainability-4 {
  padding: 130px 0;
}
.sustainability-page .sustainability-4 .title span {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #ec0017;
  line-height: 1;
  /*text-transform: uppercase;*/
  /*letter-spacing: 3px*/
}
.sustainability-page .sustainability-4 .title p {
  font-size: 24px;
  font-weight: 300;
  color: #1D1D1D;
  max-width: 937px;
  margin-top: 25px;
}
.sustainability-page .sustainability-4 .list {
  margin-top: 50px;
}
.sustainability-page .sustainability-4 .list ul {
  margin: -15px;
}
.sustainability-page .sustainability-4 .list ul li {
  padding: 15px;
}
.sustainability-page .sustainability-4 .list ul li .box .img {
  overflow: hidden;
}
.sustainability-page .sustainability-4 .list ul li .box .img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sustainability-page .sustainability-4 .list ul li .box .img:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.sustainability-page .sustainability-4 .list ul li .box .tit {
  font-size: 18px;
  font-weight: bold;
  color: #0F4099;
  line-height: 1;
  margin-top: 30px;
}
.sustainability-page .sustainability-4 .list ul li .box .cona {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  opacity: 0.8;
  margin-top: 10px;
}

@media (max-width: 1600px) {
  .sustainability-page .sustainability-2 .img ul li:nth-child(1) {
    left: 0;
  }
  .sustainability-page .sustainability-2 .img ul li .tit {
    font-size: 20px;
    margin-top: 10px;
  }
  .sustainability-page .sustainability-3 ul li .box .con .cona {
    height: 140px!important;
    overflow: auto;
    padding-right: 20px;
  }
  .sustainability-page .sustainability-2 .img ul li:nth-child(5) {
    right: -3%;
  }
}

@media screen and (max-width: 1320px) {
  .sustainability-page .sustainability-3 ul li .box .con .tit {
    font-size: 24px;
  }
  .sustainability-page .sustainability-3 ul li .box .con {
    padding: 0 30px;
  }


  .sustainability-page .sustainability-1 .img .mask .tit3 {
    font-size: 36px;
  }

  .sustainability-page .sustainability-1 .img .mask p {
    margin-top: 10px;
  }
}

@media screen and (max-width: 1100px) {
  .sustainability-page .sustainability-3 ul li .box .con .cona {
    height: auto!important;
    padding-right: 0
  }
  .sustainability-page .sustainability-2 .img ul {
    display: none;
  }

  .sustainability-page .sustainability-2 .img {
    padding-bottom: 50px;
  }
  .sustainability-page .sustainability-3 ul li .box .img {
    width: 100%;
    left: 0 !important;
  }
  .sustainability-page .sustainability-3 ul li .box .con {
    width: 100%;
    left: 0 !important;
    padding: 30px;
  }
  .sustainability-page .sustainability-3 ul li .box {
    margin: 20px 0;
  }
  .sustainability-page .sustainability-3 ul li .box .con .cona {
    margin-top: 15px;
  }
  .sustainability-page .sustainability-4 .title p {
    margin-top: 15px;
  }
}


@media screen and (max-width: 1000px) {
  .sustainability-page .sustainability-1 .img .mask {
    position: static;
    padding: 25px 0;
  }
  .sustainability-page .sustainability-1 .img .mask .tit3,
  .sustainability-page .sustainability-1 .img .mask p {
    color: #000;
  }
}

@media screen and (max-width: 700px) {
  .sustainability-page .sustainability-1 .img .mask .tit3 {
    font-size: 32px;
  }
  .sustainability-page .sustainability-2 .img .title {
    position: static;
    margin-top: 30px;
  }
  .sustainability-page .sustainability-2 .img {
    padding: 30px 0;
  }
  .sustainability-page .sustainability-2 .img .title p {
    margin-top: 15px;
  }
}

@media screen and (max-width: 500px) {
  .sustainability-page .sustainability-1 .img .mask .tit3 {
    font-size: 26px;
    line-height: 2;
  }
  .sustainability-page .sustainability-3 ul li .box .con {
    padding: 15px;
  }
  .sustainability-page .sustainability-4 {
    padding: 40px 0;
  }
  .sustainability-page .sustainability-1 .img .mask p,
  .sustainability-page .sustainability-2 .img .title p,
  .sustainability-page .sustainability-3 ul li .box .con .cona,
  .sustainability-page .sustainability-4 .title p {
    font-size: 16px;
  }
  .sustainability-page .sustainability-3 ul li .box .con .tit {
    line-height: 1.5;
  }
}





/* 解决方案 */
.application-page .application-1{
    padding: 70px 0 40px;
}
.application-page .application-1 .list ul {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
}
.application-page .application-1 .list ul li {
    width: 100%;
    max-width: 16.666%;
}
.application-page .application-1 .list ul li a {
    display: block;
    height: 100%;
    font-size: 15px;
    padding: 2em 1em 1em;
    text-align: center;
    transition: .5s;
    border-right: 1px solid #ececeb;
}
.application-page .application-1 .list ul li a i {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 75px;
    margin-bottom: .5em;
    transition: .5s;
    filter: brightness(0);
}
.application-page .application-1 .list ul li a.active {
    background-color: var(--color);
    color: white;
}
.application-page .application-1 .list ul li a.active i {
    filter: brightness(0) invert(1);
}
.application-page .application-1 .list ul li:last-child a {
    border-right: none;
}
.application-page .application-2 {
    background-color: var(--color);
    color: white;
    position: relative;
    z-index: 1;
}
.application-page .application-2 .box {
    padding: 70px 0;
    max-width: 1140px;
    display: block;
    margin: 0 auto;
}
.application-page .application-2 .box span.h2 {
    color: inherit;
    font-size: 48px;
    text-align: center;
}
.application-page .application-2 .box .text {
    line-height: 2;
}
.application-page .application-2 .box .text p {
    margin-top: .5em;
    display: block;
}
.application-page+.product-page {
    position: relative;
    /*background-color: var(--color);*/
    z-index: 1;
    padding-top: 0 !important;
}
.application-page+.product-page:after {
    content: '';
    width: 100%;
    height: 65%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fcfcfc;
    z-index: -1;
}
.application-page+.product-page ul .slick-track {
    margin-left: 0;
}

@media screen and (max-width: 1000px) {
  .application-page .application-2 .box span.h2 {
    font-size: 24px;
  }

  .application-page .application-2 .box {
    padding: 50px 0;
  }

  .application-page .application-1,.application-page .application-2:after {
    display: none;
  }
}






.rn_case_info table td,
.rn_case_info table th {
  padding: 5px 10px;
  border: 0px solid #666;
  width: auto !important;
  height: auto !important;
}
.rn_case_info table.para td{ padding: 5px;}
.rn_case_info table td{padding: 50px;}
.rn_case_info table td strong{ font-size: 30px;}
.rn_case_info table td p{ font-size: 16px; }






.rn_case .box .list {
  margin-right: -15px;
}

.rn_case .box .list .item {
    width: calc(25% - 15px);
    margin-right: 15px;
    margin-bottom: 30px;
}

.rn_case .box .list .item a {
    display: block;
    position: relative;
}
.rn_case .box .list .item a .img {
    position: relative;
    overflow: hidden;
}
.rn_case .box .list .item a .img img {
    width: 100%;
    transition: 0.4s;
}
.rn_case .box .list .item a .img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}
.rn_case .box .list .item a .text {
    position: absolute;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    bottom: 0;
    padding: 0 2rem;
    transition: 0.4s;
}
.rn_case .box .list .item a .text h5 {
    font-size: 18px;
    color: #fff;
}
.rn_case .box .list .item a .text h6 {
    font-size: 1rem;
    color: #fff;
    margin-top: 1.125rem;
}
.rn_case .box .list .item a .text p {
    margin-top: 1.875rem;
    font-size: 1rem;
    font-family: 'gilroy_bold';
    color: #fff;
    line-height: 1.25rem;
    opacity: 0;
    transition: 0.4s;
}
.rn_case .box .list .item:hover a .img img {
    transform: scale(1.1);
}
.rn_case .box .list .item:hover a .text {
    bottom: 2.8125rem;
}
.rn_case .box .list .item:hover a .text p {
    opacity: 1;
}
.rn_case .index_page {
    margin-top: 5rem;
}
.rn_title {
    background: #f8f8f8;
}
.rn_title .box .boxleft {
    line-height: 5rem;
}
.rn_title .box .boxleft ul li {
    margin-right: 5.75rem;
}
.rn_title .box .boxleft ul li a {
    font-size: 1.125rem;
    color: #000;
    display: block;
    font-weight: bold;
}
.rn_title .box .boxleft ul .active a {
    color: #c9182d;
    border-bottom: 2px solid #c9182d;
}
.rn_title .box .boxRight {
    font-size: 1rem;
    color: #666;
    line-height: 4.875rem;
}
.rn_title .box .boxRight a {
    color: #666;
}
.rn_title .box .boxRight i{
    font-size: 1rem;
}
.rn_title .box .boxRight a img {
    position: relative;
    margin-right: 0.625rem;
    top: -3px;
}
.rn_title .box .boxRight span {
    color: #c9182d;
}
.rn_case_info > .box .boxLeft {
    width: 50%;
}
.rn_case_info > .box .boxLeft .content1 span {
    display: inline-block;
    width: 3rem;
    height: 2px;
    background: #c9182d;
    margin-top: 1.5rem;
}
.rn_case_info > .box .boxLeft .content2 {
    margin-top: 2rem;
    font-size:16px;
    color: #666;
    line-height:1.5rem;
}
.rn_case_info > .box .boxLeft .content3 {
    margin-top: 3rem;
}
.rn_case_info > .box .boxLeft .content3 .item {
    padding: 0 5rem;
    border-right: 1px solid #ddd;
}
.rn_case_info > .box .boxLeft .content3 .item:last-child {
    border: 0;
}
.rn_case_info > .box .boxLeft .content3 .item:first-child {
    padding-left: 0;
}
.rn_case_info > .box .boxLeft .content3 .item div {
    font-size: 1.125rem;
    margin-bottom: 10px;
    font-weight: bold;
}
.rn_case_info > .box .boxLeft .content3 .item div:last-child {
    margin-bottom: 0;
}
.rn_case_info > .box .boxLeft .content4 {
    margin-top: 4.875rem;
}
.rn_case_info > .box .boxLeft .content4 .item {
    margin-right: 1.625rem;
}
.rn_case_info > .box .boxLeft .content4 .item a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #c9182d;
    font-weight: bold;
    width: 14.375rem;
    text-align: center;
    line-height: 3.25rem;
    border: 1px solid #c9182d;
    transition: 0.3s;
}
.rn_case_info > .box .boxLeft .content4 .item a img {
    margin-right: 0.3125rem;
}
.rn_case_info > .box .boxLeft .content4 .item a .img2 {
    display: none;
}
.rn_case_info > .box .boxLeft .content4 .item a:hover {
    background: #c9182d;
    color: #fff;
}
.rn_case_info > .box .boxLeft .content4 .item a:hover .img1 {
    display: none;
}
.rn_case_info > .box .boxLeft .content4 .item a:hover .img2 {
    display: inline-block;
}
.rn_case_info > .box .boxRight {
    width: 43%;
}
.rn_case_info > .box .boxRight p {
    overflow: hidden;
}
.rn_case_info > .box .boxRight p img {
    width: 100%;
    transition: 0.4s;
}
.rn_case_info > .box .boxRight p:hover img {
    transform: scale(1.1);
}


.rn_case1 {
    background: #f8f8f8;
}





.index_title .box .left {
  font-size: 3rem;
}
.index_title .box .biaoti {
  font-size: 1.25rem;
  color: #666;
  margin-top: 0.75rem;
}

@media (max-width:1260px) {
  .index_title .box .left {
    font-size: 32px;
  }
}

@media (max-width:1000px) {
  .rn_case .box .list .item {
    width: calc(33.33% - 15px);
  }
}

@media (max-width:700px) {
  .index_title .box .left {
    font-size: 24px;
  }

  .rn_case .box .list .item {
    width: calc(50% - 15px);
  }
}

@media (max-width:500px) {
  .rn_case .box .list .item {
    width: calc(100% - 15px);
  }
}


.custom-list ul {
  margin: -15px;
}

.custom-list li {
  padding: 15px;
}