@font-face {
  font-family: 'SourceHanSansCN';
  src: url('https://1.cdn-bm.hqsmartcloud.com/fonts/SourceHanSansCN/SourceHanSansCN-Regular.otf') format('opentype');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SourceHanSansCN';
  src: url('https://1.cdn-bm.hqsmartcloud.com/fonts/SourceHanSansCN/SourceHanSansCN-Medium.otf') format('opentype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'SourceHanSansCN';
  src: url('https://1.cdn-bm.hqsmartcloud.com/fonts/SourceHanSansCN/SourceHanSansCN-Bold.otf') format('opentype');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'SourceHanSansCN';
  src: url('https://1.cdn-bm.hqsmartcloud.com/fonts/SourceHanSansCN/SourceHanSansCN-Heavy.otf') format('opentype');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.eot');
  src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
body {
  font-family: "SourceHanSansCN", sans-serif;
  max-width: 1920px;
  --color: #c00000;
  --color2: #0a2145;
  --font: 'Poppins';
  font-weight: normal;
  margin: 0 auto;
}
.container {
  width: 100%;
  max-width: 1650px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.font-medium {
  font-weight: 500;
}
.font-black {
  font-weight: 900;
}
.font1 {
  font-family: var(--font);
}
.bc {
  color: #141414;
}
.gc {
  color: #666666;
}
.wc {
  color: #FFFFFF;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
#header.active .nav {
  background-color: var(--color2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#header.active .nav .ui.menu .menu-box ul.menu > li {
  color: #FFFFFF;
}

#header.active .nav .ui.menu .logo img {
  filter: brightness(0) invert(1);
}

#header.active .nav .ui.menu .menu-box ul.menu > li > a::before {
  filter: brightness(0) invert(1);
}

#header.active .yuy > span {
  color: #FFFFFF;
}

#header.active .nav .ui.menu .h-search {
  color: #FFFFFF;
}

#header .nav {
  background-color: #FFFFFF;
  transition: all .5s ease;
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  height: auto;
  min-height: 100px;
}
#header .nav .ui.menu .logo {
  margin-left: 0;
  margin-right: auto;
}
#header .nav .ui.menu .logo img {
  transition: all .5s ease;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: auto;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin: 0 2.5em;
  color: #141414;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
}
#header:not(.active) .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li.active > a::before,
#header .nav .ui.menu .menu-box ul.menu > li:hover > a::before {
  opacity: 1;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-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-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;
  grid-row-gap: 5px;
}
#header .nav .ui.menu .menu-box ul.menu > li > a::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../images/nav-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 16px;
  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: var(--color);
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover > ul {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .h-search {
  color: var(--color);
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 0;
  transition: all .5s ease;
  cursor: pointer;
  cursor: hand;
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  right: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  right: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  right: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  right: 0;
}
#mobile.active:before {
  left: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -webkit-box-shadow: 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;
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 40px;
  }
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
#banner {
  background-position: center bottom;
  background-size: 100% auto;
  background-color: #161514;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
#banner .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
#banner .bg img {
  opacity: 0;
}
#banner .content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner h2 {
  color: #FFFFFF;
  font-weight: 900;
  line-height: 1.36;
}
#banner .page_bar {
  left: 8%;
  bottom: 5%;
}
#banner .page_bar .page em {
  font-size: 24px;
  color: #FFFFFF;
  font-family: 'Poppins';
}
#banner .page_bar .page span {
  font-size: 16.66px;
  color: #FFFFFF;
  font-family: 'Poppins';
}
#banner .page_bar .line {
  width: 150px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.4);
}
#banner .page_bar .line em {
  display: block;
  height: 100%;
  width: 0;
  background-color: var(--color);
}
#banner .page_bar .line.active em {
  width: 100%;
  -webkit-transition: width 5s linear;
  -moz-transition: width 5s linear;
  transition: width 5s linear;
}
.yuy > span {
  color: var(--color);
  transition: all .5s ease;
}
.std-btn1 {
  display: inline-block;
}
.std-btn1-box {
  cursor: pointer;
  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: 6px 8px 6px 26px;
  background: var(--color);
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  transition: all .4s;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 80px;
  border: 0;
}
.std-btn1-box::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: -1;
  width: -webkit-calc(100% + 4px);
  width: -moz-calc(100% + 4px);
  width: calc(100% + 4px);
  height: -webkit-calc(100% + 4px);
  height: -moz-calc(100% + 4px);
  height: calc(100% + 4px);
  background: #0a2145;
  border-radius: 25px;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86), -moz-transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86), -moz-transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.std-btn1-box.white::after {
  background: #FFFFFF;
}
.std-btn1-box p {
  font-size: 14px;
  line-height: 1.75;
  color: #FFFFFF;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.std-btn1-box.white:hover p {
  color: #000000;
}
.std-btn1-box.white:hover .std-btn1-icon {
  color: #FFFFFF;
  background-color: var(--color);
}
.std-btn1-box:hover::after {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}
.std-btn1-box:hover .std-btn1-icon {
  color: var(--color);
}
.std-btn1-icon {
  font-size: 16px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--color2);
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 25px;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.std-btn1-icon i {
  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%);
}
@media (max-width: 1700px) {
  .std-btn1-box {
    padding: 6px 6px 6px 26px;
  }
  .std-btn2-icon,
  .std-btn1-icon {
    width: 30px;
    height: 30px;
    margin-left: 14px;
  }
}
@media (max-width: 1450px) {
  .std-btn1-box {
    padding: 6px 6px 6px 16px;
  }
  .std-btn2-icon,
  .std-btn1-icon {
    width: 26px;
    height: 26px;
    margin-left: 10px;
  }
  .std-btn2-icon,
  .std-btn1-icon {
    width: 22px;
    height: 22px;
    margin-left: 8px;
  }
}
@media (max-width: 1250px) {
  .std-btn1-box {
    padding: 6px 6px 6px 20px;
  }
  .std-btn2-icon,
  .std-btn1-icon {
    width: 24px;
    height: 24px;
    margin-left: 8px;
  }
}
@media (max-width: 767px) {
  .std-btn1-box {
    padding: 5px 6px 5px 16px;
  }
}
@-webkit-keyframes ro {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes ro {
  from {
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes ro {
  from {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.home-1 svg text {
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-animation: 10s ro linear infinite;
  -moz-animation: 10s ro linear infinite;
  animation: 10s ro linear infinite;
}
.home-1 .tit {
  color: #999999;
}
.home-1 p {
  line-height: 2;
}
.home-1 .img {
  border-radius: 1em;
}
.home-2 ul {
  margin: -15px;
}
.home-2 li {
  width: 25%;
  padding: 15px;
  -webkit-transition: width .5s ease;
  -moz-transition: width .5s ease;
  transition: width .5s ease;
}
.home-2 li.active {
  width: 50%;
}
.home-2 li.active .content .left > div {
  padding-left: 70px;
}
.home-2 li.active .content .left .icon {
  opacity: 1;
}
.home-2 .img {
  padding-top: 604px;
  border-radius: 1em;
}
.home-2 .img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/home2-mask.png);
  background-size: auto 100%;
  border-radius: inherit;
}
.home-2 .content {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.home-2 .content > div {
  height: 100%;
}
.home-2 .content .left > div {
  -webkit-transition: padding-left 0.5s ease;
  -moz-transition: padding-left 0.5s ease;
  transition: padding-left 0.5s ease;
}
.home-2 .content .left .icon {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.home-2 .content .right a {
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  color: #FFFFFF;
  background-color: var(--color);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.home-3 .morebtn {
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  color: #FFFFFF;
  background-color: var(--color);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.home-3 .list .slick-list {
  overflow: visible;
  padding-right: 66.66%;
}
.home-3 .list .box {
  background-color: #f0f4f6;
  border-radius: 10px;
}
.home-3 .line {
  width: 100%;
  height: 1px;
  background-color: #cccccc;
}
.home-3 .line em {
  position: relative;
  display: block;
  height: 3px;
  left: 0;
  top: -1px;
  background-color: var(--color);
  -webkit-transition: width .5s linear;
  -moz-transition: width .5s linear;
  transition: width .5s linear;
}
.home-3 .arrows span {
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%;
  text-align: center;
  color: #999999;
  background-color: #f0f4f6;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  cursor: pointer;
}
.home-3 .arrows span:hover {
  color: #FFFFFF;
  background-color: var(--color);
}
.home-4 {
  background-color: #f0f4f6;
}
.home-4 .date {
  color: #999999;
}
.home-4 .top .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-4 .top .box {
  border-radius: 1em;
  background-color: #FFFFFF;
}
.home-4 .top .text {
  line-height: 26px;
}
.home-4 .bottom .box .line {
  height: 1px;
  background-color: #cccccc;
  position: relative;
}
.home-4 .bottom .box .line::after {
  content: "";
  display: block;
  height: 100%;
  width: 0;
  background-color: var(--color);
  -webkit-transition: width .5s ease;
  -moz-transition: width .5s ease;
  transition: width .5s ease;
}
.home-4 .bottom .box .morebtn {
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  color: #999999;
  background-color: #FFFFFF;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-4 .bottom .box .morebtn:hover {
  color: #FFFFFF;
  background-color: var(--color);
}
.home-4 .bottom .box:hover .line::after {
  width: 100%;
}
.home-5 .box {
  border-radius: 1em;
}
.home-5 .box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/home5-mask.png);
  background-size: 100% auto;
  border-radius: inherit;
}
.home-5 .morebtn {
  display: inline-block;
  color: #FFFFFF;
  background-color: var(--color);
  height: 40px;
  line-height: 40px;
  border-radius: 10px;
}
#footer .footer-top .left span {
  line-height: 50px;
  border-radius: 25px;
  color: #FFFFFF;
  background-color: var(--color);
}
#footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#footer img.login {
  height: 16px;
}
@media (max-width: 1700px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 2em;
  }

  .home-2 .img {
    padding-top: 510px;
  }
  #footer img.login {
    height: 14px;
  }
}
@media (max-width: 1450px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0 1.5em;
  }
  .home-2 .img {
    padding-top: 433px;
  }
}
@media (max-width: 1250px) {
  .home-2 .img {
    padding-top: 350px;
  }
}
@media (max-width: 1000px) {
  #banner .page_bar {
    display: none;
  }
  .hide-1000 {
    display: none;
  }
  .home-2 .img {
    padding-top: 76%;
  }
  .home-2 li,
  .home-2 li.active {
    width: 100%;
  }
  .home-2 li .content .left > div {
    padding-left: 70px;
  }
  .home-2 li .content .left .icon {
    opacity: 1;
  }
  .home-3 .list .slick-list {
    padding-right: 50%;
  }
  #footer .footer-top .left span {
    line-height: 40px;
    border-radius: 10px;
  }
}
@media (max-width: 700px) {
  .home-3 .list .slick-list {
    padding-right: 0;
  }
}
@media (max-width: 500px) {
  #banner h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .home-5 .box {
    padding: 0 20px;
  }
}
.home-apply {
  background-image: url(../images/home-apply-bg.jpg);
  background-position: center;
  background-attachment: fixed;
}
.home-apply-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.home-apply-le {
  position: -webkit-sticky;
  position: sticky;
  top: 260px;
}
.home-apply-le-ul {
  position: relative;
}
.home-apply-le-ul::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: -webkit-calc(100% - 12px);
  height: -moz-calc(100% - 12px);
  height: calc(100% - 12px);
  background: #D0DBE1;
}
.halu-lis {
  margin-bottom: 50px;
}
.halu-lis p {
  padding-left: 36px;
  position: relative;
  cursor: pointer;
}
.halu-lis p::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -6px;
  width: 21px;
  height: 21px;
  background: #FFFFFF;
  border-radius: 50%;
  z-index: 3;
  opacity: 0;
}
.halu-lis p::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FFFFFF;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  transition: all .4s;
  z-index: 4;
}
.halu-lis.act p::before {
  opacity: 1;
}
.halu-lis.act p::after {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  background: var(--color);
}
.haru-li-box {
  position: relative;
}
.haru-li-box > div {
  border-radius: 1em;
  background-color: #ffffff;
}
.haru-li-box {
  -webkit-transform: perspective(50rem) rotateX(30deg);
  -moz-transform: perspective(50rem) rotateX(30deg);
  transform: perspective(50rem) rotateX(30deg);
  opacity: 0.4;
}
.haru-li:first-child .haru-li-box {
  -webkit-transform: inherit !important;
  -moz-transform: inherit !important;
  -ms-transform: inherit !important;
  transform: inherit !important;
  opacity: 1;
}
.home-apply-ri {
  width: 82%;
}
.haru-li {
  margin-bottom: 37px;
}
.haru-li:last-child {
  margin-bottom: 0px;
}
.haru-li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.haru-li-img {
  border-radius: 1em;
  position: relative;
  overflow: hidden;
  background-color: #f0f4f6;
}
.haru-li-tag a {
  height: 40px;
  line-height: 40px;
  border-radius: 10px;
  background-color: #f0f4f6;
}
.home-apply-ri-ph {
  display: none;
}
.home-apply-ri-phul .slick-list {
  padding-bottom: 30px;
}
.home-apply-ri-ph .slick-dots {
  position: absolute;
  bottom: 15px;
  display: block;
  width: 100%;
  list-style: none;
  text-align: center;
}
.home-apply-ri-ph .slick-dots {
  bottom: 0;
}
.home-apply-ri-ph .slick-dots li {
  padding: 0;
  font-size: 0;
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  vertical-align: middle;
  border-radius: 50%;
  background: #ccc;
}
.home-apply-ri-ph .slick-dots li.slick-active {
  background: var(--color);
}
.home-apply-ri-ph .slick-dots li button {
  display: none;
}
@media (max-width: 1700px) {
  .home-apply-le {
    top: 180px;
  }
  .halu-lis {
    margin-bottom: 40px;
  }
  .haru-li {
    margin-bottom: 30px;
  }
}
@media (max-width: 1450px) {
  .halu-lis {
    margin-bottom: 34px;
  }
  .halu-lis p::before {
    top: 5px;
    left: -5px;
    width: 15px;
    height: 15px;
  }
  .halu-lis p::after {
    width: 5px;
    height: 5px;
  }
  .home-apply-le-ul::after {
    left: 2px;
  }
  .haru-li-tag a {
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
  }
}
@media (max-width: 1250px) {
  .home-apply-le {
    display: none;
  }
  .home-apply-ri {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .home-apply-wrap {
    display: block;
  }
  .home-apply-ri .home-apply-ri-ul {
    display: none;
  }
  .home-apply-ri-ph {
    display: block;
  }
  .haru-li-box {
    height: 100% !important;
    -webkit-transform: inherit;
    -moz-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
    opacity: 1;
    background: #fff;
    -webkit-box-shadow: 0px 15px 15px 0px rgba(71, 71, 71, 0.1);
    box-shadow: 0px 15px 15px 0px rgba(71, 71, 71, 0.1);
    border-radius: 10px;
  }
}






/* inner */
.inner-banner {
  /*margin-top: 195px;*/
  margin-bottom: 55px;
  padding-top: 180px;
  background: #f0f4f6;
}
.inner-banner .mbx {
  padding-bottom: 55px;
  /*border-bottom: 1px solid #cdcdcd;*/
  /*padding-left: 55px;*/
}
.inner-banner .mbx h2 {
  font-size: 40px;
  font-weight: 900;
  position: relative;
  margin-bottom: 10px;
}
.inner-banner .mbx h2:before {
  content: "";
  display: block;
  width: 54px;
  height: 43px;
  position: absolute;
  left: -54px;
  top: -27px;
}
.inner-banner .mbx p {
  font-size: 16px;
  color: #666;
  font-weight: 600;
}
.inner-banner .mbx p a,
.inner-banner .mbx p span{
  color: #666;
  font-weight: 300;
}







.product-page .pro-box .product-right {
  width: -webkit-calc(100% - 340px);
  width: -moz-calc(100% - 340px);
  width: calc(100% - 340px);
  padding-left: 35px;
  margin-left: auto;
}
.product-page .pro-box .product-right ul {
  /*margin: 0 -12px;*/
}
.product-page .pro-box .product-right ul li {
  padding: 0 12px;
  margin-bottom: 50px;
}
.product-page .pro-box .product-right ul li:hover .img-box {
  border: 1px solid var(--color);
}
.product-page .pro-box .product-right ul li .img-box {
  width: 100%;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ccc;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  padding: 20px;
  
}
.product-page .pro-box .product-right .text{
  margin-bottom: 30px;
}
.product-page .pro-box .product-right .text h3{
  font-size: 24px;
  margin-bottom: 10px;
}
.product-page .pro-box .product-right .text p{
  font-size: 18px;
}
.product-page .pro-box .product-right ul li .img-box:hover .icon {
  opacity: 1;
}
.product-page .pro-box .product-right ul li .img-box .icon {
  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%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}
.product-page .pro-box .product-right ul li .img-box .icon a {
  margin: 0 4px;
  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;
  font-size: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.product-page .pro-box .product-right ul li .img-box .icon a img {
  -webkit-filter: invert(0);
  filter: invert(0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.product-page .pro-box .product-right ul li .img-box .icon a:hover,
.product-page .pro-box .product-right ul li .img-box .icon a.active {
  color: #FFFFFF;
  background-color: var(--color);
}
.product-page .pro-box .product-right ul li .img-box .icon a:hover img,
.product-page .pro-box .product-right ul li .img-box .icon a.active img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.product-page .pro-box .product-right ul li .img-box .img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product-page .pro-box .product-right ul li h4 {
  font-size: 18px;
  text-align: center;
  padding: 0 20px;
  margin-top: 15px;
  transition: all 0.5s;
  font-weight: bold;
  color: #666;
}
.product-page .pro-box .product-right ul li h4:hover{
  color: var(--color);
}
.inner-page .m-page {
  text-align: center;
}

.inner-page .m-page a,
.inner-page .m-page span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
    border:1px solid #999;
    margin-right: 5px;
}
.inner-page .m-page a.next{
  margin-left: 20px;
}
.inner-page .m-page a:hover,
.inner-page .m-page span.current {
    background: var(--color);
    color: #fff;
    border:1px solid var(--color);
}
.pro-box .pro-left {
  width: 340px;
  position: sticky;
  top: 165px;
}
.pro-box .pro-left .menus {
  
  margin-bottom: 50px;
}
.pro-box .pro-left .menus > li {
  border-radius: 5px;
  border-top: none;
  margin-bottom: 10px;
}
.pro-box .pro-left .menus > li:last-child {
  margin-bottom: 0;
}
.pro-box .pro-left .menus > li.active .menu-a span,
.pro-box .pro-left .menus > li:hover .menu-a span {
  right: 0;
}
.pro-box .pro-left .menus > li.active .menu-a a,
.pro-box .pro-left .menus > li:hover .menu-a a,
.pro-box .pro-left .menus > li.active .menu-a i,
.pro-box .pro-left .menus > li:hover .menu-a i {
  color: white;
}

.pro-box .pro-left .menus > li.active .menu-a i {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}
.pro-box .pro-left .menus > 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-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;
  font-weight: bold;
}
.pro-box .pro-left .menus > 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: #c00000;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}
.pro-box .pro-left .menus > 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 .menus > 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;
      /*box-shadow: 0px -0.4px 6px 1px rgb(0 0 0 / 8%);*/
}
.pro-box .pro-left .menus > li .sub-menu li {
  padding: 10px 30px;
}
.pro-box .pro-left .menus > li .sub-menu li a {
  font-size: 16px;
  color: #666;
  transition: all 0.5s;
}
.pro-box .pro-left .menus > li .sub-menu li a:hover{
  color: var(--color);
}
.pro-box .pro-left .menus > li .sub-menu li.active a{
  color:var(--color);
}

.prodet-page .prodet-right {
  width: -webkit-calc(100% - 340px);
  width: -moz-calc(100% - 340px);
  width: calc(100% - 340px);
  padding-left: 65px;
  padding-bottom: 50px;
}
.prodet-page .prodet-right .box {
  width: 100%;
}
.prodet-page .prodet-right .box .left {
  width: 46.5%;
}


.prodet-page .prodet-right .box .left .smallImg ul {
  margin: 0 -5px;
}
.prodet-page .prodet-right .box .left .smallImg ul li {
  padding: 0 5px;
}
.prodet-page .prodet-right .box .left .smallImg ul li .img_box {
  display: block;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.5s;
}
.prodet-page .prodet-right .box .left .smallImg ul li.active .img_box {
  border: 1px solid var(--color);
}
.prodet-page .prodet-right .box .right {
  width: 53.5%;
  padding-left: 50px;
}
.prodet-page .prodet-right .box .right .det table{
  margin-bottom: 0;
}
.prodet-page .prodet-right .box .right .det ul li{
  font-size: 16px;
  display: flex;
  align-items: center;
}
.prodet-page .prodet-right .box .right .det ul li::before{
  content:"";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
  margin-right: 10px;
}
.prodet-page .prodet-right .box .right .det2 ul{
  display: flex;
}
.prodet-page .prodet-right .box .right .det2 ul li{
  margin-right: 15px;
  font-size: 90px;
}
.prodet-page .prodet-right .box .right h2 {
  font-size: 26px;
  font-weight: bold;
}
.prodet-page .prodet-right .box .right .det {
  color: #666;
}
.prodet-page .prodet-right .box .right .det2 {
  color: #666;
  font-size: 16px;
}
.prodet-page .prodet-right .box .right .line{
  width: 100%;
  border-radius:35px;
  height: 10px;
  background-color: var(--color);
}
.prodet-page .prodet-right .box .right .btn {
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}
.prodet-page .prodet-right .box .right .Auxil-through {
  color: #666;
}


.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box{
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, .2);
  padding: 10px;
  position: relative;
  cursor: pointer;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box.no_img,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box.no_img{
  border-color:transparent;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box .link,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box .link{
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: all 0.5s;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev:hover .img_box .link,
.prodet-page .prodet-right .box .right .Auxil-through .next:hover .img_box .link{
  opacity: 1;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box .img,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box .img{
  border-radius: 5px;
}

.prodet-page .prodet-right .box .right .Auxil-through .prev p,
.prodet-page .prodet-right .box .right .Auxil-through .next p{
  color: #000;
  transition: all 0.5s;
  cursor: pointer;
  opacity: 0;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev p:hover,
.prodet-page .prodet-right .box .right .Auxil-through .next p:hover{
  color: var(--color);
  opacity: 1;
}
.prodet-page .prodet-right .box .right .Auxil-through .prev:hover p,
.prodet-page .prodet-right .box .right .Auxil-through .next:hover p{
  opacity: 1;
}
.prodet-page .prodet-right .box .right .btn .product_add{
  position: relative;
}
.prodet-page .prodet-right .box .right .btn .product_add .fly_love{
  display: none;
  z-index: 204;
  transition: all 0.5s;
}
.prodet-page .prodet-right .box .right .btn .product_add .love{
  position: absolute;
  left:2px;
  top:50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.5s;
}
.prodet-page .prodet-right .box .right .btn .product_add .collect{
  opacity: 1;
  transition: all 0.5s;
}
.prodet-page .prodet-right .box .right .btn .product_add.active .love{
  opacity: 1;
}
.prodet-page .prodet-right .box .right .btn .product_add.active .collect{
  opacity: 0;
}
.prodet-page .prodet-right .prodet-title {
  margin: 100px 0 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.prodet-page .prodet-right .prodet-content{
  padding-bottom: 60px;
}
.prodet-page .prodet-right .prodet-title 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;
  font-weight: bold;
}
.prodet-page .prodet-right .prodet-title ul li {
  padding: 10px 0;
  margin: 0 40px;
  position: relative;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
/*.prodet-page .prodet-right .prodet-title ul li:before {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  height: 22px;
  background: url("../images/nav-tag.png") no-repeat;
  left: 2px;
  top: -6px;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}*/
.prodet-page .prodet-right .prodet-title ul li.active {
  color: var(--color);
  border-bottom: 2px solid var(--color);
}
.prodet-page .prodet-right .prodet-title ul li.active:before {
  opacity: 1;
}
.prodet-page .prodet-right .prodet-content .det table{
  table-layout: fixed;
}
.prodet-page .prodet-right .prodet-content .det table tr:nth-child(odd){
  background-color: #e1e1e1;
}
.prodet-page .prodet-right .prodet-content .det table tr td{
  font-size: 16px;
  color: #666;
  text-align: center;
  padding: 14px 0;
}
.prodet-page .prodet-right .prodet-content .det form {
    margin-top: 50px;
    /*padding: 10px;*/
    background: #fff;
    /*box-shadow: #ccc 0 0 10px 0;*/
}
.prodet-page .prodet-right .prodet-content .det form ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.prodet-page .prodet-right .prodet-content .det form ul li {
    margin-top: 18px;
    width: 49.5%;
    display: inline-block;
}
.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(5) {
    width: 100%;
}
.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(5) textarea {
    width: 100%;
    border: #ccc solid 1px;
    padding: 10px;
    font-size: 16px;
}
.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(6) {
    width: 100%;
}
.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(6) input {
    background: var(--color);
    color: #fff;
    transition: all .5s;
}
.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(6) input:hover {
    background: #000;
}
.prodet-page .prodet-right .prodet-content .det form ul li input {
    padding: 15px;
    border: #ccc solid 1px;
    width: 100%;
    font-size: 16px;
}










.recommended-product {
  padding: 90px 0;
  background-color: #f0f4f6;
}
.recommended-product ul {
  margin: 60px -24px 0;
}
.recommended-product ul li {
  padding: 0 24px;
}
.recommended-product ul li .img_box {
  width: 100%;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
.recommended-product ul li .img_box:hover .icon {
  opacity: 1;
}
.recommended-product ul li .img_box .icon {
  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%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}
.recommended-product ul li .img_box .icon a {
  font-size: 20px;
  margin: 0 4px;
  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;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.recommended-product ul li .img_box .icon a img {
  -webkit-filter: invert(0);
  filter: invert(0);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.recommended-product ul li .img_box .icon a:hover {
  color: #FFFFFF;
  background-color: var(--color);
}
.recommended-product ul li .img_box .icon a:hover img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.recommended-product ul li .img_box .img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.recommended-product ul li h4 {
  font-size: 18px;
  text-align: center;
  padding: 0 25px;
  margin-top: 15px;
  font-weight: bold;
  color: #666;
}
.recommended-product ul li h4:hover {

  color: var(--color)
}
@media screen and (max-width: 1600px) {
   .ui.pro-container{
     width: 1400px;
   }
   .prodet-page .prodet-right .box .right .Auxil-through .next{
     margin-top: 30px;
   }
   .prodet-page .prodet-right .box .right .Auxil-through .next .next-t{
     flex-direction: row-reverse;
   }
   .prodet-page .prodet-right .box .right .Auxil-through .next .next-t span{
     margin-right: 0;
     margin-left: 10px;
   }
}
@media screen and (max-width: 1400px) {
  .ui.pro-container{
     width: 1200px;
   }
  .product-page .pro-box .product-right ul li h4{
    font-size: 18px;
  }
  .prodet-page .prodet-right .box .right h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 1200px) {
  .ui.pro-container{
     width: 1000px;
   }
  .product-page .pro-box .product-right ul li{
    width: 50%;
  }
  .prodet-page .prodet-right .box .left{
    width: 100%;
    margin-bottom: 60px;
  }
  .prodet-page .prodet-right .box .right{
    width: 100%;
  }
  .prodet-page .prodet-right .box .left .bigImg ul li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  } 
  .prodet-page .prodet-right .box .right{
    padding-left: 0;
  }
  .prodet-page .prodet-right .prodet-title ul li {
    margin: 0 15px;
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .ui.pro-container{
     width: 700px;
   }
  .pro-box .pro-left{
    display: none;
  }
  .product-page .pro-box .product-right {
    width: 100%;
    padding-left:0;
  }
  .prodet-page .prodet-right {
    width: 100%;
    padding-left:0;
  }
  .prodet-page .prodet-right .box .right .line img{
    width:100%;
  }
  .prodet-page .prodet-right .box .right .btn a:first-child{
    display: none;
  }
  .prodet-page .prodet-right .box .right .btn a:last-child{
    margin-left: 0;
  }
  .inner-banner .mbx h2 {
    font-size: 34px;
  }
}
@media screen and (max-width:700px) {
  .ui.pro-container{
     width: 500px;
   }
  .product-page .pro-box .product-right ul li{
    width: 100%;
  }
  .prodet-page .prodet-right .prodet-title ul li {
    margin: 0 5px;
    font-size: 18px
  }
  .inner-banner .mbx h2 {
    font-size: 28px;
  }
  .prodet-page .prodet-right .prodet-content .det form ul li{
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .ui.pro-container{
    width: 100%;
  }
  .font-45 {
    font-size: 34px;
  }
  .prodet-page .prodet-right .prodet-title ul li{
    width: 100%;
    margin-bottom: 30px;
  }
}













.i-tag {
    font-size: 22px;
    line-height: 40px;
    font-weight: 700
}

/*--------------------inner-page----------------------*/


.more {
  display: inline-block;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
  height: 65px;
  line-height: 61px;
  background-color: var(--color);
  color: white;
  position: relative;
  z-index: 1;
  padding: 0 45px;
  overflow: hidden;
  font-weight: bold;
}
.more::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  width: 0;
  height: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background-color: #222;
  z-index: -1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.more:hover::after {
  width: 100%;
}
.inner-page .sidebar-box .sidebar-left {
  width: 28%;
   position: sticky;
  top: 160px;
  padding-right: 45px;
}
.inner-page .sidebar-box .sidebar-left .inner {
  max-width: 375px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-title {
  font-size: 20px;
  line-height: 2;
  color: #000;
  text-transform: capitalize;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
  font-weight: bold;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search {
  margin-bottom: 40px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search form {
  width: 100%;
  position: relative;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search form input[type="text"] {
  width: 100%;
  height: 43px;
  border: 1px solid #eee;
  padding: 10px 20px;
  padding-right: 50px;
  font-size: 14px;
  color: #555555;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-search form input[type="submit"] {
  position: absolute;
  width: 43px;
  height: 43px;
  border: none;
  background: url(../images/icon-search-black.png) no-repeat center center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat {
  margin-bottom: 40px;
  /*max-height: 3300px;
  overflow-y: auto;*/
  padding-right: 5px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a {
  padding: 8px 0;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  line-height: 2;
  word-break: break-all;
  position: relative;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a i{
  float: right;
  position: relative;
  top: 1px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a span {
  color: #aaa;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a:hover,
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a.active {
  color: var(--color);
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active > a {
  color: var(--color);
}
 
/*.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul > li > ol{
  display: none;
}*/
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active > ol{
  display: block;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul > li > ol > li {
  /*list-style-type: disc;*/
  margin-left: 10px;
  color: #7b7b7b;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul > li > ol > li a {
  font-size: 16px;
  line-height: 40px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent {
  margin-bottom: 40px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li {
  padding: 15px 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li 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;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img {
  margin-right: 20px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img img {
  height: 80px;
  max-width: 100px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text span {
  color: #aaa;
  display: block;
  font-size: 14px;
  line-height: 2;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p {
  color: #000;
  font-weight: bold;
  font-size: 16px;
  display: -webkit-box;
  margin-bottom: 8px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
  color: var(--color);
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li:first-child {
  padding-top: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li:last-child {
  padding-bottom: 0;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact {
  background: url(/jswcsrq/2025/11/28/newsside.jpg?imageView2/2/format/webp/q/100) no-repeat center center;
  padding: 215px 40px 30px;
  border-radius: 10px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact h5 {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  line-height: 2;
  margin-bottom: 20px;
  font-weight: bold;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact h6 {
  font-size: 18px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 20px;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-contact h6 span {
  display: block;
}

.inner-page .sidebar-box .sidebar-right {
  width: 72%;
}
.inner-page.product2-page .sidebar-left {
  padding-right: 45px;
}



.service-page .service-1 {
  padding-bottom: 60px;
}
.service-page .service-1 #index-body .about {
  padding: 0;
}
.service-page .service-1 #index-body .about .top .text h2.title {
   margin-bottom: 40px;
  line-height: 1.4;
   text-transform:uppercase;
}
.service-page .service-1 #index-body .about .top .text h3 {
  font-size: 22px;
  line-height: 1.6;
  color: #181818;
  font-weight: 400;
  margin-top: 32px;
}
.service-page .service-1 #index-body .about .top .text p {
  font-size: 18px;
  line-height: 30px;
  color: #666;
}
 
.service-page .service-1 #index-body .about .top .img {
  text-align: right;
  padding: 0 0 50px 0;
  border-radius: 10px;
}
.service-page .service-1 #index-body .about .top .img .i2 {
  position: absolute;
  left: 0;
  bottom: -25px;
  top: auto;
  z-index: 1;
  border-radius: 10px;
}
.service-page .service-2 {
  background: #f9f9f9;
    padding: 70px 0;
}
.service-page .service-2 .header {
  width: 70%;
  margin: 0 auto;
}
.service-page .service-2 .header .title{
  line-height: 1.2;
  margin-top: 12px;
   text-transform:uppercase;
}
.service-page .service-2 .content {
  margin-top: 80px;
}
.service-page .service-2 .content ul {
  margin-right: -30px;
}
.service-page .service-2 .content ul li {
  padding-right: 30px;
}
.service-page .service-2 .content ul li .ig {
  text-align: center;
}
.service-page .service-2 .content ul li .ig .img-box {
  display: block;
  width: 80%;
  margin: 0 auto;
  border-radius: 6%;
  /*box-shadow: 0px -0.4px 9px 3px rgb(0 0 0 / 8%);*/
}
.service-page .service-2 .content ul li .ig .text {
  padding-top: 28px;
}
.service-page .service-2 .content ul li .ig .text span {
  font-size: 17px;
  color: #83827F;
  line-height: 1.6;
  text-transform: uppercase;
}
.service-page .service-2 .content ul li .ig .text h3 {
  font-size: 22px;
  line-height: 1.6;
  margin-top: 10px;
  font-weight: bold;
}
.service-page .service-2 .content ul li .ig .text p {
  font-size: 16px;
  line-height: 30px;
  color: #83827F;
  margin-top: 10px;
}
.service-page .service-2 .content ul li .ig .text .mores {
  width: 47px;
  height: 47px;
  line-height: 45px;
  text-align: center;
  background: #fff;
  border: 1px solid #d1d0c8;
  border-radius: 50%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin-top: 25px;
  display: inline-block;
}
.service-page .service-2 .content ul li .ig .text .mores img {
  display: inline-block;
  vertical-align: middle;
}
.service-page .service-2 .content ul li .ig .text .mores:hover {
  background: var(--color);
  border-color: var(--color);
}

.service-page #index-body .init1 .img {
  margin: auto;
  margin-top: 35px;
  border-radius: 10px;
}
.service-page #index-body .rate {
  padding: 80px 0 140px;
  background-color: #f9f9f9;
}
.service-page #index-body .rate .content{
  margin-top: 50px;
}
.service-page #index-body .rate .content ul{
  margin: -15px;
}
.service-page #index-body .rate .content ul li{
  padding: 15px;
}
.service-page #index-body .rate .content ul li .box{
  background: #f2f2f2;
    padding: 30px;
    min-height: 340px;
    border-radius: 10px;
    transition: all 0.5s;
}


.service-page #index-body .rate .content ul li .box .title{
  display: block;
  font-weight: bold;
  font-size: 26px;
  margin-top: 15px;
}
.service-page #index-body .rate .content ul li .box .desc{
  font-size: 18px;
  line-height: 1.6;
  margin-top: 20px;
  color: #666;
  transition: all 0.5s;
}
.service-page #index-body .rate .content ul li:hover .box{
  background: #cb2c30;
  color: #fff
}
.service-page #index-body .rate .content ul li:hover .box .desc{
  color: #fff
}
.service-page .service-3 {
  padding: 120px 0;
}
.service-page .service-3 .top .img {
  vertical-align: middle;
}
.service-page .service-3 .top .img .info {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 70px;
  width: 100%;
}
.service-page .service-3 .top .img img {
  width: 48.2%;
  margin-right: 20px;
}
.service-page .service-3 .top .img img:last-child {
  margin: 0 0 0 20px;
}
.service-page .service-3 .top .text {
  padding-left: 48px;
  vertical-align: middle;
}
.service-page .service-3 .top .text .box {
  width: 80%;
}
.service-page .service-3 .top .text .box h2.title {
  line-height: 1.2;
  width: 90%;
}
.service-page .service-3 .top .text .box p {
  font-size: 17px;
  line-height: 1.8;
  color: #83827F;
  margin-top: 20px;
}
.service-page .service-3 .top .text .box .more {
  padding: 21px 29px 20px 28px;
  margin-top: 45px;
}
.service-page .service-3 .bottom {
  padding-top: 120px;
}
.service-page .service-3 .bottom ul {
  margin-right: -60px;
}
.service-page .service-3 .bottom ul li {
  text-align: center;
  padding-right: 60px;
}
.service-page .service-3 .bottom ul li i {
  display: inline-block;
  height: 69px;
}
.service-page .service-3 .bottom ul li i img {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.service-page .service-3 .bottom ul li i:hover img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.service-page .service-3 .bottom ul li .text {
  padding-top: 21px;
}
.service-page .service-3 .bottom ul li .text h3 {
  font-size: 26px;
  line-height: 1.1;
}
.service-page .service-3 .bottom ul li .text p {
  font-size: 17px;
  line-height: 1.6;
  color: #83827F;
  margin-top: 20px;
}
.service-page .service-3 .bottom ul li .text .mores {
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  overflow: hidden;
}
.service-page .service-3 .bottom ul li .text .mores span {
  margin-top: 5px;
  position: relative;
  margin-right: 0;
  display: inline-block;
  vertical-align: middle;
  text-indent: -110px;
  visibility: hidden;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
  -moz-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;
  will-change: visibility, margin-right, text-indent, opacity;
}
.service-page .service-3 .bottom ul li .text .mores em {
  display: inline-block;
  vertical-align: middle;
  width: 21px;
  height: 21px;
  line-height: 21px;
}
.service-page .service-3 .bottom ul li .text .mores em img {
  display: inline-block;
  vertical-align: middle;
}
.service-page .service-3 .bottom ul li .text .mores:hover span {
  opacity: 1;
  text-indent: 0;
  margin-right: 6px;
  visibility: visible;
  -webkit-transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
  -moz-transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
  transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
}
#index-body .about .top .text {
    
    vertical-align: middle;
    padding-right: 73px;
}
#index-body .about .top .text .btn a.link {
    display: inline-block;
    vertical-align: top;
    margin-left: 35px;
}
#index-body .about .top .text .btn a.link em {
    display: inline-block;
    padding: 22px;
    background: var(--color);
}
 
#index-body .about .top .text .btn a.link span {
    display: inline-block;
    font-size: 20px;
    line-height: 36px;
    padding-left: 5px;
}
#index-body .about .top .text .btn {
    margin-top: 37px;
}
#index-body .init1 {
    /*background: #f9f9f9;*/
    padding: 60px 0 108px;
}

.service-page #index-body .init1 h3 {
    color: #111;
    font-weight: 900;
     text-transform:uppercase;
}
.service-page #index-body .init1 .btn{
    color: #666;
}
.service-page #index-body .init1 .more{
  background: white;
  color: black;
}
.service-page #index-body .init1 .more:hover{
  color: white;
}
@media screen and (max-width: 1680px) {
  .service-page .service-3 .top .text .box h2.title {
    width: 100%;
  }
}
@media screen and (max-width: 1440px) {
  .service-page {
    padding: 100px 0;
  }
  .service-page .service-1 {
    padding-bottom: 60px;
  }
   
  .service-page .service-2 {
    padding: 100px 0;
  }
  .service-page .service-3 .top .img {
    width: 55%;
  }
  .service-page .service-3 .top .img .info {
    padding: 0 40px;
  }
  .service-page .service-3 .top .text {
    width: 45%;
  }
  .service-page .service-3 .top .text .box {
    width: 100%;
  }
  .service-page .service-3 {
    padding: 100px 0;
  }
  .service-page .service-3 .bottom {
    padding-top: 100px;
  }
  .service-page #index-body .rate .content ul li .box .title{
    font-size: 20px;
    line-height: 36px;
  }
  .service-page #index-body .rate .content ul li .box .desc{
    min-height: 162px;
  }
  
}
@media screen and (max-width: 1280px) {
   
  #index-body .about .top .text {
    padding-right: 50px;
  }
}
@media screen and (max-width: 1100px) {
  .service-page .service-1 #index-body .about .top .img {
    padding: 0 0 50px 30px;
  }
}
@media screen and (max-width: 1000px) {
  .inner-page .sidebar-box .sidebar-left{
    display: none;
  }
  .inner-page .sidebar-box .sidebar-right{
    width: 100%;
  }
  .service-page {
    padding: 60px 0;
  }

  .service-page .service-1 #index-body .about .top .text {
    padding-right: 0;
    width: 100%;
  }
  .service-page .service-1 #index-body .about .top .img{
    width: 100%;
    margin-top: 25px;
  }
  .service-page .service-1 {
    padding-bottom: 60px;
  }
  .service-page .service-2 {
    padding: 60px 0;
    
  }
  .service-page .service-2 .content ul li .ig .text h3 {
    min-height: 60px;
  }
  .service-page .service-3 {
    padding: 60px 0;
  }
  .service-page .service-3 .top .img {
    width: 100%;
  }
  .service-page .service-3 .top .img .info {
    padding: 0 40px 0 20px;
  }
  .service-page .service-3 .top .text {
    width: 100%;
    padding: 20px 20px 0;
  }
  .service-page .service-3 .bottom {
    padding-top: 60px;
  }
  .service-page .service-3 .bottom ul {
    margin-right: -20px;
  }
  .service-page .service-3 .bottom ul li {
    padding-right: 20px;
  }
}
@media screen and (max-width: 700px) {
  .service-page {
    padding: 30px 0;
  }
  
  .service-page .service-1 #index-body .about .top .text h3 {
    margin-top: 12px;
  }
  .service-page .service-1 {
    padding-bottom: 30px;
  }
  .service-page .service-2 {
    padding: 30px 0;
  }
  .service-page .service-2 .header {
    width: 100%;
  }
  .service-page .service-2 .content {
    margin-top: 20px;
  }
  .service-page .service-2 .content ul {
    margin-right: -15px;
  }
  .service-page .service-2 .content ul li {
    padding-right: 15px;
  }
  .service-page .service-2 .content ul li .ig .text {
    padding-top: 14px;
  }
  .service-page .service-2 .content ul li .ig .text span {
    font-size: 15px;
  }
  .service-page .service-2 .content ul li .ig .text h3 {
    font-size: 24px;
    line-height: 1.6;
  }

  .service-page .service-3 .top .text .box .more {
    margin-top: 20px;
  }
  .service-page .service-3 .bottom {
    padding-top: 30px;
  }
  .service-page .service-3 .bottom ul li .text h3 {
    font-size: 20px;
  }
  .service-page .service-3 .bottom ul li .text p {
    font-size: 15px;
  }
  .service-page .service-3 .bottom ul {
    margin-bottom: -20px;
  }
  .service-page .service-3 .bottom ul li {
    padding-bottom: 20px;
  }
  .service-page .service-3 {
    padding: 30px 0;
  }
}
@media screen and (max-width: 500px) {
   

  .service-page #index-body .about .top .text .btn a.link {
    display: block;
    margin: 10px 0 0 0;
  }
  .service-page .service-3 .top .text .box p {
    font-size: 15px;
    line-height: 30px;
  }
  .service-page .service-3 .top .text .box .more {
    padding: 12px 18px;
  }
  #index-body .about .top .text .btn a.link em {
    padding: 10px;
  }
  .service-page .service-3 .top .img img {
    margin-right: 10px;
    width: 49.5%;
  }
  .service-page .service-3 .top .img img:last-child {
    margin: 0 0 0 10px;
  }
  .service-page .service-3 .top .img .info {
    padding: 0 30px 0 20px;
  }
}

.faq-page .marginBox {
  padding: 0px 0 100px;
  text-align: center;
}
.faq-page .marginBox .h2{
  line-height: 1.2;
  margin-top: 12px;
}
.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: #fff7ea;
}
.faq-page .marginBox .box .left .box2 .slide {
  padding-right: 10px;
}
.faq-page .marginBox .box .left .box2 .slide span.h6 {
  font-weight: 900;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 1.8em;
  display: block;
}
.faq-page .marginBox .box .left .box2 .slide .nav ul li {
  font-size: 18px;
  color: #8e8e8e;
  margin-bottom: 1em;
  line-height: 32px;
}
.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: #eee;
  border: 1px solid #bfbfbf;
}
.faq-page .marginBox .box .right .list ul li span.title {
  font-weight: 900;
font-size: 18px;
line-height: 32px;
  color: #242424;
  text-align: right;
  display: block;
  position: relative;
  padding-left: 25px;
}
.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: 2;
  margin: 30px 0;
  display: none;
}
.faq-page .marginBox .box .right .list ul li.active {
  background: white;
}
.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;
}

.video-page .video-1 {
  padding: 38px 0 90px;
  background: #f6f6f6;
}
.video-page .video-1 .tag,
.video-page .video-2 .tag{
  color: var(--color);
}
.video-page .video-1 .header h2.title {
  margin-top: 14px;
  line-height: 1.2;
}
.video-page .video-1 .content {
  margin-top: 40px;
}
.video-page .video-1 .content ul {
  margin: -10px -12px;
}
.video-page .video-1 .content ul li {
  padding: 10px 12px;
}
.video-page .video-1 .content ul li .ig {
  display: block;
  -webkit-box-shadow: 0 0 10px #ddd;
  box-shadow: 0 0 10px #ddd;
  background-color: #fff;
  padding: 14px;
}
.video-page .video-1 .content ul li .ig video {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}
.video-page .video-2 {
  padding: 93px 0 107px;
}
.video-page .video-2 .header h2.title {
  margin-top: 14px;
}
.video-page .video-2 .content {
  margin-top: 57px;
}
.video-page .video-2 .content ul {
  margin: 0 -26px -25px 0;
}
.video-page .video-2 .content ul li {
  padding: 0 26px 25px 0;
}
.video-page .video-2 .content ul li .ig {
  background: #eee;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.video-page .video-2 .content ul li .ig span {
  display: inline-block;
}
.video-page .video-2 .content ul li .ig .fl {
  padding: 0 15px;
  width: 75%;
}
.video-page .video-2 .content ul li .ig .fr {
  width: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.video-page .video-2 .content ul li .ig .fr img {
  margin-right: 15px;
}
.video-page .video-2 .content ul li .ig:hover {
  background: var(--color);
  color: white;
}
.video-page .video-2 .content ul li .ig:hover .fr img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 1280px) {
  .video-page .video-2 .content ul li .ig .fl {
    width: 70%;
  }
}
@media screen and (max-width: 1100px) {
  .video-page .video-2 .content ul li .ig .fl {
    width: 68%;
  }
  .faq-page .marginBox .box .left{
    display: none;
  }
  .faq-page .marginBox .box .right{
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 1000px) {
  .video-page .video-1 {
    padding: 38px 0 60px;
  }
  .video-page .video-1 .content ul li {
    width: 50%;
  }
  .video-page .video-2 .content ul li {
    width: 100%;
  }
  .video-page .video-2 {
    padding: 60px 0;
  }
  .video-page .video-2 .content {
    margin-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .video-page .video-1 {
    padding: 30px 0;
  }
  .video-page .video-1 .content ul li {
    width: 100%;
  }
  .video-page .video-2 .content ul li .ig {
    font-size: 16px;
    height: auto;
    line-height: 1;
    padding: 10px 0;
  }
  .video-page .video-2 .content ul li .ig .fl {
    width: 100%;
  }
  .video-page .video-2 .content ul li .ig .fr {
    width: 100%;
    padding: 10px 0 0 15px;
  }
}
.newdet-prodet-2{
  width: calc(100% - 40px);
  background-color: #f9f9f9;
  margin: 0 auto;
}
.newdet-b .prodet-2 .ret .slide .con .right{
  padding:40px;
}
.newdet-b .prodet-2 .ret .slide .con .right form {
    margin-top: 24px
}

.newdet-b .prodet-2 .ret .slide .con .right form ul {
    margin-bottom: -24px
}

.newdet-b .prodet-2 .ret .slide .con .right form ul li {
    margin-bottom: 24px
}

.newdet-b .prodet-2 .ret .slide .con .right form ul li label {
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #181818;
    font-weight: 500
}

.newdet-b .prodet-2 .ret .slide .con .right form ul li input,.newdet-b .prodet-2 .ret .slide .con .right form ul li textarea {
    padding: 10px 0;
    width: 100%;
    background: 0 0;
    border: none;
    border-bottom: 1px solid #d1d0c8;
    font-size: 20px
}

.newdet-b .prodet-2 .ret .slide .con .right form ul li .rate {
    margin-top: 7px
}

.newdet-b .prodet-2 .ret .slide .con .right form ul li .rate i {
    font-size: 17px;
    color: var(--color);
    position: relative;
    width: 17px;
    display: inline-block;
    cursor: pointer
}

.newdet-b .prodet-2 .ret .slide .con .right form ul li .rate i:after {
    content: "\f006";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 17px;
    font-family: 'fontAwesome';
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.newdet-b .prodet-2 .ret .slide .con .right form ul li .rate i:hover:after,.newdet-b .prodet-2 .ret .slide .con .right form ul li .rate i.active:after {
    content: "\f005"
}

.newdet-b .prodet-2 .ret .slide .con .right form ul li textarea {
    height: 96px
}

.newdet-b .prodet-2 .ret .slide .con .right form ul li input[type=checkbox] {
    display: inline-block;
    padding: 0;
    width: auto;
    vertical-align: middle
}

.newdet-b .prodet-2 .ret .slide .con .right form ul li span {
    font-size: 14px;
    color: #a7a7a7;
    display: inline-block;
    vertical-align: middle;
    padding-left: 5px
}

.newdet-b .prodet-2 .ret .slide .con .right form ul li .more {
    padding: 0
}

.newdet-b .prodet-2 .ret .slide .con .right form ul li input[type=submit] {
    padding: 0 45px;
    width: 100%;
    border: none
}
.news-page .sidebar-right ul{
  margin: -15px;
}
.news-page .sidebar-right ul li{
  padding: 15px;
}
.news-page .sidebar-right ul li .img img{
  border-radius: 10px;
}
.news-page .sidebar-right ul li .cat_name{
      background-color: #262626;
    display: inline-block;
    color: white;
    font-size: 14px;
    line-height: 2;
    padding: 8px 18px 7px 17px;
    margin-top: 20px;
}
.news-page .sidebar-right ul li .title{
      font-size: 22px;
      font-weight: bold;
    margin-top: 21px;
    text-overflow: -o-ellipsis-lastline;
 overflow: hidden;
 text-overflow: ellipsis;
 display: -webkit-box;
 -webkit-line-clamp: 1;
 -webkit-box-orient: vertical;

}
.news-page .sidebar-right ul li .title:hover{
      color: var(--color)
}
.news-page .sidebar-right ul li .des{
      font-size: 16px;
    color: #7b7b7b;
    line-height: 30px;
    margin-top: 6px;
    margin-bottom: 20px;
}
.news-page .sidebar-right ul li .time{
      font-size: 16px;
    line-height: 30px;
    color: #666;
    display: inline-block;
    margin-top: 2px;
}

.newdet-page .header {
  max-width: 1520px;
  width: 100%;
  padding: 55px;
  background: #fff;
  margin: 0 auto;
  text-align: center;
}
.newdet-page .header .categoty {
  display: inline-block;
    font-size: 16px;
    color: #fff;
    background: var(--color);
    padding: 5px 15px;
  text-transform: uppercase;
}
.newdet-page .header h1 {
  font-size: 40px;
  line-height: 1.4;
  margin: 20px 71px 0;
  font-weight: 900;
}
.newdet-page .header .post_meta {
  margin-top: 26px;
}
.newdet-page .header .post_meta span {
  display: inline-block;
  vertical-align: middle;
}
.newdet-page .header .post_meta .post_author_avatar {
  margin-right: 11px;
}
.newdet-page .header .post_meta .photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.newdet-page .header .post_meta .post_author_name {
  font-size: 16px;
  line-height: 1;
}
.newdet-page .header .post_meta .post_author {
  display: inline-block;
  vertical-align: middle;
}
.newdet-page .header .post_meta .post_author::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  background:#7b7b7b;
  border-radius: 50%;
  margin: 0 10px 0;
}
.newdet-page .header .post_meta .post_date {
    font-size: 16px;
    color: #7b7b7b;
}
.newdet-page .header .post_meta .post_date::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  /*background: #83827F;*/
  border-radius: 50%;
  margin: -6px 10px 0;
}
.newdet-page .header .post_meta .post_meta_number {
  font-size: 14px;
  color: #83827F;
}
.newdet-page .content {
  margin-top: 40px;
  font-size: 18px;
  line-height: 36px;
  color: #666;
}
.newdet-page .share {
  max-width: 1520px;
  width: 100%;
  margin: 40px auto 0;
  padding: 28px 0;
  border-top: 1px solid #d1d0c8;
  border-bottom: 1px solid #d1d0c8;
  text-align: right;
}
.newdet-page .share a {
  display: inline-block;
  vertical-align: middle;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  line-height: 48px;
  font-size: 20px;
  background: #fff;
  margin: 3px 0 3px 7px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}
.newdet-page .share a:first-child {
  margin-left: 0;
}
.newdet-page .share a:nth-child(1) {
  background: #48bde9;
  color: #fff;
}
.newdet-page .share a:nth-child(2) {
  background: #4f5fbf;
  color: #fff;
}
.newdet-page .share a:nth-child(3) {
  background: #7a7e83;
  color: #fff;
}
.newdet-page .share a:nth-child(4) {
  background: var(--color);
  color: #fff;
}
.newdet-page .share a:nth-child(5) {
  background: var(--color);
  color: #fff;
}
.newdet-page .share a:hover {
  margin-top: -3px;
}
.newdet-page .m-link {
  /*max-width: 1060px;*/
  margin: 40px auto 0;
}
.newdet-page .m-link a {
  display: inline-block;
  vertical-align: top;
  width: 49%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.newdet-page .m-link a em {
    display: block;
    font-size: 18px;
    line-height: 32px;
    color: #7b7b7b;
}
.newdet-page .m-link a:first-child i {
  margin-right: 10px;
}
.newdet-page .m-link a:last-child {
  text-align: right;
}
.newdet-page .m-link a:last-child i {
  margin-left: 10px;
}
.newdet-page .m-link a span {
    font-size: 18px;
    line-height: 32px;
  font-weight: bold;
}
.newdet-page .m-link a:hover {
  color: #000;
}
.newdet-page .prodet-page {
  padding: 0;
}
.newdet-page .prodet-2 {
  max-width: 1520px;
  width: 100%;
  margin: 0 auto;
}
.newdet-b .prodet-2 .ret .slide .con .right {
  padding: 0;
}
.newdet-page .prodet-3 {
  margin: 60px auto 0;
}

.prodet-page .prodet-3 .content ul {
  margin-right: -30px;
}
.prodet-page .prodet-3 .content ul li {
  padding-right: 30px;
}
.prodet-page .prodet-3 .content ul li .img {
  position: relative;
}
.prodet-page .prodet-3 .content ul li .img .img-box {
  display: block;
}
.prodet-page .prodet-3 .content ul li .img .img-box img {
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-3 .content ul li .img .icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -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;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-3 .content ul li .img .icon a {
  display: inline-block;
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
  background: white;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.06);
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
}
.prodet-page .prodet-3 .content ul li .img .icon a img {
  display: inline-block;
  vertical-align: middle;
}
.prodet-page .prodet-3 .content ul li .img:hover .img-box img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.prodet-page .prodet-3 .content ul li .img:hover .icon {
  opacity: 1;
}
.prodet-page .prodet-3 .content ul li .text {
  padding-top: 25px;
}
.prodet-page .prodet-3 .content ul li .text h3 {
  font-size: 18px;
  line-height: 32px;
  min-height: 4rem;
  margin-bottom: 0;
   -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.prodet-page .prodet-3 .content ul li .text .con {
  font-size: 18px;
  line-height: 32px;
  color: #83827F;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.prodet-page .prodet-3 .content ul li:hover h3{
  color: var(--color);
}
@media screen and (max-width: 1100px) {
  .newdet-page .header h1 {
    font-size: 50px;
    margin: 20px 40px 0;
  }
  .news-page .sidebar-right ul li{
    width: 50% !important;
  }
}
@media screen and (max-width: 1000px) {
  .newdet-page {
    padding: 60px 0;
  }
  .newdet-page .header h1 {
    font-size: 40px;
    margin: 20px 27px 0;
  }
}
@media screen and (max-width: 700px) {
  .newdet-page {
    padding: 30px 0;
  }
  .newdet-page .header {
    padding: 30px 20px;
  }
  .newdet-page .header h1 {
    font-size: 34px;
    margin: 20px 20px 0;
  }
  .newdet-page .content {
    margin-top: 20px;
  }
  .newdet-page .share {
    margin: 20px auto 0;
  }
  .newdet-page .m-lin {
    font-size: 16px;
  }
  .news-page .sidebar-right ul li .img img{
    width: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 500px) {
  .news-page .sidebar-right ul li{
    width: 100% !important;
  }
  .newdet-page .header h1 {
    font-size: 24px;
    margin: 20px 0px 0;
  }
  .newdet-page .content {
    font-size: 16px;
    line-height: 30px;
  }
  .newdet-page .m-link a {
    display: block;
    width: 100%;
  }
  .newdet-page .m-link a:last-child {
    text-align: left;
    margin-top: 20px;
  }
}

 
.about-page .about-1 .top .img {
  position: relative;
  border-radius: 10px;
}
.about-page .about-1 .top .img .lazy {
  
  border-radius: 15px;
}
.about-page .about-1 .top .img .play {
  position: absolute;
  right: 36px;
  bottom: 115px;
  display: inline-block;
  padding: 50px 50px 50px 60px;
  background: var(--color);
  border-radius: 50%;
  z-index: 1;
}
.about-page .about-1 .top .img .play::before,
.about-page .about-1 .top .img .play::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: -15px;
  top: -15px;
  right: -15px;
  bottom: -15px;
  background: rgba(0, 100, 40, 0.5);
  border-radius: 50%;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
}
.about-page .about-1 .top .img .play::before {
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
}
.about-page .about-1 .top .text {
  max-width: 1500px;
  width: 100%;
  margin: -150px auto 0;
  background: #fff;
  -webkit-box-shadow: 0px 9px 38px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 9px 38px 0px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 1;
  padding: 50px;
  border-radius: 10px;
}
.about-page .about-1 .top .text .title{
  line-height: 1.2;
  text-transform:uppercase;
}
.about-page .about-1 .top .text .con {
  margin-top: 26px;
  font-size: 18px;
    line-height: 1.8;
    color: #7b7b7b;
}
.about-page .about-1 .bottom {
  max-width: 1215px;
  width: 100%;
  margin: 111px auto 0;
}
.about-page .about-1 .bottom ul {
  margin-right: -70px;
}
.about-page .about-1 .bottom ul li {
  padding-right: 70px;
}
.about-page .about-1 .bottom ul li .data {
  font-weight: bold;
  padding-bottom: 26px;
  border-bottom: 1px solid #58596c;
}
.about-page .about-1 .bottom ul li .data em {
  font-size: 68px;
  line-height: 1.2;
  color: #000;
  display: inline-block;
  vertical-align: bottom;
}
.about-page .about-1 .bottom ul li .data sub {
  font-size: 22px;
  color: var(--color);
  display: inline-block;
  vertical-align: bottom;
  line-height: 1;
  text-transform: capitalize;
  margin: 0 0 9px 7px;
}
.about-page .about-1 .bottom ul li .text .tit {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
  line-height: 2;
  margin-top: 23px;
}
.about-page .about-1 .bottom ul li .text p {
font-size: 18px;
    line-height: 1.8;
    color: #7b7b7b;
}
.about-page .about-2 {
  margin-top: 137px;
}
.about-page .about-2 .box {
  padding: 12px 0 122px 0;
  position: relative;
  z-index: 1;
}
.about-page .about-2 .box .img {
  width: 50.06%;
  vertical-align: middle;
  border-radius: 10px;
}
.about-page .about-2 .box .img img {
 
  border-top-right-radius: 10px;
   border-bottom-right-radius: 10px;
}
.about-page .about-2 .box .text {
  width: 49.94%;
  max-width: 670px;
  padding-left: 64px;
  vertical-align: middle;
  color: #111;
}
.about-page .about-2 .box .text .header {
  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;
  padding-right: 24px;
}
.about-page .about-2 .box .text .header .left{
  width: 100%;
}
.about-page .about-2 .box .text .header .title {
  margin-top: 12px;
  line-height: 1.2;
  text-transform:uppercase;
}
.about-page .about-2 .box .text .header .more {
  color: #000;
  margin-bottom: 10px;
  background: #fff;
}
.about-page .about-2 .box .text .header .more span {
  text-decoration: none;
}
.about-page .about-2 .box .text .con {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 41px;
  color: #666;
}
.about-page .about-2 .box .text .list {
  margin-top: 29px;
}
.about-page .about-2 .box .text .list ul {
  margin-bottom: -25px;
}
.about-page .about-2 .box .text .list ul li {
  position: relative;
  padding-left: 47px;
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 25px;
}
.about-page .about-2 .box .text .list ul li::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 0;
  width: 30px;
  height: 2px;
  background: white;
}
.about-page .about-2 .box::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 84.5%;
  height: 100%;
  background: #fff;
  border-radius: 15px;
}
.about-page .about-3 {
  background-color: #f2f6f7;
}
.about-page .about-3 .header {
  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-bottom: 63px;
  border-bottom: 1px solid #b8b8bc;
}
.about-page .about-3 .header .left {
  width: 50%;
}
.about-page .about-3 .header .left span.tag {
  color: var(--color);
}
.about-page .about-3 .header .left .title {
  margin-top: 12px;
  line-height: 1.2;
}
.about-page .about-3 .header .right {
  width: 50%;
    font-size: 18px;
    line-height: 1.8;
    color: #7b7b7b;
    padding: 0 0 0 20px;
}

.about-page .about-3 .content ul {
  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-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 0 -37px -37px 0;
}
.about-page .about-3 .content ul li {
  margin: 0 37px 37px 0;
  background: #fff;
  padding: 39px 35px 0;
  width: 30.3%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  color: #121212;
  min-height: 250px;
  border-radius: 6px;
}
.about-page .about-3 .content ul li .tit {
  font-size: 18px;
  /*font-weight: 700;*/
  line-height: 2;
  margin-top: 15px;
  text-align: center;
  margin-bottom: 20px;
  color: #666;
}
.about-page .about-3 .content ul li p {
  font-size: 18px;
  line-height: 1.8;
  color: #7b7b7b;
}
.about-page .about-3 .content ul li:hover {
  background: var(--color); 
}
.about-page .about-3 .content ul li:hover i img {
  -webkit-filter: grayscale(100%) brightness(300);
  filter: grayscale(100%) brightness(300);
}
.about-page .about-3 .content ul li:hover .tit,
.about-page .about-3 .content ul li:hover p{
  color: white;
}
.about-page .about-3 .list {
  margin-top: 151px;
}
.about-page .about-3 .list .img-box {
  display: block;
}
.about-page .about-3 .list .img-box img {
  width: 100%;
}
.about-page .about-3 .list .slick-dots {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -54px;
  width: 100%;
  margin: 0;
  text-align: right;
  padding-right: 22px;
}
.about-page .about-3 .list .slick-dots li {
  width: 14px;
  height: 14px;
  background-color: #fff;
  display: inline-block;
  border-radius: 50%;
  margin-right: 14px;
  cursor: pointer;
  -webkit-transition: .5;
  -moz-transition: .5;
  transition: .5;
  padding: 0;
}
.about-page .about-3 .list .slick-dots li:last-child {
  margin-right: 0;
}
.about-page .about-3 .list .slick-dots li button {
  display: none;
}
.about-page .about-3 .list .slick-dots li.slick-active {
  background: var(--color);
}
.about-page .about-4 {
  background: var(--color);
  padding: 68px 0 70px;
  max-width: 959px;
  width: 100%;
  margin-top: -17%;
  position: relative;
  z-index: 1;
  color: #fff;
}
.about-page .about-4 .box {
  max-width: 507px;
  margin: 0 94px 0 auto;
}
.about-page .about-4 .box .title {
  margin-top: 27px;
}
.about-page .about-4 .box .con {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 27px;
}
.about-page .about-4 .box .info {
  margin-top: 20px;
  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;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}
.about-page .about-4 .box .info .tit {
  font-size: 20px;
  line-height: 1.5;
}
.about-page .about-4 .box .info p {
  font-size: 16px;
  line-height: 1.8;
}
.about-page .about-4 .box .more {
  margin-top: 36px;
  background: #000;
}
.about-page .about-4 .box .more:hover {
  background: #fff;
  color: var(--color);
}
.about-page .about-5 {
  padding: 120px 0 180px;
}
.about-page .about-5 .header {
  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;
  padding-bottom: 45px;
  border-bottom: 1px solid #b8b8bc;
}
.about-page .about-5 .header .right{
      width: 51%;
    font-size: 18px;
    line-height: 1.8;
    color: #7b7b7b;
    padding: 0 0 0 20px;
}
.about-page .about-5 .header span.tag {
  color: var(--color);
}
.about-page .about-5 .header .title {
  margin-top: 12px;
  line-height: 1.2;
}
.about-page .about-5 .header .more {
  background: var(--color);
  margin-bottom: 4px;
}
.about-page .about-5 .header .more:hover {
  background: #000;
}
.about-page .about-5 .content {
  margin-top: 47px;
}
.about-page .about-5 .content ul {
  margin-right: -42px;
}
.about-page .about-5 .content ul li {
  padding-right: 66px;
}
.about-page .about-5 .content ul li .img-box {
  display: block;
}
.about-page .about-5 .content ul li .img-box img {
  width: 100%;
}
.about-page .about-5 .content ul .slick-dots {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -54px;
  width: 100%;
  margin: 0;
  text-align: center;
}
.about-page .about-5 .content ul .slick-dots li {
  width: 14px;
  height: 14px;
  background-color: #d2d2d2;
  display: inline-block;
  border-radius: 50%;
  margin-right: 14px;
  cursor: pointer;
  -webkit-transition: .5;
  -moz-transition: .5;
  transition: .5;
  padding: 0;
}
.about-page .about-5 .content ul .slick-dots li:last-child {
  margin-right: 0;
}
.about-page .about-5 .content ul .slick-dots li button {
  display: none;
}
.about-page .about-5 .content ul .slick-dots li.slick-active {
  background: var(--color);
}
@media screen and (max-width: 1440px) {
  .about-page .about-4 .box {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1280px) {
   
  .about-page .about-1 .top .img .play {
    padding: 30px 30px 30px 40px;
  }
  .about-page .about-2 .box .text {
    padding: 0 15px 0 30px;
  }
  .about-page .about-3 .content ul li {
    width: 29.9%;
    padding: 39px 15px;
  }
  .about-page .about-3 .content ul li .tit {
    font-size: 22px;
  }
  .about-page .about-4 {
    max-width: 800px;
  }
}
@media screen and (max-width: 1100px) {
   
  .about-page .about-1 .top .text {
    padding: 70px 50px 90px;
  }
  .about-page .about-1 .bottom ul {
    margin-right: -40px;
  }
  .about-page .about-1 .bottom ul li {
    padding-right: 40px;
  }
  .about-page .about-3 .content ul {
    margin: 0 -20px -20px 0;
  }
  .about-page .about-3 .content ul li {
    margin: 0 20px 20px 0;
    width: 31.3%;
  }
  .about-page .about-4 {
    max-width: 700px;
  }
}
@media screen and (max-width: 1000px) {
  
  .about-page .about-1 .top .text {
    padding: 50px 30px;
  }
  .about-page .about-1 .top .text .con {
    font-size: 18px;
  }
  .about-page .about-1 .bottom {
    margin: 60px auto 0;
  }
  .about-page .about-1 .bottom ul {
    margin-right: -20px;
  }
  .about-page .about-1 .bottom ul li {
    padding-right: 20px;
  }
  .about-page .about-1 .bottom ul li .data em {
    font-size: 50px;
  }
  .about-page .about-1 .bottom ul li .text .tit {
    font-size: 20px;
    line-height: 1.8;
  }
  .about-page .about-1 .bottom ul li .text p {
    font-size: 16px;
line-height: 30px;
  }
  .about-page .about-2 {
    margin-top: 47px;
  }
  .about-page .about-2 .box {
    padding: 0 0 60px;
  }
  .about-page .about-2 .box .img {
    width: 100%;
  }
  .about-page .about-2 .box .text {
    width: 100%;
    margin-top: 20px;
  }
  .about-page .about-2 .box::after {
    width: 100%;
  }

  .about-page .about-3 .header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 30px;
  }
  .about-page .about-3 .header .left {
    width: 100%;
  }
  .about-page .about-3 .header .right {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .about-page .about-3 .content {
    margin-top: 30px;
  }
  .about-page .about-3 .content ul li {
    width: 47%;
  }
  .about-page .about-3 .list {
    margin-top: 60px;
  }
  .about-page .about-3 .list .slick-dots {
    bottom: -40px;
  }
  .about-page .about-4 {
    max-width: 680px;
    margin-top: 0;
  }
  .about-page .about-5 {
    padding: 60px 0 11.05%;
  }
  .about-page .about-5 .header {
    padding-bottom: 30px;
  }
  .about-page .about-5 .header .left {
    width: 52%;
  }
  .about-page .about-5 .content ul {
    margin-right: -20px;
  }
  .about-page .about-5 .content ul li {
    padding-right: 20px;
  }
}
@media screen and (max-width: 700px) {
   
  .about-page .about-1 .top .img .play {
    padding: 20px 20px 20px 30px;
    bottom: 20px;
  }
  .about-page .about-1 .top .text {
    margin-top: 0;
    padding: 30px 15px;
  }
  .about-page .about-1 .top .text .con {
    margin-top: 20px;
  }
  .about-page .about-1 .bottom ul li .data {
    padding-bottom: 0;
  }
  .about-page .about-1 .bottom {
    margin: 30px auto 0;
  }
  .about-page .about-2 .box .text .con {
    margin-top: 20px;
  }
  .about-page .about-2 {
    margin-top: 30px;
  }

  .about-page .about-3 .content ul li {
    width: 45.9%;
  }
  .about-page .about-3 .content ul li .tit {
    font-size: 20px;
    line-height: 1.8;
  }
  .about-page .about-3 .content ul li p {
    font-size: 17px;
    margin-top: 10px;
  }
  .about-page .about-3 .list {
    margin-top: 30px;
  }
  .about-page .about-4 {
    padding: 30px 15px;
  }
  .about-page .about-5 {
    padding: 30px 0;
  }
  .about-page .about-5 .header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 20px;
  }
  .about-page .about-5 .header .left {
    width: 100%;
  }
  .about-page .about-5 .header .left .title {
    margin-top: 15px;
  }
  .about-page .about-5 .header .right {
    margin-top: 20px;
  }
  .about-page .about-5 .content {
    margin-top: 20px;
  }
  .about-page .about-5 .content ul .slick-dots {
    bottom: -25px;
  }
}
@media screen and (max-width: 500px) {
   
  .about-page .about-1 .top .img .play {
    padding: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
  }
  .about-page .about-1 .top .img .play img {
    width: 20px;
    margin: 0 auto;
    display: inline-block;
    vertical-align: middle;
  }
  .about-page .about-1 .top .text .con {
    font-size: 16px;
    line-height: 30px;
  }
  .about-page .about-1 .bottom ul {
    margin: 0 0 -20px 0;
  }
  .about-page .about-1 .bottom ul li {
    padding: 0 0 20px 0;
  }
  .about-page .about-1 .bottom ul li .data em {
    font-size: 40px;
  }
  .about-page .about-2 .box {
    padding-bottom: 30px;
  }
  .about-page .about-2 .box .text .header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-2 .box .text .header .left {
    width: 100%;
  }
  .about-page .about-2 .box .text .header .left .title {
    margin-top: 10px;
  }
  .about-page .about-2 .box .text .header .right {
    padding: 20px 0 0;
  }
  .about-page .about-2 .box .text .con {
    font-size: 16px;
    margin-top: 10px;
    line-height: 30px;
  }
  .about-page .about-2 .box .text .list ul li {
    font-size: 16px;
    line-height: 1.8;
  }
  .about-page .about-3 .header {
    padding-bottom: 10px;
  }
  .about-page .about-3 .header .left .title {
    margin-top: 10px;
  }
  .about-page .about-3 .header .right {
    font-size: 16px;
    line-height:30px;
  }
  .about-page .about-3 .content ul {
    margin: 0 0 -20px 0;
  }
  .about-page .about-3 .content ul li {
    margin: 0 0 20px 0;
    width: 100%;
  }
  .about-page .about-3 .content ul li p {
    font-size: 16px;
    line-height: 30px;
  }
  .about-page .about-4 .box .title {
    margin-top: 10px;
  }
  .about-page .about-4 .box .con {
    margin-top: 10px;
  }
  .about-page .about-4 .box .info {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
  .about-page .about-4 .box .info p {
    font-size: 14px;
    line-height: 2;
  }
  .about-page .about-4 .box .info .left {
    width: 100%;
  }
  .about-page .about-4 .box .info .right {
    width: 100%;
    margin-top: 20px;
  }
  .about-page .about-4 .box .more {
    margin-top: 20px;
  }
  .about-page .about-5 .header .left .title {
    margin-top: 10px;
  }
}


.development-page .development-1 {
  background: var(--color);
  padding: 110px 0 141px;
  color: white;
}
.development-page .development-1 .header .title {
  margin-top: 12px;
  line-height: 1.2;
}
.development-page .development-1 .header .con {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 29px;
}
.development-page .development-1 .time {
  margin-top: 113px;
}
.development-page .development-1 .time ul {
  padding: 0 0 0 60px;
  position: relative;
  z-index: 1;
}
.development-page .development-1 .time ul .slick-slide:nth-child(1) li {
  padding-left: 0;
}
.development-page .development-1 .time ul li {
  padding-left: 120px;
  cursor: pointer;
}
.development-page .development-1 .time ul li i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 12px;
  position: relative;
  z-index: 2;
  margin-top: 5px;
}
.development-page .development-1 .time ul li i::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
}
.development-page .development-1 .time ul li i::after {
  content: '';
  position: absolute;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  opacity: 0;
}
.development-page .development-1 .time ul li p {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 8px;
}
.development-page .development-1 .time ul li.active i {
  background: white;
}
.development-page .development-1 .time ul li.active i::before {
  background: var(--color);
}
.development-page .development-1 .time ul li.active i::after {
  opacity: 1;
}
.development-page .development-1 .time ul li.hide {
  opacity: 0;
  cursor: inherit;
}
.development-page .development-1 .time ul::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  top: 17px;
  width: 100%;
  height: 1px;
  background: white;
}
.development-page .development-1 .content {
  margin-top: 99px;
}
.development-page .development-1 .content ul li {
  background: white;
  padding: 53px 94px 53px 37px;
}
.development-page .development-1 .content ul li .left {
  width: 12%;
  vertical-align: middle;
}
.development-page .development-1 .content ul li .left .title {
  color: #121212;
  font-size: 40px;
  font-weight: bold;
}
.development-page .development-1 .content ul li .right {
  font-size: 20px;
  line-height: 1.5;
  color: #656565;
  vertical-align: middle;
  width: 88%;
  max-height: 120px;
  padding-right: 5px;
  overflow-y: auto;
}
.development-page .development-1 .content ul li .right::-webkit-scrollbar-thumb {
  background: var(--color);
}
.development-page .development-2 {
  padding: 49px 0 167px;
}
.development-page .development-2 .box .text {
  padding: 9px 36px 0 0;
}
.development-page .development-2 .box .text span.tag {
  color: var(--color);
}
.development-page .development-2 .box .text .title {
  margin-top: 12px;
  color: #121212;
  line-height: 1.2;
}
.development-page .development-2 .box .text .con {
  font-size: 20px;
  color: #474747;
  line-height: 1.5;
  margin-top: 40px;
}
.development-page .development-2 .box .text .arrow {
  margin-top: 42px;
}
.development-page .development-2 .box .text .arrow .prev,
.development-page .development-2 .box .text .arrow .next {
  width: 59px;
  height: 59px;
  background-color: #f6f6f6;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
}
.development-page .development-2 .box .text .arrow .prev::after,
.development-page .development-2 .box .text .arrow .next::after {
  content: '';
  position: absolute;
  top: 22px;
  left: 18px;
  width: 23px;
  height: 16px;
  background: url(../images/arrow.png) no-repeat;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.development-page .development-2 .box .text .arrow .prev:hover,
.development-page .development-2 .box .text .arrow .next:hover {
  background: var(--color);
}
.development-page .development-2 .box .text .arrow .prev:hover::after,
.development-page .development-2 .box .text .arrow .next:hover::after {
  -webkit-filter: none;
  filter: none;
}
.development-page .development-2 .box .text .arrow .prev::after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.development-page .development-2 .box .text .arrow .next {
  margin-left: 29px;
}
.development-page .development-2 .box .img {
  padding-left: 30px;
}
#index-body .partner {
    padding: 141px 0 202px;
}
#index-body .partner .header {
    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;
    padding-bottom: 64px;
    border-bottom: 1px solid #b8b8bc;
}
#index-body .partner .header .left {
    width: 55%;
    padding-right: 60px;
}
#index-body .partner .header .left .title {
    margin-top: 12px;
    line-height: 1.2;
    font-size: 40px;
}
#index-body .partner .header .right {
    width: 45%;
    font-size: 20px;
    line-height: 1.5;
    color: #474747;
}
#index-body .partner .content {
    margin-top: 55px;
}
#index-body .partner .content ul {
    margin: 0 -41px -58px 0;
}
#index-body .partner .content ul li{
  padding: 0 41px 59px 0;
}
@media screen and (max-width: 1280px) {
  .development-page .development-1 .time ul li {
    padding-left: 90px;
  }
}
@media screen and (max-width: 1100px) {
  .development-page .development-1 .time ul li {
    padding-left: 70px;
  }
}
@media screen and (max-width: 1000px) {
  .development-page .development-1 {
    padding: 60px 0;
  }
  .development-page .development-1 .time {
    margin-top: 60px;
  }
  .development-page .development-1 .content {
    margin-top: 60px;
  }
  .development-page .development-1 .content ul li {
    padding: 53px 30px;
  }
  .development-page .development-1 .content ul li .left {
    width: 15%;
  }
  .development-page .development-1 .content ul li .right {
    width: 85%;
  }
  .development-page .development-2 {
    padding: 49px 0 60px;
  }
  .development-page .development-2 .box .text {
    vertical-align: middle;
    padding: 0 15px 0 0;
  }
  .development-page .development-2 .box .img {
    vertical-align: middle;
    padding-left: 15px;
  }
}
@media screen and (max-width: 700px) {
  .development-page .development-1 .time ul li {
    padding-left: 20px;
  }
  .development-page .development-1 {
    padding: 30px 0;
  }
  .development-page .development-1 .header .title {
    margin-top: 10px;
  }
  .development-page .development-1 .header .con {
    margin-top: 10px;
  }
  .development-page .development-1 .time {
    margin-top: 30px;
  }
  .development-page .development-1 .content {
    margin-top: 30px;
  }
  .development-page .development-1 .content ul li {
    padding: 30px 15px;
  }
  .development-page .development-1 .content ul li .left {
    width: 20%;
  }
  .development-page .development-1 .content ul li .right {
    width: 80%;
  }
  .development-page .development-2 {
    padding: 30px 0;
  }
  .development-page .development-2 .box .text {
    width: 100%;
    padding: 0;
  }
  .development-page .development-2 .box .img {
    width: 100%;
    padding: 20px 0 0 0;
  }
}
@media screen and (max-width: 500px) {
  .development-page .development-1 .header .con {
    font-size: 15px;
    line-height: 1.9;
  }
  .development-page .development-1 .time ul li {
    padding-left: 0;
  }
  .development-page .development-1 .content ul li .left {
    width: 100%;
  }
  .development-page .development-1 .content ul li .right {
    width: 100%;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 20px;
  }
  .development-page #index-body .partner {
    display: block;
    padding: 30px 0 0;
  }
  .development-page #index-body .partner .header .title {
    margin-top: 10px;
  }
  .development-page #index-body .partner .header .right {
    font-size: 16px;
    line-height: 1.8;
  }
  .development-page .development-2 .box .text .title {
    margin-top: 10px;
  }
  .development-page .development-2 .box .text .con {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 10px;
  }
  .development-page .development-2 .box .text .arrow {
    margin-top: 15px;
  }
}
.gallery-page ul{
  margin: -15px;
}
.gallery-page ul li{
  padding: 15px;
}
.gallery-page ul li a{
  display: block; 
  background: white;
}

.contact-page {
  padding-top: 20px;
}
.contact-page .contact-1 .left form ul {
  margin: 0 -30px -37px 0;
}
.contact-page .contact-1 .left form ul li {
  padding: 0 30px 37px 0;
}
.contact-page .contact-1 .left form ul li .box {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d1d0c8;
}
.contact-page .contact-1 .left form ul li .box input,
.contact-page .contact-1 .left form ul li .box textarea {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 0 13px 36px;
  font-size: 16px;
  line-height: 30px;
  color: #7b7b7b;
}
.contact-page .contact-1 .left form ul li .box input::-webkit-input-placeholder, .contact-page .contact-1 .left form ul li .box textarea::-webkit-input-placeholder {
  color: #83827F;
}
.contact-page .contact-1 .left form ul li .box input:-moz-placeholder, .contact-page .contact-1 .left form ul li .box textarea:-moz-placeholder {
  color: #83827F;
}
.contact-page .contact-1 .left form ul li .box input::-moz-placeholder, .contact-page .contact-1 .left form ul li .box textarea::-moz-placeholder {
  color: #83827F;
}
.contact-page .contact-1 .left form ul li .box input:-ms-input-placeholder, .contact-page .contact-1 .left form ul li .box textarea:-ms-input-placeholder {
  color: #83827F;
}
.contact-page .contact-1 .left form ul li .box input::placeholder,
.contact-page .contact-1 .left form ul li .box textarea::placeholder {
  color: #83827F;
}
.contact-page .contact-1 .left form ul li .box i {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 20px;
}
.contact-page .contact-1 .left form ul li .box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-1 .left form ul li .more {
   padding: 0;
  vertical-align: middle;
}
.contact-page .contact-1 .left form ul li .more i {
  margin-right: 6px;
  display: inline-block;
}
.contact-page .contact-1 .left form ul li .more{
  border: none;
  padding: 0 40px;
}
/*.contact-page .contact-1 .left form ul li p {
  display: inline-block;
  vertical-align: middle;
  padding-left: 26px;
  font-size: 14px;
  line-height: 28px;
  color: #83827F;
}
.contact-page .contact-1 .left form ul li p span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}*/
.contact-page .contact-1 .left form ul li:hover .box::before,
.contact-page .contact-1 .left form ul li.active .box::before {
  width: 100%;
}
.contact-page .contact-1 .left form ul li.wid-100 {
  width: 100% !important;
}
.contact-page .contact-1 .right {
  padding-left: 7.65%;
}
.contact-page .contact-1 .right .title{
  line-height: 1.2;
}
.contact-page .contact-1 .right p {
font-size: 16px;
line-height: 30px;
  color: #83827F;
  margin-top: 7px;
}
.contact-page .contact-1 .right .list {
  margin-top: 22px;
}
.contact-page .contact-1 .right .list ul li {
  color: #111;
}

.contact-page .contact-1 .right .list ul li:last-child {
  margin-bottom: 0;
}
.contact-page .contact-2 {
  padding-top: 120px;
}
.contact-page .contact-2 #mapContainer {
  height: 520px;
}
@media screen and (max-width: 1280px) {
  .contact-page .contact-1 .right {
    padding-left: 5.65%;
  }
}
@media screen and (max-width: 1000px) {
  .contact-page {
    padding-top: 60px;
  }
  .contact-page .contact-1 .left {
    width: 100%;
  }
  .contact-page .contact-1 .right {
    width: 100%;
    padding: 30px 0 0 0;
  }
  .contact-page .contact-2 {
    padding-top: 60px;
  }
  .contact-page .contact-2 #mapContainer {
    height: 360px;
  }
}
@media screen and (max-width: 700px) {
  .contact-page {
    padding-top: 30px;
  }
  .contact-page .contact-1 .left form ul li .more {
    padding: 18px 20px;
  }
  .contact-page .contact-2 {
    padding-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .contact-page .contact-1 .left form ul li .more {
    padding: 2px 12px;
  }
  /*.contact-page .contact-1 .left form ul li p {
    display: block;
    padding: 10px 0 0 0;
  }*/
  .contact-page .contact-1 .left form ul {
    margin-bottom: -20px;
  }
  .contact-page .contact-1 .left form ul li {
    padding-bottom: 20px;
  }
  .contact-page .contact-1 .left form ul li .box input,
  .contact-page .contact-1 .left form ul li .box textarea {
    padding: 10px 0 10px 36px;
  }
  .contact-page .contact-1 .right p {
    font-size: 16px;
    line-height: 30px;
  }
  .contact-page .contact-1 .right .list ul li {
    font-size: 16px;
  }
  .contact-page .contact-2 #mapContainer {
    height: 260px;
  }
}


.seoPublic .title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 1em;
}

.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;
    background-position: center center;
    display: block;
}

.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: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1em;
}

.seoPublic .Auxil-about .box .right .text {
    font-size: 16px;
    line-height: 30px;
    color: #7b7b7b;
    max-height: 390px;
    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: 240px;
    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: 22px;
    font-weight: 700;
    line-height: 40px;
    -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: 16px;
        line-height: 30px;
    margin-top: .5em;
    display: block;
    color: var(--color);
}

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

.seoPublic .Auxil-news .list ul li .content a.link {
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1;
    -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;
    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: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;
}

.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 {
      line-height: 40px;
        font-size: 24px;
        margin-bottom: 1em;
    }

    #cp-Nav {
        display: block;
    }

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

    #cp-Nav .nav div.title {
        font-size: 18px;
        line-height: 32px;
        font-weight: bold;
        padding: 8px 10px;
        background: var(--color);
        border-radius: 5px;
        color: white;
    }
     #cp-Nav .nav div.title i{
      float: right;
      font-size: 30px;
      cursor: pointer;
    }

    #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;
font-size: 16px;
line-height: 30px;
    }

    .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: 360px;
    }
}

.design-page .design-1 .container {
  max-width: 100%;
  padding: 0 40px;
  text-align: center;

}
.design-page .design-1 .container img{
  
  border-radius: 10px;
}
.design-page .design-2 {
  padding: 20px 0 110px;
}
.design-page .design-2 .i-title{
  line-height: 1.2;
  margin-bottom: 65px;
  margin-top: 50px;
   text-transform:uppercase;
}
.design-page .design-2 .left .img{
  text-align: right;
  border-radius: 10px;
}
.design-page .design-2 .left .img img{
  
  border-radius: 10px;
}
.design-page .design-2 .right{
  padding-left: 90px;
}
.design-page .design-2 .right img{
   border-radius: 10px;
}
.design-page .design-2 .right .txt{
  font-size: 20px;
  line-height: 32px;
  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: 30px;
  line-height: 1.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(/jswcsrq/2025/12/18/enderbg.jpg?imageView2/2/format/webp/q/100) no-repeat;
  color: white;
  padding: 107px 0 70px;
  background-attachment: fixed;
}
.design-page .design-4 .left{
  position: sticky;
  top: 170px;
      width: 35%;
}
.design-page .design-4 .left .i-title{
  line-height: 1.2;
}
.design-page .design-4 .right{
  padding-left: 90px;
      width: 65%;
}

.design-page .design-4 .right ul li{
  padding-left: 140px;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}
.design-page .design-4 .right ul li .icon{
  width: 77px;
  height: 77px;
  border-radius: 100%;
  background: #b81a12;
  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;
  z-index: -1;
  left: 50%;
  top: 0;
  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;
  color: #fff;
  opacity: 0.9;
}
.design-page .design-5{
  padding: 130px 0 110px;
  position: relative;
}
.design-page .design-5 .i-title{
  line-height: 1.2;
}
.design-page .design-5 .wrap{
  margin-top: 70px;
}
.design-page .design-5 .left{
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
}
.design-page .design-5 .left .box{
  max-width: 50%;
}
.design-page .design-5 .left .txt{
  font-size: 20px;
  line-height: 36px;
  color: #7b7b7b;
  margin-bottom: 45px;
}
.design-page .design-5 .left img{
  width: 100%;
}
.design-page .design-5 .right{
  max-width: 50%;
  width: fit-content;
  margin-left: auto;
}
.design-page .design-5 .right img{
 border-radius: 10px;
}
@media screen and (max-width:1600px){
  .design-page .design-5 .ui.container{
    padding-left: 7%;
  }
  .design-page .design-5 .wrap{
    padding-left: 10%;
  }
  .design-page .design-5 .right {
    max-width: 40%;
  }
}
@media screen and (max-width:1400px){
  .design-page .design-4 .right{
    padding-left: 30px;
  }
  .design-page .design-5 .wrap{
    padding-left: 0;
  }
  .design-page .design-5 .left .txt {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
}
@media screen and (max-width:1200px){
   .design-page .design-5 .left .i-title{
     font-size: 30px;
   }
  .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%;
  }
}
@media screen and (max-width:1000px){
  .inner-banner{
    padding-top: 100px;
  }
  .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 .left{
    width: 100%;
    position: unset;
    transform: none;
    margin-bottom: 60px;
  }
  .design-page .design-5 .left .box{
    width: 100%;
    max-width: 100%;
  }
  .design-page .design-5 .right{
    width: 100%;
    max-width: 100%;
    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;
  }
}



.lg-page .list li > div {
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 10px rgba(205,205,205,.3);
  padding: 10px;
  border-radius: 5px;
}

.lg-page .list li > div .name {
  transition: .5s ease;
}

.lg-page .list li > div:hover .name {
  color: #FFFFFF;
  background-color: var(--color);
}




.design-page .init-1 h2 {
  margin-bottom: 6px;
  color: #162c35;
  font-weight: 900;
}
.design-page .init-1 p {
  font-size: 16px;
  color: #777;
  font-weight: 300;
  font-style: normal;
}
.design-page .init-1 #carousel {
  padding: 50px 10%;
}

.design-page .init-1 .btn a {
  display: block;
  width: 350px;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 18px;
  color: #fff !important;
  background: #dbae78;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 15px 40px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 auto;
}
#index-body .i-honor .box ul li {
  position: relative;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.design-page .init-1 ul li img {
  width: 100%;
}
.design-page .init-1 ul .slick-slide li {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  left: 20%;
  z-index: 0;
  background: #e3e4e6;
}
.design-page .init-1 ul .slick-slide.slick-current li {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  left: 0;
  z-index: 1;
}
.design-page .init-1 ul .slick-slide.slick-current + div li {
  left: -25%;
}
.design-page .init-2 {
  /*background-color: #e9ebec;*/
}
.design-page .init-2 .grid-box .column {
  vertical-align: middle;
}
.design-page .init-2 .grid-box .column img {
  border-radius: 10px;
}
.design-page .init-2 .grid-box .column:nth-child(1) {
  padding-right: 5%;
}
.design-page .init-2 .grid-box .column:nth-child(1) h3 {
  margin-bottom: 8px;
  color: #162c35;
  font-weight: 700;
  font-style: normal;
}
.design-page .init-2 .grid-box .column:nth-child(1) h2 {
  font-weight: 900;
  color: #151515;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
.design-page .init-2 .grid-box .column:nth-child(1) p {
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 2;
  color: #777 !important;
}
.design-page .tit {
  text-align: center;
}
.design-page .tit h3 {
  font-weight: 900;
  color: #162c35 !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.design-page .tit p {
  font-size: 16px;
  color: #777;
  font-weight: 300;
  font-style: normal;
}
.design-page .init-3 {
  background: #F3F4F6;
  padding: 100px 0;
}
.design-page .init-3 .init-3-list {
  padding-top: 60px;
  padding-left: 12%;
}
.design-page .init-3 .init-3-list ul li{
  padding: 0 20px;
  padding-top: 80px;
}

.design-page .init-3 .init-3-list ul li .item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 40px;
  background-color: #fff;
}
.design-page .init-3 .init-3-list ul li .item .pic {
  position: relative;
  z-index: 10;
  max-width: 500px;
  width: 100%;
  -webkit-transform: translate(0, -80px);
  -ms-transform: translate(0, -80px);
  transform: translate(0, -80px);
}
.design-page .init-3 .init-3-list ul li .item .text {
  position: relative;
  max-width: 420px;
  width: 100%;
  padding-bottom: 50px;
}
.design-page .init-3 .init-3-list ul li .item .text .text-main {
  max-width: 380px;
  margin: 0 auto;
  margin-right: 0;
  padding-top: 54px;
  padding-left: 30px;
}
.design-page .init-3 .init-3-list ul li .item .text .text-main h4 {
  margin-bottom: 22px;
  font-size: 24px;
  color: #162c35;
  font-weight: 700;
  font-style: normal;
}
.design-page .init-3 .init-3-list ul li .item .text .text-main p{
  color: #777!important;
  font-size: 16px;
}
.design-page .init-4 {
  padding-top: 80px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(47%, #F3F4F6), color-stop(0%, #e9ebec));
  background: -webkit-linear-gradient(top, #F3F4F6 47%, #e9ebec 0%);
  background: -o-linear-gradient(top, #F3F4F6 47%, #e9ebec 0%);
  background: linear-gradient(180deg, #F3F4F6 47%, #e9ebec 0%);
}
.design-page .init-5 {
  text-align: center;
  background: #e9ebec;
}
.design-page .init-5 p {
  max-width: 760px;
  margin: 0 auto 52px;
}
.design-page .init-5 .section-link {
  display: inline-block;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.2;
  color: #dbae78 !important;
  text-decoration: underline!important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 1000px) {
  .design-page .init-3{
    display: none;
  }
}
@media (max-width: 700px) {
  .design-page .init-1 .btn a{
    font-size: 16px;
  }

  .design-page .init-2 .grid-box .column{
    width: 100%;
    padding: 10px 0;
  }

}










.about2-page .about-1 .box .left {
  padding-right: 2%;
}

.about2-page .about-1 .box .right {
  padding-left: 2%;
}
.about2-page .about-1 .box .right .text p {
  margin-top: 1.5em;
  color: #666;
  line-height:2;
}
.about2-page .about-1 .img {
  height: 590px;
  background-attachment: fixed;
  background-position: center;
  position: relative;
  margin-top: 60px;
  border-radius: 10px;
}
.about2-page .about-1 .img .play {
  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%);
  cursor: pointer;
  cursor: hand;
}
.about2-page .about-1 .img .play:after,
.about2-page .about-1 .img .play:before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about2-page .about-1 .img .play:hover:after,
.about2-page .about-1 .img .play:hover:before {
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
}
.about2-page .about-1 .img .play:hover:after {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}


.about2-page .about-2 {
  padding: 20px 0 100px;
  background: #f2f6f7;
}
.about2-page .about-2 .box .left {
  padding-right: 19%;
}
.about2-page .about-2 .box .left .text p{
  color: #666;
  line-height: 2;
}
.about2-page .about-2 .box .left hr {
  background-color: #b5b5b5;
  height: 1px;
  border: none;
  margin: 40px 0;
}
.about2-page .about-2 .box .left a.more {
  margin-top: 2.5em;
}
.about2-page .about-2 .box .right .list ul {
  margin: -25px -35px;
}
.about2-page .about-2 .box .right .list ul li {
  padding: 25px 40px;
  font-size: 22px;
}
.about2-page .about-2 .box .right .list ul li i {
  display: block;
  position: relative;
  margin-top: 1em;
}
.about2-page .about-2 .box .right .list ul li i:before {
  content: '';
  width: 40px;
  height:40px;
  background: url("/jswcsrq/2025/12/01/iconaboutbg-2.png") center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(-20%, -30%);
  -moz-transform: translate(-20%, -30%);
  -ms-transform: translate(-20%, -30%);
  transform: translate(-20%, -30%);
  z-index: -1;
}
.about2-page .about-2 .box .right .list ul li span.h6 {
  font-weight: 600;
  margin: .7em 0;
  display: block;
  line-height: 1.2;
}
.about2-page .about-2 .box .right .list ul li .text {
  line-height: 1.4;
}
.about2-page .about-2 .box .right .list ul li .text span {
  color: #666;
  line-height: 2;
}
@media screen and (max-width: 1600px) {
  .about2-page .about-1 .img {
    height: 400px;
    margin-top: 40px;
  }
  .about2-page .about-1 .img .play {
    width: 80px;
  }

  .about2-page .about-2 .box .left hr {
    margin: 30px 0;
  }
}

@media screen and (max-width: 1250px) {
  .about2-page .about-1 .img {
    height: 320px;
  }

  .about2-page .about-2 .box .left {
    padding-right: 10%;
  }
  .about2-page .about-2 .box .right .list ul li {
    padding: 10px;
  }
  .about2-page .about-2 .box .right .list ul {
    margin: -10px;
  }
}

@media screen and (max-width: 1000px) {
  .about2-page .about-1 .box .left {
    width: 100%;
    padding-right: 0;
  }
  .about2-page .about-1 .box .right {
    width: 100%;
    padding-left: 0;
  }
  .about2-page .about-1 .img {
    height: 260px;
  }

  .about2-page .about-2 .box .left {
    padding-right: 0;
    width: 100%;
  }
  .about2-page .about-2 .box .right {
    width: 100%;
    margin-top: 20px;
  }
  .about2-page .about-2 .box .left hr {
    margin: 10px 0;
  }
}




#index-body .init-3 {
 background: url("/jswcsrq/2025/12/17/about-2.jpg?imageView2/2/format/webp/q/100") center bottom no-repeat;
  background-size: cover;
}
#index-body .init-3 .list {
  margin-top: 80px;
}

#index-body .init-3 .list ul li {
  color: #787878;
}
#index-body .init-3 .list ul li .text {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.4;
  padding-right: 1em;
  color: #fff;
  opacity: 0.6;
}
#index-body .init-3 .list ul li .line {
  display: block;
  height: 1px;
  background: #dcdcdc;
  margin: 20px 0;
  position: relative;
}
#index-body .init-3 .list ul li .line:before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color);
  -webkit-transition: 6.5s linear;
  -moz-transition: 6.5s linear;
  transition: 6.5s linear;
}
#index-body .init-3 .list ul li .line i {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #787878;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-3 .list ul li .line i:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
#index-body .init-3 .list ul li span.year {
  display: block;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  padding-right: 1em;
  color: #fff;
}
#index-body .init-3 .list ul .slick-current li {
  color: var(--color);
}
#index-body .init-3 .list ul .slick-current li .text {
  opacity: 1;
}
#index-body .init-3 .list ul .slick-current li .line:before {
  width: 100%;
}
#index-body .init-3 .list ul .slick-current li .line i {
  left: 3px;
  background-color: var(--color);
}
#index-body .init-3 .list ul .slick-current li .line i:after {
  opacity: .5;
}







.service2-page .service-1 .left .img {
  height: 790px;
  display: block;
  /*-webkit-mask-image: url("../images/service-1-mask.png");*/
  mask-image: url("../images/service-1-mask.png");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.service2-page .service-1 .right {
  vertical-align: middle;
  padding-left: 5%;
}
.service2-page .service-1 .right span.h2 {
  margin: 10px 50px 0 0;
}
.service2-page .service-1 .right span.h2 em {
  font-size: 0.875em;
}

.service2-page .service-2 {
  padding: 150px 0 110px;
  text-align: center;
}
.service2-page .service-2 .list {
  margin-top: 80px;
}
.service2-page .service-2 .list ul {
  margin: -13px;
}
.service2-page .service-2 .list ul li {
  padding: 13px;
  text-align: left;
}
.service2-page .service-2 .list ul li span.num {
  font-size: 50px;
  font-weight: 900;
  color: var(--color);
  display: block;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
}
.service2-page .service-2 .list ul li span.num:after {
  content: '';
  width: 100%;
  background-color: black;
  height: 1px;
  display: inline-block;
  vertical-align: middle;
  margin-left: .5em;
  margin-top: -0.2em;
}
.service2-page .service-2 .list ul li span.h6 {
  font-weight: 500;
  font-size: 24px;
  color: #120c0b;
  margin: .5em 0;
  display: block;
  line-height: 1.2;
}
.service2-page .service-2 .list ul li .text {
  line-height: 1.4;
}
.service2-page .service-2 .list ul li:last-child span.num:after {
  display: none;
}
.service2-page .service-3 {
  padding: 130px 0 90px;
  text-align: center;
  color: white;
  background-image: url("../images/service-3-bg.jpg");
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}
.service2-page .service-3 span.h2 {
  margin-bottom: 1.2em;
}
.service2-page .service-3 a.more {
  color: #120c0b;
}
.service2-page .service-3 a.more:hover {
  color: white;
}
.service2-page .service-4 {
  padding: 60px 0;
  background-color: var(--color);
  color: white;
  text-align: center;
}
.service2-page .service-4 ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.service2-page .service-4 ul li {
  padding: 5px;
  border-right: 1px solid white;
}
.service2-page .service-4 ul li span.h6 {
  font-weight: 900;
  display: block;
  line-height: 1.2;
}
.service2-page .service-4 ul li span.h6 sub {
  font-size: 50%;
  vertical-align: baseline;
}
.service2-page .service-4 ul li .text {
  color: inherit;
  margin-top: .5em;
}
.service2-page .service-4 ul li:last-child {
  border-right: none;
}


@media screen and (max-width: 1450px) {
  .service2-page .service-1 .left .img {
    height: 600px;
  }
}

@media screen and (max-width: 1000px) {
  .service2-page .service-1 .right {
    padding: 0;
    width: 100%;
  }
  .service2-page .service-2 .list ul li {
    width: 50%;
  }
  .service2-page .service-2 .list ul li:last-child span.num:after {
    display: inline-block;
  }
}

@media screen and (max-width: 700px) {
  .service2-page .service-4 ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .service2-page .service-4 ul li {
    width: 100%;
    border: none;
  }
}

@media screen and (max-width: 500px) {
  .service2-page .service-2 .list ul li {
    width: 100%;
  }
  .service2-page .service-4 ul li {
    width: 50% !important;
  }
}







.about-0-page .about-1 .left {
  padding-right: 55px;
  vertical-align: middle;
}
/*.about-0-page .about-1 .left .i-title {
  color: #01302b;
}*/
.about-0-page .about-1 .left .h4 {
  font-size: 30px;
  color: #505050;
  margin-bottom: 24px;
}
.about-0-page .about-1 .left .content {

  line-height: 2;
  color: #666;
  font-weight: 300;
}
.about-0-page .about-1 .right {
  vertical-align: middle;
  position: relative;
}
.about-0-page .about-1 .right > img {
  display: block;
  margin-left: auto;
  border-radius: 10px;
}
.about-0-page .about-1 .right .play {
  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%);
  cursor: pointer;
}
.about-0-page .about-1 .right .play:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 100% !important;
  border-radius: inherit;
  -webkit-animation: ks 3s infinite;
  -moz-animation: ks 3s infinite;
  animation: ks 3s infinite;
  display: block;
  z-index: -1;
}
.about-0-page .about-1 .right .play:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100% !important;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -webkit-animation: ks 3s infinite;
  -moz-animation: ks 3s infinite;
  animation: ks 3s infinite;
  display: block;
  z-index: -1;
  -webkit-animation-delay: .4s;
  -moz-animation-delay: .4s;
  animation-delay: .4s;
}
.about-0-page .about-2 {
  background-color: #f7f7f7;
  padding: 80px 0 65px;
}
.about-0-page .about-2 .wrap {
  padding: 0;
}
.about-0-page .about-2 .wrap .left {
  width: 40%;
  text-align: center;
  vertical-align: middle;
  padding-right: 120px;
  position: relative;
}
.about-0-page .about-2 .grid-box.two>.column{
  text-align: right;
}
.about-0-page .about-2 .wrap .left .h1 {
  font-size: 200px;
  font-weight: 600;
  line-height: 1;
  color: var(--color);
}
.about-0-page .about-2 .wrap .left .h1 span {
  font-size: 30px;
}
.about-0-page .about-2 .wrap .left p {
  font-size: 30px;
  color: #505050;
}
.about-0-page .about-2 .wrap .left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 145px;
  background-color: rgba(248, 183, 57, 0.3);
  display: none;
}
.about-0-page .about-2 .wrap .right {
  width: 60%;
  vertical-align: middle;
  padding-left: 145px;
}
.about-0-page .about-2 .wrap .right ul li p {
  font-size: 20px;
  color: #505050;
  margin-bottom: 39px;
}
.about-0-page .about-2 .wrap .right ul li .h2 {
  font-size: 86px;
  line-height: 1;
  font-weight: 500;
  color: var(--color);
}
.about-0-page .about-2 .wrap .right ul li .h2 span {
  font-size: 30px;
}
.about-0-page .about-2 .wrap .right ul li .line {
  width: 125px;
  height: 1px;
  /*background-color: rgba(248, 183, 57, 0.3);*/
  margin: 45px 0 38px; 
}
.about-0-page .about-3 {
  padding-top: 85px;
  padding-bottom: 130px;
  background: #f0f4f6;
}
.about-0-page .about-3 .i-title {
  /*color: var(--color);*/
  margin-bottom: 74px;
  font-weight: 900;
}
.about-0-page .about-3 ul {
  margin: -22px;
}
.about-0-page .about-3 ul li {
  padding: 22px;
}
.about-0-page .about-3 ul li .box {
  background-color: #ffffff;
    /* border: 1px solid #ddd; */
    border-radius: 10px;
    position: relative;
    text-align: center;
    padding: 60px 30px;
    overflow: hidden;
    height: 300px;
    /*box-shadow: 0 0 5px 2px #e1e1e1;*/
}
.about-0-page .about-3 ul li .box .icon {
  margin-bottom: 30px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.about-0-page .about-3 ul li .box .content {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-weight: 300;
}
.about-0-page .about-3 ul li .box .h4 {
  font-weight: 600;
  color: #505050;
  font-size: 30px;
}
.about-0-page .about-3 ul li .box .text {
  color: #525252;
  display: none;
}
.about-0-page .about-3 ul li .box .bg {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.5;
  -moz-transition: 0.5;
  transition: 0.5;
  -webkit-transform: translate(100%, 100%);
  -moz-transform: translate(100%, 100%);
  -ms-transform: translate(100%, 100%);
  transform: translate(100%, 100%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.about-0-page .about-3 ul li .box:hover .icon {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
}
.about-0-page .about-3 ul li .box:hover .bg {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.about-0-page .about-3 ul li .box:hover .text {
  opacity: 1;
}
.about-0-page .about-3 ul li .box:hover .content {
  -webkit-transform: translateY(-110px);
  -moz-transform: translateY(-110px);
  -ms-transform: translateY(-110px);
  transform: translateY(-110px);
}
.about-0-page .about-4 {
  position: relative;
  background: url(/jswcsrq/2025/12/17/maubg.jpg?/jinkuivalve/2025/09/25/aboutbg.jpg) no-repeat;
  background-size: cover;
}
.about-0-page .about-4 .i-title {
  color: white;
}
.about-0-page .about-4 .text {
  color: white;
  margin: 16px 0 44px;
}
.about-0-page .about-4 ul.list {
  margin: -7px;
}
.about-0-page .about-4 ul.list li {
  padding: 7px;
}
.about-0-page .about-4 ul.list li .box {
  position: relative;
  text-align: center;
  padding: 0 34px;
  cursor: pointer;
  padding-bottom: 10px;
}

.about-0-page .about-4 ul.list li:hover .img{
  transform: translateY(-20px);
}
.about-0-page .about-4 ul.list li .box .img {
  z-index: 2;
  position: relative;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition:0.4s ease;
}
.about-0-page .about-4 ul.list li .box .img img {
  width: 100%;
  border-radius: 10px;
}
.about-0-page .about-4 ul.list li .box .h4 {
  font-size: 18px;
  font-weight: 300;
  color: #505050;
  z-index: 2;
  position: relative;
  margin-top: 16px;
}
.about-0-page .about-4 ul.list li .box span {
  font-size: 20px;
  color: var(--color);
  font-weight: 600;
  display: block;
  z-index: 2;
  position: relative;
  margin: 9px 0 17px;
  min-height: 60px;
}
.about-0-page .about-4 ul.list li .box .more {
  z-index: 2;
}
.about-0-page .about-4 ul.list li .box .more span {
  display: inline-block;
  margin-right: 10px;
}
.about-0-page .about-4 ul.list li .box .more span img {
  display: inline-block;
}
.about-0-page .about-4 ul.list li .box .more:hover span img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.about-0-page .about-4 ul.list li .box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  right: 0;
  top: 100px;
  background-color: white;
  border-radius: 10px;
}
.about-0-page .about-4 .content-box {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
  z-index: 8;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.about-0-page .about-4 .content-box .ui.container {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
.about-0-page .about-4 .content-box .single-box {
  background-color: #f6f6f6;
  position: relative;
  padding: 120px 90px;
  border-radius: 10px;
}
.about-0-page .about-4 .content-box .single-box .close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.about-0-page .about-4 .content-box .single-box .close i {
  font-size: 20px;
}
.about-0-page .about-4 .content-box .single-box ul li .img {
  width: 20%;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  vertical-align: middle;
}
.about-0-page .about-4 .content-box .single-box ul li .content {
  width: 80%;
  padding-left: 35px;
  vertical-align: middle;
}
.about-0-page .about-4 .content-box .single-box ul li .content .h4 {
  font-size: 32px;
  font-weight: 500;
  color: #505050;
  margin-bottom: 10px;
}
.about-0-page .about-4 .content-box .single-box ul li .content span {
  font-size: 20px;
  font-weight: 600;
  color: var(--color);
}
.about-0-page .about-4 .content-box .single-box ul li .content .text {
  font-size: 18px;
  line-height: 28px;
  color: #000;
  border-top: 1px solid #dde2e1;
  padding-top: 25px;
  margin-bottom: 0;
}
.about-0-page .about-5 {
  background-color: #f7f7f7;
  padding: 100px  0;
}
.about-0-page .about-5 .ui.container {
  max-width: 100%;
  padding-right: 0;
  padding-left: 0%;
}
.about-0-page .about-5 .left {
  padding-right: 80px;
  vertical-align: middle;
}
.about-0-page .about-5 .left .content {
  font-size: 18px;
  line-height: 28px;
  color: #424242;
  margin-top: 54px;
}
.about-0-page .about-5 .right {
  text-align: right;
  vertical-align: middle;
}
.about-0-page .about-5 .right img{
  border-radius: 10px 0 0 10px;
}
.about-0-page .about-6 {
  padding-bottom: 120px;
  padding-top: 120px;
  overflow: hidden;
  background: #f2f6f7;
}
.about-0-page .about-6 .content {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 90px;
  margin-top: 10px;
  color: #666;
  font-weight: 300;
}
.about-0-page .about-6 .left {
  width: 45%;
  vertical-align: middle;
}
.about-0-page .about-6 .left .box {
  /*width: 580px;
  height: 580px;*/
  border-radius: 50%;
  /*display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;*/
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.about-0-page .about-6 .left .box .icon {
  z-index: 3;
}
.about-0-page .about-6 .left .box p {
  font-size: 30px;
  font-weight: 600;
  color: #f8b739;
  z-index: 3;
}
.about-0-page .about-6 .left .box p span {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  text-align: center;
  line-height: 37px;
  background-color: #01302b;
  display: inline-block;
}
.about-0-page .about-6 .left .box p span img {
  position: relative;
  top: 12px;
}
.about-0-page .about-6 .left .box .circle {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 1px dashed #01302b;
}
.about-0-page .about-6 .left .box .circle .line {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: rotate1 20s infinite linear;
  -moz-animation: rotate1 20s infinite linear;
  animation: rotate1 20s infinite linear;
}
.about-0-page .about-6 .left .box .circle .arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f2fcf4;
  text-align: center;
  line-height: 40px;
}
.about-0-page .about-6 .left .box .circle .arrow:nth-child(1) {
  position: absolute;
  left: -1%;
  top: 31%;
}
.about-0-page .about-6 .left .box .circle .arrow:nth-child(1) img {
  -webkit-transform: rotate(110deg);
  -moz-transform: rotate(110deg);
  -ms-transform: rotate(110deg);
  transform: rotate(110deg);
}
.about-0-page .about-6 .left .box .circle .arrow:nth-child(2) {
  position: absolute;
  left: 94%;
  top: 31%;
}
.about-0-page .about-6 .left .box .circle .arrow:nth-child(2) img {
  -webkit-transform: rotate(245deg);
  -moz-transform: rotate(245deg);
  -ms-transform: rotate(245deg);
  transform: rotate(245deg);
}
.about-0-page .about-6 .left .box .circle .arrow:nth-child(3) {
  position: absolute;
  left: 50%;
  bottom: 0%;
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.about-0-page .about-6 .left .box .circle .arrow:nth-child(3) img {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.about-0-page .about-6 .left .box .circle .txt {
  font-size: 20px;
  color: white;
  background-color: var(--color);
  border-radius: 5px;
  padding: 5px 15px;
  -webkit-animation: rotate2 20s infinite linear;
  -moz-animation: rotate2 20s infinite linear;
  animation: rotate2 20s infinite linear;
}
.about-0-page .about-6 .left .box .circle .txt.t1 {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about-0-page .about-6 .left .box .circle .txt.t2 {
  position: absolute;
  left: -5%;
  top: 76%;
}
.about-0-page .about-6 .left .box .circle .txt.t3 {
  position: absolute;
  left: 72%;
  top: 76%;
  white-space: nowrap;
}
.about-0-page .about-6 .right {
  width: 55%;
  vertical-align: middle;
}
.about-0-page .about-6 .right ul li {
  margin-bottom: 15px;
}
.about-0-page .about-6 .right ul li .h4 {
  font-size: 20px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
  position: relative;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 25px;
}
.about-0-page .about-6 .right ul li .h4 i {
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
  display: block;
}
.about-0-page .about-6 .right ul li .des {
  font-size: 16px;
  line-height: 32px;
  padding: 15px 25px;
  font-weight: 300;
  color: #666;
}
.about-0-page .about-6 .right ul li:hover .h4,
.about-0-page .about-6 .right ul li.active .h4 {
  background-color:var(--color);
  color: white;
}
.about-0-page .about-6 .right ul li.active .h4 i {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
@media screen and (max-width: 1500px) {
   .about-0-page .about-4 .content-box .single-box {
    padding: 90px;
  }
  .about-0-page .about-4 ul.list li .box span{
    font-size: 18px;
  }
  .about-0-page .about-6 .left {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .about-0-page .about-4 ul.list li .box{
    padding: 0 30px;
  }
  .about-0-page .about-4 ul.list li .box .more {
    font-size: 17px;
  }
  /*.about-0-page .about-6 .left .box {
    width: 430px;
    height: 430px;
  }*/
  .about-0-page .about-6 .left .box p {
    font-size: 22px;
  }
  /*.about-0-page .about-6 .left .box .icon {
    width: 95px;
  }*/
  .about-0-page .about-6 .right ul li .h4 i {
    right: 10px;
  }
}
@media screen and (max-width: 1250px) {
  .about-0-page .about-1 .left {
    width: 100%;
    padding-right: 0;
  }
  .about-0-page .about-1 .right {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  .about-0-page .about-1 .right > img {
    margin: auto;
  }
  .about-0-page .about-1 .ui.container {
    padding: 0 30px;
  }
  .about-0-page .about-2 .wrap .left .h1 {
    font-size: 145px;
  }
  .about-0-page .about-2 .wrap .left p {
    font-size: 20px;
  }
  .about-0-page .about-2 .wrap .left {
    padding-right: 50px;
  }
  .about-0-page .about-2 .wrap .right ul li .h2 {
    font-size: 55px;
  }
  .about-0-page .about-2 .wrap .right {
    padding-left: 60px;
  }
  .about-0-page .about-3 ul li .box .icon img {
    width: 75px;
  }

  .about-0-page .about-3 ul li .box {
    height: 280px;
  }

  .about-0-page .about-4 ul.list li .box {
    padding: 0 15px;
  }
  .about-0-page .about-4 ul.list li .box span {
    font-size: 18px;
    margin: 4px 0 12px;
  }
  .about-0-page .about-4 .text {
    margin-bottom: 60px;
  }
  .about-0-page .about-4 .content-box .single-box {
    padding: 55px 30px;
  }
  .about-0-page .about-5 .left {
    padding-right: 50px;
  }
  /*.about-0-page .about-6 .left .box {
    width: 340px;
    height: 340px;
  }*/
  .about-0-page .about-6 .left .box .circle .txt.t3 {
    top: 66%;
    left: 54%;
  }
  .about-0-page .about-6 .left .box .circle .arrow:nth-child(1) {
    left: -4%;
  }
  .about-0-page .about-6 .left .box .circle .arrow:nth-child(2) {
    left: 90%;
    top: 25%;
  }
  .about-0-page .about-6 .left .box .circle .txt.t2 {
    left: -14%;
    top: 70%;
  }
  .about-0-page .about-6 .right ul li .h4{
    padding: 10px 25px;
    font-size: 18px;
  }
  .about-0-page .about-6 .right ul li .des{
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 0;
  }
}
@media (max-width: 1000px) {
  .about-0-page .about-2 .wrap {
    padding: 0;
  }
  .about-0-page .about-2 .wrap .right ul li p {
    font-size: 17px;
    margin-bottom: 25px;
  }
  .about-0-page .about-2 .wrap .right ul li .h2 {
    font-size: 40px;
  }
  .about-0-page .about-3 ul li {
    padding: 10px;
  }
  .about-0-page .about-3 ul {
    margin: -10px;
  }
  .about-0-page .about-3 ul li .box {
    padding: 60px 10px;
  }
  .about-0-page .about-4 ul.list li {
    width: 50%;
  }
  .about-0-page .about-5 .left {
    width: 100%;
    padding-right: 0;
  }
  .about-0-page .about-5 .right {
    width: 100%;
    margin-top: 30px;
  }
  .about-0-page .about-5 .ui.container {
    padding: 0 30px;
  }
  .about-0-page .about-6 {
    padding: 65px 0 70px;
  }
  .about-0-page .about-6 .left {
    width: 100%;
    padding-left: 0;
  }
  .about-0-page .about-6 .right {
    width: 100%;
    margin-top: 30px;
  }
  .about-0-page .about-6 .left .box {
    margin: auto;
  }
}
@media (max-width: 700px) {
  #index-body .init-1 .container .i1-b .swiper3-dots .swiper3-dot{
    margin-right: 5px;
  }
  .custom3-page .custom-2 .ui.container .bottom{
    margin-top: 50px;
  }

  .about-0-page .about-1 .left .h4 {
    font-size: 22px;
    color: #505050;
  }
  .about-0-page .about-1 .right .play {
    width: 100px;
  }
  .about-0-page .about-1 {
    padding-top: 40px;
  }
  .about-0-page .about-1 .ui.container,
  .about-0-page .about-5 .ui.container {
    padding: 0 15px;
  }
  .about-0-page .about-2 .wrap .left {
    width: 100%;
    padding-right: 0;
  }
  .about-0-page .about-2 .wrap .right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .about-0-page .about-2 .wrap .right ul li .line {
    margin: 16px 0 20px;
  }
  .about-0-page .about-3 {
    padding: 45px 0 60px;
  }
  .about-0-page .about-3 .i-title {
    margin-bottom: 30px;
  }
  .about-0-page .about-5 {
    padding: 40px 0;
  }
  .about-0-page .about-5 .left .content {
    margin-top: 25px;
  }
  .about-0-page .about-6 .right ul li .des {
    font-size: 16px;
  }
  .about-0-page .about-6 .right ul li .h4 {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
 .about-0-page .about-4 .content-box .single-box ul li .flex{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-0-page .about-4 .content-box .single-box ul li .img{
    width: 100%;
  }
  .about-0-page .about-4 .content-box .single-box ul li .content{
    width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 500px) {
   .about-0-page .about-1 .left .h4{
    font-size: 18px;
  }
  .about-0-page .about-4 ul.list li {
    width: 100%;
  }
  .about-0-page .about-4 .content-box .single-box ul li .flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-0-page .about-4 .content-box .single-box ul li .flex .img {
    width: 100%;
    box-shadow: unset;
  }
  .about-0-page .about-4 .content-box .single-box ul li .flex .img img{
    height: 190px;
    display: block;
    margin: auto;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .1);
  }
  .about-0-page .about-4 .content-box .single-box ul li .content .text{
    font-size: 16px;
  }
  .about-0-page .about-4 .content-box .single-box ul li .flex .content {
    width: 100%;
    padding-left: 0;
  }
  .about-0-page .about-4 .content-box .single-box ul li .content .h4 {
    font-size: 24px;
    margin-top: 15px;
  }
  .about-0-page .about-4 .content-box {
    position: fixed;
  }
  .about-0-page .about-4 .content-box .single-box ul li .content .text {
    max-height: 200px;
    overflow: auto;
  }
  /*.about-0-page .about-6 .left .box {
    zoom: 0.7;
  }*/
  .about-0-page .about-6 .content {
    margin-bottom: 25px;
  }
  .about-0-page .about-2 .wrap .right ul li {
    width: 50%;
  }
}






.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: 600;}
.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: 600;margin-bottom: 30px;color: #fff;}
.aft01 .box .min  h6 {font-size: 24px;color: #fff;font-weight: 600;margin-bottom: 50px;text-align: center;}
.aft01 .box .min  img {width: 42px;}
.aft01 p {font-size: 20px;color: #333333;font-weight: 600;}
.aft02 {position: relative;overflow: hidden; background: #f2f6f7;}
.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%;  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 .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 .box {    background-color: #fff; padding: 50px 0 60px; border-radius: 12px; 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: 16px;line-height: 32px;color: #ccc;margin-bottom: 5px;    margin-top: 54px;}
.aft02 .bot .box h5 {       font-size: 18px; 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;font-weight: 300;color: #666; }
.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); }

.aft02 .bot .aft02Swiper {width: 1200px;margin: auto;}
.aft03 {position: relative;overflow: hidden;     background-color: #f0f4f6;}
.aft03 .icenter2 {display: flex;justify-content: space-between;align-items:center;}
.aft03 .icenter2 .le {overflow: hidden;position: relative;width: 45%;    border-radius: 10px;}
.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: 600;}
.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: 600;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: 600;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 { padding: 22px 0; }
    .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 .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; }
    .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:1000px){
    .aft03 .icenter2 {flex-flow: wrap;}
    .aft03 .icenter2 .le {width: 100%;height: auto;margin-bottom: 20px;}
    .aft03 .icenter2 .ri {width: 100%;}
}

@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 .top { margin-bottom: 20px; }
    @keyframes hua2 { from { top: 0%; } to { top: 95%; } }
    .aft02 .bot .aft02Swiper { width: 100%; }
    .aft02 .botF .fa-angle-left { left: -8px; }
    .aft02 .botF .fa-angle-right{ right: -8px; }
    .aft02 .bg_fix { height: 483px; }
    
    
    .aft03 dl dd .icon { width: 60px; margin-right: 31px; }
    .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 .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 {
    padding: 10px 28px 10px 0;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #dddddd;
    line-height: 36px;
    color:#666;
}

.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;
}








.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;
}
.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: 70%;
    padding-left: 20px;
    line-height: 2;
    color: #666;
    font-weight: 300;
}

.custom3-page .custom-1 .btm ul.list2 li.item {
    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: 5%;
    background-color: #f2f6f7;
    flex-direction: column;
    text-align: center;
}
.custom3-page .custom-1 .btm ul.list2 li.item img {

    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    margin-bottom: 15px;
}
.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 .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;
    font-weight: 300;
    color: #666;
}
.custom3-page .custom-2 .ui.container .bottom {
  border-radius: 10px;
    margin: 100px 0;
    background: #f0f4f6;
    /*-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 p {
    max-width: 600px;
    line-height: 1.8;
    margin-top: 45px;
    font-weight: 300;
    color: #666;

}

.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 #ddd;
}
.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;
    font-weight: 300;
    color: #666;
}
.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) {
    .custom3-page .custom-2 .ui.container .bottom .left {
        padding-right: 0px;
    }
}
@media screen and (max-width: 1000px) {
    .custom3-page .custom-2 .ui.container .bottom {
        padding: 30px 25px;
    }

    .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: 700px) {
    .custom3-page .custom-1 .top .h3 {
        width: 100%;
    }
    .custom3-page .custom-1 .top p {
        width: 100%;
    }

    .custom3-page .custom-2 .ui.container .bottom .right ul.list3 li .top{
        flex-wrap: nowrap;
        font-size: 16px;
        line-height: 30px;
    }
    
}



.customized-products li > div {
  height: 100%;
  min-height: 300px;
  background: #c00000;
  border-radius: 10px;
}

.customized-products li > div.box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.customized-products li > div.box::before {
  -webkit-transition: all 400ms ease;
  -khtml-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.customized-products li > div.box::before {
  opacity: 0;
  background-color: #0a2145;
  background-image: url(../images/customizedlogo.png);
  background-repeat: no-repeat;
  background-size: 80% auto;
  background-position: center;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  -webkit-transform: scale(0.8);
  -khtml-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}


.customized-products li > div.box:hover::before {
  opacity: 1;
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.customized-products li > div.box .icon img {
  -webkit-transition: all 400ms ease;
  -khtml-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

.customized-products li > div.box .name {
  -webkit-transition: all 400ms ease;
  -khtml-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  color: #fff;
}

.customized-products li > div.box .text {
  -webkit-transition: all 400ms ease;
  -khtml-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  color: #fff;
  opacity: 0.8;
}

.customized-products li > div.box .num {
  -webkit-transition: all 400ms ease;
  -khtml-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  color: #fff;
  opacity: 0.8;
}

.customized-products li > div.box:hover .icon img {
  filter: brightness(0) invert(1);
}

.customized-products li > div.box:hover .name {
  color: #FFFFFF;
}

.customized-products li > div.box:hover .text {
  color: #FFFFFF;
}

.customized-products li > div.box:hover .num {
  color: #FFFFFF;
}


@media (max-width:1000px) {
  .customized-products li > div {
    min-height: auto;
  }
}





.chain-page .chain-1 .img-box {
    border-radius: 10px;
    overflow: hidden;
}

.chain-page .chain-1 .img-box img {
    min-height: 300px;
    object-fit: cover;
}

.chain-page .chain-2 .strength-list ul li {
    margin-top: 70px;
}

.chain-page .chain-2 .strength-list ul li .box .img-box {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
}

.chain-page .chain-2 .strength-list ul li .box .img-box img {
    border-radius: 10px;
}

.chain-page .chain-2 .strength-list ul li .box .txtbox {
    background-color: #f0f4f6;
    border-radius: 10px;
    width: calc(50% + 40px);
    padding-left: 10%;
    padding-right: 6%;
    margin-left: -40px;
}

.chain-page .chain-2 .strength-list ul li .box .txtbox .tag .line {
    width: 65px;
    height: 1px;
    background-color: #333333;
    display: block;
}

.chain-page .chain-2 .strength-list ul li .box .txtbox .tt {
    line-height: 1.4;
    color: #151515;
    font-weight: 900;
}

.chain-page .chain-2 .strength-list ul li .box .txtbox .desc {
    line-height: 1.8;
    color: #666;
}

.chain-page .chain-2 .strength-list ul li:nth-child(odd) .box {
    flex-direction: row-reverse;
}

.chain-page .chain-2 .strength-list ul li:nth-child(odd) .box .txtbox {
    margin-right: -40px;
    margin-left: 0;
    padding-left: 6%;
    padding-right: 10%;
}

.chain-page .oem-6 .con {
    border-radius: 10px;
    height: 400px;
}

@media (max-width: 1000px) {
    .chain-page .chain-2 .strength-list ul li .box .img-box {
        width: 100%;
    }

    .chain-page .chain-2 .strength-list ul li .box .txtbox {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }

    .chain-page .chain-2 .strength-list ul li:nth-child(odd) .box .txtbox {
        margin-right: 0;
    }
}

@media (max-width: 700px) {
    .chain-page .chain-2 .strength-list ul li {
        margin-top: 30px;
    }
}


.sev_box2 {
  padding: 95px 0 100px;
}
.sev_box2 .smt {
  max-width: 220px;
  margin: 0 auto;
}
.sev_box2 .title {
  text-align: center;
  max-width: 472px;
  margin: 0 auto;
  line-height: 1.2;
}
.sev_box2 .cont {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  max-width: 950px;
  margin: 35px auto 0;
}
.sev_box2 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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.sev_box2 ul li {
  width: 24%;
  padding-top: 60px;
  margin-top: 30px;
}
.sev_box2 ul li img {
  border-radius: 10px;
}
.sev_box2 ul li .tip {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.sev_box2 ul li .tip .num {
  font-size: 18px;
  font-weight: bold;
  color: var(--color);
  line-height: 1;
}
.sev_box2 ul li .tip .line {
  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;
  width: 300px;
}
.sev_box2 ul li .tip .line .s2 {
  width: 100%;
  height: 5px;
  background-color: #e7e7e7;
}
.sev_box2 ul li .tip .line .s1,
.sev_box2 ul li .tip .line .s3 {
  width: 12px;
  height: 12px;
  background-color: #f1efef;
  border-radius: 50%;
}
.sev_box2 ul li .tits {
  font-size: 24px;
  color: var(--color);
  margin: 30px 0 20px;
}
.sev_box2 ul li .text {
  font-size: 16px;
      margin: 20px 0;
}
.sev_box2 ul .img {
  /*background: url(../images/sev2.png) no-repeat bottom center;*/
  /*display: flex;*/
  align-items: flex-end;
  position: relative;
}
.sev_box2 ul .img img {
  width: 80%;
  position: relative;
  z-index: 4
}
.sev_box2 ul .img .svg_sq{
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;


}

@media screen and (max-width: 1000px) {
  .sev_box1 ul li {
    width: 100%;
    margin-bottom: 30px;
  }
  .sev_box2 ul li {
    width: 45%;
    padding-top: 0;
  }
  .sev_box2 ul li .tip .line {
    width: 378px;
  }
  .sev_box2 ul li .text {
    /*height: 5.5em;*/
  }
}
@media screen and (max-width: 700px) {
  .sev_box2 ul li {
    width: 100%;
  }
  .sev_box2 ul li .text {
    /*height: 6.5em;*/
  }
}

.svg_sq {
  -webkit-perspective: 800px;
  -moz-perspective: 800px;
  perspective: 800px;
  -webkit-animation: xz2 10s linear infinite;
  -moz-animation: xz2 10s linear infinite;
  animation: xz2 10s linear infinite;
}
@-webkit-keyframes xz2 {
  0% {
    -webkit-transform: rotate(0deg) perspective(800px) translateZ(0);
    transform: rotate(0deg) perspective(800px) translateZ(0);
  }
  50% {
    -webkit-transform: rotate(180deg) perspective(800px) translateZ(100px);
    transform: rotate(180deg) perspective(800px) translateZ(100px);
  }
  100% {
    -webkit-transform: rotate(360deg) perspective(800px) translateZ(0);
    transform: rotate(360deg) perspective(800px) translateZ(0);
  }
}
@-moz-keyframes xz2 {
  0% {
    -moz-transform: rotate(0deg) perspective(800px) translateZ(0);
    transform: rotate(0deg) perspective(800px) translateZ(0);
  }
  50% {
    -moz-transform: rotate(180deg) perspective(800px) translateZ(100px);
    transform: rotate(180deg) perspective(800px) translateZ(100px);
  }
  100% {
    -moz-transform: rotate(360deg) perspective(800px) translateZ(0);
    transform: rotate(360deg) perspective(800px) translateZ(0);
  }
}
@keyframes xz2 {
  0% {
    -webkit-transform: rotate(0deg) perspective(800px) translateZ(0);
    -moz-transform: rotate(0deg) perspective(800px) translateZ(0);
    transform: rotate(0deg) perspective(800px) translateZ(0);
  }
  50% {
    -webkit-transform: rotate(180deg) perspective(800px) translateZ(100px);
    -moz-transform: rotate(180deg) perspective(800px) translateZ(100px);
    transform: rotate(180deg) perspective(800px) translateZ(100px);
  }
  100% {
    -webkit-transform: rotate(360deg) perspective(800px) translateZ(0);
    -moz-transform: rotate(360deg) perspective(800px) translateZ(0);
    transform: rotate(360deg) perspective(800px) translateZ(0);
  }
}

.about2-page .chainList{
background: #fff;
}

.support-1{
  /*background: #f0f4f6;*/
  padding: 80px 0;
  background: url("/jswcsrq/2025/12/17/about-2.jpg?imageView2/2/format/webp/q/100") center bottom no-repeat;
  background-size: cover;
}

.support-1 .slick-slider:not(.slick-vertical) .slick-track {
  margin-left: auto;
}

.support-1 .list .box .text i {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  background-color: #aa0000;
  margin: -30px auto 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  color: #fff;

}
.support-1 .list .box .text i img {
  vertical-align: middle;
  border-radius: 10px;
}
.support-1 .list .box .img img {
  border-radius: 10px;
}

.service2-page .service-1 .left img{
  border-radius: 10px;
}
.about2-page .chainList .bottom .list .img-box img {
 border-radius: 10px;
}
.service2-page .service-1 .right .text p{
  color: #666;
  line-height: 2;
}
.tag{
  margin-bottom: 10px;
  color: #666;
}
.custom3-page .custom-2 .ui.container .top .right .imgbox img{
  border-radius: 10px;
}
table td{
  border: 1px solid #ccd1d3;
  background: #f0f4f6;
 
}