@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.woff2') format('woff2'), url('../fonts/Poppins-Light.ttf') format('truetype'), url('../fonts/Poppins-Light.eot') format('embedded-opentype'), url('../fonts/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.ttf') format('truetype'), url('../fonts/Poppins-Regular.eot') format('embedded-opentype'), url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'), url('../fonts/Poppins-Medium.ttf') format('truetype'), url('../fonts/Poppins-Medium.eot') format('embedded-opentype'), url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'), url('../fonts/Poppins-SemiBold.ttf') format('truetype'), url('../fonts/Poppins-SemiBold.eot') format('embedded-opentype'), url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'), url('../fonts/Poppins-Bold.ttf') format('truetype'), url('../fonts/Poppins-Bold.eot') format('embedded-opentype'), url('../fonts/Poppins-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Judson-Bold';
  src: url('../fonts/Judson-Bold.woff2') format('woff2'), url('../fonts/Judson-Bold.ttf') format('truetype'), url('../fonts/Judson-Bold.eot') format('embedded-opentype'), url('../fonts/Judson-Bold.woff') format('woff');
}
body {
  font-family: "Poppins";
  max-width: 1920px;
  --color: #d0021c;
  font-weight: normal;
  margin: 0 auto;
}
.container {
  width: 1580px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.search-box {
    line-height: normal;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
}
.search-box form {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 60%;
    margin-left: -30%;
}
.search-box form input {
    background: none;
    outline: none;
    border: none;
}
.search-box form input[type="text"] {
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
    font-size: 26px;
    color: #000;
    padding: 10px 0;
}
.search-box form input[type="submit"] {
    width: 22px;
    height: 22px;
    background: url(../images/tc-zoom.png) no-repeat;
    position: absolute;
    right: 15px;
    top: 20px;
}
.search-box form input[type="submit"]:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
}
.search-box .close {
    width: 30px;
    height: 30px;
    background: url(../images/close.png) no-repeat;
    position: absolute;
    right: 25px;
    top: 15px;
    cursor: pointer;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
#header.active {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
#header .nav {
  height: 75px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
#header .nav .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .logo img {
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  font-size: 18px;
  margin-right: 80px;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover a::before {
  opacity: 1;
}
#header .nav .ui.menu .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  line-height: 1.4;
}
#header .nav .ui.menu .menu-box ul.menu > li > a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: var(--color);
  display: block;
  width: 20px;
  height: 30px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  -webkit-clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
  clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 14px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover > ul {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .right {
  margin-left: 240px;
}
#header .nav .ui.menu .right .h-search {
  cursor: pointer;
  margin: 0 22px;
}
#header .nav .ui.menu .right .h-inquiry {
  cursor: pointer;
}
.language-box .zhuyu i {
  font-size: 14px;
}
.language-box .hover-language {
  width: auto;
  position: relative;
  vertical-align: middle;
}
.language-box ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 40px;
  right: -30px;
  z-index: 100;
  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;
}
.language-box ul.sub-menu li a {
  width: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box ul.sub-menu li a img {
  margin-right: 10px;
  width: 25px;
  height: auto;
}
.language-box ul.sub-menu li:hover a {
  background: var(--color);
  color: white;
}
.language-box:hover .hover-language 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;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  left: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 20;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  left: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  left: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  left: 0;
}
#mobile.active:before {
  right: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
.more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 28px;
  height: 65px;
  background-color: var(--color);
  overflow: hidden;
  position: relative;
  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;
  border-radius: 35px;
}
.more::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.more:hover {
  -webkit-box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}
.more:hover::before {
  right: 0;
}
.more i {
  font-size: 14px;
  width: 30px;
  height: 30px;
  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;
  color: black;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: white;
  position: relative;
  z-index: 5;
  margin-left: 30px;
  font-weight: bold;
}
.more span {
  font-size: 22px;
  color: white;
  position: relative;
  z-index: 5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
}
.h-title span {
  font-size: 26px;
  text-transform: uppercase;
  color: var(--color);
}
.h-title h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 5;
  margin-top: 10px;
}
#banner {
  position: relative;
  z-index: 1;
  margin-top: 75px;
}
#banner .banner-content {
  position: relative;
}
#banner .banner-content ul li {
  position: relative;
}
#banner .banner-content ul li .content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#banner .banner-content ul li .content .box h3 {
  font-weight: 700;
}
#banner .banner-content ul li .content .box p {
  font-weight: 500;
}
.lh-1 {
  line-height: 1;
}
.lh-2 {
  line-height: 1.2;
}
.lh-3 {
  line-height: 1.3;
}
.lh-4 {
  line-height: 1.4;
}
.lh-5 {
  line-height: 1.5;
}
.lh-6 {
  line-height: 1.6;
}
.lh-7 {
  line-height: 1.7;
}
.lh-8 {
  line-height: 1.8;
}
.lh-9 {
  line-height: 1.9;
}
.lh-10 {
  line-height: 2;
}
#index-body .about {
  padding: 4.9% 0 5.3%;
  position: relative;
  z-index: 1;
  background: #fff;
  border-bottom-right-radius: 100px;
}
#index-body .about .box .left {
  padding-right: 65px;
  vertical-align: middle;
}
#index-body .about .box .left span.tag {
  color: var(--color);
}
#index-body .about .box .left .tit {
  line-height: 1.2;
  margin-top: 10px;
}
#index-body .about .box .left .tit small {
  display: block;
  color: #000;
  font-size: 36px;
}
#index-body .about .box .left .con {
  line-height: 1.6;
  margin-top: 35px;
}
#index-body .about .box .left .con h1 {
  display: inline;
}
#index-body .about .box .left .more {
  margin-top: 190px;
}
#index-body .about .box .right {
  padding-left: 92px;
  vertical-align: middle;
}
#index-body .about .box .right ul {
  margin: 0 -37px -45px 0;
}
#index-body .about .box .right ul li {
  padding: 0 37px 45px 0;
}
#index-body .about .box .right ul li .ig {
  background-color: #414141;
  border-radius: 100px 0 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  padding: 52px 37px 0 47px;
  height: 357px;
  color: #fff;
}
#index-body .about .box .right ul li .ig .top {
  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;
}
#index-body .about .box .right ul li .ig .top i {
  display: inline-block;
  line-height: 111px;
  min-width: 70px;
}
#index-body .about .box .right ul li .ig .top i img {
  display: inline-block;
  vertical-align: middle;
}
#index-body .about .box .right ul li .ig .top .num {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  padding-left: 20px;
  width: -webkit-calc(100% - 90px);
  width: -moz-calc(100% - 90px);
  width: calc(100% - 90px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#index-body .about .box .right ul li .ig .top .num sup {
  display: inline-block;
  vertical-align: top;
  font-size: 30px;
  letter-spacing: -1px;
  margin-left: 10px;
}
#index-body .about .box .right ul li .ig p {
  margin-top: 25px;
  line-height: 1.6;
}
#index-body .about .box .right ul li .ig:hover {
  background-color: #bc000d;
}
#index-body .about .box .right ul li:nth-child(1) .ig {
  padding-top: 74px;
}
#index-body .about .box .right ul li:nth-child(2) {
  padding-top: 36px;
}
#index-body .about .box .right ul li:nth-child(2) .ig {
  border-radius: 0 100px 0 0;
}
#index-body .about .box .right ul li:nth-child(3) {
  margin-top: -32px;
}
#index-body .about .box .right ul li:nth-child(3) .ig {
  border-radius: 0 0 0 100px;
}
#index-body .about .box .right ul li:nth-child(4) .ig {
  border-radius: 0 0 100px;
}
#index-body .category {
  background-color: #f7f7f7;
  padding: 100px 0 120px;
}
#index-body .category .swiper{
    width: 100%;
}
#index-body .category ul {
  margin: 75px 0 0;
}
#index-body .category ul li.swiper-slide-active {
  padding: 5px 0;
}
#index-body .category ul li.swiper-slide-active .box {
  height: 100%;
  color: white;
}
#index-body .category ul li.swiper-slide-active .box .bg {
  opacity: 1;
}
#index-body .category ul li.swiper-slide-active .box .more {
  background-color: var(--color);
}
#index-body .category ul li.swiper-slide-active .box .more span {
  color: white;
}
#index-body .category ul li {
  height: 730px;
  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: 50px 5px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#index-body .category ul li .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: white;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 0 55px;
  position: relative;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#index-body .category ul li .box .icon {
  position: absolute;
  left: 25px;
  top: 25px;
  z-index: 5;
}
#index-body .category ul li .box .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#index-body .category ul li .box h2 {
  font-family: 'Judson-Bold';
  color: #efefef;
}
#index-body .category ul li .box h4 {
  font-weight: 600;
}
#index-body .category ul li .box .more {
  background-color: transparent;
}
#index-body .category ul li .box .more span {
  color: black;
}
#index-body .category ul li .box .more:hover span {
  color: white;
}
#index-body .category ul li .box .more:hover i {
  background-color: white;
}
#index-body .product {
  padding: 115px 0;
}
#index-body .product .next,
#index-body .product .prev {
  width: 60px;
  height: 60px;
  background-color: #000;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  border: none;
  color: transparent;
  overflow: hidden;
  right: -90px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
#index-body .product .prev{
    right: unset;
    left: -90px;
}
#index-body .product .next i,
#index-body .product .prev i {
  font-size: 20px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#index-body .product .prev i {
    left: 50%;
}
#index-body .product .next:hover,
#index-body .product .prev:hover {
  background-color: var(--color);
}
#index-body .product .left {
  width: 42%;
}
#index-body .product .left ul .box{
  width: 100%;
}
#index-body .product .left ul {
  margin: 145px 0 0;
}
#index-body .product .left ul li .box .img-box {
  display: block;
}
#index-body .product .left ul li .box .img-box img {
  width: auto;
}
#index-body .product .left ul li .box h4 {
  font-weight: 600;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
#index-body .product .left ul li .box h4:hover {
  color: var(--color);
}
#index-body .product .right {
  width: 58%;
  max-width: 800px;
}
#index-body .product .right ul {
  position: relative;
}
#index-body .product .right ul .slick-prev {
  display: none !important;
}
#index-body .product .right ul li .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#index-body .product .right ul li .box .img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#index-body .product .right ul li .box .img img{
    transform: scale(1.5);
}
#index-body .product .right ul li .box .text {
  padding-left: 60px;
  position: relative;
  z-index: 10;
}
#index-body .product .right ul li .box .text .con{
display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#index-body .product .right ul li .box .text h4 {
  font-weight: 600;
}
#index-body .product .right ul .slick-dots {
  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;
  margin-top: 60px;
}
#index-body .product .right ul .slick-dots li {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 0 10px;
  background: #777777;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#index-body .product .right ul .slick-dots li.slick-active {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
  background: #5a5a5a;
}
#index-body .product .right ul .slick-dots li button {
  display: none;
}
#index-body .advantage {
  height: 760px;
  background: url("../images/adv-bg.jpg") no-repeat;
  background-size: cover;
  padding-top: 8%;
}
#index-body .advantage .left {
  color: white;
  max-width: 720px;
}
#index-body .advantage .left .h-title h3 {
  color: white;
  line-height: 1.2;
}
#index-body .advantage .left ul {
  max-width: 715px;
}
#index-body .advantage .left ul li {
  display: none;
}
#index-body .advantage .left ul li.active {
  display: block;
}
#index-body .advantage .right {
  max-width: 700px;
}
#index-body .advantage .right ul {
  margin: -7px;
}
#index-body .advantage .right ul li {
  padding: 7px;
}
#index-body .advantage .right ul li.active .box {
  background-color: var(--color);
  border-color: var(--color);
}
#index-body .advantage .right ul li .box {
  width: 340px;
  height: 90px;
  border: 1px solid white;
  padding: 0 35px;
  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-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
#index-body .advantage .right ul li .box h4 {
  margin-left: 20px;
  font-size: 20px;
  font-weight: 600;
  color: white;
}
#index-body .news {
  padding: 85px 0 125px;
}
#index-body .news ul {
  margin: 75px -50px 0;
  position: relative;
}
#index-body .news ul li {
  padding: 10px 50px;
}
#index-body .news ul li:hover .box {
  background-color: white;
  -webkit-box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
}
#index-body .news ul li:hover .box .more {
  background-color: var(--color);
}
#index-body .news ul li:hover .box .more span {
  color: white;
}
#index-body .news ul li .box {
  border-radius: 15px;
  padding: 40px 35px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#index-body .news ul li .box h4 {
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#index-body .news ul li .box h4:hover {
  color: var(--color);
}
#index-body .news ul li .box p {
  font-weight: 500;
}
#index-body .news ul li .box .more {
  background-color: transparent;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#index-body .news ul li .box .more span {
  color: black;
}
#index-body .news ul li .box .more:hover span {
  color: white;
}
#index-body .news ul li .box .more:hover i {
  background-color: white;
}
#index-body .news ul li .box .date span {
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}
#index-body .news ul .slick-dots {
  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;
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#index-body .news ul .slick-dots li {
  width: 45px;
  height: 8px;
  border-radius: 15px;
  background-color: #ebe3e3;
  padding: 0;
  margin: 0 15px;
}
#index-body .news ul .slick-dots li.slick-active {
  width: 100px;
  background-color: #313131;
}
#index-body .news ul .slick-dots li button {
  display: none;
}
#index-body .news ul .slick-arrow {
  width: 60px;
  height: 60px;
  background-color: #dbdbdb;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  border: none;
  color: transparent;
  overflow: hidden;
}
#index-body .news ul .slick-arrow::before {
  content: '\e76e';
  font-family: 'iconfont';
  font-size: 20px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#index-body .news ul .slick-arrow.slick-prev {
  left: -50px;
}
#index-body .news ul .slick-arrow.slick-next {
  right: -50px;
}
#index-body .news ul .slick-arrow.slick-next::before {
  content: '\e76f';
}
#index-body .news ul .slick-arrow:hover {
  background-color: #000;
}
#footer {
  background-color: #272727;
  padding-top: 85px;
}
#footer .top {
  margin-bottom: 70px;
}
#footer .top ul {
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .top ul li {
  max-width: 320px;
  font-size: 18px;
  color: white;
}
#footer .center {
  padding: 0 15px 70px;
}
#footer .center 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;
}
#footer .center ul li.form {
  max-width: 230px;
}
#footer .center ul li.form form input[type='text'] {
  width: 100%;
  height: 25px;
  border: 1px solid #afafaf;
  border-radius: 5px;
  padding: 0 10px;
  background-color: transparent;
  font-size: 12px;
  color: white;
  margin-bottom: 10px;
}
#footer .center ul li.form form textarea {
  width: 100%;
  height: 85px;
  border: 1px solid #afafaf;
  border-radius: 5px;
  padding: 5px 10px;
  background-color: transparent;
  font-size: 12px;
  color: white;
  margin-bottom: 10px;
}
#footer .center ul li.form form input::-webkit-input-placeholder,
#footer .center ul li.form form textarea::-webkit-input-placeholder {
  color: #afafaf;
}
#footer .center ul li.form form input[type='submit'] {
  width: 65px;
  height: 25px;
  border: none;
  border-radius: 5px;
  background-color: white;
  color: #000;
  font-size: 12px;
  text-transform: uppercase;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  margin-bottom: 10px;
}
#footer .center ul li.form form input[type='submit']:hover {
  background-color: var(--color);
  color: white;
}
#footer .center ul li.qrcode #ewm canvas,
#footer .center ul li.qrcode #ewm img {
  width: 110px;
  height: 110px;
  border: 8px solid white;
}
#footer .center ul li.qrcode .share {
  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 .center ul li.qrcode .share a {
  color: #fff;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#footer .center ul li.qrcode .share a:hover {
  color: var(--color);
}
#footer .center ul li.qrcode .share a i {
  font-size: 20px;
}
#footer .center ul li.link span {
  border-bottom: 1px solid transparent;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#footer .center ul li.link span:hover {
  color: var(--color);
  border-color: var(--color);
}
#footer .center ul li h4 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  margin-bottom: 60px;
}
#footer .center ul li span {
  font-size: 16px;
  color: white;
  display: block;
  font-weight: 300;
  margin-bottom: 20px;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#footer .center ul li span:last-child {
  margin-bottom: 0;
}
#footer .bottom.container .box {
  height: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .bottom.container .box span {
  font-size: 14px;
  color: white;
  font-weight: 300;
}
#footer .bottom.container .box span a {
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}
#footer .bottom.container .box span a:hover {
  color: var(--color);
}
#footer .bottom.container .box span img {
  width: 220px;
  height: auto;
  padding-top: 2px;
}
@media screen and (max-width: 1700px) {
  #index-body .about .box {
    padding-left: 0;
  }
  #index-body .about .box .right {
    padding-left: 0;
  }
  #header .nav .ui.menu .right {
    margin-left: 70px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 60px;
  }
  #index-body .about .box .right ul li .ig .top .num {
    font-size: 48px;
  }
  #index-body .about .box .right ul li .ig .top .num sup {
    font-size: 22px;
  }
  #index-body .about .box .right ul li .ig {
    padding: 37px;
    height: 320px;
  }
  #index-body .about .box .right ul li .ig p {
    margin-top: 15px;
  }
  #index-body .product .right {
    padding-left: 60px;
  }
  #index-body .advantage .left {
    color: white;
    max-width: 40%;
  }
  #index-body .product .container{
      width: 85%;
  }
}
@media screen and (max-width: 1450px) {
  #index-body .about .box .right ul li .ig {
    padding: 52px 20px 0 30px;
  }
  #index-body .about .box .right ul li .ig .top i {
    min-width: 45px;
  }
  #index-body .about .box .right ul li .ig .top i img {
    width: 45px;
  }
  .more {
    padding: 0 15px 0 25px;
  }
  .more span {
    font-size: 18px;
  }
  #index-body .category ul li {
    height: 560px;
  }
  #index-body .advantage .right ul li .box {
    width: 280px;
    height: 75px;
  }
  #index-body .advantage .right ul li .box h4 {
    font-size: 16px;
  }
  #index-body .advantage .right {
    max-width: 575px;
  }
}
@media screen and (max-width: 1250px) {
  #index-body .about .box .right {
    padding-left: 0;
  }
  #index-body .about .box .right ul li .ig {
    padding: 35px !important;
    height: 280px;
  }
  #index-body .about .box .right ul li .ig p {
    margin-top: 15px;
    font-size: 14px;
  }
  #index-body .about .box .left .tit {
    font-size: 39px;
  }
  #index-body .about .box .left .tit small {
    font-size: 30px;
  }
  #index-body .about .box .right ul li .ig .top i {
    width: 30%;
    line-height: 73px;
  }
  #index-body .about .box .right ul li .ig .top .num {
    font-size: 40px;
    padding-left: 5px;
  }
  #index-body .about:after {
    font-size: 300px;
  }
  #index-body .about .box .right ul li {
    padding: 0 20px 45px 0;
  }
  #index-body .about .box .left .more {
    margin-top: 65px;
  }
  #index-body .about .box .left .tit {
    font-size: 30px;
  }
  #index-body .category ul li .box {
    padding: 0 30px;
  }
  #index-body .category ul li {
    height: 520px;
  }
  #index-body .product .right ul li .box .text p {
    margin: 20px 0;
  }
  #index-body .product .right ul li .box .text {
    padding-left: 29px;
  }
  #index-body .product {
    padding: 115px 0;
  }
  #index-body .product .right ul .slick-dots {
    bottom: -50px;
  }
  #index-body .advantage {
    height: auto;
    padding: 80px 0;
  }
  #index-body .advantage .left {
    max-width: 100%;
    width: 100%;
  }
  #index-body .advantage .right {
    max-width: 100%;
    width: 100%;
    margin-top: 60px;
  }
  #index-body .advantage .right ul li {
    width: 33.3333333%;
  }
  #index-body .advantage .right ul li .box {
    width: 100%;
  }
  .h-title h3 {
    line-height: 1.2;
  }
  #index-body .advantage .left ul {
    max-width: 100%;
  }
  #footer .top ul li {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 1000px) {
  .more{
      height: 50px;
  }
      .more span {
        font-size: 16px;
    }
.more i{
    margin-left: 15px;
}
  #index-body .about .box .left {
    width: 100%;
    padding: 0 0 20px;
  }
  #index-body .about .box .right {
    width: 100%;
  }
  #banner {
    margin-top: 40px;
  }
  #banner .banner-content ul li .content .box {
    width: 100%;
  }
  #banner .banner-content ul li .content .right {
    display: none;
  }
  #banner .banner-content ul li .content .box p {
    margin: 15px 0 25px;
  }
  #index-body .about .box .right {
    margin-top: 60px;
  }
  #index-body .about .box .right ul {
    margin: 0 -20px -45px;
  }
  #index-body .about .box .right ul li {
    padding: 0 20px 45px;
  }
  #index-body .about {
    padding: 80px 0 100px;
  }
  #index-body .category ul li.swiper-slide-active {
    padding: 10px 5px;
  }
  #index-body .category ul {
    margin: 60px 0 0;
  }
  #index-body .category ul li {
    height: auto;
    padding: 10px 5px;
  }
  #index-body .category ul li .box {
    padding: 30px;
  }
  #index-body .category {
    padding: 75px 0;
  }
  #index-body .product .container .left {
    width: 100%;
  }
  #index-body .product .container .right {
    width: 100%;
    margin-top: 60px;
    padding-left: 0;
  }
  #index-body .product .left ul li .box .img {
    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;
  }
  #index-body .product .next,
  #index-body .product .prev {
    display: none;
  }
  .h-title h3 {
    font-size: 30px;
  }
  .h-title h3 br {
    display: none;
  }
  #index-body .advantage .right ul li {
    width: 50%;
  }
  #index-body .news {
    padding: 85px 0;
  }
  #footer .top ul li {
    width: 50%;
    max-width: 48%;
    margin: 15px 0;
  }
  #footer .center ul li.link {
    display: none;
  }
  #footer .center ul li.form {
    max-width: 50%;
  }
}
@media screen and (max-width: 700px) {
  #index-body .about .box .left .con {
    margin-top: 20px;
  }
  #index-body .about .box .left .more {
    margin-top: 20px;
  }
  #index-body .about .box .right ul {
    margin: 0 -15px -20px 0;
  }
  #index-body .about .box .right ul li {
    padding: 0 15px 20px 0;
  }
  #banner .banner-content ul li .content .box p {
    margin-bottom: 0;
  }
  #banner .banner-content ul li .content .box a.more {
    display: none;
  }
  .more {
    height: 50px;
  }
  #index-body .product .right ul li .box .img {
    display: none;
  }
  #index-body .product .right ul li .box .text {
    padding-left: 0;
    width: 100%;
  }
  #index-body .product {
    padding: 65px 0;
  }
  #index-body .product .right ul li .box .text h4 {
    font-size: 24px;
  }
  #index-body .advantage {
    display: none;
  }
  #footer .bottom.container .box {
    height: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 0;
  }
}
@media screen and (max-width: 500px) {
  #index-body .about .box .left span.tag {
    font-size: 18px;
  }
  #index-body .about .box .left .tit {
    font-size: 29px;
  }
  #index-body .about .box .left .tit small {
    font-size: 24px;
  }
  #index-body .about .box .right {
    display: none;
  }
  #banner .banner-content ul li .content .box p {
    display: none;
  }
  #index-body .about {
    padding: 65px 0;
  }
  #index-body .news {
    padding: 30px 0 65px;
  }
  #index-body .news ul {
    margin: 40px -50px 0;
  }
  #footer .top ul li {
    width: 100%;
    max-width: 100%;
  }
  #footer .center ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .center ul li.form,
  #footer .center ul li.qrcode {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    text-align: center;
  }
  #footer .center ul li.form .share,
  #footer .center ul li.qrcode .share {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
  }
  #footer .center ul li.form .share a,
  #footer .center ul li.qrcode .share a {
    margin: 0 15px;
  }
  #footer .center ul li h4 {
    margin-bottom: 20px;
  }
  #footer .center {
    padding: 0 15px 31px;
  }
  #footer .bottom.container .box span {
    text-align: center;
  }
  #footer .top {
    margin-bottom: 30px;
  }
  #footer {
    padding-top: 45px;
  }
}

















.about-page {
    background-color: #faf9f9;
    /*overflow: hidden;*/
    }

.about-page .about-1 {
    background: url(../images/ab-wz.png) no-repeat center top;
    background-size: 100% auto;
    padding-top: 8.542%;
        background-color: #faf9f9;
}
.about-page .about-1 .top .left {
    width: 55%;
    padding-right: 13%;
}
.about-page .about-1 .top .left span {
    font-size: 18px;
    line-height: 1.8;
    padding-left: 21px;
    position: relative;
}
.about-page .about-1 .top .left span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000000;
}
.about-page .about-1 .top .left .title {
    font-size: 90px;
    font-weight: bold;
    line-height: 1;
    color: #030303;
}
.about-page .about-1 .top .left .title em {
    display: block;
    text-align: right;
}
.about-page .about-1 .top .right {
    width: 45%;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.65);
    padding-top: 78px;
}
.about-page .about-1 .img {
    padding-top: 65px;
}
.about-page .about-1 .img .box {
    height: 619px;
    position: relative;
    overflow: hidden;
}
.about-page .about-1 .img .box .play{
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 25px;
}
.about-page .about-1 .img .box .play span{
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    text-align: center;
    line-height: 60px;
    padding-left: 5px;
    position: relative;
    z-index: 1;
}
.about-page .about-1 .img .box .play span::before,
.about-page .about-1 .img .box .play span::after{
    content: '';
    position: absolute;
    z-index: -1;
    top: -15px;
    left: -15px;
    bottom: -15px;
    right: -15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    -webkit-animation: ks 5s linear infinite;
    -moz-animation: ks 5s linear infinite;
    animation: ks 5s linear infinite;
}
.about-page .about-1 .img .box .play span::before{
    -webkit-animation-delay: 1.7s;
    -moz-animation-delay: 1.7s;
    animation-delay: 1.7s;
}
.about-page .about-1 .img .box .mask {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(/fashidachina/2025/09/26/about-11.jpg);
    background-position: center;
    -webkit-transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.about-page .about-1 .bottom {
    padding: 72px 61px 0 42px;
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    opacity: 0.65;
}
.about-page .about-1 .data {
    padding: 83px 7px 0px 20px;
}
.about-page .about-1 .data 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-1 .data ul li {
    position: relative;
    padding: 0 54px 0 51px;
}
.about-page .about-1 .data ul li:nth-child(2) p{
    margin-left: 10px;
}
.about-page .about-1 .data ul li .num {
    font-size: 110px;
    font-weight: bold;
    font-weight: bold;
    color: var(--color);
    opacity: 0.17;
    line-height: 1;
}
.about-page .about-1 .data ul li p {
    position: absolute;
    top: 43%;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}
.about-page .about-1 .data ul li::after {
    content: '';
    position: absolute;
    top: 34%;
    right: 0;
    width: 1px;
    height: 58px;
    background-color: #000000;
    opacity: 0.1;
}
.about-page .about-1 .data ul li:first-child {
    padding-left: 0;
}
/*.about-page .about-1 .data ul li:last-child {
  padding-right: 0;
}*/
.about-page .about-1 .data ul li:last-child p{
    padding-left: 15px;
}
.about-page .about-1 .data ul li:last-child::after {
    display: none;
}
.about-page .about-2 {
    background: url(/fashidachina/2025/10/17/about3-bg-2.jpg) no-repeat center 120px;
    margin-top: 129px;
    padding-bottom: 40px;
}
.about-page .about-2 ul li {
    color: #fff;
    padding-bottom: 51px;
    position: relative;
    margin-bottom: 110px;
}
.about-page .about-2 ul li .ig {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.about-page .about-2 ul li .img {
    width: 59.267%;
}
.about-page .about-2 ul li .text {
    width: 40.733%;
    padding: 0 0 150px 0px;
    transform: translateX(-100px);
}
.about-page .about-2 ul li .text .tit {
    font-size: 40px;
    line-height: 1.2;
    font-weight: bold;
    color: white;
}
.about-page .about-2 ul li .text .con {
    font-size: 18px;
    line-height: 1.8;
    color: white;
    /*opacity: 0.65;*/
        margin-top: 20px;
    margin-bottom: 10px;
}
.about-page .about-2 ul li .nr {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 32px;
}
.about-page .about-2 ul li .nr .left {
    width: 70.466%;
    text-align: right;
    padding-right: 60px;
}
.about-page .about-2 ul li .nr .left span {
    font-size: 18px;
    line-height: 1.8;
    padding: 0 75px 0 21px;
    position: relative;
}
.about-page .about-2 ul li .nr .left span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
}
.about-page .about-2 ul li .nr .left .title {
    font-size: 117px;
    line-height: 1;
    font-weight: bold;
}
.about-page .about-2 ul li .nr .right {
    width: 29.534%;
    height: 1px;
    background-color: #ffffff;
    opacity: 0.26;
}
.about-page .about-2 ul li:nth-child(odd) .ig {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.about-page .about-2 ul li:nth-child(even) .ig {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.about-page .about-2 ul li:nth-child(even) .ig .text {
    padding: 41px 44px 0 0;
}
.about-page .about-2 ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}
.about-page .about-3 {
    padding: 10% 0 6.407%;
}
.about-page .about-3 .left {
    width: 58.666%;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}
.about-page .about-3 .left span {
    font-size: 18px;
    line-height: 1.8;
    padding-left: 21px;
    position: relative;
}
.about-page .about-3 .left span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000000;
}
.about-page .about-3 .left .title {
    font-size: 80px;
    /*color: var(--color);*/
    line-height: 1;
    font-weight: bold;
    margin-top: 21px;
}
.about-page .about-3 .left .title em {
    display: block;
}
.about-page .about-3 .right {
    width: 41.334%;
    padding-left: 101px;
    position: relative;
}
.about-page .about-3 .right .tag {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}
.about-page .about-3 .right .tag ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    height: 100%;
}
.about-page .about-3 .right .tag ul li {
    list-style: none;
    height: 25%;
    position: relative;
    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-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}
.about-page .about-3 .right .tag ul li span {
    position: absolute;
    width: 1px;
    height: 0;
    background: #20282d;
    left: 27px;
    bottom: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.about-page .about-3 .right .tag ul li a {
    width: 54px;
    height: 54px;
    line-height: 54px;
    background: #fff;
    color: #20282d;
    position: relative;
    text-align: center;
    border: 1px solid #e6e6e6;
    z-index: 2;
    font-size: 20px;
    font-weight: bold;
}
.about-page .about-3 .right .tag ul li.current span {
    height: 100%;
    bottom: auto;
    top: 0;
}
.about-page .about-3 .right .tag ul li.current a {
    background-color: #000000;
    color: #fff;
    border-color: #000;
}
.about-page .about-3 .right .content ul li {
        background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, rgb(218 221 233)), to(rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(rgb(218 221 233) 90%, rgba(255, 255, 255, 0))
    background: -moz-linear-gradient(rgba(241, 238, 226, 0.8) 90%, rgba(255, 255, 255, 0));
        background: linear-gradient(rgb(218 221 233) 90%, rgba(255, 255, 255, 0));
    padding: 60px 24px 88px 43px;
    margin-bottom: 60px;
}
.about-page .about-3 .right .content ul li .tit {
    font-size: 80px;
    line-height: 1;
    color: #030303;
    font-weight: bold;
}
.about-page .about-3 .right .content ul li .con {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.65);
    margin-top: 21px;
}
.about-page .about-3 .right .content ul li:last-child {
    margin-bottom: 0;
}
.about-page .about-3 .right .content ul li.active {
       background: #f3f3f3;
       border-radius: 20px;
}
@media screen and (max-width: 1680px) {
    .about-page .about-1 .data ul li {
        padding: 0 50px 0 0;
    }
    .about-page .about-2 {
        background-position-y: 200px;
        background-size: cover;
    }
    .about-page .about-2 ul li {
        margin-bottom: 60px;
    }
    .about-page .about-3 .left .title {
        font-size: 72px;
    }
}
@media screen and (max-width: 1440px) {
    .about-page .about-2{
        background-position-y: 140px;
    }
    .about-page .about-1 .top .left {
        padding-right: 8.5%;
    }
    .about-page .about-1 .data ul li .num {
        font-size: 90px;
    }
    .about-page .about-2 ul li .text .tit {
        font-size: 46px;
    }
    .about-page .about-2 ul li .nr .left .title {
        font-size: 90px;
    }
    .about-page .about-2 ul li .text .con {
        font-size: 16px;
    }
    .about-page .about-3 .left .title {
        font-size: 66px;
    }
    .about-page .about-1 .top .left .title{
        font-size: 60px;
    }
}
@media screen and (max-width: 1280px) {
    .about-page .about-1 .top .left {
        padding-right: 6%;
    }
    .about-page .about-1 .data ul li {
        padding: 0 26px 0 0;
    }
    .about-page .about-1 .data ul li .num {
        font-size: 60px;
    }
    .about-page .about-1 .data ul li p{
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: auto;
      white-space: nowrap;
    }
    .about-page .about-1 .data ul li:after{
      content: none;
    }
    .about-page .about-2 {
        background-position-y: 90px;
    }
    .about-page .about-2 ul li {
        margin-bottom: 30px;
    }
    .about-page .about-2 ul li .text {
        padding: 0 0 40px 0;
    }
    .about-page .about-2 ul li .text .tit {
        font-size: 40px;
    }
    .about-page .about-2 ul li:nth-child(even) .ig {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .about-page .about-2 ul li:nth-child(even) .text {
        padding: 0 40px 0 0;
    }
    .about-page .about-3 .right .content ul li {
        padding: 40px 20px;
    }
}
@media screen and (max-width: 1100px) {
    .about-page .about-2 ul li .nr .left .title {
        font-size: 83px;
    }
    .about-page .about-3 .left .title {
        font-size: 53px;
    }
    .about-page .about-3 .right .content ul li {
        padding: 40px 20px;
    }
    .about-page .about-3 .right .content ul li .tit {
        font-size: 60px;
    }
    .about-page .about-3 .right .content ul li .con {
        margin-top: 10px;
    }
}
@media screen and (max-width: 1000px) {
    .about-page .about-1 .top .left {
        width: 100%;
        padding-right: 0;
    }
    .about-page .about-1 .top .right {
        width: 100%;
    }
    .about-page .about-1 .img {
        padding-top: 40px;
    }
    .about-page .about-1 .bottom {
        padding: 30px 0 0 0;
    }
    
    .about-page .about-1 .data ul{
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    .about-page .about-1 .data ul li{
      width: 50%;
      text-align: center;
    }
    .about-page .about-2 ul li {
        padding-bottom: 0;
    }
    .about-page .about-2 ul li .ig {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .about-page .about-2 ul li .img {
        width: 100%;
    }
    .about-page .about-2 ul li .text {
        width: 100%;
        padding: 40px 0 0 0;
        transform:none;
    }
    .about-page .about-2 ul li .nr {
        position: initial;
        margin-top: 20px;
    }
    .about-page .about-2 ul li .nr .left {
        text-align: left;
    }
    .about-page .about-2 ul li .nr .left .title {
        font-size: 54px;
    }
    .about-page .about-2 ul li:nth-child(even) .ig .text {
        padding: 20px 0;
    }
    .about-page .about-3 .left {
        position: initial;
        width: 100%;
    }
    .about-page .about-3 .right {
        width: 100%;
        margin-top: 30px;
    }
    .about-page .about-1 .top .left .title {
        font-size: 40px;
        margin-top: 15px;
    }
}
@media screen and (max-width: 700px) {
    .about-page .about-1 {
        background: transparent;
        padding-top: 0;
    }
    .about-page .about-2 ul li .nr .left {
        width: 100%;
        padding-right: 0;
    }
    .about-page .about-2 ul li .nr .right {
        display: none;
    }
    .about-page .about-3 .left .title {
        font-size: 46px;
    }
        .elementor-9049 .elementor-element.elementor-element-093b5d5 .pxl-heading .pxl-item--title {
        font-size: 30px !important;
    }
    .about-page .about-1 .data ul li .num{
      font-size: 48px;
    }
}
@media screen and (max-width: 500px) {
    .about-page .about-1 .top .left .title {
        font-size: 30px;
        line-height: 1.2;
    }
    .about-page .about-1 .top .right {
        /*margin-top: 20px;*/
        font-size: 16px;
        line-height: 1.8;
        padding-top: 20px;
    }
    .about-page .about-1 .img {
        padding-top: 20px;
    }
    .about-page .about-1 .img .box {
        height: 300px;
    }
    .about-page .about-1 .bottom {
        font-size: 16px;
        line-height: 1.8;
    }
    .about-page .about-2 ul li .text .tit {
        font-size: 32px;
    }
    .about-page .about-2 ul li .nr .left .title {
        font-size: 40px;
        line-height: 1.4;
    }
    .about-page .about-3 .left .title {
        font-size: 32px;
        line-height: 1.6;
    }
     
    .about-page .about-3 .right {
        padding-left: 0;
    }
    .about-page .about-3 .right .tag {
        display: none;
    }
    .about-page .about-3 .right .content ul li {
        margin-bottom: 20px;
        background: rgba(241, 238, 226, 0.8);
        padding: 30px 15px;
    }
    .about-page .about-3 .right .content ul li .tit {
        font-size: 40px;
    }
    .about-page .about-3 .right .content ul li .con {
        font-size: 16px;
        line-height: 1.8;
    }
    .about-page .about-1 .data ul li{
      width: 100%;
      margin: 10px 0;
    }
}

.inner-banner {
    padding: 79px 0 69px;
    background-color: #faf9f9;
    background-size: 100% 100%;
}
.inner-banner .box .ig {
    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;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 79px 0 45px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.85);
}
.inner-banner .box .ig .left {
    position: relative;
    z-index: 1;
    width: 64%;
}
.inner-banner .box .ig .left .mbx {
    font-size: 18px;
    line-height: 1.8;
    /*text-transform: uppercase;*/
    position: relative;
}
.inner-banner .box .ig .left .tit {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    margin-top: 5px;
    position: relative;
}
.inner-banner .box .ig .left::after {
    content: '';
    width: 299px;
    height: 299px;
    position: absolute;
    bottom: 40px;
    left: -126px;
    z-index: -1;
    background: url(../images/in-icon.png) no-repeat;
}
.inner-banner .box .ig .right {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.8;
    width: 36%;
    margin-bottom: 10px;
}
.pxl-service-grid-layout2 .item--title{
  line-height: 1.4 !important;
}
@media screen and (max-width: 1680px) {
    .inner-banner .box .ig .left::after {
        left: -80px;
    }
    .inner-banner .box .ig .left .tit {
        font-size: 70px;
    }
     
    .elementor-9049 .elementor-element.elementor-element-093b5d5 .pxl-heading .pxl-item--title{
        line-height: 1.2!important;
    }
    .elementor-9049 .elementor-element.elementor-element-18a1d24 .pxl-heading .pxl-item--title{
        line-height: 1.2!important;
    }
}
@media screen and (max-width: 1440px) {
    .inner-banner .box .ig .left::after {
        left: -70px;
    }
    .inner-banner .box .ig .left .tit {
        font-size: 60px;
    }
}
@media screen and (max-width: 1280px) {
    .inner-banner .box .ig .left::after {
        left: -50px;
    }
    .inner-banner .box .ig .left .tit {
        font-size: 50px;
    }
}
@media screen and (max-width: 1100px) {
    .inner-banner .box .ig .left .tit {
        font-size: 40px;
    }
}
@media screen and (max-width: 1000px) {
    .inner-banner {
        padding: 60px 0 30px;
    }
    .inner-banner .box .ig {
        display: block;
        padding: 30px 0;
    }
    .inner-banner .box .ig .left {
        width: 100%;
    }
    .inner-banner .box .ig .left::after {
        display: none;
    }
    .inner-banner .box .ig .right {
        display: none;
    }
    .xian {
        display: none;
    }
}
@media screen and (max-width: 700px) {
    .inner-banner .box .ig .left .mbx {
        font-size: 16px;
    }
    .inner-banner .box .ig .left .tit {
        font-size: 30px;
        line-height: 1.2;
    }
}
@media screen and (max-width: 500px) {
    .inner-banner .box .ig {
        padding: 20px 0;
    }
    .inner-banner .box .ig .left .mbx {
        font-size: 14px;
        line-height: 2;
    }
    .inner-banner .box .ig .left .tit {
        display: none;
    }
}
.sus-page .sus-1 {
  padding: 127px 0 112px;
  position: relative;
  z-index: 1;
  background: var(--color);
}
.sus-page .sus-1 .box {
  width: 51.614%;
  color: #fff;
  padding: 0 160px 0 87px;
}
.sus-page .sus-1 .box .mbx {
  color: #fff;
  font-size: 18px;
  line-height: 32px;
}
.sus-page .sus-1 .box .title {
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 2px;
  font-weight: bold;
  margin-top: 20px;
}
.sus-page .sus-1 .box .con {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 1px;
  font-weight: 300;
  margin-top: 33px;
}
.sus-page .sus-1 .box .con p {
  margin-top: 59px;
}
.sus-page .sus-1 .box .con p:first-child {
  margin-top: 0;
}
.sus-page .sus-1 .box .img {
  margin-top: 69px;
}
.sus-page .sus-1 .imgs {
  position: absolute;
  right: 0;
  top: 0;
  width: 48.386%;
  width: 100%;
  height: 100%;
  background-position: right top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
  background-attachment: fixed;
}
.sus-page .sus-1 .wz {
  position: absolute;
  top: 42%;
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 450px;
  line-height: 1;
  letter-spacing: 18px;
  font-weight: bold;
}
.sus-page .sus-2 {
  background: #f5f5f5;
  padding: 100px 0;
}
.sus-page .sus-2 .ui.container {
  max-width: 1776px;
}
.sus-page .sus-2 .title {
  font-size: 60px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  max-width: 600px;
}
.sus-page .sus-2 .box {
  /*max-width: 1330px;*/
  margin: 50px 0 0 auto;
  color: #fff;
}
.sus-page .sus-2 .box ul li {
  position: relative;
  padding-top: 23px;
}
.sus-page .sus-2 .box ul li .line {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #cfcfcf;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.sus-page .sus-2 .box ul li .ig {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
      color: #000;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 58px;
}
.sus-page .sus-2 .box ul li .ig .left {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 40%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 21.6px;
}
.sus-page .sus-2 .box ul li .ig .left span {
  font-size: 20px;
  line-height: 36px;
  
  padding-top: 10px;
}
.sus-page .sus-2 .box ul li .ig .left em {
  font-size: 50px;
  line-height: 1.2;
  padding-right: 40px;
  font-weight: bold;
}
.sus-page .sus-2 .box ul li .ig .right {
  width: 60%;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
}
.sus-page .sus-2 .box ul li .ig .right em{
  font-weight: 700;
}
.loader {
  background-color: var(--color);
  display: block;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  width: 100vw;
  z-index: 10;
}
.loader .bg {
  -webkit-animation: imageLoading 2s ease-in-out infinite;
  -moz-animation: imageLoading 2s ease-in-out infinite;
  animation: imageLoading 2s ease-in-out infinite;
  -webkit-animation-direction: alternate;
  -moz-animation-direction: alternate;
  animation-direction: alternate;
  background-color: var(--color2);
}
.loader .bg img {
  width: 100%;
  opacity: 0;
}
.loading {
  background: var(--color2);
}
@-webkit-keyframes imageLoading {
  form {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    -webkit-transform: translate3d(0, -130%, 0);
    transform: translate3d(0, -130%, 0);
  }
}
@-moz-keyframes imageLoading {
  form {
    -moz-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    -moz-transform: translate3d(0, -130%, 0);
    transform: translate3d(0, -130%, 0);
  }
}
@keyframes imageLoading {
  form {
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    -webkit-transform: translate3d(0, -130%, 0);
    -moz-transform: translate3d(0, -130%, 0);
    transform: translate3d(0, -130%, 0);
  }
}
.inner-page .slideBarBox .slideBarLeft {
    width: 30% !important;
    position: sticky;
    top: 100px;
}
.inner-page.news-page .slideBarBox  {
    padding-left: 4%;
    padding-right: 0;
}
.inner-page .slideBarBox .slideBarLeft .slide {
    margin-bottom: 40px;
    padding: 50px;
    background-color: #fff;
}
.inner-page .slideBarBox .slideBarLeft .slide span.h5 {
    font-size: 20px;
    line-height: 36px;
    font-weight: bold;
    display: block;
    margin-bottom: 1em;
}
.inner-page .slideBarBox .slideBarLeft .slide form {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    background-color: white;
}
.inner-page .slideBarBox .slideBarLeft .slide form input {
    width: 100%;
    padding: 1em;
    border: none;
    background-color: transparent;
    color: black;
}
.inner-page .slideBarBox .slideBarLeft .slide form input[type="submit"] {
    width: 4em;
    background-image: url("../images/icon-search-black.png");
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
}
.inner-page .slideBarBox .slideBarLeft .slide.search {
    background-color: var(--color);
    color: white;
    border-radius: 20px;
    background-image: -webkit-linear-gradient(315deg, var(--color), var(--color2));  
     background-image: -moz-linear-gradient(315deg, var(--color), var(--color2));   
     background-image: linear-gradient(170deg, var(--color), var(--color2));
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li:last-child {
    margin-bottom: 0;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li a.img {
    width: 30%;
    background-size: cover;
    background-position: center;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li .content {
    width: 70%;
    padding: 10px 0;
    padding-left: 5%;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li .content span.h6 {
    font-size: 16px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /*-webkit-line-clamp: 2;
    overflow: hidden;*/
    line-height: 30px;
    height: 3.2em;
}
.inner-page .slideBarBox .slideBarLeft .slide .postList ul li .content time {
    display: block;
    font-size: 14px;
    margin-top: .5em;
}
.inner-page .slideBarBox .slideBarLeft .slide .nav {
    font-size: 14px;
    line-height: 28px;
    font-weight: 500;
}
.inner-page .slideBarBox .slideBarLeft .slide .nav ul li {
    margin-bottom: 1em;
}
.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a {
    padding: 1.5em;
    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;
    color: white;
    background-color: var(--color);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a i {
    width: 1.5em;
    height: 1.5em;
    border-radius: 100%;
    background-color: white;
    color: black;
    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;
}
.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a:hover,
.inner-page .slideBarBox .slideBarLeft .slide .nav ul li a.active {
    background-color: var(--color);
     background-image: -webkit-linear-gradient(315deg, var(--color), var(--color2));   
    background-image: -moz-linear-gradient(315deg, var(--color), var(--color2));   
    background-image: linear-gradient(170deg, var(--color), var(--color2));
}
.inner-page .slideBarBox .slideBarLeft .slide:last-child {
    margin-bottom: 0;
        border-radius: 20px;
}
.inner-page .slideBarBox .slideBarRight {
    width: 70% !important;
    padding-left: 4%;
}
.product-page h1 {
    font-size: 32px;
    font-weight: bold;
}
.inner-page .product_list ul {
    margin: -15px;
}
.inner-page .product_list ul li {
    padding: 15px;
}
.inner-page .product_list ul li a.img-box {
    display: block;
}
.inner-page .product_list ul li span.h6 {
    font-size: 20px;
    line-height: 36px;
    min-height: 4.5rem;
    font-weight: 500;
    display: block;
    margin: 1em 0 .5em;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.inner-page .product_list ul li span.h6:hover {
    color: var(--color);
}
.inner-page .m-page {
    margin: 60px 0;
    text-align: center;
    font-size: 18px;
    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;
}
.inner-page .m-page a,
.inner-page .m-page span {
    width: 2.5em;
    height: 2.5em;
    border-radius: 5px;
    border: 1px solid #c7c7c7;
    display: inline-block;
    text-align: center;
    line-height: 2.5em;
    margin: 0 .3em;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.inner-page .m-page a:hover,
.inner-page .m-page span.current {
    background-color: var(--color);
    color: white;
     background-image: -webkit-linear-gradient(315deg, var(--color), var(--color2));   
    background-image: -moz-linear-gradient(315deg, var(--color), var(--color2));   
    background-image: linear-gradient(170deg, var(--color), var(--color2));
}
.product-page {
    padding: 20px 0;
        background-color: #faf9f9;
}
.inner-page .form ul {
    margin: -10px;
}
.inner-page .form ul li {
    padding: 10px;
    font-size: 14px;
}
.inner-page .form ul li label {
    display: block;
    margin-bottom: .5em;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
}
.inner-page .form ul li input,
.inner-page .form ul li textarea {
    display: block;
    width: 100%;
    border: none;
    background-color: transparent;
    padding: .5em 0;
    border-bottom: 1px solid #999;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.inner-page .form ul li input:focus,
.inner-page .form ul li textarea:focus {
    border-color: var(--color);
}
.inner-page .form ul li textarea {
    height: 80px;
}
.inner-page .form ul li.wid-100 {
    width: 100%;
}
.news-page .news-1 {
    padding: 50px 0;
    background-color: #faf9f9;
}
.news-page .news-1 .list ul {
    margin: -15px;
}
.news-page .news-1 .list ul li {
    padding: 15px;
}
.news-page .news-1 .list ul li a.img-box {
    display: block;
}
.news-page .news-1 .list ul li .content {
    -o-box-shadow: 0px 5px 43px 0px rgba(27, 26, 26, 0.06);
    -webkit-box-shadow: 0px 5px 43px 0px rgba(27, 26, 26, 0.06);
    box-shadow: 0px 5px 43px 0px rgba(27, 26, 26, 0.06);
    padding: 10%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
        border-radius: 20px;
    z-index: 1;
    background-color: white;
}
.news-page .news-1 .list ul li .content time {
    font-size: 14px;
    line-height: 28px;
    display: block;
    margin-bottom: 1em;
}
.news-page .news-1 .list ul li .content span.h6 {
    font-size: 20px;
    font-weight: 500;
    display: block;
    line-height: 36px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.news-page .news-1 .list ul li .content .text {
    font-size: 16px;
    line-height: 28px;
}
.news-page .news-1 .list ul li .content .pre {
    position: relative;
    z-index: 1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.news-page .news-1 .list ul li .content .pre .text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /*-webkit-line-clamp: 5;
    overflow: hidden;
    height: 9em;*/
}
.news-page .news-1 .list ul li .content a.link {
    margin-top: 2em;
}
.news-page .news-1 .list ul li:hover .content {
    margin-top: -30px;
}
.news-page .news-1 .list ul li:hover .content span.h6 {
    opacity: 0;
}
.news-page .news-1 .list ul li:hover .content .text {
    opacity: 1;
}
.news-page .news-1 .list ul li:hover .content .pre {
    padding-bottom: 30px;
}
.newdet-page {
    padding: 50px 0;
        background-color: #faf9f9;
}
.newdet-page .slideBarRight time {
    font-size: 14px;
    line-height: 28px;
    display: block;
}
.m-link Auxil-through{
    font-size: 14px;
    line-height: 28px;
}
.newdet-page .slideBarRight h1 {
    font-size: 30px;
    line-height: 1.4;
    font-weight: bold;
}
.newdet-page .slideBarRight .text {
    margin: 2em 0;
}
.newdet-page .slideBarRight .text p {
    margin-top: 1em;
}
.newdet-page .slideBarRight .text p:first-child {
    margin-top: 0;
}
.newdet-page .slideBarRight .share {
    font-size: 14px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2em;
}
.newdet-page .slideBarRight .share a {
    margin-left: 1em;
    width: 1.5em;
    height: 1.5em;
    background-color: black;
    color: white;
    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;
    border-radius: 100%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.newdet-page .slideBarRight .share a:hover {
    background-color: var(--color);
}
.newdet-page .slideBarRight span.h5 {
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
    margin: 2em 0 1em;
    display: block;
}
.inner-page .side-title h4 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    color: #000000;
}
.contact-page {
    padding: 60px 0 0 0;
}
.contact-page .contact-1 {
    padding: 85px 120px 65px 90px;
}
.contact-page .contact-2 {
    padding: 100px 0 110px;
}
.contact-page .contact-2 ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}
.contact-page .contact-2 ul li {
    max-width: 35%;
    width: auto;
    /*padding-left: 40px;*/
}
.contact-page .contact-2 ul li:nth-child(1){
    padding-left: 0;
}
.contact-page .contact-2 ul li:hover .content h6 {
    transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
    -webkit-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
    -moz-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
    -ms-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
    -o-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
}
.contact-page .contact-2 ul li .content {
    display: flex;
    align-items: center;
}
.contact-page .contact-2 ul li .content h6 {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 1px solid #aaaaaa;
    display: flex;
    align-items: center;
    margin-right: 20px;
    justify-content: center;
    transition: 1s ease;
    -webkit-transition: 1s ease;
    -moz-transition: 1s ease;
    -ms-transition: 1s ease;
    -o-transition: 1s ease;
    flex-shrink: 0;
}
.contact-page .contact-2 ul li .content h6 i {
    font-size: 20px;
    color: #000000;
}
.contact-page .contact-2 ul li .content p {
    font-size: 16px;
    color: #000000;
    line-height: 2;
    /*max-width: 290px;*/
}
.contact-page .contact-2 ul .add {
    padding-left: 0;
}
.contact-page .contact-2 ul .add .content {
    align-items: flex-start;
}
.contact-page .contact-3 {
    padding: 0 120px 0 90px;
}
.contact-page .contact-3 ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.contact-page .contact-3 ul li {
    width: 33.3333%;
    padding-left: 125px;
    position: relative;
    margin-bottom: 45px;
}
.contact-page .contact-3 ul li img {
    width: 160px;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 23px;
    box-shadow: 5px 10px 20px 0px rgba(0, 0, 0, 0.1);
}
.contact-page .contact-3 ul li .content {
    background: #f8f8f8;
    padding: 35px 45px;
}
.contact-page .contact-3 ul li .content .top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px solid #b3b3b3;
}
.contact-page .contact-3 ul li .content .top .fa {
    font-size: 24px;
    color: #000000;
    line-height: 1;
    display: inline-block;
    margin-right: 18px;
}
.contact-page .contact-3 ul li .content .top h5 {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    font-weight: bold;
    max-width: 230px;
    padding-bottom: 10px;
}
.contact-page .contact-3 ul li .content .bottom {
    max-width: 230px;
    margin: 0 0 0 auto;
    margin-top: 10px;
    font-size: 14px;
    color: #000000;
    line-height: 1;
}
.contact-page .contact-3 ul li .content .bottom>div{
    margin-bottom: 15px;
}
.contact-page .contact-3 ul li .content .bottom a{
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
    font-style: inherit;
}
.contact-page .contact-3 ul li .content .bottom p {
    font-size: 14px;
    color: #000000;
    line-height: 1;
    margin-bottom: 15px;
}
.contact-page .contact-4 {
    padding: 0px 0 50px;
}
.contact-page .contact-4 .ui.container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-page .contact-4 .left {
    max-width: 380px;
    padding-top: 40px;
}
.contact-page .contact-4 .left h4 {
    font-size: 40px;
    line-height: 1.4;
    color: #000000;
    font-weight: bold;
    margin-bottom: 10px;
}
.contact-page .contact-4 .left p {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    /*font-weight: bold;*/
}
.contact-page .contact-4 .right {
    width: 63%;
}
.contact-page .contact-4 .right form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-page .contact-4 .right form input {
    width: 49%;
    background: none;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #000000;
    font-size: 18px;
    color: #000000;
    line-height: 2;
    margin-bottom: 30px;
}
.contact-page .contact-4 .right form textarea {
    width: 49%;
    background: none;
    border: none;
    padding: 10px 0;
    border-bottom: 1px solid #000000;
    font-size: 18px;
    color: #000000;
    line-height: 1;
    margin-bottom: 30px;
}
.contact-page .contact-4 .right form input[type="submit"] {
    width: 220px;
    height: 60px;
    background: #000;
    font-size: 16px;
      border-radius: 30px;
    color: #ffffff;
    line-height: 1;
    border: none;
    font-weight: bold;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.contact-page .contact-4 .right form input[type="submit"]:hover{
    background: var(--color);
}
.contact-page .contact-4 .right p {
    font-size: 16px;
    line-height: 2;
    /*font-weight: bold;*/
    color: #989898;
}






.contact-page .contact-6 {
    margin: 40px 0 60px;
}
.contact-page .contact-6 h4 {
    font-size: 40px; 
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
}
.contact-page .contact-6 ul{
    margin: -20px;
}
.contact-page .contact-6 ul li {
    padding: 20px;
}
.contact-page .contact-6 ul li .box {
    display: block;
     -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    padding: 20px;
    position: relative;
    background: #f5f5f5;
    border-radius: 20px;
}
.contact-page .contact-6 ul li .box .h5{
    font-size: 30px;
    font-weight: bold;
    position: relative;
}
.contact-page .contact-6 ul li .box .h5::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--color);
     -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.contact-page .contact-6 ul li .box ul{
    position: absolute;
    right: 5px;
    top:12px;
    /*width: 30%;*/
    margin: -5px;
}
.contact-page .contact-6 ul li .box ul li{
    padding: 5px;
}
.contact-page .contact-6 ul li .box ul li img{
    max-width: 100px;
    width: unset;
}
.contact-page .contact-6 ul li .box .desc{
    font-size: 16px;
    margin: 18px 0 25px;
}
.contact-page .contact-6 ul li .box .det,
.contact-page .contact-6 ul li .box .content{
    font-size: 16px;

}
.contact-page .contact-6 ul li .box .code{
    display: flex;
    width: 55%;
    margin-top: 30px;
}
.contact-page .contact-6 ul li .box .code .item{
    margin-right: 10px;
    text-align: center;
}
.contact-page .contact-6 ul li .box .code .item p{
    font-size: 12px;
    margin-top: 10px;
}
 .contact-page .contact-6 ul li .box:hover{
     background: var(--color);
 }
  .contact-page .contact-6 ul li .box:hover .code p,
  .contact-page .contact-6 ul li .box:hover .det,
  .contact-page .contact-6 ul li .box:hover .content,
  .contact-page .contact-6 ul li .box:hover .desc,
  .contact-page .contact-6 ul li .box:hover .h5{
      color: white;
  }
.contact-page .contact-6 ul li .box:hover .h5::after{
    background: white;
}
@media screen and (max-width: 1700px) {
    .newdet-page,
    .news-page .news-1,
    .gallery-page, 
    .product-page{
        padding: 70px 0;
    }
    .newdet-page .slideBarRight h1{
        font-size: 32px;
    }
    .inner-page .slideBarBox .slideBarLeft .slide {
        padding: 30px;
    }
    .inner-page .product_list ul li span.h6 {
        font-size: 18px;
    } 
    .news-page .news-1 .list ul li .content{
        padding: 7%;
    }
    .news-page .news-1 .list ul li .content span.h6{
        font-size: 18px;
    }
    .contact-page .contact-6 ul li .box .code{
        width: 70%;
    }
}
@media screen and (max-width: 1450px) { 
    .newdet-page .slideBarRight h1{
        font-size: 28px;
    }
     
    .inner-page a.link {
        font-size: 14px;
    }
    .inner-page .slideBarBox .slideBarLeft .slide {
        padding: 20px;
    }
    .inner-page .slideBarBox .slideBarLeft .slide .nav ul li a {
        padding: 1em;
    }
    .inner-page .slideBarBox .slideBarLeft .slide span.h5 {
        font-size: 18px;
    }
    .inner-page .product_list ul li span.h6 {
        font-size: 16px;
        line-height: 30px;
    }
    .news-page .news-1 .list ul li .content{
        padding: 5%;
    }
    .news-page .news-1 .list ul li .content span.h6{
        font-size: 16px;
        line-height: 30px;
    }
    .news-page .news-1 .list ul li:hover .content .pre {
        padding-bottom: 50px;
    }
    .news-page .news-1 .list ul li:hover .content {
        margin-top: -50px;
    }
    
    .contact-page .contact-6 ul li .box .code{
        width: 85%;
    }
}
@media screen and (max-width: 1250px) { 
    .newdet-page .slideBarRight h1{
        font-size: 24px;
    }
     
    .inner-page.news-page .slideBarBox  {
        padding-left: 2%;
    }
    .inner-page .product_list ul li {
        padding: 10px;
    }
    .inner-page .product_list ul {
        margin: -10px;
    }
    .news-page .news-1 .list ul li .content .pre .text {
        position: static;
        opacity: 1;
        margin-top: 1em;
    }
     .contact-page .contact-6 ul li{
        width: 50% !important;
    }
    .contact-page .contact-6 ul li .box ul li{
        width: 33% !important;
    }
}
@media screen and (max-width: 1000px) {
     
    .inner-page .slideBarBox .slideBarLeft {
        display: none;
    }
    .inner-page.news-page .slideBarBox  {
        width: 100%;
        padding-left: 0;
    }
     .contact-page .contact-6 ul li .ig h4 {
        font-size: 18px;
    }
     .contact-page .contact-6 ul li{
        width: 50% !important;
    }
    .contact-page .contact-6 ul li .box ul li{
        width: 33% !important;
    }
    .contact-page .contact-6 ul li .box .code{
        width: 100%;
    }
    .contact-page .contact-6 ul li .box .h5{
        font-size: 25px;
    }
}
@media screen and (max-width: 700px) {
     
    .product-page,
    .newdet-page,
    .news-page .news-1{
        padding: 30px 0;
    } 
    .newdet-page .slideBarRight h1{
        font-size: 28px;
        line-height: 1.6;
    }
    .news-page .news-1 .list ul li:hover .content span.h6 {
        opacity: 1;
    }
    .news-page .news-1 .list ul li:hover .content {
        margin-top: 0;
    }
    .news-page .news-1 .list ul li:hover .content .pre {
        padding-bottom: 0;
    }
    .news-page .news-1 .list ul li .content a.link {
        margin-top: 1em;
    }
     .contact-page .contact-6 ul li{
        width: 100% !important;
    }
}
@media screen and (max-width: 500px) {
    .news-page .news-1 .list ul li .content span.h6,
    .news-page .news-1 .list ul li .content .pre .text {
        height: auto;
    }
     .contact-page .contact-6 h4{
        font-size: 30px;
    }
    .contact-page .contact-6 ul li .box .h5{
        font-size: 22px;
    }
}
.faq-page {
    /*padding-top: 39px;*/
    background-color: #faf9f9;
}
.faq-page .faq-1 {
    background: url(../images/faq-bg.png) no-repeat right bottom;
    padding-bottom: 6%;
}
.faq-page .faq-1 .header {
    max-width: 1134px;
}
.faq-page .faq-1 .header .title {
    font-size: 90px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
}
.faq-page .faq-1 .content {
    margin-top: 82px;
    border-top: 1px solid #bebebe;
}
.faq-page .faq-1 .content ul li {
    border-bottom: 1px solid #bebebe;
    padding: 34px 0 40px;
    color: #030303;
}
.faq-page .faq-1 .content ul li .tit {
    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: 24px;
    line-height: 40px;
    font-weight: bold;
    font-weight: bold;
    cursor: pointer;
}
.faq-page .faq-1 .content ul li .tit em {
    padding-right: 34px;
    width: 90%;
}
.faq-page .faq-1 .content ul li .tit i {
    display: inline-block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.faq-page .faq-1 .content ul li .tit i img {
    display: inline-block;
    vertical-align: middle;
}
.faq-page .faq-1 .content ul li .con {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 20px;
    display: none;
}
.faq-page .faq-1 .content ul li.active .tit i {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.faq-page .faq-2 .box {
    background: url(../images/faq-1.jpg) no-repeat center center;
    background-size: 100% 100%;
    padding: 11.459% 20% 10.6771%;
    text-align: center;
}
.faq-page .faq-2 .box .play {
    font-size: 36px;
    color: #fff;
    background-color: rgba(71, 26, 26, 0);
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-block;
    width: 280px;
    height: 280px;
    line-height: 280px;
    position: relative;
    text-align: center;
}
.faq-page .faq-3 {
    background: url(../images/ab-wz.png) no-repeat center top;
    margin-top: 7%;
    padding-top: 7%;
    margin-bottom: 5%;
}
.faq-page .faq-3 .header {
    color: #030303;
}
.faq-page .faq-3 .header .title {
    font-size: 70px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
}
.faq-page .faq-3 .header p {
    font-size: 27px;
    line-height: 1.3;
    margin-top: 12px;
}
.faq-page .faq-3 .search {
    text-align: center;
    margin-top: 87px;
}
.faq-page .faq-3 .search form {
    max-width: 773px;
    margin: 0 auto;
    position: relative;
}
.faq-page .faq-3 .search form input[type="text"] {
    width: 100%;
    height: 54px;
    border: 0;
    border-bottom: 1px solid #000;
    font-size: 18px;
    padding-right: 176px;
}
.faq-page .faq-3 .search form input[type="text"]::-webkit-input-placeholder {
    color: rgba(3, 3, 3, 0.4);
}
.faq-page .faq-3 .search form input[type="text"]:-moz-placeholder {
    color: rgba(3, 3, 3, 0.4);
}
.faq-page .faq-3 .search form input[type="text"]::-moz-placeholder {
    color: rgba(3, 3, 3, 0.4);
}
.faq-page .faq-3 .search form input[type="text"]:-ms-input-placeholder {
    color: rgba(3, 3, 3, 0.4);
}
.faq-page .faq-3 .search form input[type="text"]::placeholder {
    color: rgba(3, 3, 3, 0.4);
}
.faq-page .faq-3 .search form input[type="submit"] {
    background: url(../images/faq-icon.png) no-repeat 29px center;
    text-align: right;
    border: 0;
    position: absolute;
    bottom: 14px;
    right: 0;
    font-size: 18px;
    width: 176px;
    text-transform: uppercase;
    color: #030303;
    border-left: 1px solid #000;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.faq-page .faq-3 .search form input[type="submit"]:hover {
    background-position-x: 30px;
    color: var(--color);
    border-color: var(--color);
}
@media screen and (max-width: 1000px) {
    .faq-page .faq-1 .header .title {
        font-size: 60px;
    }
    .faq-page .faq-3 .header .title {
        font-size: 52px;
    }
    .faq-page .faq-1 {
        background: transparent;
    }
    .inner-page .m-page{
        margin-top: 40px;
    }
}
@media screen and (max-width: 700px) {
    .faq-page .faq-1 .header .title {
        font-size: 45px;
    }
    .faq-page .faq-1 .content {
        margin-top: 40px;
    }
    .faq-page .faq-3 .header .title {
        font-size: 40px;
    }
    .inner-page .m-page{
        margin-top: 20px;
    }
}
@media screen and (max-width: 500px) {
    .faq-page {
        padding-top: 0;
    }
    .faq-page .faq-1 .header .title {
        font-size: 36px;
        line-height: 1.4;
    }
    .faq-page .faq-1 .content {
        margin-top: 20px;
    }
    .faq-page .faq-1 .content ul li .tit {
        font-size: 20px;
        line-height: 36px;
    }
    .faq-page .faq-1 .content ul li .tit em {
        padding-right: 20px;
    }
    .faq-page .faq-2 .box {
        padding-left: 0;
        padding-right: 0;
    }
    .faq-page .faq-3 {
        background: transparent;
        margin-top: 5%;
    }
    .faq-page .faq-3 .header .title {
        font-size: 36px;
    }
    .faq-page .faq-3 .header p {
        font-size: 20px;
        line-height: 1.4;
    }
    .faq-page .faq-3 .search {
        margin-top: 20px;
    }
    .faq-page .faq-3 .search form input[type="text"] {
        padding-right: 0;
    }
    .faq-page .faq-3 .search form input[type="submit"] {
        position: initial;
        margin-top: 20px;
        border: 1px solid #000;
        height: 50px;
        padding-right: 15px;
        background-position-x: 20px;
    }
}

.service-page {
       background-color: #faf9f9;
}
.service-page .service-1 {
    padding: 0 0 6% 0;
}
.service-page .service-1 .top .left {
    width: 73%;
}
.service-page .service-1 .top .left .title {
    font-size: 60px;
    line-height: 1.2;
    font-weight: bold;
    color: #030303;
    text-transform: uppercase;
}
.service-page .service-1 .top .right {
    width: 53%;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.65);
    vertical-align: bottom;
    margin-bottom: 10px;
}
.service-page .service-1 .bottom {
    padding:  0% 0px 0  0;
}
.service-page .service-1 .bottom .grid-box {
        /*width: 1590px;*/
        padding-top: 50px;
        max-width: 100%;
}
.service-page .service-1 .bottom ul li {
    /*border-right: 1px solid #dcdcdc;*/
    /*text-align: center;*/
    padding-right: 60px;
    width: 16.6666%;
}
.service-page .service-1 .bottom ul li .ig{
    position: relative;
    padding: 15px 20px 0px 0;
}
.service-page .service-1 .bottom ul li .ig::after{
    content: '';
    display: block;
    height: 100%;
    width: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #dcdcdc;
}
.service-page .service-1 .bottom ul li i{
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.service-page .service-1 .bottom ul li p {
    font-size: 20px;
    line-height: 1.8;
        font-weight: 600;
    color: #030303;
    width: 78%;
    margin-top: 18px;
    text-align: left;
}
.service-page .service-1 .bottom ul li .content {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #faf9f9;
    width: 100%;
    height: 100%;
    padding: inherit;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}
.service-page .service-1 .bottom ul li:hover .content {
    opacity: 1;
}
.service-page .service-1 .bottom ul li .text p {
    font-size: inherit;
    width: 100%;
    margin: 0;
}
.service-page .service-1 .bottom ul li .mores {
    display: block;
    margin-top: 38px;
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    width: auto;
    z-index: 1;
    font-size: 15px;
}
.service-page .service-1 .bottom ul li .mores .link_text {
    position: relative;
    margin-right: 0;
    display: inline-block;
    vertical-align: middle;
    text-indent: -110px;
    visibility: hidden;
    white-space: nowrap;
    opacity: 0;
    margin-top: -10px;
    -webkit-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
    -ms-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
    transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
}
.service-page .service-1 .bottom ul li .mores .link_icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    width: 1.4em;
    height: 1.4em;
    line-height: 1.4em;
    text-align: center;
}
.service-page .service-1 .bottom ul li .mores:hover .link_text{
    opacity: 1;
    text-indent: 0;
    margin-right: 6px;
    visibility: visible;
}
.service-page .service-1 .bottom ul li:last-child{
    padding-right: 0;
    width: 16%;
}
.service-page .service-1 .bottom ul li:last-child .ig::after {
    display: none;
}
.service-page .service-1 .bottom ul li:hover i{
    filter: brightness(0);
}
.service-page .service-2 {
    position: relative;
    padding: 87px 0 79px;
    z-index: 1;
}
.service-page .service-2 .left {
    width: 53.646%;
}
.service-page .service-2 .right {
    width: 46.354%;
    color: #fff;
    padding: 38px 20px 0 0;
}
.service-page .service-2 .right .ig {
    max-width: 706px;
    padding-left: 57px;
}
.service-page .service-2 .right .header {
    text-align: right;
}
.service-page .service-2 .right .header .tag {
    color: #fff;
    padding-right: 138px;
}
.service-page .service-2 .right .header .tag::before {
    background: #fff;
    top: 8px;
}
.service-page .service-2 .right .header .title {
    /*text-align: center;*/
    font-size: 60px;
    line-height: 1.2;
    font-weight: bold;
    margin-top: 6px;
    margin-left: -132px;
}
.service-page .service-2 .right .header .con {
    font-size: 18px;
    line-height: 1.8;
    opacity: .65;
    text-align: left;
}
.service-page .service-2 .right .list {
    margin-top: 75px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.service-page .service-2 .right .list ul li {
    padding: 19px 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.service-page .service-2 .right .list ul li .tit {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 26px;
    line-height: 1.6;
}
.service-page .service-2 .right .list ul li .tit em {
    width: 90%;
}
.service-page .service-2 .right .list ul li .tit i {
    position: relative;
    width: 14px;
    height: 14px;
}
.service-page .service-2 .right .list ul li .tit i::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    left: 0;
    top: 6px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.service-page .service-2 .right .list ul li .tit i::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background: #fff;
    top: 0;
    left: 6px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.service-page .service-2 .right .list ul li .con {
    font-size: 18px;
    line-height: 1.8;
    opacity: .65;
    display: none;
    padding: 20px 0;
}
.service-page .service-2 .right .list ul li.active .tit i::after {
    opacity: 0;
}
.service-page .service-2::after {
    content: '';
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    width: 54.115%;
    height: 100%;
    background: url(/template/en/images/about2-bg.jpg) no-repeat center ;
}
.service-page .service-3 {
    padding-top: 7.2%;
    padding-bottom: 100px;
}
.service-page .service-3 .header {
    text-align:left;
}
.service-page .service-3 .header .title {
    font-size: 60px;
    color: #030303;
    line-height: 1;
    font-weight: bold;
    margin-top: 5px;
}
.service-page .service-3 .content {
    margin-top: 65px;
}
.service-page .service-3 .content ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -20px;
}
.service-page .service-3 .content ul li {
    padding-right: 20px;
    width: 25%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    cursor: pointer;
}
.service-page .service-3 .content ul li .ig {
    border: solid 1px var(--color);
    border-radius: 20px;
    padding: 55px 35px 30px 37px;
    height: 383px;
}
.service-page .service-3 .content ul li .ig i{
    display: block;
}
.service-page .service-3 .content ul li .ig .tit {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.6;
    margin-top: 30px;
    padding-bottom: 20px;
}
.service-page .service-3 .content ul li .ig .con {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0;
    -webkit-transition: opacity 0.1s ease-out, -webkit-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
    transition: opacity 0.1s ease-out, -webkit-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
    -moz-transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96), -moz-transform 0.4s ease-out;
    transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
    transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96), -webkit-transform 0.4s ease-out, -moz-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
    transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96), -webkit-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
}
.service-page .service-3 .content ul li .ig .num {
    position: absolute;
    bottom: 30px;
    right: 35px;
    font-size: 16px;
    color: #030303;
    font-weight: bold;
}
.service-page .service-3 .content ul li.active {
    width: 50%;
}
.service-page .service-3 .content ul li.active .con {
    opacity: .65;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    transition-delay: 0.4s;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}
.service-page .service-4 {
    padding: 5% 0 0 0;
    overflow: hidden;
}
.service-page .service-4 .header .title {
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    margin-top: 22px;
}
.service-page .service-4 .content {
    margin-top: 51px;
}
.service-page .service-4 .content ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -18px;
}
.service-page .service-4 .content ul li {
    padding-right: 18px;
    width: 20%;
    -webkit-transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    -moz-transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    overflow: hidden;
}
.service-page .service-4 .content ul li .ig {
    position: relative;
    height: 559px;
}
.service-page .service-4 .content ul li .ig .img {
    margin: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    -moz-transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.service-page .service-4 .content ul li .ig .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scale(1.06) translateZ(0);
    -moz-transform: scale(1.06) translateZ(0);
    transform: scale(1.06) translateZ(0);
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    transition: -webkit-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    -moz-transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), -moz-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), -moz-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}
.service-page .service-4 .content ul li .ig .text {
    background-image: linear-gradient(135deg, var(--color), var(--color2));
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 34px 15px 51px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
    color: #fff;
}
.service-page .service-4 .content ul li .ig .text .tit {
    font-size: 40px;
    line-height: 1.4;
    font-weight: bold;
    width: 54%;
    color: #fff;
}
.service-page .service-4 .content ul li .ig .text .mores {
    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;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
    text-transform: uppercase;
    padding: 25px 0 19px 38px;
    position: relative;
    z-index: 1;
    color: #fff;
    flex-shrink: 0;
    margin-left: 1em;
}
.service-page .service-4 .content ul li .ig .text .mores img {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.service-page .service-4 .content ul li .ig .text .mores em {
    margin-left: 28px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.service-page .service-4 .content ul li .ig .text .mores::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 08px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: solid 1px #fff;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;

}
.service-page .service-4 .content ul li .ig .text .mores:hover em {
    -webkit-transform: translateX(-86px);
    -moz-transform: translateX(-86px);
    -ms-transform: translateX(-86px);
    transform: translateX(-86px);
}
.service-page .service-4 .content ul li .ig .text .mores:hover img {
    -webkit-transform: translateX(150px);
    -moz-transform: translateX(150px);
    -ms-transform: translateX(150px);
    transform: translateX(150px);
}
.service-page .service-4 .content ul li.active {
    width: 60%;
}
.service-page .service-4 .content ul li.active .ig .img {
    height: 425px;
}
.service-page .service-4 .content ul li.active .ig .img img {
    -webkit-transform: scale(1) translateZ(0);
    -moz-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
}
.service-page .service-4 .content ul li.active .text {
    opacity: 1;
}
@media screen and (max-width: 1680px) {
    .service-page .service-1 .bottom ul li{
        padding-right: 40px;
    }
    .service-page .service-4 .content ul li.active .text{
        display: block;
    }
    .service-page .service-4 .content ul li .ig .text .tit{
        font-size: 36px;
        width: 100%;
    }
    .service-page .service-4 .content ul li.active .text .mores{
        margin-top: 20px;
    }
}
@media screen and (max-width: 1440px) {
    .service-page .service-1 .bottom ul li p{
        width: 90%;
    }
    .service-page .service-2 .right .header .title{
        font-size: 78px;
        margin-left: -90px;
    }
    .service-page .service-3 .content ul li .ig{
        padding: 40px 30px 30px;
    }
    .service-page .service-3 .content ul li .ig .tit{
        font-size: 32px;
    }
}
@media screen and (max-width: 1280px) {
    .service-page .service-1 .top .left .title{
        font-size: 60px;
    }
    .service-page .service-1 .bottom{
        padding-left: 0;
    }
    .service-page .service-1 .bottom ul li p {
        width: 100%;
    }
    .service-page .service-2{
        padding: 50px 0;
    }
    .service-page .service-2 .left,
    .service-page .service-2 .right{
        vertical-align: middle;
    }
    .service-page .service-2 .right{
        padding-top: 0;
    }
    .service-page .service-2 .right .ig{
        padding-left: 30px;
    }
    .service-page .service-2 .right .header .title {
        font-size: 62px;
        margin-left: 0px;
    }
    .service-page .service-3 .content ul li .ig {
        padding: 40px 20px 30px;
    }
    .service-page .service-3 .content ul li .ig .tit {
        font-size: 29px;
    }
}
@media screen and (max-width: 1100px) {
    .service-page .service-1 .top .left .title {
        font-size: 60px;
    }
    .service-page .service-1 .bottom ul li p{
        font-size: 21px;
    }
    .service-page .service-2 .right .header .title{
        font-size: 53px;
    }
    .service-page .service-2 .right .list{
        margin-top: 40px;
    }
    .service-page .service-3 .content ul li .ig .tit {
        font-size: 26px;
    }
    .service-page .service-4 .content ul li .ig{
        height: 400px;
    }
    .service-page .service-4 .content ul li.active .ig .img{
        height: 300px;
    }
    .service-page .service-4 .content ul li .ig .text{
        padding: 15px 8px 20px;
    }
    .service-page .service-4 .content ul li .ig .text .tit{
        font-size: 30px;
    }
}
@media screen and (max-width: 1000px) {
    .service-page .service-1 .top .left,
    .service-page .service-1 .top .right{
        width: 100%;
    }
    .service-page .service-1 .top .right{
        margin-top: 20px;
    }
    .service-page .service-1 .bottom ul{
        margin-bottom: -20px;
    }
    .service-page .service-1 .bottom ul li:last-child{
        width: 33.3333%;
    }
    .service-page .service-1 .bottom ul li{
        width: 33.3333%;
        margin-bottom: 20px;
    }
    .service-page .service-2 .left{
        display: none;
    }
    .service-page .service-2 .right{
        width: 100%;
    }
    .service-page .service-2::after{
        width: 100%;
    }
    .service-page .service-3 .header .title{
        font-size: 70px;
    }
    .service-page .service-3 .content ul{
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: -10px;
    }
    .service-page .service-3 .content ul li{
        width: 50%;
        margin-bottom: 10px;
    }
    .service-page .service-3 .content ul li.active{
        width: 50%;
    }
    .service-page .service-3 .content ul li .ig .con{
        opacity: .65;
        -webkit-clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
        clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
        -webkit-transition-delay: .4s;
        -moz-transition-delay: .4s;
        transition-delay: .4s;
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        transform: translate(0);
    }
    .service-page .service-3 .content ul li .ig {
        padding: 30px 20px 20px;
    }
    .service-page .service-3 .content ul li .ig .con{
        font-size: 17px;
    }
    .service-page .service-4 .header .title{
        font-size: 66px;
    }
    .service-page .service-4 .content ul{
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: -10px;
    }
    .service-page .service-4 .content ul li{
        width: 50%;
        margin-bottom: 10px;
    }
    .service-page .service-4 .content ul li.active{
        width: 50%;
    }
    .service-page .service-4 .content ul li:last-child{
        width: 100%;
    }
    .service-page .service-4 .content ul li:last-child.active{
        width: 100%;
    }
}
@media screen and (max-width: 700px) {
    .service-page .service-1 .bottom ul li{
        width: 50%;
        padding-right: 20px;
    }
    .service-page .service-1 .bottom ul li:last-child{
        width: 50%;
    }
    .service-page .service-1 .bottom ul li:nth-child(even){
        padding-right: 0;
    }
    .service-page .service-2 .right .list ul li .tit{
        font-size: 22px;
    }
    .service-page .service-3 .header .title {
        font-size: 53px;
    }
    .service-page .service-3 .content{
        margin-top: 20px;
    }
    .service-page .service-3 .content ul li .ig i{
        zoom: .7;
    }
    .service-page .service-3 .content ul li .ig{
        padding: 10px;
    }
    .service-page .service-3 .content ul li .ig .tit{
        font-size: 24px;
        margin-top: 0;
    }
    .service-page .service-3 .content ul li .ig .num{
        bottom: 0;
    }
    .service-page .service-4 .header .title {
        font-size: 50px;
    }
    .service-page .service-4 .content{
        margin-top: 20px;
    }
    .service-page .service-4 .content ul li .ig .text .tit {
        font-size: 24px;
        line-height: 40px;
    }
    .service-page .service-4 .content ul li.active .text .mores{
        zoom: .7;
    }
    .service-page .service-4 .content ul li .ig{
        height: 300px;
    }
}
@media screen and (max-width: 500px) {
    .service-page .service-1 .top .left .title {
        font-size: 50px;
    }
    .service-page .service-1 .top .right{
        font-size: 16px;
        line-height: 1.8;
    }
    .service-page .service-1 .bottom ul li{
        width: 100%;
        padding-right: 0;
    }
    .service-page .service-1 .bottom ul li:last-child{
        width: 100%;
    }
    .service-page .service-1 .bottom ul li .ig{
        padding: 0;
    }
    .service-page .service-1 .bottom ul li .ig::after{
        display: none;
    }
    .service-page .service-2 .right{
        padding: 0 15px;
    }
    .service-page .service-2 .right .ig{
        padding-left: 0;
    }
    .service-page .service-2 .right .header .title {
        font-size: 40px;
    }
    .service-page .service-2 .right .header .con{
        font-size: 16px;
        line-height: 1.8;
    }
    .service-page .service-2 .right .list ul li .tit {
        font-size: 20px;
        line-height: 1.4;
    }
    .service-page .service-3 .header .title {
        font-size: 36px;
    }
    .service-page .service-3 .content ul li,
    .service-page .service-3 .content ul li.active{
        width: 100%;
    }
    .service-page .service-3 .content ul li .ig{
        height: auto;
        padding: 20px 15px;
    }
    .service-page .service-3 .content ul li .ig .tit{
        line-height: 1.5;
    }
    .service-page .service-3 .content ul li .ig .con{
        font-size: 16px;
        line-height: 1.8;
    }
    .service-page .service-4 .header .title {
        font-size: 33px;
    }
    .service-page .service-4 .content ul li,
    .service-page .service-4 .content ul li.active{
        width: 100%;
    }
    .service-page .service-4 .content ul li.active .text .mores{
        zoom: 1;
    }
    .service-page .service-4 .content ul li .ig .text .tit{
        line-height: 1.5;
    }
    .service-page .service-4 .content ul li .ig .text{
        opacity: 1;
        display: block;
    }
}
.application-page {
    /*padding: 6% 0;*/
        background-color: #faf9f9;
}
.application-page .application-list .header {
    max-width: 742px;
}
.application-page .application-list .header .title {
    font-size: 90px;
    font-weight: bold;
    line-height: 1.1;
}
.application-page .application-list .swiper {
    margin-top: 72px;
    padding-bottom: 50px;
}
.application-page .application-list .swiper .tit {
    font-size: 30px;
    line-height: 1.3;
    color: #030303;
    text-align: center;
    margin-top: 25px;
    opacity: 0;
    -webkit-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    transition: opacity .5s ease;
}
.application-page .application-list .swiper .swiper-slide {
    cursor: pointer;
}
.application-page .application-list .swiper .swiper-slide:hover .tit {
    opacity: 1;
}
.application-page .application-list .swiper .swiper-pagination {
    bottom: 0;
    height: 41px;
}
.application-page .application-list .swiper .swiper-pagination-bullet {
    position: relative;
    width: 1px;
    height: 16px;
    border-radius: 0px;
    display: inline-block;
    vertical-align: middle;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 9px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    opacity: 1;
}
.application-page .application-list .swiper .swiper-pagination-bullet-active {
    height: 41px;
    background: #5f5e5f;
}
.tc {
    height: 100%;
    position: fixed;
    z-index: 999;
    top: 79px;
    right: 0;
    width: 100%;
    background: url(../images/beijing.jpg) no-repeat;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.tc .list {
    position: relative;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.tc .list .item {
    position: relative;
    height: 100vh;
    text-align: center;
    padding: 0vh 15vw 0;
}
.tc .list .item .title {
    font-size: 100px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}
.tc .list .item .img {
    position: relative;
    max-width: 600px;
    margin: -4% auto 0;
}
.tc .list .item .img .desc {
    position: absolute;
    right: 30px;
    top: 10%;
    /*color: #fff;*/
    font-size: 18px;
    line-height: 1.6;
    font-weight: bold;
}
.tc .list .item .gallery{
    position: absolute;
    bottom: 100px;
    right: 20%;
}
.tc .list .item .gallery 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-right: -20px;
    text-align: right;
    margin: 0 auto;
}
.tc .list .item .gallery ul li{
    padding-right: 20px;
    max-width: 100px;
    cursor: pointer;
}
.tc .list .item .gallery ul li img{
    width: 100%;
}
.tc.active {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
@media screen and (max-width: 1680px) {
    .contact-page .contact-2 ul li{
        width: 50%;
        padding-left: 0;
        margin-bottom: 10px;
    }
    .contact-page .contact-2 ul li .content p{
        max-width: 83%;
    }
}
@media screen and (max-width: 1440px) {
    .tc .list .item{
        padding: 0 10vw;
    }
}
@media screen and (max-width: 1280px) {
    .tc .list .item{
        padding: 0 6vw;
    }
    .tc .list .item .title{
        font-size: 66px;
    }
}
@media screen and (max-width: 1000px) {
    .application-page .application-list .header .title{
        font-size: 60px;
    }
    .application-page .application-list .swiper{
        margin-top: 60px;
    }
    .application-page .application-list .swiper .tit{
        font-size: 25px;
        line-height: 1.4;
    }
    .tc .list .item{
        padding: 0 10vw;
    }
    .tc .list .item .title{
        font-size: 60px;
    }
    .contact-page {
        padding: 30px 0 0;
    }
    .contact-page .contact-4 .left{
        margin-top: 0;
    }
    .contact-page .contact-4 .right{
        width: 100%;
        margin-top: 20px;
    }
    .contact-page .contact-2{
        padding: 30px 0;
    }
    .contact-page .contact-2 ul li .content h6{
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    .contact-page .contact-2 ul li .content p{
        max-width: 270px;
    }
}
@media screen and (max-width: 700px) {
    .application-page .application-list .header .title{
        font-size: 40px;
    }
    .application-page .application-list .swiper{
        margin-top: 30px;
        padding-bottom: 30px;
    }
    .tc .list .item{
        padding: 0 6vw;
    }
    .tc .list .item .gallery{
        position: initial;
        margin-top: 20px;
    }
    .tc .list .item .title{
        font-size: 46px;
    }
    .contact-page .contact-2 ul li{
        width: 100%;
        margin-bottom: 10px;
    }
    .contact-page .contact-2 ul li:last-child{
        margin-bottom: 0;
    }
    .contact-page .contact-2 ul li .content p{
        max-width: 100%;
        width: 90%;
    }
}
@media screen and (max-width: 500px) {
    .application-page .application-list .swiper{
        overflow: hidden;
        padding: 0 15px 30px;
    }
    .application-page .application-list .swiper .tit{
        opacity: 1;
        font-size: 24px;
        line-height: 40px;
        margin-top: 10px;
    }
    .tc .list .item .title{
        font-size: 36px;
    }
    .contact-page .contact-4 .right form input,
    .contact-page .contact-4 .right form textarea{
        width: 100%;
        margin-bottom: 10px;
    }
    .contact-page .contact-4 {
        padding: 0px;
    }
}
.inner-page span.tag {
    display: inline-flex;
}
.custom-page .custom-2 .right .flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.custom-page .custom-2 {
  background: #fff;
  padding: 100px 0;
}
.custom-page .custom-2 .left {
  width: 18.1%;
}
.custom-page .custom-2 .left span {
  max-height: 800px;
  display: inline-block;
  font-size: 60px;
  line-height: 1;
  letter-spacing: 3px;
  color: #091733;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: center;
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.custom-page .custom-2 .right {
  width: 81.9%;
}
.custom-page .custom-2 .right ul li {
  width: 25%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.custom-page .custom-2 .right ul li .item {
  height: 600px;
  border-left: 1px solid #091733;
  padding: 107px 15px 0;
  position: relative;
  color: #091733;
}
.custom-page .custom-2 .right ul li .item .tit {
  font-size: 30px;
  letter-spacing: 1px;
  color: #091733;
  line-height: 1.4;
  font-weight: bold;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.custom-page .custom-2 .right ul li .item .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 48px;
}
.custom-page .custom-2 .right ul li .item .text .con {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.custom-page .custom-2 .right ul li .item span {
  font-size: 80px;
  line-height: 1;
  letter-spacing: 3px;
  font-weight: bold;
  display: inline-block;
  margin-top: 27px;
}
.custom-page .custom-2 .right ul li.active {
  width: 30%;
}
.custom-page .custom-2 .right ul li.active .item {
  padding: 132px 15px 0;
}
.custom-page .custom-2 .right ul li.active .item .tit {
  font-size: 30px;
  letter-spacing: 2px;
  line-height: 1.5;
}
.custom-page .custom-2 .right ul li.active .item .text .con {
  opacity: 1;
}
.custom-page .custom-2 .right ul li:last-child .item {
  border-right: 1px solid #091733;
}
/* aft */
.aft01 {padding: 120px 0 100px; background: url(../images/aft01_bg.jpg);background-size: cover;position: relative;overflow: hidden;display: flex;justify-content: center;align-items: center;flex-direction: column;}
.aft01  h4 {    font-size: 30px; color: #333333; margin: 16px 0 28px; font-weight: bold;}
.aft01 .box {display: flex;    margin-bottom: 60px;}
.aft01 .box .min {width: 350px;height: 350px;border-radius: 50%;display: flex;justify-content: center;align-items: center;flex-direction: column;}
.aft01 .box .min:nth-of-type(1) {transition: 0.5s; background-color: rgb(71 110 236);position: relative;z-index: 1;left: 0px;}
.aft01 .box .min:nth-of-type(2) {transition: 0.5s; background-color: rgb(36 36 36 / 90%); margin-left: -42px;position: relative;right: 0px;}
.aft01 .box:hover .min:nth-of-type(1){left: 308px;}
.aft01 .box:hover .min:nth-of-type(2){right: 308px;}
.aft01 .box .min  h5 {font-size: 20px;font-weight: bold;margin-bottom: 30px;color: #fff;}
.aft01 .box .min  h6 {font-size: 24px;color: #fff;font-weight: bold;margin-bottom: 50px;text-align: center;}
.aft01 .box .min  img {width: 42px;}
.aft01 p {font-size: 20px;color: #333333;font-weight: bold;}
.aft02 {padding: 160px 0 120px;position: relative;overflow: hidden;}
.aft02 .bg_fix {position: absolute;top: 0px;left: 0px;width: 100%;height: 690px;}
.aft02 .bg_fix::after { content: ""; display: inline-block; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.4); position: absolute; left: 0; top: 0; }
.aft02 .bg_fix img {height: 100%;width: 100%;object-fit: cover;}
.aft02 .top {display: flex;justify-content: center;align-items: center;flex-direction: column;margin-bottom: 47px;    z-index: 1; position: relative;}
.aft02 .top .hu_h3 {color: #fff;}
.aft02 .top  p {font-size: 18px;line-height: 34px;text-align: center;color: #fff;margin-top: 10px;}
.aft02 .top .line {height: 75px;width: 1px;background-color: rgba(255,255,255,0.4);margin: 28px 0 ;position: relative;}
.aft02 .top .line::after {content: "";  width: 7px; height: 7px; background-color: #fff; position: absolute; left: 50%; transform: translateX(-50%); top: 0px; animation: 2s linear 0.5s infinite hua2;}
@keyframes hua2 { from { top: 0%; } to { top: 95%; } }
.aft02 .top h4 {font-size: 30px;color: #fff;}
.aft02 .botF {padding: 0 90px;position: relative;}
.aft02 .botF .fa {    background-image: none; width: auto; height: auto; margin: 0; padding: 0; font-size: 74px; color: #cbcbcb; outline: none;}
.aft02 .botF .fa:hover {color: var(--color);;}
.aft02 .bot {position: relative;overflow: hidden;margin: auto;}
.aft02 .bot .box {    background-color: #fff; padding: 50px 0 130px; border-radius: 20px; box-shadow: 0px 5px 15px rgb(102 102 102 / 30%); display: flex; justify-content: center; align-items: center; flex-direction: column; }
.aft02 .bot .box  .icon {border-radius: 50%; position: relative; height: 111px; display: flex;justify-content: center;align-items: center; width: 111px;}
.aft02 .bot .box:hover  .icon::before {   animation: img01anime 10s 0s linear infinite; }
.aft02 .bot .box:hover  .icon::after{  animation: img02anime 10s 0s linear infinite;}
.aft02 .bot .box  .icon::before {   content: ""; position: absolute; width: 120%; height: 120%; border-radius: 50%;  border: 1.6px dashed var(--color);}
.aft02 .bot .box  .icon::after{ content: ""; position: absolute; width: 100%; height: 100%; border-radius: 50%;  border: 1.6px dashed var(--color);}

@keyframes img01anime{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
@keyframes img02anime{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(-360deg);}
}

.aft02 .bot .box  .icon img {width: 56px;transition: 0s;}
.aft02 .bot .box h4 {font-size: 18px;line-height: 32px;font-weight: bold;color: #666;margin-bottom: 5px;    margin-top: 54px;}
.aft02 .bot .box h5 {       font-size: 20px;    font-weight: 600;  position: relative; color: #111; text-align: center; line-height: 40px; height: 52px;}
.aft02 .bot .box h5::after {content: "";position: absolute;width: 20px;height: 4px;background-color: var(--color);left: 50%;transform: translateX(-50%);bottom: 0px;}
.aft02 .bot .box p{padding:30px 15px; font-size: 16px; line-height: 30px; height: 80px; text-align: center;}
.aft02 .bot .box:hover h5::after {background-color: #fff;}
.aft02 .bot .box:hover h4,.aft02 .bot .box:hover h5,.aft02 .bot .box:hover p{color: #fff;}
.aft02 .bot .box:hover  .icon img {filter: grayscale(10) brightness(10);}
.aft02 .bot .box:hover  .icon,.aft02 .bot .box:hover  .icon::before,.aft02 .bot .box:hover  .icon::after {border-color: #fff;}

.aft02 .bot .box:hover {background-color: var(--color); background-image: linear-gradient(135deg, var(--color), var(--color2));}

.aft02 .bot .aft02Swiper {width: 1200px;margin: auto;}
.aft02 .bot  {width: 1242px;margin: auto;    padding: 22px 0;}
.aft03 {padding-bottom: 0;position: relative;overflow: hidden;     background-color: #faf9f9;}
.aft03 .icenter2 {display: flex;justify-content: space-between;align-items:center;     padding-bottom: 100px;}
.aft03 .icenter2 .le {overflow: hidden;position: relative;  height: 695px;    border-radius: 20px;}
.aft03 .icenter2 .le::before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,.5); content: ''; -webkit-transition: -webkit-transform .6s; transition: transform .6s; -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-110%,0); transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-110%,0); z-index: 1; }
.aft03 .icenter2 .le:hover::before { -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 115%, 0); transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 115%, 0); }
.aft03 .icenter2 .le img{height: 100%;}
.aft03 .icenter2 .le:hover img {transform: scale(1.1);}
.aft03 .icenter2 .ri {width: 50%;}
.aft03 .icenter2 .ri >ul {margin: 20px 0 0px;}
.aft03 .icenter2 .ri >ul li {position: relative;padding-left: 15px;font-size: 18px;color: #666666;line-height: 30px;}
.aft03 .icenter2 .ri >ul li::before {    width: 5px; height: 5px; border-radius: 50%; background-color: #666666; position: absolute; left: 0px; top: 13px; content: "";}
.aft03 dl dd{ padding-top: 60px;  display: flex;align-items: center;padding-bottom: 20px;border-bottom: 1px solid #d5d5d5;}
.aft03 dl dd .icon {width: 86px;margin-right: 58px;}
.aft03 dl dd .text {}
.aft03 dl dd .text h4 {    position: relative; padding-bottom: 0px; font-size: 18px; color: #333333; width: fit-content; margin-bottom: 10px;}
.aft03 dl dd .text h4 strong {font-size: 70px;font-weight: bold;}
.aft03 dl dd .text h4::after { position: absolute;content: "";left: 0px;bottom: 0px; width: 100%;height: 5px;background-color:var(--color);}
.aft03 dl dd .text  p {font-size: 18px;color: #666666;}
.aft04 {background: url(../images/aft04_bg.jpg);background-size: cover;position: relative;overflow: hidden;background-attachment: fixed;padding: 130px 0 180px;}
.aft04  .icenter2 {position: relative; z-index: 1;}
.aft04::after { content: ""; display: inline-block; width: 100%; height: 100%; background-color: rgba(239, 241, 247, 0.65); position: absolute; left: 0; top: 0; }
.aft04 .hu_h3 {padding-left: 42px;}
.aft04 dl {margin-top: 50px; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2;}
.aft04 dl dd {width: 48%;padding-left: 42px;padding-bottom: 42px;box-sizing: border-box;display: flex;align-items: center;position: relative;    justify-content: space-between;}
.aft04 dl dd .bg {position: absolute; width: 127px;left: 0px;bottom: 0px;transition: 0.5s;}
.aft04 dl dd:hover .bg {left: 30px;bottom: 30px;}
.aft04 dl dd .le {width: 38.5%;}
.aft04 dl dd .ri {width: 51%;}
.aft04 dl dd .ri .name {font-size: 20px;font-weight: bold;color: #333333;width: 156px;height: 43px;border: 1px solid #d3d3d4;display: flex;justify-content: center;align-items: center;    background-color: #fff;}
.aft04 dl dd:hover .ri .name {background-color: #cd161d;color: #fff;}
.aft04 dl dd .ri .number{margin-top: 78px;}
.aft04 dl dd .ri .number .t {display: flex;align-items: center; margin-bottom: 17px; }
.aft04 dl dd .ri .number .t .icon {width: 65px;    margin-right: 12px;animation: bounce-up-data-v-7e3caf58 1.5s linear infinite;}
.aft04 dl dd .ri .number .t a {font-size: 40px;font-weight: bold;color: #cd161d;position: relative;}
.aft04 dl dd .ri .number .t a::after {    content: ""; position: absolute; left: 5px; bottom: -7px; width: 50px; height: 3px; background-color: #cd161d;}
.aft04 dl dd .ri .number span {font-size: 18px;color: #999999;}


@media screen and (max-width:1600px) {
    .aft01 {padding: 100px 0 90px;}
    .aft01 h4 { font-size: 25px; margin: 10px 0 22px; }
    .aft01 .box .min { width: 320px; height: 320px;}
    .aft01 .box:hover .min:nth-of-type(1) { left: 278px; }
    .aft01 .box:hover .min:nth-of-type(2) { right: 278px; }
    .aft01 .box .min h5 { font-size: 17px; margin-bottom: 26px; }
    .aft01 .box .min h6 { font-size: 22px; margin-bottom: 44px; }
    .aft01 .box .min img { width: 32px; }
    .aft01 .box { margin-bottom: 38px; }
    .aft02 .top p { font-size: 15px; line-height: 30px; margin-top: 8px; }
    .aft02 .top { margin-bottom: 30px;}
    .aft02 .top h4 { font-size: 24px; }
    .aft02 .top .line { height: 55px; margin: 20px 0; }
    .aft02 .bot .aft02Swiper { width: 1000px; }
    .aft02 .bot { width: 1032px; padding: 22px 0; }
    .aft02 .botF { padding: 0 13px;}
    .aft02 .botF .fa { font-size: 65px; }
    .aft02 .bot .box { padding: 43px 0 105px; box-shadow: 0 0 11px #d8d8d8;}
    .aft02 .bot .box .icon { height: 95px; width: 95px;}
    .aft02 .bot .box .icon img { width: 48px; }
    .aft02 .bot .box h4 { font-size: 26px; margin-bottom: 5px; margin-top: 44px; }
    .aft02 .bot .box h5 { width: 220px; font-size: 16px; line-height: 30px; height: 48px; }
    .aft02 .bot .box h5::after { width: 17px; height: 3px; bottom: -125px; }
    .aft02 .botF .fa-angle-left {left: -18px;}
    .aft02 .botF .fa-angle-right {right: -18px;}
    .aft02 { padding: 115px 0 90px; }
    .aft02 .bg_fix { height: 555px; }
    .aft03 .icenter2 .ri >ul li { padding-left: 15px; font-size: 14px; line-height: 24px; }
    .aft03 .icenter2 .ri >ul { margin: 16px 0 0px; }
    .aft03 dl dd { padding-top: 34px; padding-bottom: 12px; }
    .aft03 dl dd .icon { width: 74px; margin-right: 50px; }
    .aft03 dl dd .text h4 { font-size: 16px; margin-bottom: 8px; }
    .aft03 dl dd .text h4 strong { font-size: 58px; }
    .aft03 dl dd .text h4::after { height: 4px;}
    .aft03 dl dd .text p { font-size: 15px; }
    .aft03 .icenter2 .le { height: 529px; }
    .aft04 { padding: 100px 0 155px; }
    .aft04 dl dd { padding-left: 36px; padding-bottom: 36px;}
    .aft04 .hu_h3 { padding-left: 36px; }
    .aft04 dl { margin-top: 38px;}
    .aft04 dl dd .ri .number .t .icon { width: 48px; margin-right: 10px;}
    .aft04 dl dd .ri .number .t a { font-size: 30px; }
    .aft04 dl dd .ri .number .t a::after { width: 41px;}
    .aft04 dl dd .ri .number span { font-size: 16px; }
    .aft04 dl dd .ri .name { font-size: 16px; width: 133px; height: 38px;}
    .aft04 dl dd .bg { width: 115px; }
    .aft04 dl dd .ri .number { margin-top: 70px; }
}

@media only screen and (max-width:768px){
    .aft01 { padding: 50px 0; }
    .aft01 h4 { font-size: 22px; margin: 10px 0 22px; }
    .aft01 .box .min {        width: 192px; height: 192px; }
    .aft01 .box .min h5 { font-size: 14px; margin-bottom: 20px; }
    .aft01 .box .min h6 {      font-size: 16px; margin-bottom: 34px; height: 40px; display: flex; align-items: center;}
    .aft01 p { font-size: 16px; }
    .aft01 .box .min:nth-of-type(2) { margin-left: -25px; }
    .aft02 .top p { font-size: 15px; line-height: 26px; margin-top: 8px; }
    .aft02 .top .line { height: 42px; margin: 14px 0;position: relative; }
    .aft02 .top h4 { font-size: 22px; }
    .aft02 .bot { width: 110%; }
    .aft02 .top { margin-bottom: 20px; }
    .aft02 .botF { padding: 0 0px; }
    @keyframes hua2 { from { top: 0%; } to { top: 95%; } }
    .aft02 .bot .aft02Swiper { width: 100%; }
    .aft02 .bot { width: 100%;padding: 20px; }
    .aft02 .botF .fa-angle-left { left: -8px; }
    .aft02 .botF .fa-angle-right{ right: -8px; }
    .aft02 { padding: 80px 0 40px; }
    .aft02 .bg_fix { height: 483px; }
    .aft03 .icenter2 {flex-flow: wrap;}
    .aft03 .icenter2 .le {width: 100%;height: auto;margin-bottom: 20px;}
    .aft03 .icenter2 .ri {width: 100%;}
    .aft03 dl dd .icon { width: 60px; margin-right: 31px; }
    .aft03 { padding-bottom: 50px; }
    .aft04 {    padding: 50px 0 20px; background-attachment: unset;}
    .aft04 .hu_h3 { padding-left: 0px; }
    .aft04 dl { margin-top: 26px; flex-flow: wrap;}
    .aft04 dl dd {     padding-left: 22px; padding-bottom: 22px; width: fit-content; margin-bottom: 30px; }
    .aft04 dl dd .bg {     width: 72px; bottom: 0px; }
    .aft04 dl dd .le .imgbox {    height: 153px; width: 123px;}
    .aft04 dl dd .ri .name { font-size: 14px; width: 114px; height: 33px; }
    .aft04 dl dd .ri .number { margin-top: 38px; }
    .aft04 dl dd .ri .number .t a { font-size: 24px; }
    .aft04 dl dd .ri .number .t .icon { width: 32px; margin-right: 6px; }
    .aft04 dl dd .ri .number span { font-size: 14px; }
    .aft04 dl dd .ri { width: 60%; margin-left: 8%; }
    .aft01 .box:hover .min:nth-of-type(1) { left: 168px; }
    .aft01 .box:hover .min:nth-of-type(2) { right: 168px; }
}
.custom-2new .ui .top {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.custom-2new .ui .top .left {
    padding-right: 65px;
}
.custom-2new .ui .top .left .h3 {
    padding-left: 35px;
    border-left: 3px solid var(--color);
}
.custom-2new .ui .top .left p {
    line-height: 2;
    margin-top: 35px;
}
.custom-2new .ui .bottom {
    background: #fff;
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*margin-top: 30px;*/
}
.custom-2new .ui .bottom .left {
    padding-right: 80px;
}
.custom-2new .ui .bottom .left p {
    max-width: 600px;
    line-height: 1.8;
    margin-top: 45px;
}
.custom-2new .ui .bottom .right {
    /*padding-right: 80px;*/
}
.custom-2new .ui .bottom .right ul.list3 li.active {
    background: #f3f3f3;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}
.custom-2new .ui .bottom .right ul.list3 li .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 28px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #eee;
    line-height: 36px;
}
.custom-2new .ui .bottom .right ul.list3 li .top em {
    margin-left: 25px;
}
.custom-2new .ui .bottom .right ul.list3 li .top i.fr {
    position: absolute;
    top: 16px;
    right: 25px;
}
.custom-2new .ui .bottom .right ul.list3 li .content {
    padding: 10px 30px 20px 75px;
    line-height: 1.8;
    display: none;
    font-size: 16px;
}
@media screen and (max-width: 1250px) {
    .font-48 {
        font-size: 30px;
    }
    .custom-2new .ui .bottom .left {
        padding-right: 0px;
    }
    .font-36 {
        font-size: 28px;
    }
    .font-16 {
        font-size: 16px;
        line-height: 30px;
    }
}
@media screen and (max-width: 1000px) {
    .font-30 {
        font-size: 18px;
        line-height: 32px;
    }
    .custom-1 .btm ul.list2 li.item {
        width: 120px;
        height: 120px;
    }
    .custom-2new .ui .bottom .right {
        padding-right: 0;
    }
    .custom-2new .ui .bottom {
        padding: 30px 25px;
    }
}
@media screen and (max-width: 700px) {
    .font-40 {
        font-size: 28px;
    }
    .font-20 {
        font-size: 14px;
    }
    .custom-2new .ui .top {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .custom-2new .ui .top .left {
        padding-right: 0px;
        width: 100%;
    }
    .custom-2new .ui .top .right {
        width: 100%;
    }
    .custom-2new .ui .bottom .right ul.list3 li .top{
        flex-wrap: nowrap;
        font-size: 16px;
        line-height: 30px;
    }
    .custom-2new .ui .bottom .left {
        padding-right: 0px;
        width: 100%;
    }
    .custom-2new .ui .bottom .right {
        padding-right: 0;
        width: 100%;
        margin-top: 40px;
    }
}
@media screen and (max-width: 500px) {
  .font-40 {
    font-size: 20px;
  }
  .font-48 {
    font-size: 24px;
    line-height: 40px;
  }
  .font-36 {
    font-size: 24px;
  }
}
.hu_h3 {
    font-size: 60px;
    font-weight: 700;
    color: #111;
}
.contact2-page .marginBox {
  padding-top: 00px;
}
.contact2-page .contact-1 {
  padding: 150px 0 110px;
  text-align: center;
}
.contact2-page .contact-1 .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 1.6;
  max-width: 650px;
  display: block;
  margin: 1em auto 3em;
}
.contact2-page .contact-1 .list ul {
  margin: -20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact2-page .contact-1 .list ul li {
  padding: 20px;
}
.contact2-page .contact-1 .list ul li .box {
  padding: 35px 5% 35px;
  border: 1px solid #bfbfbf;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  height: 100%;
  position: relative;
  top: 0;
}
.contact2-page .contact-1 .list ul li .box i {
  display: block;
}
.contact2-page .contact-1 .list ul li .box i img {
  display: block;
  margin: 0 auto;
}
.contact2-page .contact-1 .list ul li .box span.h6 {
  font-weight: 500;
  font-size: 24px;
  color: #242424;
  margin: 1em 0 .5em;
  display: block;
}
.contact2-page .contact-1 .list ul li .box p {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 2;
}
.contact2-page .contact-1 .list ul li .box:hover {
  border-color: var(--color);
  top: -20px;
}
.contact2-page .map {
  position: relative;
  z-index: 1;
}
.contact2-page .form ul {
  margin: -15px -7px;
}
.contact2-page .form ul li {
  padding: 15px 7px;
}
.contact2-page .form ul li input,
.contact2-page .form ul li textarea {
  display: block;
  width: 100%;
  font-size: 18px;
  padding: .6em 1em;
  border: 1px solid #bfbfbf;
}
.contact2-page .form ul li input::-webkit-input-placeholder, .contact2-page .form ul li textarea::-webkit-input-placeholder {
  color: #8e8e8e;
}
.contact2-page .form ul li input:-moz-placeholder, .contact2-page .form ul li textarea:-moz-placeholder {
  color: #8e8e8e;
}
.contact2-page .form ul li input::-moz-placeholder, .contact2-page .form ul li textarea::-moz-placeholder {
  color: #8e8e8e;
}
.contact2-page .form ul li input:-ms-input-placeholder, .contact2-page .form ul li textarea:-ms-input-placeholder {
  color: #8e8e8e;
}
.contact2-page .form ul li input::placeholder,
.contact2-page .form ul li textarea::placeholder {
  color: #8e8e8e;
}
.contact2-page .form ul li textarea {
  height: 150px;
}
.contact2-page .form ul li input[type="submit"] {
  border: none;
  background: var(--color);
  color: white;
  font-size: 20px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact2-page .form ul li input[type="submit"]:hover {
  background: #242424;
}
.contact2-page .form ul li.wid-100 {
  width: 100%;
}
@media screen and (max-width: 1600px) {
  .contact2-page .form ul li {
    padding: 6px;
  }
  .contact2-page .form ul {
    margin: -6px;
  }
  .contact2-page .form ul li input,
  .contact2-page .form ul li textarea,
  .contact2-page .form ul li input[type="submit"] {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
    .contact2-page .form ul li input,
  .contact2-page .form ul li textarea,
  .contact2-page .form ul li input[type="submit"] {
    font-size: 14px;
    padding: .5em;
  }
}
#footerMask {
  background: url(../images/foot-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 5.7vw 0;
  color: #fff;
}
#footerMask .column {
  padding-left: 59px;
}
#footerMask .Tit {
  font-size: 1.56vw;
}
#footerMask .content {
  line-height: 2;
}
@media (max-width: 1000px) {
  #footerMask .Tit {
    font-size: 30px;
  }
  #footerMask {
    padding: 60px 0;
  }
}
@media (max-width: 700px) {
  #footerMask .column {
    padding: 0 3%;
  }
  #footerMask .Tit {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  #footerMask {
    text-align: right;
  }
  #footerMask .Tit {
    font-size: 20px;
  }
  #footerMask .Tit br {
    display: none;
  }
}

.custom3-page  {
     background-color: #faf9f9;
}
.custom3-page .custom-1 {
    padding: 0px 0 90px 0;
}
.custom3-page .custom-1 .top {
    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;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 95px;
}
.custom3-page .custom-1 .top .h3 {
    width: 50%;
    padding-left: 35px;
    line-height: 1.2;
    border-left: 3px solid var(--base-color);
}
.custom3-page .custom-1 .top p {
    width: 50%;
    padding-left: 20px;
    line-height: 2;
}
.custom3-page .custom-1 .btm ul.list2 {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.custom3-page .custom-1 .btm ul.list2 li.item {
    margin: 0 10px;
    width: 180px;
    height: 180px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #000;
    border-radius: 100%;
}
.custom3-page .custom-1 .btm ul.list2 li.item img {
    -webkit-filter: brightness(0);
    filter: brightness(0);
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}
.custom3-page .custom-1 .btm ul.list2 li.item:hover img {
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.custom3-page .custom-2 {
    padding-bottom: 10px;
}
.custom3-page .custom-2 .ui.container .top {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.custom3-page .custom-2 .ui.container .top .left {
    padding-right: 65px;
}
.custom3-page .custom-2 .ui.container .top .left .h3 {
    padding-left: 35px;
    border-left: 3px solid var(--base-color);
}
.custom3-page .custom-2 .ui.container .top .left p {
    line-height: 2;
    margin-top: 35px;
}
.custom3-page .custom-2 .ui.container .bottom {
    margin-top: 100px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 20px 0 rgb(0 0 0 / 10%);
    /*box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);*/
    padding: 80px 80px 115px 80px;
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.custom3-page .custom-2 .ui.container .bottom .left {
    padding-right: 80px;
}
.custom3-page .custom-2 .ui.container .bottom .left .h4 {
    font-size: 30px;
    
}
.custom3-page .custom-2 .ui.container .bottom .left p {
    max-width: 600px;
    line-height: 1.8;
    margin-top: 45px;
}
.custom3-page .custom-2 .ui.container .bottom .right {
    /*padding-right: 80px;*/
}
.custom3-page .custom-2 .ui.container .bottom .right ul.list3 li.active {
    background: #f3f3f3;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}
.custom3-page .custom-2 .ui.container .bottom .right ul.list3 li .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 28px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #eee;
}
.custom3-page .custom-2 .ui.container .bottom .right ul.list3 li .top em {
    margin-left: 25px;
}
.custom3-page .custom-2 .ui.container .bottom .right ul.list3 li .top i.fr {
    position: absolute;
    top: 16px;
    right: 25px;
}
.custom3-page .custom-2 .ui.container .bottom .right ul.list3 li .content {
    padding: 10px 30px 20px 30px;
    line-height: 1.8;
    display: none;
    font-size: 16px;
}
.custom3-page .custom-3 {
    padding-top: 90px;
    padding-bottom: 100px;
}
.custom3-page .custom-3 .ui.container {
    text-align: center;
}
.custom3-page .custom-3 .ui.container .strengthbox {
    margin-top: 55px;
}
.custom3-page .custom-3 .ui.container .strengthbox ul.list4 li {
    padding: 0 15px;
}
.custom3-page .custom-3 .ui.container .strengthbox ul.list4 li .item {
    background: #f7f7f7;
    border-radius: 5px;
}
.custom3-page .custom-3 .ui.container .strengthbox ul.list4 li .item .text {
    padding: 25px;
    text-align: center;
}
.custom3-page .custom-3 .ui.container .strengthbox ul.list4 li .item .text p {
    line-height: 1.8;
    font-weight: 400;
    margin-top: 15px;
    max-height: 116px;
    overflow-y: auto;
}

@media screen and (max-width: 1250px) {
    .font-48 {
        font-size: 30px;
    }
    .custom3-page .custom-2 .ui.container .bottom .left {
        padding-right: 0px;
    }
    .font-36 {
        font-size: 28px;
    }
    .font-16 {
        font-size: 16px;
        line-height: 30px;
    }
}
@media screen and (max-width: 1000px) {
    .font-30 {
        font-size: 18px;
        line-height: 32px;
    }
    .custom3-page .custom-1 .btm ul.list2 li.item {
        width: 120px;
        height: 120px;
    }
    .custom3-page .custom-2 .ui.container .bottom .right {
        padding-right: 0;
    }
    .custom3-page .custom-2 .ui.container .bottom {
        padding: 30px 25px;
    }
}
@media screen and (max-width: 700px) {
    .font-40 {
        font-size: 28px;
    }
    .custom3-page .custom-1 .top .h3 {
        width: 100%;
    }
    .custom3-page .custom-1 .top p {
        width: 100%;
    }
    .custom3-page .custom-1 .btm ul.list2 li.item {
        width: 100px;
        height: 100px;
    }
    .custom3-page .custom-2 .ui.container .top {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .custom3-page .custom-2 .ui.container .top .left {
        padding-right: 0px;
        width: 100%;
    }
    .custom3-page .custom-2 .ui.container .top .right {
        width: 100%;
    }
    .custom3-page .custom-2 .ui.container .bottom .right ul.list3 li .top{
        flex-wrap: nowrap;
        font-size: 16px;
        line-height: 30px;
    }
    .custom3-page .custom-2 .ui.container .bottom .left {
        padding-right: 0px;
        width: 100%;
    }
    .custom3-page .custom-2 .ui.container .bottom .right {
        padding-right: 0;
        width: 100%;
        margin-top: 40px;
    }
}
@media screen and (max-width: 500px) {
    .font-40 {
        font-size: 20px;
    }
    .font-48 {
        font-size: 24px;
        line-height: 40px;
    }
    .font-36 {
        font-size: 24px;
    }
}
    .seoPublic {
        word-break: break-word;
    }
    .seoPublic .title {
        font-size: 40px;
        font-weight: bold;
        line-height: 1.4;
        margin-bottom: 0.5em;
    }

    .seoPublic > div {
        padding: 60px 0;
    }

    .seoPublic > div:nth-child(odd) {
        background: #fafafa;
    }

    .seoPublic .Auxil-about .box {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }

    .seoPublic .Auxil-about .box .left {
        width: 40%;
    }

    .seoPublic .Auxil-about .box .left .img {
        height: 100%;
        background-size: cover;
            border-radius: 20px;
        background-position: center center;
        display: block;
        overflow: hidden;
    }

    .seoPublic .Auxil-about .box .right {
        width: 60%;
        padding-left: 5%;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .seoPublic .Auxil-about .box .right div.h3 {
        font-size: 40px;
        font-weight: 600;
        line-height: 40px;
        margin-bottom: 1em;
    }

    .seoPublic .Auxil-about .box .right .text {
        font-size: 16px;
        line-height: 1.8;
        color: #666;
        /*max-height: 400px;*/
        overflow: auto;
    }

    .seoPublic .Auxil-honor .list ul {
        margin: -10px;
    }

    .seoPublic .Auxil-honor .list ul li {
        padding: 10px;
    }

    .seoPublic .Auxil-honor .list ul li a {
        display: block;
    }

    .seoPublic .Auxil-honor .list ul li a img {
        width: 100%;
    }

    .seoPublic .Auxil-news .list ul {
        margin: -13px;
    }

    .seoPublic .Auxil-news .list ul li {
        padding: 13px;
    }

    .seoPublic .Auxil-news .list ul li a.img-box {
        display: block;
        height: 360px;
            border-radius: 20px;
        background-size: cover;
        background-position: center center;
    }

    .seoPublic .Auxil-news .list ul li .content {
        margin-top: 30px;
    }

    .seoPublic .Auxil-news .list ul li .content div.h6 {
        font-size: 20px;
            font-weight: 600;
        line-height: 40px;
        min-height: 5rem;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-news .list ul li .content div.h6:hover {
        color: var(--color);
    }

    .seoPublic .Auxil-news .list ul li .content time {
        font-size: 14px;
        line-height: 28px;
        margin-top: .5em;
        display: block;
    }

    .seoPublic .Auxil-news .list ul li .content p {
        font-weight: 300;
        font-size: 16px;
        line-height: 30px;
        margin: 1em 0;
    }

    .seoPublic .Auxil-news .list ul li .content a.link {
        font-weight: 300;
        font-size: 16px;
        text-transform: uppercase;
        line-height: 30px;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        border-bottom: 1px solid transparent;
        display: inline-block;
    }

    .seoPublic .Auxil-news .list ul li .content a.link:hover {
        border-color: var(--color);
        color: var(--color);
    }

    .seoPublic .Auxil-form .form ul {
        margin: -10px;
    }

    .seoPublic .Auxil-form .form ul li {
        padding: 10px;
    }

    .seoPublic .Auxil-form .form ul li input,
    .seoPublic .Auxil-form .form ul li textarea {
        display: block;
        width: 100%;
        border: 1px solid #eee;
        font-size: 16px;
        line-height: 30px;
        padding: 8px 15px;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-form .form ul li textarea {
        height: 100px;
    }

    .seoPublic .Auxil-form .form ul li input:focus,
    .seoPublic .Auxil-form .form ul li textarea:focus {
        border-color: var(--color);
    }

    .seoPublic .Auxil-form .form ul li.wid-100 {
        width: 100%;
    }

    .seoPublic .Auxil-form .form ul li input[type="submit"] {
        width: auto;
        display: inline-block;
        padding-left: 25px;
        padding-right: 25px;
        background: var(--color);
        color: whitesmoke;
        border: none;
    }

    .seoPublic .Auxil-form .form ul li input[type="submit"]:hover {
        background: #222;
    }

    .seoPublic .seoIndustry .text {
        font-size: 16px;
        line-height: 1.8;
        color: #666;
    }

    .seoPublic .text a {
        color: var(--color);
    }

    .seoPublic .text a:hover {
        text-decoration: underline;
    }

    .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: var(--color);
        color: white;
    }

    .seoPublic .Auxil-related .list ul {
        margin: -20px -25px;
    }

    .seoPublic .Auxil-related .list ul li {
        padding: 20px 25px;
    }

    .seoPublic .Auxil-related .list ul li .box {
        display: block;
        background: white;
        -o-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
        -webkit-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
        box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
    }

    .seoPublic .Auxil-related .list ul li .box a.img-box {
        display: block;
    }

    .seoPublic .Auxil-related .list ul li .box .content {
        display: block;
        padding: 20px;
        text-align: center;
    }

    .seoPublic .Auxil-related .list ul li .box .content div.h3 {
        font-size: 22px;
        color: #111;
        font-weight: 500;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-related .list ul li .box .content div.h3:hover {
        color: var(--color);
    }

    .seoPublic .Auxil-related .list ul li .box .content p {
        display: block;
        font-size: 16px;
        color: #888;
        line-height: 1.6;
        font-weight: 400;
        margin: .5em 0;
        height: 4.8em;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        height: 40px;
        padding: 0 20px;
        border: 1px solid var(--color);
        font-size: 16px;
        font-weight: 700;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        color: var(--color);
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more i {
        margin-left: 5px;
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more:hover {
        color: white;
        background: var(--color);
    }

    @media screen and (max-width: 1400px) {
        .seoPublic .title {
            font-size: 28px;
            margin-bottom: 1.5em;
        }

        .seoPublic .Auxil-about .box .right div.title,
        .seoPublic .Auxil-related .list ul li .box .content div.h3 {
            font-size: 20px;
        }

        .seoPublic .Auxil-form .form ul li input,
        .seoPublic .Auxil-form .form ul li textarea,
        .seoPublic .Auxil-about .box .right .text,
        .seoPublic .Auxil-news .list ul li .content p,
        .seoPublic .seoIndustry .text,
        .seoPublic .Auxil-related .list ul li .box .content p {
            font-size: 14px;
            line-height: 28px;
        }

        .seoPublic .Auxil-news .list ul li .content div.h6 {
            font-size: 18px;
            line-height: 32px;
        }

        .seoPublic .Auxil-related .list ul li .box .content a.more {
            font-size: 14px;
            line-height: 34px;
            height: 34px;
            padding: 0 15px;
        }

        .seoPublic .Auxil-related .list ul li {
            padding: 15px;
        }

        .seoPublic .Auxil-related .list ul {
            margin: -15px;
        }
    }

    @media screen and (max-width: 1000px) {
        .seoPublic .title {
            font-size: 24px;
            margin-bottom: 1em;
        }

        #cp-Nav {
            display: block;
        }

        #cp-Nav .nav {
            padding: 0 15px;
        }

        #cp-Nav .nav div.title {
            font-size: 18px;
            font-weight: bold;
            padding: 8px 10px;
            background: var(--color);
            border-radius: 5px;
            color: white;
        }

        #cp-Nav .nav i.mask {
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 230;
            background: rgba(0, 0, 0, 0.2);
        }

        #cp-Nav .nav > ul {
            display: none;
        }

        #cp-Nav .nav ul {
            position: fixed;
            top: 10%;
            max-height: 80%;
            left: 5%;
            width: 90%;
            padding: 20px;
            border-radius: 5px;
            background: white;
            z-index: 300;
            font-size: 16px;
            overflow: auto;
        }

        #cp-Nav .nav ul ul {
            padding: 0 10px;
            font-size: 14px;
            position: static;
            max-height: none;
            width: 100%;
            margin: 10px 0;
        }

        #cp-Nav .nav ul li a {
            display: block;
            padding: 5px 0;
            line-height: 28px;
        }

        .seoPublic .Auxil-about .box {
            display: block;
        }

        .seoPublic .Auxil-about .box .right {
            width: 100%;
            padding: 0;
            margin-top: 20px;
        }

        .seoPublic .Auxil-about .box .left {
            width: 100%;
            padding: 0;
        }

        .seoPublic .Auxil-about .box .left .img {
            height: 300px;
        }

        .seoPublic .Auxil-about .box .right div.h3 {
            font-size: 18px;
            line-height: 32px;
        }

        .seoPublic > div {
            padding: 30px 0;
        }
        .seoPublic .Auxil-about .box .right .text {
            max-height: none;
        }
    }
.pxl-service-grid-layout2 .item--excerpt {
    color: #555 !important;
}

.inner-page a.link {
  font-size: 14px;
  line-height: 28px;
  display: inline-block;
  padding-bottom: .3em;
  font-weight: 500;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page a.link:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: black;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page a.link img {
  margin-left: 1em;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  max-width: .7em;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page a.link:hover {
  color: var(--color);
}
.inner-page a.link:hover:before {
  width: 0;
}
.inner-page a.link:hover img {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.inner-page a.btn {
  font-size: 15px;
    line-height: 60px;
    height: 60px;
    padding: 0 60px;
  display: inline-block;
  font-weight: 500;
  color: white;
      border-radius: 30px;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page a.btn img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
  max-width: .7em;
}
.inner-page a.btn:hover {
  background-color: black;
}
@media screen and (max-width: 1450px) {
    .service-page .service-1 .bottom ul li p {
        font-size: 20px;
    }
    .service-page .service-2 .right .header .title {
        font-size: 54px;
        margin-bottom: .5em;
    }
    .service-page .service-2 .right .header .con {
        font-size: 16px;
    }
    .service-page .service-2 .right .list ul li .tit {
        font-size: 20px;
    }
    .service-page .service-3 .content ul li .ig .tit {
        font-size: 28px;
    }
    .service-page .service-4 .content ul li .ig .text .tit {
        font-size: 24px;
    }
    .custom-page .custom-2 .right ul li .item span {
        font-size: 60px;
    }
    .service-page .service-1 .bottom ul li {
        padding-right: 15px;
    }
}
@media screen and (max-width: 1250px) {
    .sus-page .sus-2 .title,.sus-page .sus-1 .box .title,.service-page .service-3 .header .title,.service-page .service-4 .header .title,
    .custom-page .custom-2 .left span,.service-page .service-1 .top .left .title,.hu_h3,.contact-page .contact-4 .left h4 {
        font-size: 48px;
    }
    .sus-page .sus-2 .box ul li .ig .left {
        width: 100%;
    }
    .sus-page .sus-2 .box ul li .ig .right {
        width: 100%;
        margin-top: 20px;
    }
    .sus-page .sus-2 .box ul li .ig {
        flex-wrap: wrap;
    }
    .sus-page .sus-2 .box ul li .ig .left em {
        font-size: 42px;
    }
    .sus-page .sus-2 .box ul li .ig .left span {
        padding-top: 4px;
        font-size: 16px;
    }
    .sus-page .sus-1 .box .con,.contact-page .contact-4 .right form input {
        font-size: 16px;
    }
    .service-page .service-2 .right .header .title {
        font-size: 42px;
    }
    .service-page .service-2 .right .header .con {
        font-size: 14px;
        line-height: 28px;
    }
    .service-page .service-2 .right .list ul li .tit {
        font-size: 18px;
    }
    .service-page .service-2 .right .list ul li .con {
        font-size: 16px;
    }
    .service-page .service-2 .right .list {
        margin-top: 30px;
    }
    .service-page .service-3 .content ul li .ig .tit {
        font-size: 24px;
    }
    .service-page .service-3 .content ul li .ig .con {
        font-size: 16px;
    }
    .custom-page .custom-2 .right ul li .item .tit {
        font-size: 24px;
    }
    .custom-page .custom-2 .right ul li .item {
        padding-top: 80px;
        height: 400px;
    }
    .custom-page .custom-2 .right ul li .item .text {
        padding: 0 15px;
    }
    .custom-page .custom-2 .right ul li .item span {
        font-size: 40px;
    }
    .service-page .service-1 .bottom ul li p {
        font-size: 16px;
    }
    .service-page .service-1 .bottom ul li i img {
        max-height: 50px;
    }
    .aft02 .bot .aft02Swiper,.aft02 .bot {
        max-width: 100%;
    }
    .aft02 .bot .box p {
        height: auto;
        font-size: 14px;
        line-height: 28px;
    }
    .aft02 .bot .box h5:after {
        display: none;
    }
    .aft02 .bot .box h5 {
        height: auto;
        width: 100%;
    }
    .aft02 .bot .box h4 {
        margin-top: 30px;
        font-size: 20px;
        line-height: 36px;
    }
    .aft02 .bot .box {
        padding: 40px 0;
    }
    .contact-page .contact-2 ul {
        flex-wrap: wrap;
    }
    .contact-page .contact-2 ul li {
        max-width: none;
    }
}
@media screen and (max-width: 1000px) {
    .sus-page .sus-1 .box {
        width: 100%;
        padding: 0 15px;
    }
    .sus-page .sus-1 .gd,
    .sus-page .sus-1 .imgs {
        display: none;
    }
    .sus-page .sus-2 .title,.sus-page .sus-1 .box .title,.service-page .service-3 .header .title,.service-page .service-4 .header .title,
    .custom-page .custom-2 .left span,.service-page .service-1 .top .left .title,.hu_h3,.contact-page .contact-4 .left h4 {
        font-size: 32px;
    }
    .sus-page .sus-2 .box ul li .ig .left em {
        font-size: 28px;
    }
    .sus-page .sus-2 .box ul li .ig .left span {
        font-size: 14px;
        line-height: 28px;
    }
    .sus-page .sus-1 .box .con,.sus-page .sus-2 .box ul li .ig .right {
        font-size: 14px;
        line-height: 28px;
    }
    .service-page .service-2 .right .header .title {
        font-size: 36px;
    }
    .service-page .service-3 .content ul li .ig .tit {
        font-size: 20px;
    }
    .custom-page .custom-2 .right ul li.active .item .tit {
        font-size: 20px;
    }
    .custom-page .custom-2 .right ul li .item span {
        font-size: 32px;
    }
    .service-page .service-1 .bottom ul li p {
        font-size: 14px;
    }
    .service-page .service-4 .content ul li .ig .text {
        position: static;
        opacity: 1;
    }
    .service-page .service-4 .content ul li .ig .img {
        position: static;
        height: auto !important;
    }
    .service-page .service-4 .content ul li .ig {
        height: auto;
    }
    .service-page .service-4 .content ul li .ig .img img {
        transform: scale(1);
    }
    .service-page .service-4 .content ul li .ig .text {
        flex-wrap: wrap;
    }
    .service-page .service-4 .content ul li .ig .text>div {
        width: 100%;
    }
    .service-page .service-4 .content ul li .text .mores {
        margin-left: 0;
        zoom: .7;
    }
    .custom-page .custom-2 .right ul li.active .item,
    .custom-page .custom-2 .right ul li .item {
        padding-top: 50px
    }
    .custom-page .custom-2 {
        display: none;
    }
    .aft02 .top h4 {
        font-size: 20px;
    }
    .font-20 {
        font-size: 16px;
    }
    .aft02 .bg_fix {
        height: 620px;
    }
    .aft02 .bot .box .icon {
        zoom: .7;
    }
    
}
@media screen and (max-width: 700px) {
    .sus-page .sus-2 .title,.sus-page .sus-1 .box .title,.service-page .service-3 .header .title,.service-page .service-4 .header .title,
    .custom-page .custom-2 .left span,.service-page .service-1 .top .left .title,.hu_h3,.contact-page .contact-4 .left h4 {
        font-size: 24px;
        line-height: 40px;
    }
    .sus-page .sus-2 .box ul li .ig .left em {
        font-size: 20px;
        line-height: 36px;
    }
    .service-page .service-2 .right .header .title {
        font-size: 28px;
        line-height: 1.6;
    }
    .service-page .service-3 .content ul li .ig .tit {
        font-size: 18px;
        line-height: 32px;
    }
    .custom-page .custom-2 .right ul li .item span {
        font-size: 28px;
    }
}


.product-page .pro-nav ul{
  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;
}
.product-page .pro-nav ul li{
  font-size: 25px;
  width: 25%;
  text-align: center;
  font-weight: 300;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .pro-nav ul li a{
  position: relative;
}
.product-page .pro-nav ul li a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .pro-nav ul li.active a,
.product-page .pro-nav ul li a:hover{
  color: var(--color);
}
.product-page .pro-nav ul li.active a::after,
.product-page .pro-nav ul li a:hover::after{
  background: var(--color);
}
.product-page .init-2 {
  margin-top: 80px;
}
.product-page .init-2 .container .tip_title {
  font-weight: bold;
}
.cpmiaoshu{
  font-size: 26px;
  font-weight: bold; 
  text-align: center;
}
.product-page .init-2 .container .tip_des {
  font-size: 16px;
  margin: 30px auto; 
  line-height: 1.6;
 text-align: left;
  max-height: 294px;
  overflow: auto;
}
.product-page .init-2 .container .content {
  margin-top: 20px;
  text-align: left;
}
.product-page .init-2 .container .content ul {
  margin: -30px -15px;
  padding-bottom: 120px;
}
.product-page .init-2 .container .content ul li {
  padding: 30px 15px;
  text-align: center;
}
.product-page .init-2 .container .content ul li a {
  margin: auto;
  transition: all 0.5s;
}
.product-page .init-2 .container .content ul li .img {
  padding: 30px;
  background-color: #fff;
  display: flex;
  align-items: center;
  border-radius: 20px;
  justify-content: center; 
  overflow: hidden;
}
.product-page .init-2 .container .content ul li .img img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.product-page .init-2 .container .content ul li .img .desc{
    position: absolute;
    right: 18px;
    top: 20px;
    font-size: 14px;
    border: 2px solid var(--color);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    border-radius: 15px;
    padding: 2px 20px;
}
.product-page .init-2 .container .content ul li:hover .img .desc{
        -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
}
.product-page .init-2 .container .content ul li .more {
  margin-top: -28px;
  transform: translateY(40px);
  opacity: 0;
}
.product-page .init-2 .container .content ul li .title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 14px;
  min-height: 5rem;
}
.product-page .init-2 .container .content ul li .des {
  font-size: 16px;
  /*margin-top: 10px;*/
  line-height: 30px;
  color: #959595;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-page .init-2 .container .content ul li:hover .more {
  opacity: 1;
  transform: translateY(0);
  /*border-radius: 10px;*/
}
.product-page .init-2 .container .content ul li:hover .title,
.product-page .init-2 .container .content ul li:hover .des {
  color: var(--color);
}
.prodet-page .init-1 {
  margin-top: 50px;
}
.prodet-page .init-1 .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prodet-page .init-1 .container .left {
  width: 49%;
}
.prodet-page .init-1 .container .left a {

  display: flex;
  justify-content: center;
  padding: 40px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 20px;
}
.prodet-page .init-1 .container .left .swiper a img {
  width: auto;
  height: auto;
  max-width: unset;
  object-fit: contain;
}
.prodet-page .init-1 .container .right {
  width: 47%;
}
.prodet-page .init-1 .container .right .title {
  font-size: 30px;
  font-weight: bold;
}
.prodet-page .init-1 .container .right .auth {
  font-size: 20px;
  font-weight: 300;
  margin-top: 40px;
}
.prodet-page .init-1 .container .right .share_list {
  /*margin-top: 16px;*/
}
.prodet-page .init-1 .container .right .share_list a {
  display: inline-block;
  margin-right: 30px;
  margin-top: 10px;
  font-size: 24px;
  font-weight: 300;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .init-1 .container .right .share_list a i {
  margin-right: 4px;
}
.prodet-page .init-1 .container .right .share_list a:hover{
  color: var(--color);
}
.prodet-page .init-1 .container .right .des {
  font-size: 18px;
  line-height: 30px;
  margin-top: 30px; 
  font-weight: 400;
  /*height: 400px;*/
  overflow: auto;
}
.prodet-page .init-1 .container .right .more {
  margin-top: 20px;
  cursor: pointer;
}
.prodet-page .init-1 .container .left .swiper {
  margin-top: 30px;
  overflow: hidden;
}
.prodet-page .init-1 .container .left .swiper .swiper-wrapper .swiper-slide {
   display: flex;
  justify-content: center;
}
.prodet-page .init-1 .container .left .swiper .swiper-wrapper .swiper-slide a {
  width: auto;
  height: auto;
  background-color: #fff;
  padding: 20px;
}
.prodet-page .init-1 .container .left .swiper .swiper-wrapper .swiper-slide a img {
  width: auto;
  height: auto;
  object-fit: contain;
  max-width: 100%;
}
.prodet-page .init-2 {
  margin-top: 140px;
  padding: 0 100px;
}
.prodet-page .init-2 .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /*border: 1px solid #9e9e9e;*/
  padding: 0;
}
.prodet-page .init-2 .container .left {
  width: 320px;
}
.prodet-page .init-2 .container .left .list {
  padding: 20px;
  /*border-bottom: 1px solid #9e9e9e;*/
  position: relative;
  cursor: pointer;
  font-size: 28px;
  font-weight: 700;
}
.prodet-page .init-2 .container .left .list::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 100%;
  top: 0;
  background-color: var(--color);
  left: -1px;
  opacity: 0;
  transition: all 0.5s;
  transform: scaleX(0);
  transform-origin: left;
}
.prodet-page .init-2 .container .left .list:hover::before,
.prodet-page .init-2 .container .left .list.active::before {
  opacity: 1;
  transform: scaleX(1);
}
.prodet-page .init-2 .container .right {
  /*min-height: 530px;*/
  width: calc(100% - 320px);
  /*border-left: 1px solid #9e9e9e;*/
      background: #fff;
          border-radius: 20px;
}
.prodet-page .init-2 .container .right .list {
  padding: 40px;
  display: none;
}
.prodet-page .init-2 .container .right .description .des {
  font-size: 18px;
  line-height: 1.5;
  /*max-height: 460px;*/
  overflow: auto;
}
.prodet-page .init-2 .container .right .about .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prodet-page .init-2 .container .right .about .content .img {
  width: 40%;
}
.prodet-page .init-2 .container .right .about .content .text_cont {
  width: 54%;
}
.prodet-page .init-2 .container .right .about .content .text_cont .tip {
  font-size: 30px;
  font-weight: 700;
}
.prodet-page .init-2 .container .right .about .content .text_cont .des {
  margin-top: 30px;
  font-size: 16px;
  line-height: 2;
}
.prodet-page .init-2 .container .right .contact_info .tip {
  font-size: 30px;
      font-weight: 600;
}
.prodet-page .init-2 .container .right .contact_info form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prodet-page .init-2 .container .right .contact_info form .lists {
  margin-top: 50px;
  width: 50%;
  padding-right: 100px;
}
.prodet-page .init-2 .container .right .contact_info form .lists .tip_name {
  font-size: 22px;
}
.prodet-page .init-2 .container .right .contact_info form .lists input {
  width: 100%;
  padding: 6px 0;
  margin-top: 6px;
  font-size: 16px;
  /*font-weight: 300;*/
  background-color: rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 1px solid #9a9a9a;
}
.prodet-page .init-2 .container .right .contact_info form .more {
  margin-top: 50px;
  text-transform: uppercase;
  width: 160px;
}
.prodet-page .init-3 {
  margin: 60px 0 160px;
}
.prodet-page .init-3 .container .swiper .swiper-wrapper .swiper-slide {
  text-align: center;
}
.prodet-page .init-3 .container .swiper .swiper-wrapper .swiper-slide a {
  display: flex !important;
  transition: all 0.5s;
}
.prodet-page .init-3 .container .swiper .swiper-wrapper .swiper-slide a.title{
  margin-top: 40px;
  justify-content: center;
}
.prodet-page .init-3 .container .swiper .swiper-wrapper .swiper-slide .img {
  background-color: #fff;
  padding: 0 40px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
}
.prodet-page .init-3 .container .swiper .swiper-wrapper .swiper-slide .more {
  margin-top: -28px;
  opacity: 0;
  transform: translateY(40px);
  margin:-28px auto 0;
}
.prodet-page .init-3 .container .swiper .swiper-wrapper .swiper-slide .title {
  font-size: 18px;
  margin-top: 12px;
  font-weight: 400;
  line-height: 28px;
}
.prodet-page .init-3 .container .swiper .swiper-wrapper .swiper-slide:hover .more {
  opacity: 1;
  transform: translateY(0);
}
.prodet-page .init-3 .container .swiper .swiper-wrapper .swiper-slide:hover .title {
  color: var(--color);
}
@media (max-width: 1500px) {
    .prodet-page .init-1 .container .left {
    width: 40%;
  }
  .prodet-page .init-1 .container .right {
    width: 56%;
  }
  /*.prodet-page .init-1 .container .left .swiper .swiper-wrapper .swiper-slide {
    height: 150px;
  }*/
}
@media (max-width: 1250px){
.product-page .init-2 {
    margin-top: 0;
  }
   .prodet-page .init-1 .container .left a{
    height: 500px;
  }
  /*.prodet-page .init-1 .container .left .swiper .swiper-wrapper .swiper-slide{
    height: 100px;
  }*/
  .prodet-page .init-1 {
    margin-top: 0;
  }
  .prodet-page .init-2 .container .right .about .content .img {
    width: 100%;
  }
  .prodet-page .init-2 .container .right .about .content .text_cont {
    width: 100%;
    margin-top: 20px;
  }
  .prodet-page .init-2 .container .right .contact_info form .lists {
    padding-right: 30px;
  }
  .product-page .init-2 .container .content ul li .img{
    padding: 40px 0 0;
  }
}
@media (max-width: 1000px){
  .product-page .pro-nav{
    display: none;
  }
  .product-page{
    padding-top: 0;
  }
    .prodet-page .init-1 .container .left{
    width: 100%;
  }
  .prodet-page .init-1 .container .left a{
    height: 90vw;
  }
  /*.prodet-page .init-1 .container .left .swiper .swiper-wrapper .swiper-slide{
    height: auto !important;
  }*/
  .prodet-page .init-1 .container .right {
    width: 100%;
    display: flex;
    /*text-align: center;*/
    flex-wrap: wrap;
    justify-content: center;
  }
  .prodet-page .init-1 .container .right .title{
    width: 100%;
  }
  .prodet-page .init-1 .container .right > div {
    width: 100%;
  }
  .prodet-page .init-1 .container .left .swiper {
    order: -1;
    margin-top: 20px;
  }
  .prodet-page .init-1 .container .right .title {
    margin-top: 20px;
  }
  .prodet-page .init-1 .container .right .share_list {
    width: 100%;
  }
  /*.prodet-page .init-1 .container .left .swiper .swiper-wrapper .swiper-slide {
    height: 160px;
  }*/
  .prodet-page .init-2 .container {
    border: none;
  }
  .prodet-page .init-2{
    padding: 0 15px;
  }
  .prodet-page .init-2 .container .left {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ffffff;
    justify-content: center;
    text-align: center;
  }
  .prodet-page .init-2 .container .left .list:hover::before,
  .prodet-page .init-2 .container .left .list.active::before {
    display: none;
  }
  .prodet-page .init-2 .container .left .list {
    border-right: 1px solid #fff;
    border-bottom: none;
    width: 33.33%;
  }
  .prodet-page .init-2 .container .left .list.active {
    background-color: var(--color);
    color: #fff;
  }
  .prodet-page .init-2 .container .right {
    width: 100%;
    border: none;
    min-height: 0;
    border: 1px solid #ffffff;
    margin-top: 10px;
  }
  .prodet-page .init-2 .container .right .contact_info form .lists {
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 700px){
     /*.prodet-page .init-1 .container .left .swiper .swiper-wrapper .swiper-slide {
    height: 44vw;
  }*/
  .prodet-page .init-1 .container .right .share_list {
    display: none;
  }
  .prodet-page .init-2 .container .left .list {
    padding: 10px 20px;
    font-size: 20px;
    width: auto;
  }
  
  .prodet-page .init-2 .container .right .list {
    padding: 20px;
  }
}
@media (max-width: 500px){
    .product-page .init-2 .container .tip_title {
    font-size: 24px;
  }
  .product-page .init-2 .container .tip_des {
    margin-top: 10px;
  }
  .product-page .init-2 .container .content ul li {
    margin-top: 30px;
  }
  .product-page .init-2 .container .content ul li:first-child {
    margin-top: 0;
  }
  .product-page .init-2 .container .content ul li .title {
    font-size: 18px;
  }
  .prodet-page .init-1 .container .right .title {
    font-size: 18px;
  }
  .prodet-page .init-1 .container .right .auth {
    margin-top: 10px;
    font-size: 16px;
  }
  .prodet-page .init-1 .container .right .des {
    font-size: 16px;
    margin-top: 10px;
  }
  .prodet-page .init-1 .container .right .more {
    margin-top: 20px;
  }
  .prodet-page .init-2 {
    margin-top: 40px;
  }
  .prodet-page .init-2 .container .left .list {
    width: 100%;
    border-top: 1px solid #fff;
  }
  .prodet-page .init-2 .container .left .list:first-child {
    border: none;
  }
  .prodet-page .init-2 .container .right {
    margin-top: 20px;
  }
  .prodet-page .init-2 .container .left .list {
    font-size: 16px;
  }
  .prodet-page .init-2 .container .right .description .des {
    font-size: 16px;
  }
  .prodet-page .init-2 .container .right .contact_info .tip {
    font-size: 18px;
  }
  .prodet-page .init-2 .container .right .contact_info form .lists {
    margin-top: 20px;
  }
  .prodet-page .init-2 .container .right .contact_info form .lists .tip_name {
    font-size: 18px;
  }
  .prodet-page .init-2 .container .right .contact_info form .more {
    padding: 6px 20px;
    margin-top: 20px;
  }
  .prodet-page .init-2 .container .right .about .content .text_cont .tip {
    font-size: 18px;
  }
  .prodet-page .init-2 .container .right .about .content .text_cont .des {
    margin-top: 20px;
  }
  .prodet-page .init-3 {
    margin-top: 40px;
  }
}

.design-page .design-1 .ui.container{
  max-width: 100%;
  padding: 0 100px;
}
.design-page .design-2 {
  padding: 140px 0 110px;
}
.design-page .design-2 .i-title{
  line-height: 1.2;
  margin-bottom: 105px;
  margin-top: 10px;
}
.design-page .design-2 .left .img{
  text-align: right;
}
.design-page .design-2 .right{
  padding-left: 90px;
}
.design-page .design-2 .right .txt{
  font-size: 20px;
  line-height: 36px;
  color: #7b7b7b;
  margin-top: 70px;
}
.design-page .design-3{
  padding-bottom: 120px;
}
.design-page .design-3 .i-title{
  margin-bottom: 48px;
}
.design-page .design-3 ul {
  margin: -40px;
}
.design-page .design-3 ul li{
  padding: 40px;
}
.design-page .design-3 ul .slick-list{
  padding: 0 28%;
}
.design-page .design-3 ul li .box{
  position: relative;
}
.design-page .design-3 ul li .box img{
  width: 100%;
}
.design-page .design-3 ul li .content{
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background: white;
  position: absolute;
  left: 0;
  bottom: 18%;
  padding: 20px;
  opacity: 0;
}
.design-page .design-3 ul li .content h4{
  font-weight: bold;
  font-size: 20px;
  line-height: 2;
}
.design-page .design-3 ul li .content p{
  font-size: 18px;
  font-weight: bold;
}
.design-page .design-3 ul li:hover .content{
  opacity: 1;
}
.design-page .design-3 ul .slick-dots{
  margin: 0;
  text-align: center;
}
.design-page .design-3 ul .slick-dots li{
  padding: 0;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #e5e5e5;
  display: inline-block;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
}
.design-page .design-3 ul .slick-dots li button{
  display: none;
}
.design-page .design-3 ul .slick-dots li.slick-active{
  background: var(--color);
}
.design-page .design-4{
  background: url(../images/design-4-bg.jpg) no-repeat;
  color: white;
  padding: 107px 0 70px;
  background-attachment: fixed;
}
.design-page .design-4 .left{
  position: sticky;
  top: 170px;
}
.design-page .design-4 .left .i-title{
  line-height: 1.2;
}
.design-page .design-4 .right{
  padding-left: 90px;
}

.design-page .design-4 .right ul li{
  padding-left: 140px;
  position: relative;
  padding-bottom: 100px;
}
.design-page .design-4 .right ul li .icon{
  width: 77px;
  height: 77px;
  border-radius: 100%;
  background: var(--color);
  text-align: center;
  line-height: 77px;
  position: absolute;
  left: 0;
  top: 0;
}
.design-page .design-4 .right ul li .icon img{
  vertical-align: middle;
}
.design-page .design-4 .right ul li .icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 130%;
  width: 1px;
  height: 262%;
  background: rgba(255,255,255,0.3);
}
.design-page .design-4 .right ul li:last-child .icon::after{
  content: none;
}
.design-page .design-4 .right ul li h4{
  font-size: 30px;
  font-weight: bold;
}
.design-page .design-4 .right ul li .des{
  font-size: 18px;
  line-height: 32px;
  margin-top: 14px;
}
.design-page .design-5 .ui.container{
  max-width: 100%;
  padding-left: 13%;
  padding-right: 0;
}
.design-page .design-5{
  padding: 130px 0 110px;
}
.design-page .design-5 .i-title{
  line-height: 1.2;
}
.design-page .design-5 .wrap{
  padding-left: 15%;
  margin-top: 70px;
}
.design-page .design-5 .wrap .left{
  width: 35.3%;
}
.design-page .design-5 .wrap .left .txt{
  font-size: 20px;
  line-height: 36px;
  color: #7b7b7b;
  margin-bottom: 45px;
}
.design-page .design-5 .wrap .left img{
  width: 100%;
}
.design-page .design-5 .wrap .right{
  width: 64.7%;
  padding-left: 115px;
}
.design-page .i-tag{
    font-size: 18px;
    padding-bottom: 20px;
}
.gallery-page ul{
  margin: -15px;
}
.gallery-page ul li{
  padding: 15px;
}
.gallery-page ul li a{
  display: block; 
  background: white;
}
@media screen and (max-width:1600px){
  .design-page .design-5 .ui.container{
    padding-left: 7%;
  }
  .design-page .design-5 .wrap{
    padding-left: 10%;
  }
}
@media screen and (max-width:1450px){
  .design-page .design-4 .right{
    padding-left: 30px;
  }
  .design-page .design-5 .wrap{
    padding-left: 0;
  }
}
@media screen and (max-width:1200px){
  .design-page .design-2 .right{
    padding-left: 50px;
  }
  .design-page .design-3 ul li{
    padding: 20px;
  }
  .design-page .design-3 ul {
    margin: -20px;
  }
  .design-page .design-3 ul li .content h4{
    font-size: 21px;
  }
  .design-page .design-4 .right ul li{
    padding-left: 105px;
    padding-bottom: 40px;
  }
  .design-page .design-4 .right ul li .icon:after{
    height: 225%;
  }
  .design-page .design-5 .wrap .right{
    padding-left: 50px;
  }
}
@media screen and (max-width:1000px){
  .inner-banner{
    padding: 40px 0;
  }
  .design-page .design-1 .ui.container{
    padding: 0 20px;
  }
  .design-page .design-2{
    padding: 60px 0 65px;
  }
  .design-page .design-3 ul .slick-list{
    padding: 0 18%;
  }
  .design-page .design-4 .left{
    position: relative;
    top: 0;
  }
  .design-page .design-4 .right{
    width: 100%;
    margin-top: 20px;
  }
  .design-page .design-5{
    padding: 55px 0 50px;
  }
  .design-page .design-5 .wrap .left{
    width: 100%;
  }
  .design-page .design-5 .wrap .right{
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .design-page .design-5 .ui.container{
    padding: 0 15px;
  }
}
@media screen and (max-width:700px){
  .inner-banner h2{
    font-size: 26px;
  }
  .design-page .design-2 .right{
    width: 100%;
    padding-left: 0;
    margin-top: 25px;
  }
  .design-page .design-2 .left{
    width: 100%;
  }
  .design-page .design-2 .i-title{
    margin-bottom: 30px;
  }
  .design-page .design-3 ul .slick-list{
    padding: 0;
  }
  .design-page .design-3 {
    padding: 0 15px 50px;
  }
  .design-page .design-4 .right{
    padding-left: 0;
  }
}
@media screen and (max-width:500px){
  .design-page .design-4 .right ul li{
    padding-left: 0;
  }
  .design-page .design-4 .right ul li .icon{
    position: relative;
    margin-bottom: 12px;
  }
  .design-page .design-4 .right ul li .icon::after{
    content: none;
  }
}


.faq-page .marginBox {
  padding: 0px 0 100px;
  text-align: center;
}
.faq-page .marginBox .box {
  margin-top: 50px;
  text-align: left;
}
.faq-page .marginBox .box .left {
  width: 40%;
}
.faq-page .marginBox .box .left .box2 {
  padding: 50px 35px;
  background: var(--color);
    border-radius: 20px;
}
.faq-page .marginBox .box .left .box2 .slide {
  padding-right: 10px;
}
.faq-page .marginBox .box .left .box2 .slide span.h6 {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 1.8em;
  display: block;
  color: #fff;
}
.faq-page .marginBox .box .left .box2 .slide .nav ul li {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 1em;
  line-height: 1.2;
}
.faq-page .marginBox .box .left .box2 .slide .nav ul li ul {
  display: none !important;
}
.faq-page .marginBox .box .left .box2 .slide .nav ul li:last-child {
  margin-bottom: 0;
}
.faq-page .marginBox .box .right {
  width: 60%;
  padding-left: 3%;
}
.faq-page .marginBox .box .right .list ul li {
  margin-bottom: 20px;
  padding: 15px;
  background: #f3f3f3;
  border: 1px solid #dddddd;
  border-radius: 20px;
}
.faq-page .marginBox .box .right .list ul li span.title {
  font-weight: bold;
  font-size: 18px;
  color: #242424;
  text-align: right;
  display: block;
  position: relative;
}
.faq-page .marginBox .box .right .list ul li span.title i {
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 5px;
  cursor: pointer;
  cursor: hand;
}
.faq-page .marginBox .box .right .list ul li span.title i:after,
.faq-page .marginBox .box .right .list ul li span.title i:before {
  content: '';
  background: black;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.faq-page .marginBox .box .right .list ul li span.title i:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -moz-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-page .marginBox .box .right .list ul li .text {
  font-size: 18px;
  color: #8e8e8e;
  line-height: 1.6;
  margin: 30px 0;
  display: none;
}
.faq-page .marginBox .box .right .list ul li.active {
  background: white;
      border-radius: 20px;
}
.faq-page .marginBox .box .right .list ul li.active span.title i:before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -moz-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}
.faq-page .marginBox .box .right .list ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1600px) {
  .faq-page .marginBox .box .left .box2 {
    padding: 30px 20px;
  }
  .faq-page .marginBox .box .left .box2 .slide span.h6 {
    font-size: 16px;
    margin-bottom: 1em;
  }
  .faq-page .marginBox .box .left .box2 .slide .nav ul li {
    font-size: 16px;
    margin-bottom: .8em;
  }
  .faq-page .marginBox .box .right .list ul li span.title,
  .faq-page .marginBox .box .right .list ul li .text {
    font-size: 16px;
  }
  .faq-page .marginBox .box .right .list ul li .text {
    margin: 20px 0;
  }
  .faq-page .marginBox .box .right .list ul li {
    padding: 10px;
    margin-bottom: 10px;
  }
  .faq-page .marginBox {
    padding: 90px 0;
  }
}
@media screen and (max-width: 1250px) {
  .faq-page .marginBox .box {
    margin-top: 30px;
  }
  .faq-page .marginBox .box .right {
    width: 100%;
    padding-left: 0;
  }
  .faq-page .marginBox .box .left {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .faq-page .marginBox .box .right .list ul li span.title,
  .faq-page .marginBox .box .right .list ul li .text {
    font-size: 14px;
    padding-left: 10px;
    line-height: 2;
  }
   .faq-page .marginBox .box .right .list ul li span.title i{
    width: 10px;
    height: 10px;
    font-size: 14px;
  }
}

#Pop_UpsBtn{
  display: none !important;
}

.ex-page .ex-1 {
  padding: 0px 0 80px;
}
.ex-page .ex-1 .img {
  width: 29.941%;
}
.ex-page .ex-1 .text {
  width: 100%;
  /*padding: 0 30px 0 68px;*/
}
.ex-page .ex-1 .text .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ex-page .ex-1 .text .top .tit {
  font-size: 53px;
  line-height: 1.2;
}
.ex-page .ex-1 .text .bottom {
  padding: 5px 36px 0 0;
  /*margin-top: 62px;*/
  /*max-height: 520px;
  overflow-y: auto;*/
}
.ex-page .ex-1 .text .bottom ul {
  margin: -24px -30px -25px;
}
.ex-page .ex-1 .text .bottom ul li {
  padding: 24px 30px 25px;
}
.ex-page .ex-1 .text .bottom ul li .ig {
  padding: 42px 34px 38px;
  border-bottom: 1px solid #d2d2d2;
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-radius: 20px;
}
.ex-page .ex-1 .text .bottom ul li .ig .tit {
  font-size: 25px;
  line-height: 1.2;
}
.ex-page .ex-1 .text .bottom ul li .ig .con {
  line-height: 1.6;
  margin-top: 14px;
}
.ex-page .ex-1 .text .bottom ul li .ig .con p {
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
  font-weight: 400;
}
.ex-page .ex-1 .text .bottom ul li .ig .con p::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--color);
}
.ex-page .ex-1 .text .bottom ul li .ig .num {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 34px;
  font-size: 100px;
  line-height: .75;
  color: rgba(0, 0, 0, 0.13);
  font-weight: bold;
}
.ex-page .ex-1 .text .bottom ul li .ig:hover {
  background: var(--color);
  color: #fff;
}
.ex-page .ex-1 .text .bottom ul li .ig:hover .con p::before {
  background: #fff;
}
.ex-page .cus-page{
  background: #ececec;
}
@media screen and (max-width: 1680px) {
  .ex-page .ex-1 .text .top .tit{
    font-size: 42px;
  }
 
  .ex-page .ex-1 .text .bottom ul {
    margin: -12px -15px -13px;
  }
  .ex-page .ex-1 .text .bottom ul li{
    padding: 12px 15px 13px;
  }
  .ex-page .ex-1 .text .bottom ul li .ig {
    padding: 30px 17px 26px;
  }
}
@media screen and (max-width: 1280px) {
  .ex-page .ex-1 .img{
    display: none;
  } 
}
@media screen and (max-width: 1000px) {
  .ex-page .ex-1 .text .bottom ul li .ig {
    padding: 15px 9px 11px;
  }
  .ex-page .ex-1 .text .bottom ul li .ig .num{
    font-size: 80px;
    right: 12px;
  }
}
@media screen and (max-width: 700px) {
  .ex-page .ex-1{
    padding: 0px 0 30px;
  }
  .ex-page .ex-1 .text .top .tit {
    font-size: 38px;
  }
  .ex-page .ex-1 .text .top .more {
    margin-top: 12px; 
  }
  .ex-page .ex-1 .text .bottom {
    padding: 5px 16px 0 0;
    /*margin-top: 19px;*/
  }
  .ex-page .ex-1 .text .bottom ul li .ig .tit{
    font-size: 22px;
  }
  .ex-page .ex-1 .text .bottom ul li .ig .num{
    font-size: 60px;
  }
  .ex-page .ex-1 .text .bottom ul li{
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .ex-page .ex-1 .text .top .tit {
    font-size: 30px;
  }
}


/*****************************SEO START*****************************/
#banner ul li .left .des {
    line-height: 32px;
}
#banner ul li .right .h4 {
    line-height: 1.3;
}
#index-body .i-init1 .left .text {
    line-height: 2;
}
#index-body .i-init1 .right ul li .box .text {
    line-height: 2;
}
#index-body .i-category .ui.container .list ul li .box .content .des {
    line-height: 2;
}
#index-body .i-product .list ul li .box .text .des {
    line-height: 33px;
}
#index-body .i-form .txt {
    line-height: 2;
}
#index-body .i-about .top .right .txt {
    line-height: 35px;
}
#index-body .i-about ul.list li .box p {
    line-height: 36px;
}
#index-body .i-about .partner .right .txt {
    line-height: 30px;
}
#index-body .i-about .bottom .wrap .content {
    line-height: 30px;
}
#index-body .i-news .list ul li .box .left .des {
    line-height: 35px;
}
#index-body .i-init7 ul li .box .des {
    line-height: 33px;
}
#footer .wrap .two ul li {
    line-height: 38px;
}
#footer .wrap .one ul li p {
    line-height: 32px;
}
#mobile .menu-content .menu-list .cont a, #mobile .menu-content .menu-list ul li li a {
    line-height: 23px;
}
.inner-banner .box .ig .left .tit {
    font-size: 50px;
    line-height: 1.3;
    margin-top: 30px;
}
.product-page .init-2 .container .tip_title {
    font-size: 45px;
    line-height: 1;
}
.product-page .init-2 .container .content ul li .title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-page .init-2 .container .content ul li .des {
    margin-top: 15px;
}
.seoPublic .text a {
    color: inherit;
}
.seoPublic .Auxil-about .box .right .text {
    line-height: 2;
}
.inner-banner .box .ig .left .mbx {
    line-height: 2;
}
.prodet-page .init-1 .container .right .des {
    font-size: 17px;
    line-height: 34px;
}
.m-link.Auxil-through.font-18.mt-20 {
    line-height: 2;
}
.prodet-page .init-2 .container .right .description .des {
    line-height: 2;
}
.newdet-page .slideBarRight .text {
    line-height: 2;
}

@media screen and (max-width: 500px) {
  a.foota {
    display: none;
  }
  #mobile .menu-content .menu-list ul li {
      font-size: 17px;
      line-height: 2;
  }
  #mobile .menu-content .menu-list .cont a, #mobile .menu-content .menu-list ul li li a {
      font-size: 14px;
  }
  .product-page .init-2 .container .tip_title {
      display: none;
  }
  .seoIndustry.Auxil-industry {
      display: none;
  }
  .prodet-page .init-1 .container .right .title {
      font-size: 22px;
      line-height: 1.7;
  }
  .m-link.Auxil-through.font-18.mt-20 {
      font-size: 16px;
  }
  .news-page .news-1 .list ul li .content span.h6 {
      font-weight: 600;
  }
}
.newdet-page .slideBarRight .text h3 {
    font-weight: 600;
    margin-top: 20px;
}
.newdet-page .slideBarRight .text strong {
    font-weight: 600;
}
.newdet-page .slideBarRight .text ul>li:before {
    content: '•';
    margin-right: 0.5em;
    color: #000;
    font-size: 1.2em;
}
.newdet-page .slideBarRight .text ul>li>ul>li:before {
    content: "○";
    margin-right: .5em;
    color: #8a8a8a;
    font-size: 0.9em;
}
.newdet-page .slideBarRight .text ul>li>ul {
    text-indent: 2em;
}




.product-page .init-2 .pro-box .pro-left {
  width: 340px;
  position: sticky;
  top: 165px;
  float: left;
}
.pro-box .pro-left .pro-menu {
  
  margin-bottom: 50px;
}
.pro-box .pro-left .pro-menu > li {
  border-radius: 5px;
  border-top: none;
  margin-bottom: 10px;
}
.pro-box .pro-left .pro-menu > li:last-child {
  margin-bottom: 0;
}
.pro-box .pro-left .pro-menu > li.active .menu-a span,
.pro-box .pro-left .pro-menu > li:hover .menu-a span {
  right: 0;
}
.pro-box .pro-left .pro-menu > li.active .menu-a a,
.pro-box .pro-left .pro-menu > li:hover .menu-a a,
.pro-box .pro-left .pro-menu > li.active .menu-a i,
.pro-box .pro-left .pro-menu > li:hover .menu-a i {
  color: white;
}

.pro-box .pro-left .pro-menu > li.active .menu-a i {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
.pro-box .pro-left .pro-menu > li .menu-a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  padding: 0 70px 0 27px;
  font-family: var(--font);
  font-size: 18px;
  /*text-transform: uppercase;*/
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
  cursor: pointer;
  z-index: 5;
}
.pro-box .pro-left .pro-menu > li .menu-a span {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  right: -webkit-calc(100% - 8px);
  right: -moz-calc(100% - 8px);
  right: calc(100% - 8px);
  top: 0;
  background-color: var(--color);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}
.pro-box .pro-left .pro-menu > li .menu-a i {
  position: absolute;
  right: 27px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 24px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.pro-box .pro-left .pro-menu > li .sub-menu {
  padding: 20px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
  margin-top: -3px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  display: none;
}
.pro-box .pro-left .pro-menu > li .sub-menu li {
  padding: 5px 30px;
}
.pro-box .pro-left .pro-menu > li .sub-menu li a {
  font-size: 18px;
  color: #666;
  transition: all 0.5s;
}
.pro-box .pro-left .pro-menu > li .sub-menu li a:hover{
  color: var(--color);
}
.pro-box .pro-left .pro-menu > li .sub-menu li.active a{
  color:var(--color);
}


.product-page .init-2 .pro-box .pro-right {
  width: -webkit-calc(100% - 340px);
  width: -moz-calc(100% - 340px);
  width: calc(100% - 340px);
  padding-left: 65px;
}


@media (max-width: 1700px){
    .product-page .init-2 .container .content ul li{
        width: 33.3333333%;
    }
}
@media (max-width: 1250px){
    .product-page .init-2 .container .content ul li{
        width: 50%;
    }
    .product-page .init-2 .container .tip_title {
        font-size: 30px;
    }
}
@media (max-width: 1000px){
    .product-page .init-2 .pro-box .pro-left{
        display: none;
    }
    .product-page .init-2 .pro-box .pro-right{
        width: 100%;
        padding-left: 0;
    }
}















/* 栅格 */
.grid-box {
    font-size: 0;
[;letter-spacing: -4px;font-size: 12px;]
}
.grid-box .column {
    display: inline-block;
    font-size: 12px;
    vertical-align: top;
[;letter-spacing: 0;]
}

.grid-box .column {
    width: 100%;
}
.grid-box.two>.column {
    width: 50%;
}
.grid-box.three>.column {
    width: 33.33333%;
}
.grid-box.four>.column {
    width: 25%;
}
.grid-box.five>.column {
    width: 20%;
}
.grid-box.six>.column {
    width: 16.6666667%;
}
.grid-box.seven>.column {
    width: 14.285714%;
}
.grid-box.eight>.column {
    width: 12.55%;
}
.grid-box.nine>.column {
    width: 11.11111111%;
}
.grid-box.ten>.column {
    width: 10%;
}

@media screen and (max-width: 1000px){
    .grid-box.two>.column {
        width: 50%;
    }
    .grid-box.three>.column {
        width: 33.33333%;
    }
    .grid-box.four>.column {
        width: 33.33333%;
    }
    .grid-box.five>.column {
        width: 33.33333%;
    }

}
@media screen and (max-width: 700px){
    .grid-box.two>.column {
        width: 50%;
    }
    .grid-box.three>.column {
        width: 50%;
    }
    .grid-box.four>.column {
        width: 50%;
    }
    .grid-box.five>.column {
        width: 50%;
    }

}
@media screen and (max-width: 500px){
    .grid-box.two>.column {
        width: 100%;
    }
    .grid-box.three>.column {
        width: 100%;
    }
    .grid-box.four>.column {
        width: 100%;
    }
    .grid-box.five>.column {
        width: 100%;
    }

}
/*****************************SEO END*****************************/