@font-face {
  font-family: 'mon';
  src: url('../fonts/MODERNIZ.eot');
  src: url('../fonts/MODERNIZ.eot?#iefix') format('embedded-opentype'), url('../fonts/MODERNIZ.woff2') format('woff2'), url('../fonts/MODERNIZ.woff') format('woff'), url('../fonts/MODERNIZ.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*@font-face {
  font-family: 'mon';
  src: url('../fonts/Montserrat-ExtraBold.eot');
  src: url('../fonts/Montserrat-ExtraBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-ExtraBold.woff2') format('woff2'), url('../fonts/Montserrat-ExtraBold.woff') format('woff'), url('../fonts/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}*/
@font-face {
  font-family: 'mon';
  src: url('../fonts/Montserrat-Medium.eot');
  src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Medium.woff2') format('woff2'), url('../fonts/Montserrat-Medium.woff') format('woff'), url('../fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'mon';
  src: url('../fonts/Montserrat-SemiBold.eot');
  src: url('../fonts/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-SemiBold.woff2') format('woff2'), url('../fonts/Montserrat-SemiBold.woff') format('woff'), url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.moreCont2{
  padding: 10px 10px 10px 30px;
  border-radius: 28px;
  background-color: #fff;
  border: 1px solid #f2f2f2;
}
.moreCont2 .moreCir {
    background-color: var(--color);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}
.moreCont2:hover {
    background-color: var(--color);
    color: #fff;
}
.moreCont2:hover .moreCir {
    background-color: #fff;
    color: var(--color);
}
html,
body {
  position: relative;
  max-width: 1920px;
  margin: auto;
  --color: #ec242c;
  height: auto;
}
body {
  overflow-x: hidden;
  position: relative;
  font-weight: 500;
  margin: 0 auto;
  color: #333;
  font-family: 'mon';
}
.img_bg {
  -o-background-size: contain;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
.search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
.search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
.search-box form input {
  background: none;
  outline: none;
  border: none;
}
.search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
.search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}

@-webkit-keyframes transAni2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes transAni2 {
  0% {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes transAni2 {
  0% {
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes transAni2 {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
#header {
  position: -webkit-sticky;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 18;
}

.headNavCont{
  background: #fff;
  top: 82%;
  left: 0;
  z-index: 5;

}
.headNavCont .list{
  padding-top: 20px;
  display: none;  
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.headNavCont .list ul li{
  padding: 0 10px;
  width: 20%;
  transition: all .5s;
}
.headNavCont .list ul li:hover{
  transform: translateY(-10px);
}
.headNavCont .list ul li .img{
  display: block;
  /*border: solid 1px #dadada;*/
}
.headNavCont .list ul li .img img:last-child{
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%,-50%);
  width: 80% !important;
}
.headNavCont .list ul li .box .title{
  margin-top: 10px;
}
.headNavCont .list ul li .box .title:hover{
  color: var(--color);
}
.headNavCont .list ul li .box .more{
  padding: 5px 10px 5px 20px;
  display: flex !important;
}
.page-header02{
  background: #fff;
}
.page-header02 .menu-btn{
  border: 1px solid var(--color);
}
#header a {
  display: block;
}
#header img {
  display: block;
  width: 100%;
}
#header > .nav {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  padding: 20px 0 10px;
  background-color: rgba(255, 255, 255, 1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
#header > .nav > .menu {
  z-index: 1;
}
#header > .nav > .menu .menu-box {
  position: relative;
  z-index: 2;
}
#header > .nav > .menu .menu-box .left {
  position: relative;
}
#header > .nav > .menu .menu-box .left .logo {
  position: relative;
  display: block;
  z-index: 1;
}
#header > .nav > .menu .menu-box .left .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#header > .nav > .menu .menu-box .rightC .fTop {
  border-bottom: 1px solid #cacaca;
  z-index: 3;
}
#header > .nav > .menu .menu-box .rightC .fTop .searchC form {
  border: 1px solid #9f9f9f;
  padding: 0 20px 0 10px;
}
#header > .nav > .menu .menu-box .rightC .fTop .searchC form .text {
  width: 130px;
  line-height: 1;
  border: 1px solid transparent;
  background-color: transparent;
  color: #000;
}
#header > .nav > .menu .menu-box .rightC .fTop .searchC form .btn {
  width: 16px;
  height: 16px;
  border: none;
  background-color: transparent;
}
#header > .nav > .menu .menu-box .rightC .fTop .lang_cont {
  margin-left: auto;
}
#header > .nav > .menu .menu-box .rightC .fTop .lang_cont .c_cont a {
  line-height: 1;
  color: #666666;
}
#header > .nav > .menu .menu-box .rightC .fTop .lang_cont .c_cont a:hover {
  color: var(--color);
}
#header > .nav > .menu .menu-box .rightC .fTop .lang_cont .c_cont .line {
  width: 1px;
  height: 16px;
  background: #666666;
  margin: 0 10px;
}
#header > .nav > .menu .menu-box .rightC .fTop .lang_cont .c_cont .line:last-child {
  display: none;
}
#header > .nav > .menu .menu-box .rightC .fBottom {
  z-index: 2;
}
#header > .nav > .menu .menu-box .menu_c {
  z-index: 2;
  text-align: center;
  margin-left: auto;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container {
  z-index: 2;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container:nth-child(2) {
  margin-left: 40px;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container:nth-child(2) > ul > li:first-child{
  display: none;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container:nth-child(2) > ul > li:nth-child(2){
  margin-left: 0;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu {
  width: 100%;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item {
  display: inline-block;
  position: relative;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  margin-left: 40px;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item:first-child {
  margin-left: 0;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item:hover > a::before,
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item.active > a::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item:hover > .sub-menu{
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  padding: 10px 0;
  text-align: left;
  line-height: 30px;
  position: relative;
  font-size: 16px;
  text-transform: capitalize;
  z-index: 2;
  color: #666666;
  font-weight: 500;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 8px;
  left: 0;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  z-index: 2;
  opacity: 0;
  background: #666666;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  width: auto;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  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;
  -o-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;
  -o-transition: opacity 0.3s, -o-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, -o-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  border-radius: 2px;
  background-color: #f7f7f7;
}

#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item {
  color: #000;
  position: relative;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item a {
  white-space: nowrap;
  font-size: 16px;
  line-height: 30px;
  padding: 8px 12px;
  text-align: left;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(189, 189, 189, 0);
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item:hover > a {
  background-color: #000;
  color: #fff;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item .sub-menu {
  left: 100%;
  top: 0;
  min-width: 120px;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item:hover .sub-menu {
  transform: rotate3d(0, 0, 0, -90deg);
  -webkit-transform: rotate3d(0, 0, 0, -90deg);
  -moz-transform: rotate3d(0, 0, 0, -90deg);
  -ms-transform: rotate3d(0, 0, 0, -90deg);
  -o-transform: rotate3d(0, 0, 0, -90deg);
  opacity: 1;
}
#header > .nav > .menu .menu-box .right {
  position: relative;
  z-index: 1;
}
#header > .nav > .menu .menu-box .right .search {
  width: 22px;
  height: 22px;
  cursor: pointer;
}
#header > .nav > .menu .menu-box .right .lang_cont .c_cont .img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-background-size: cover;
  background-size: cover;
}
#header > .nav > .menu .menu-box .right .lang_cont .lang {
  padding-top: 5px;
}
#header > .nav > .menu .menu-box .right .openBtn {
  background-color: var(--color);
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 20px;
  border-radius: 5px;
}
#header > .nav > .menu .menu-box .right .openBtn:hover {
  background-color: #000;
}
#header > .nav .lang_cont {
  display: inline-block;
  position: relative;
  cursor: pointer;
  z-index: 2;
}
#header > .nav .lang_cont:hover .lang {
  opacity: 1;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
#header > .nav .lang_cont .lang {
  overflow-y: auto;
  max-height: 400px;
  width: 150px;
  position: absolute;
  top: 100%;
  right: 0;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -o-transition: opacity 0.3s, -o-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, -o-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  border-bottom: 3px solid #333333;
}
#header > .nav .lang_cont .lang li a {
  display: block;
  background: #f7f7f7;
  padding: 5px 10px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  text-align: left;
}
#header > .nav .lang_cont .lang li a:hover {
  background-color: #000;
}
#header > .nav .lang_cont .lang li a:hover em {
  color: #fff;
}
#header > .nav .lang_cont .lang li a img {
  display: inline;
  width: 20%;
  margin-top: 4px;
}
#header > .nav .lang_cont .lang li a em {
  display: inline;
  font-size: 16px;
  margin-left: 10px;
  color: #000;
  line-height: 30px;
}
#header.active > .nav,
#header.inner_active > .nav {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#banner {
  overflow: hidden;
  position: relative;
  z-index: 2;
  text-align: center;
}
#banner .swiper {
  z-index: 2;
  width: 100%;
  overflow: hidden;
  position: relative;
}
#banner .swiper .swiper-wrapper {
  height: 100%;
}
#banner .swiper .swiper-wrapper .swiper-slide {
  -o-background-size: 100% auto;
  background-size: 100% auto;
  width: 100%;
  height: 54vw;
  max-height: 940px;
  -o-background-size: cover;
  background-size: cover;
  z-index: 2;
  position: relative;
}
#banner .swiper .swiper-wrapper .swiper-slide .container {
  overflow: hidden;
  height: 100%;
  z-index: 5;
}
#banner .swiper .swiper-wrapper .swiper-slide .container .box {
  text-align: left;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
#banner .swiper .swiper-wrapper .swiper-slide .container .box .cont {
  z-index: 2;
  width: 100%;
  color: #fff;
  padding-top: 13%;
}
#banner .swiper .swiper-wrapper .swiper-slide .container .box .cont .title {
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(36%, #fdfdfd), to(#424242));
  background: -webkit-linear-gradient(top, #fdfdfd 36%, #424242);
  background: -moz-linear-gradient(top, #fdfdfd 36%, #424242);
  background: -o-linear-gradient(top, #fdfdfd 36%, #424242);
  background: linear-gradient(to bottom, #fdfdfd 36%, #424242);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
#banner .swiper .swiper-wrapper .swiper-slide .container .box .cont .title2 em {
  color: var(--color);
}
#banner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .title,
#banner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .more {
  -webkit-animation: fadeInLeftSmall 1s linear;
  -moz-animation: fadeInLeftSmall 1s linear;
  -o-animation: fadeInLeftSmall 1s linear;
  animation: fadeInLeftSmall 1s linear;
}
#banner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .title2 {
  -webkit-animation: fadeInRightSmall 1s linear;
  -moz-animation: fadeInRightSmall 1s linear;
  -o-animation: fadeInRightSmall 1s linear;
  animation: fadeInRightSmall 1s linear;
}
.slick-list .slick-track {
  margin-left: 0;
}
.container {
  width: 1710px;
}
@-webkit-keyframes rotAni {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotAni {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes rotAni {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotAni {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#index-body {
  position: relative;
  z-index: 2;
}
#index-body .init-1 .container {
  width: 100%;
  padding: 0;
}
#index-body .init-1 .container .left {
  width: 50%;
}
#index-body .init-1 .container .left a {
  display: block;
}
#index-body .init-1 .container .left a img {
  width: 100%;
}
#index-body .init-1 .container .right {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  -o-background-size: cover;
  background-size: cover;
  width: 50%;
  min-height: 940px;
  padding: 20px 150px;
}
#index-body .init-1 .container .right .listCont {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}
#index-body .init-1 .container .right .listCont .list {
  display: none;
}
#index-body .init-1 .container .right .listCont .list .img {
  display: none;
}
#index-body .init-1 .container .right .listCont .list .title {
  text-transform: uppercase;
  line-height: 1.4;
}
#index-body .init-1 .container .right .imgCont .list {
  width: 50%;
  margin-top: 20px;
}
#index-body .init-1 .container .right .imgCont .list .box {
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 40px;
  height: 100%;
  z-index: 2;
}
#index-body .init-1 .container .right .imgCont .list .box .shadow {
  -o-background-size: cover;
  background-size: cover;
  width: 40%;
  height: 100%;
  z-index: -1;
  top: 0;
  right: 0;
  opacity: 0;
}
#index-body .init-1 .container .right .imgCont .list .box .img {
  width: 38%;
  overflow: unset;
}
#index-body .init-1 .container .right .imgCont .list .box .img img {
  width: auto;
}
#index-body .init-1 .container .right .imgCont .list .box .text {
  width: 52%;
}
#index-body .init-1 .container .right .imgCont .list.active .box {
  border-color: var(--color);
}
#index-body .init-1 .container .right .imgCont .list.active .box .shadow {
  opacity: 1;
}
#index-body .init-2 .container {
  width: 100%;
  padding: 0;
}
#index-body .init-2 .tipsTitle {
  text-transform: uppercase;
}
#index-body .init-2 .content .btn {
  width: 60px;
  height: 60px;
  background-color: var(--color);
  color: #fff;
  border-radius: 50%;
  font-size: 50px;
  z-index: 3;
  top: 320px;
  cursor: pointer;
  right: 18%;
}
#index-body .init-2 .content .btn:hover {
  background-color: #000;
}
#index-body .init-2 .content .prev {
  left: 18%;
  right: unset;
}
#index-body .init-2 .content ul li .box .subImg {
  height: 340px;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
}
#index-body .init-2 .content ul li .box .cont1 {
  margin-top: -140px;
  height: 280px;
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}
#index-body .init-2 .content ul li .box .cont1 .subImg2 {
  position: relative;
  z-index: 2;
  margin: auto;
  width: 74%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
#index-body .init-2 .content ul li .box .cont1 .img3 {
  width: 160px;
  -o-object-fit: cover;
  object-fit: cover;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}
#index-body .init-2 .content ul li .box .cont1 .img3 img{
  transform: scale(1.3);
}
#index-body .init-2 .content ul li .box .cont1 .shadow1 {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 140px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#cccccc));
  background: -webkit-linear-gradient(top, #fdfdfd, #cccccc);
  background: -moz-linear-gradient(top, #fdfdfd, #cccccc);
  background: -o-linear-gradient(top, #fdfdfd, #cccccc);
  background: linear-gradient(to bottom, #fdfdfd, #cccccc);
  opacity: 0;
}
#index-body .init-2 .content ul li .box .cont1 .shadow2 {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 140px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #fdfdfd), to(#cccccc));
  background: -webkit-linear-gradient(bottom, #fdfdfd 40%, #cccccc);
  background: -moz-linear-gradient(bottom, #fdfdfd 40%, #cccccc);
  background: -o-linear-gradient(bottom, #fdfdfd 40%, #cccccc);
  background: linear-gradient(to top, #fdfdfd 40%, #cccccc);
}
#index-body .init-2 .content ul li .box .cont2 {
  opacity: 0;
  padding: 0 90px;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
}
#index-body .init-2 .content ul li .box .cont2 .tips {
  text-transform: uppercase;
  color: var(--color);
}
#index-body .init-2 .content ul li .box .cont2 .title {
  text-transform: uppercase;
  font-weight: 600;
}
#index-body .init-2 .content ul li .box .des {
  color: #999999;
  overflow:hidden;
  text-overflow:ellipsis; 
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}
#index-body .init-2 .content ul li.swiper-slide-active .box .subImg {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
#index-body .init-2 .content ul li.swiper-slide-active .box .cont1 .subImg2 {
  opacity: 1;
}
#index-body .init-2 .content ul li.swiper-slide-active .box .cont1 .shadow1 {
  opacity: 1;
  -webkit-box-shadow: 0 0 20px rgba(101, 101, 101, 0.2);
  box-shadow: 0 0 20px rgba(101, 101, 101, 0.2);
}
#index-body .init-2 .content ul li.swiper-slide-active .box .cont1 .shadow2 {
  opacity: 0;
}
#index-body .init-2 .content ul li.swiper-slide-active .box .cont1 .img3 {
  width: 400px;
}
#index-body .init-2 .content ul li.swiper-slide-active .box .cont2 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
#index-body .init-2 .content ul li.swiper-slide-prev .box .cont1 .img3 {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
#index-body .init-2 .content ul li.swiper-slide-next .box .cont1 .img3 {
  -webkit-transform: translateX(-200%);
  -moz-transform: translateX(-200%);
  -ms-transform: translateX(-200%);
  -o-transform: translateX(-200%);
  transform: translateX(-200%);
}
#index-body .init-3 {
  background: -webkit-gradient(linear, left bottom, left top, from(#f2f2f2), to(#ffffff));
  background: -webkit-linear-gradient(bottom, #f2f2f2, #ffffff);
  background: -moz-linear-gradient(bottom, #f2f2f2, #ffffff);
  background: -o-linear-gradient(bottom, #f2f2f2, #ffffff);
  background: linear-gradient(to top, #f2f2f2, #ffffff);
}
#index-body .init-3 .container .left {
  width: 50%;
}
#index-body .init-3 .container .left .year {
  line-height: 1.1;
  font-size: 160px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f4abad), color-stop(70%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(top, #f4abad, rgba(255, 255, 255, 0) 70%);
  background: -moz-linear-gradient(top, #f4abad, rgba(255, 255, 255, 0) 70%);
  background: -o-linear-gradient(top, #f4abad, rgba(255, 255, 255, 0) 70%);
  background: linear-gradient(to bottom, #f4abad, rgba(255, 255, 255, 0) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#index-body .init-3 .container .left .tipsTitle {
  text-transform: uppercase;
  margin-top: -60px;
  line-height: 1.4;
}
#index-body .init-3 .container .left .des {
  color: #999999;
}
#index-body .init-3 .container .left .moreC .more {
  padding: 10px 10px 10px 30px;
  border-radius: 28px;
  background-color: #fff;
}
#index-body .init-3 .container .left .moreC .more .moreCir {
  background-color: var(--color);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
#index-body .init-3 .container .left .moreC .more:hover {
  background-color: var(--color);
  color: #fff;
}
#index-body .init-3 .container .left .moreC .more:hover .moreCir {
  background-color: #fff;
  color: var(--color);
}
#index-body .init-3 .container .left .listCont ul li {
  width: -webkit-calc(20%);
  width: -moz-calc(20%);
  width: calc(50% - 30px);
}
#index-body .init-3 .container .left .listCont ul li .box {
  padding-bottom: 4px;
  border-bottom: 1px solid #999999;
}
#index-body .init-3 .container .left .listCont ul li .box .boxLeft {
  width: -webkit-calc(10%);
  width: -moz-calc(10%);
  width: calc(100% - 90px);
}
#index-body .init-3 .container .left .listCont ul li .box .boxLeft .top {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.1;
}
#index-body .init-3 .container .left .listCont ul li .box .boxLeft .top 
#index-body .init-3 .container .left .listCont ul li .box .boxLeft .top span {
  background: -webkit-gradient(linear, left top, right top, from(#292929), to(#616161));
  background: -webkit-linear-gradient(left, #292929, #616161);
  background: -moz-linear-gradient(left, #292929, #616161);
  background: -o-linear-gradient(left, #292929, #616161);
  background: linear-gradient(to right, #292929, #616161);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#index-body .init-3 .container .left .listCont ul li .box .boxLeft .top .hwaq-num-strip>*{
  background: -webkit-gradient(linear, left top, right top, from(#292929), to(#616161));
  background: -webkit-linear-gradient(left, #292929, #616161);
  background: -moz-linear-gradient(left, #292929, #616161);
  background: -o-linear-gradient(left, #292929, #616161);
  background: linear-gradient(to right, #292929, #616161);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2em;
}
#index-body .init-3 .container .left .listCont ul li .box .boxLeft .top em {
  font-size: 32px;
}
#index-body .init-3 .container .left .listCont ul li .box .boxLeft .top .sub1 {
  font-size: 16px;
  margin-left: 4px;
  top: -16px;
  position: relative;
  line-height: 30px;
}
#index-body .init-3 .container .left .listCont ul li .box .boxLeft .top .sub2 {
  font-size: 14px;
  position: relative;
  top: -24px;
}
#index-body .init-3 .container .left .listCont ul li .box .boxRight {
  width: 70px;
  top: -6px;
  position: relative;
}
#index-body .init-3 .container .left .listCont ul li .box:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}
#index-body .init-3 .container .right {
  width: 44%;
  border-radius: 10px;
}
#index-body .init-4 {
  -o-background-size: cover;
  background-size: cover;
}
#index-body .init-4 .container .tipsTitle {
  text-transform: uppercase;
  color: #fff;
}
#index-body .init-4 .content {
  padding-bottom: 60px;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  min-height: 730px;
}
#index-body .init-4 .content ul li .box {
  border-left: 1px solid #8f8f8f;
  padding: 0 30px 80px 20px;
  min-height: 240px;
  position: relative;
}
#index-body .init-4 .content ul li .box .num {
  color: #000;
  line-height: 1;
}
#index-body .init-4 .content ul li .box .title {
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 10px;
}
#index-body .init-4 .content ul li .box .des {
  color: #666666;
  display: none;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: 50px;
}
#index-body .init-4 .content ul li .box .more {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #dedede;
  border-radius: 50%;
  color: #929292;
  font-size: 40px;
}
#index-body .init-4 .content ul li .box .more i {
  margin-left: 6px;
}
#index-body .init-4 .content ul li .box .more:hover {
  background-color: var(--color);
  color: #fff;
}
#index-body .init-4 .content ul li.active .box {
  border-left: 1px solid var(--color);
}
#index-body .init-4 .content ul li.active .box .more {
  color: var(--color);
}
#index-body .init-4 .content ul li.active .box .more:hover {
  background-color: var(--color);
  color: #fff;
}
#index-body .init-4 .content ul .li1 {
  width: 18%;
}
#index-body .init-4 .content ul .li2 {
  width: 16%;
}
#index-body .init-4 .content ul .li3 {
  width: 18%;
}
#index-body .init-4 .content ul .li4 {
  width: 16%;
}
#index-body .init-4 .content ul .li5 {
  width: 19%;
}
#index-body .init-4 .content ul .li6 {
  width: 13%;
}
#index-body .init-5 {
  -o-background-size: cover;
  background-size: cover;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  margin-top: -50px;
  height: 940px;
}
#index-body .init-5 .imgList {
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#index-body .init-5 .imgList .swiper {
  height: 100%;
}
#index-body .init-5 .imgList .swiper li {
  -o-background-size: cover;
  background-size: cover;
}
#index-body .init-5 .shadow {
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#000000), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, #000000, rgba(0, 0, 0, 0));
  background-image: -moz-linear-gradient(bottom, #000000, rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, #000000, rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, #000000, rgba(0, 0, 0, 0));
}
#index-body .init-5 .container {
  z-index: 3;
}
#index-body .init-5 .container .tipsTitle {
  color: #fff;
}
#index-body .init-5 .content {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 4;
  bottom: 50px;
}
#index-body .init-5 .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
#index-body .init-5 .content ul li .box {
  cursor: pointer;
  padding: 10px 10px 4px;
  position: relative;
  border-bottom: 1px solid #585857;
  color: rgba(255, 255, 255, 0.3);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 2;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#index-body .init-5 .content ul li .box::before {
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(216, 22, 22, 0.4)), to(rgba(216, 22, 22, 0)));
  background: -webkit-linear-gradient(bottom, rgba(216, 22, 22, 0.4), rgba(216, 22, 22, 0));
  background: -moz-linear-gradient(bottom, rgba(216, 22, 22, 0.4), rgba(216, 22, 22, 0));
  background: -o-linear-gradient(bottom, rgba(216, 22, 22, 0.4), rgba(216, 22, 22, 0));
  background: linear-gradient(to top, rgba(216, 22, 22, 0.4), rgba(216, 22, 22, 0));
}
#index-body .init-5 .content ul li .box p {
  text-align: center;
  width: 100%;
}
#index-body .init-5 .content ul li.swiper-slide-thumb-active .box {
  color: #fff;
}
#index-body .init-5 .content ul li.swiper-slide-thumb-active .box::before {
  opacity: 1;
}
#index-body .init-6 .container .content {
  border: 1px solid #cecece;
  border-radius: 30px;
}
#index-body .init-6 .container .content ul li .box {
  z-index: 2;
  padding: 50px;
  border-radius: 30px;
  border: 1px solid transparent;
}
#index-body .init-6 .container .content ul li .box .shadow {
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background-position: right top;
  -webkit-transform: translate(100px, -100px);
  -moz-transform: translate(100px, -100px);
  -ms-transform: translate(100px, -100px);
  -o-transform: translate(100px, -100px);
  transform: translate(100px, -100px);
  opacity: 0;
  z-index: -1;
}
#index-body .init-6 .container .content ul li .box .cat {
  display: inline-block;
  background-color: #efefef;
  border-radius: 6px;
  text-align: center;
  color: #666666;
  text-transform: uppercase;
  padding: 2px 20px;
}
#index-body .init-6 .container .content ul li .box .title {
  display: block;
  font-weight: 600;
  color: #999999;
  min-height: 240px;
}
#index-body .init-6 .container .content ul li .box .time {
  color: #c9c9c9;
  text-transform: uppercase;
}
#index-body .init-6 .container .content ul li .box .more {
  background-color: #eaeaea;
  width: 100%;
  border-radius: 26px;
  display: block;
  text-align: center;
  padding: 10px;
}
#index-body .init-6 .container .content ul li .box:hover {
  border: 1px solid var(--color);
}
#index-body .init-6 .container .content ul li .box:hover .shadow {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
#index-body .init-6 .container .content ul li .box:hover .title {
  color: #000;
}
#index-body .init-6 .container .content ul li .box:hover .more {
  background-color: var(--color);
  color: #fff;
}
#footer {
  position: relative;
  z-index: 3;
  -o-background-size: cover;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
}
#footer .fTop {
  z-index: 2;
}
#footer .fTop .subImg {
  position: absolute;
  width: 29%;
  top: -30px;
  right: 60px;
}
#footer .fTop .cont {
  background-color: #eaeaea;
}
#footer .fTop .cont .left {
  width: 60%;
}
#footer .fTop .cont .left .tipsTitle {
  font-weight: 900;
  text-transform: uppercase;
}
#footer .fTop .cont .left .tipsTitle em {
  color: var(--color);
}
#footer .fTop .cont .left form input {
  width: 23%;
}
#footer .fTop .cont .left form .text {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #999999;
  padding: 2px 0;
}
#footer .fTop .cont .left form .content {
  width: 25%;
}
#footer .fTop .cont .left form .submit {
  width: 160px;
  background-color: #fff;
  border-radius: 20px;
  border: none;
  padding: 5px;
  margin-left: 30px;
  -webkit-box-shadow: 0 0 30px rgba(236, 36, 43, 0.04);
  box-shadow: 0 0 30px rgba(236, 36, 43, 0.04);
}
#footer .fTop .cont .left form .submit:hover {
  background-color: var(--color);
  color: #fff;
}
#footer .fbottomCont {
  -o-background-size: cover;
  background-size: cover;
  z-index: 2;
}
#footer .fBottom {
  -o-background-size: cover;
  background-size: cover;
  z-index: 2;
}
#footer .fBottom .listCont {
  margin-top: 30px;
}
#footer .fBottom .listCont .ewmCont #ewm {
  width: 110px;
  background-color: #fff;
  padding: 5px;
  border-radius: 5px;
}
#footer .fBottom .listCont .ewmCont .listC {
  width: 130px;
}
#footer .fBottom .listCont .ewmCont .listC .list1 {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.548);
  margin: 0 0 10px 10px;
  color: #fff;
  font-size: 24px;
}
#footer .fBottom .listCont .ewmCont .listC .list1:hover {
  background-color: var(--color);
}
#footer .fBottom .listCont .first {
  margin-bottom: 20px;
  font-weight: 800;
}
#footer .fBottom .listCont .list2 {
  margin-top: 10px;
  line-height: 1.5;
}
#footer .fBottom .listCont1 {
  width: 360px;
}
#footer .fBottom .listCont2 {
  width: 250px;
  margin-left: 200px;
}
#footer .fBottom .listCont3 {
  width: 270px;
}
#footer .fBottom .listCont4 {
  width: 270px;
}
#footer .copyright {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  overflow: hidden;
  color: #666666;
  -o-background-size: cover;
  background-size: cover;
}
#footer .copyright .container svg {
  height: 30px;
  width: auto;
  fill: #666666;
  position: relative;
  top: 4px;
}
#footer .copyright .container a {
  margin: 0 5px;
}
#footer .copyright .container a img {
  margin-top: 8px;
  height: 16px;
}
#footer .copyright .container .left {
  position: relative;
  top: 0;
  width: 100%;
  border-top: 1px solid #666666;
  padding: 14px 0;
}
@media (max-width: 1700px) {
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container:nth-child(2) {
    margin-left: 20px;
  }
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item {
    margin-left: 20px;
  }
  #index-body .init-1 .container .right {
    padding: 20px 6%;
  }
  #index-body .init-4 .content ul li .box .num {
    font-size: 32px;
  }
  #index-body .init-4 .content ul .li5 {
    width: 15%;
  }
  #index-body .init-4 .content ul .li6 {
    width: 17%;
  }
  #index-body .init-5 {
    height: 50vw;
  }
}
@media (max-width: 1450px) {
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a {
    font-size: 14px;
  }
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container:nth-child(2) {
    margin-left: 10px;
  }
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item {
    margin-left: 10px;
  }
  #index-body .init-3 .container .left .year {
    font-size: 130px;
  }
  #index-body .init-3 .container .left .listCont ul li .box .boxLeft .top em {
    font-size: 24px;
  }
  #index-body .init-4 .content ul li .box .num {
    font-size: 26px;
  }
  #index-body .init-4 .content ul li .box {
    padding: 0 10px 80px 10px;
  }
  #index-body .init-4 .content ul .li5 {
    width: 15%;
  }
  #index-body .init-4 .content ul .li6 {
    width: 17%;
  }
  #footer .fBottom .listCont1 {
    width: 300px;
  }
  #footer .fBottom .listCont2 {
    width: 200px;
    margin-left: 0;
  }
  #footer .fBottom .listCont3 {
    width: 200px;
  }
}
@media (max-width: 1250px) {
  .inner_banner{
    display: none;
  }
  #index-body .init-1 .container .right .listCont .list{
    display: block;
  }
  #index-body .init-1 .container .left {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: none;
  }
  #index-body .init-1 .container .left a {
    width: 50%;
  }
  #index-body .init-1 .container .right {
    width: 100%;
    height: auto;
    min-height: 1px;
    padding: 40px 16px;
  }
  #index-body .init-1 .container .right .listCont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  #index-body .init-1 .container .right .listContC {
    width: 100%;
  }
  #index-body .init-1 .container .right .listCont {
    width: 100%;
  }
  #index-body .init-1 .container .right .listCont .slick-list {
    width: 100%;
  }
  #index-body .init-1 .container .right .listCont .list {
    display: block !important;
    width: 48%;
    margin-top: 40px;
  }
  #index-body .init-1 .container .right .listCont .list .img {
    display: block;
  }
  #index-body .init-1 .container .right .listCont .list .title {
    margin-top: 20px;
  }
  #index-body .init-1 .container .right .imgCont {
    display: none;
  }
  #index-body .init-2 .container {
    padding: 0 16px;
  }
  #index-body .init-2 .content .next {
    right: 10px;
  }
  #index-body .init-2 .content .prev {
    left: 10px;
  }
  #index-body .init-3 .container .left {
    width: 100%;
    margin-top: 40px;
  }
  #index-body .init-3 .container .right {
    -webkit-box-ordinal-group: -1;
    -webkit-order: -2;
    -moz-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
    width: 100%;
    max-width: 400px;
  }
  #index-body .init-4 .content {
    height: auto;
    min-height: 1px;
  }
  #index-body .init-4 .content ul li .box .des {
    display: block !important;
  }
  #index-body .init-4 .content ul li.li {
    width: 30%;
  }
  #index-body .init-4 .content ul li.active .box {
    border-left: 1px solid #8f8f8f;
  }
  #index-body .init-4 .content ul li.active .box .more {
    color: #929292;
  }
  #index-body .init-4 .content ul {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  #index-body .init-6 .container .content ul li .box {
    padding: 30px 10px;
  }
  #footer .fTop{
    padding-top: 0;
  }
  #footer .fTop .subImg {
    display: none;
  }
  #footer .fTop .cont .left {
    width: 100%;
  }
}
@media (max-width: 1000px) {  
  #index-body .init-2 .content ul li .box {
    opacity: 0;
  }
  #index-body .init-2 .content ul li.my-slide-visible .box {
    opacity: 1;
  }
  #index-body .init-2 .content ul li .box .cont1 .img3 {
    max-width: 80%;
  }
  #index-body .init-4 .content ul li.li {
    width: 50%;
  }
  #footer .fTop .cont .left form .text {
    width: 100%;
  }
  #footer .fTop .cont .left form .submit {
    margin-top: 20px;
    margin-left: 0;
  }
}
@media (max-width: 700px) {
  #banner .swiper .swiper-wrapper .swiper-slide .container .box .cont {
    padding-top: 20px;
  }
  #index-body .init-2 .content ul li .box .cont1 .img3 img{
    transform: scale(1);
  }
  #index-body .init-2 .content ul li .box .cont2 {
    padding: 0;
  }
  #index-body .init-3 .container .left .listCont ul li {
    width: 100%;
  }
  #footer .fBottom .listCont4 {
    width: 100%;
  }
  #footer .copyright .container a.foot-link{
    display: none!important;
  }
}
@media (max-width: 500px) {
  #banner .swiper .swiper-wrapper .swiper-slide {
    height: 260px;
  }
  #banner .swiper .swiper-wrapper .swiper-slide .container .box .cont .title {
    font-size: 20px;
  }
  #banner .swiper .swiper-wrapper .swiper-slide .title2 {
    font-size: 20px;
  }
  #index-body .init-1 .container .right .listCont .list {
    width: 100%;
  }
  #index-body .init-2 .content ul li .box .subImg {
    min-height: 60vw;
    height: auto;
    display: block;
    margin: auto;
  }
  #index-body .init-2 .content ul li .box .cont1 {
    height: 200px;
  }
  #index-body .init-2 .content ul li .box .cont1 .shadow2 {
    border-radius: 40px;
  }
  #index-body .init-2 .content ul li .box .cont1 .shadow1 {
    border-radius: 40px;
  }
  #index-body .init-2 .content .btn {
    top: 220px;
  }
  #index-body .init-2 .content .btn {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
  #index-body .init-3 .container .left .year {
    font-size: 26vw;
  }
  #index-body .init-4 .content ul li.li {
    width: 100%;
  }
  #index-body .init-4 .content {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  #index-body .init-4 .content ul li .box .title {
    line-height: 2;
  }
  #index-body .init-5 .content {
    bottom: 10px;
  }
  #index-body .init-5 {
    height: 90vw;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
  }
}


/*inner-page*/

.moreCont {
  font-weight: bold;
  cursor: pointer;
  
}
.seoPublic .Auxil-about .box .right div.h3{
  font-weight: bold;
}
.seoPublic .Auxil-news .list ul li .content{
  padding-top: 0;
  margin-top: 0;
}
.moreCont .moreImgC {
  margin-left: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #000;
}
.moreCont .moreImgC .moreImg {
  width: 14px;
  height: 14px;
}
.moreCont:hover {
  color: var(--color);
}
.moreCont:hover .moreImgC {
  background-color: var(--color);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.flex_cont {
  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;
}
.flex_a_center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex_j_center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.tipsTitleCont {
  font-weight: bold;
  
}
.tipsTitleCont .tipsTitle1 {
  text-transform: uppercase;
}
.tipsTitleCont .tipsTitle1 .cir {
  width: 10px;
  height: 10px;
  background-color: var(--color);
  border-radius: 50%;
  margin: 10px 10px 0 0;
}
.tipsTitleCont .tipsTitle1 span {
  width: -webkit-calc(80%);
  width: -moz-calc(80%);
  width: calc(100% - 20px);
  letter-spacing: 4px;
}
.tipsTitleCont .tipsTitle2 {
  margin-top: 20px;
  line-height: 1.4;
}
.inner_banner {
  position: relative;
  z-index: 0;
  margin-top: 114px;
  
}


.inner_banner .textAniC{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.inner_banner .textAniC .text .c{
  font-size: 450px;
  font-weight: bold;
  text-transform: uppercase;
  color: #f6f6f6;
  line-height: 0.9;
  white-space: nowrap;
  width: 5000px;
  animation: transAni2 60s linear infinite;
}

.inner_banner .container{
  position: relative;
  z-index: 2;
}
.inner_banner .innerBg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.inner_banner .cont {
  padding: 180px 0 100px 0;
}
.inner_banner .cont .title {
  font-weight: bold;
  font-size: 36px;
    line-height: 1.4;
}
.inner_banner .cont .mbx {
  font-size: 0;
  font-weight: bold;
  margin-top: 10px;
}
.inner_banner .cont .mbx span {
  font-size: 20px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}
.inner_banner .cont .mbx a {
  position: relative;
  padding-left: 20px;
  font-size: 20px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.inner_banner .cont .mbx a:hover {
  color: var(--color);
}
.inner_banner .cont .mbx a:first-child {
  padding-left: 0;
}
.inner_banner .cont .mbx a:first-child::before {
  display: none;
}
.inner_banner .cont .mbx a:before,
.inner_banner .cont .mbx span:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 2px;
  top: 13px;
  left: 7px;
  background-color: #000;
}
@media (max-width: 1500px) {
  .inner_banner .textAniC{
    top: 34px;
  }
  .inner_banner .textAniC .text .c{
    font-size: 360px;
  }
}
@media (max-width: 1250px) {
  .inner_banner .textAniC{
    top: 40px;
  }
  .inner_banner .textAniC .text .c{
    font-size: 260px;
  }
}
@media (max-width: 1000px) {
  .seoPublic .Auxil-about .box .right div.h3{
    font-size: 24px;
    line-height: 1.5;
  }
  .inner_banner {
    margin-top: 40px;
  }
  .inner_banner .textAniC .text .c{
    font-size: 160px;
  }
  .inner_banner .cont {
    padding: 40px 0;
  }
}
@media (max-width: 700px) {
  .inner_banner .textAniC .text .c{
    font-size: 100px;
  }
}
@media (max-width: 500px) {
  .tipsTitleCont .tipsTitle1 span{
    letter-spacing: 0;
  }
  .tipsTitleCont .tipsTitle2 {
    margin-top: 10px;
  }
  .inner_banner .textAniC{
    top: 30px;
  }
  .inner_banner .textAniC .text .c{
    font-size: 80px;
  }
}
.product-yd-page .init-1 .container ul li .box {
  border-top: 1px solid #e2e2e2;
  padding: 60px 0;
}
.product-yd-page .init-1 .container ul li .box .left {
  width: 60%;
  padding-right: 40px;
}
.product-yd-page .init-1 .container ul li .box .left .title {
  font-weight: bold;
  display: block;
  
}
.product-yd-page .init-1 .container ul li .box .left .title:hover {
  color: var(--color);
}
.product-yd-page .init-1 .container ul li .box .left .des {
  color: rgba(0, 0, 0, 0.5);
  margin-top: 20px;
  font-weight: 500;
    overflow-y: scroll;
    max-height: 250px;
    line-height: 32px;
}
.product-yd-page .init-1 .container ul li .box .left .more{
  margin-top: 30px;
}
.product-yd-page .init-1 .container ul li .box .right {
  width: 40%;
  text-align: right;
}
.product-yd-page .init-1 .container ul li .box .right img {
  width: auto;
}
.product-yd-page .init-1 .container ul li:last-child .box {
  border-bottom: 1px solid #e2e2e2;
}
.m-page .wp-pagenavi {
  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;
}
.m-page .wp-pagenavi span,
.m-page .wp-pagenavi a {
  width: 40px;
  height: 40px;
  border: 1px solid #dcdcdc;
  text-align: center;
  line-height: 36px;
  font-size: 18px;
  font-weight: bold;
  margin: 5px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-page .wp-pagenavi a:hover {
  background-color: var(--color);
  color: #fff;
  border: 1px solid var(--color);
}
.m-page .wp-pagenavi .current {
  background-color: var(--color);
  border: 1px solid var(--color);
  color: #fff;
}
@media (max-width: 1000px) {
  .product-yd-page .init-1 .container ul li .box .left {
    width: 100%;
    padding-right: 0;
  }
  .product-yd-page .init-1 .container ul li .box .right {
    margin-top: 20px;
  }
}
.product-page .init-1 .container {
  width: 100%;
  padding-left: 80px;
  padding-right: 80px;
}
.product-page .init-1 .container .swiper .swiper-slide .box .img {
  display: block;
}
.product-page .init-1 .container .swiper .swiper-slide .box .text {
  margin-top: 16px;
  text-align: center;
  display: block;
  font-weight: bold;
}
.product-page .init-1 .container .swiper .swiper-slide .box .text:hover {
  color: var(--color);
}
.product-page .init-2 .container .fl-list {
  display: inline-block;
  position: relative;
  width: 370px;
  border: solid 1px #474747;
  text-align: left;
  padding: 20px 40px 20px 28px;
  cursor: pointer;
  color: #474747;
  font-weight: 600;
}
.product-page .init-2 .container .fl-list span {
  display: block;
  position: relative;
}
.product-page .init-2 .container .fl-list span em {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.product-page .init-2 .container .fl-list span i {
  position: absolute;
  line-height: 1;
  font-size: 30px;
  top: -4px;
  right: -20px;
}
.product-page .init-2 .container .fl-list ul {
  background-color: #fff;
  padding-right: 4px;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 2;
  -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);
  opacity: 0;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
}
.product-page .init-2 .container .fl-list ul li {
  font-size: 14px;
  position: relative;
  padding: 10px;
  line-height: 2;
}
.product-page .init-2 .container .fl-list ul li a {
  display: block;
}
.product-page .init-2 .container .fl-list ul li a:hover {
  color: var(--color);
}
.product-page .init-2 .container .fl-list:hover ul {
  opacity: 1;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
.product-page .init-2 .container .fl-list ul li .listCont{
  position: absolute;
  left: 100%;
  top: 0;
  box-shadow: 0 0 6px rgba(0, 0, 0, .1);
  background: #fff;
  border-radius: 5px;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  transition: all .5s;
}
.product-page .init-2 .container .fl-list ul li:hover .listCont{
  opacity: 1;
  transform: scaleY(1);
}
.product-page .init-2 .container .fl-list ul li .listCont .list{
  white-space: nowrap;
  padding: 2px 10px;
}
.product-page .init-2 .container .product-search {
  margin-left: 50px;
  border: solid 1px #474747;
}
.product-page .init-2 .container .product-search form {
  height: 64px;
  width: 365px;
  position: relative;
  font-weight: bold;
}
.product-page .init-2 .container .product-search form .text {
  width: -webkit-calc(25%);
  width: -moz-calc(25%);
  width: calc(100% - 75px);
  border: none;
  padding: 10px 24px;
}
.product-page .init-2 .container .product-search form .btn {
  width: 75px;
  background-color: var(--color);
  border: none;
  border-radius: 0;
  -o-background-size: 30px;
  background-size: 30px;
}
.product-page .init-2 .container .product-search form .btn:hover {
  background-color: var(--color);
}
.product-page .init-3 .container .tipsTitle {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
}
.product-page .init-3 .container .des{
  font-size: 14px;
  line-height: 2;
  margin-top: 40px;
}
.product-page .init-3 .container .des table{
  border: none;
}
.product-page .init-3 .container .des table tr{
  background: #fff;
}
.product-page .init-3 .container .des table tr td{
  border: 1px solid #ccc;
}
.product-page .init-3 .container .des table tbody > tr > td:first-child{
  background: #f6f6f6;
  min-width: 100px;
}
.product-page .init-3 .container .cat_des{
  max-height: 320px;
  margin-top: 20px;
  color: rgba(0, 0, 0, .5);
  font-size: 18px;
  line-height: 2;
  padding-right: 4px;
  overflow-y: auto;
  font-weight: 500;
}
.product-page .init-3 .container .content {
  margin-top: -40px;
}
.product-page .init-3 .container .content ul{
  margin: 0 -22px;
}
.product-page .init-3 .container .content ul > p{
  font-size: 20px;
  margin: 60px 20px 0;
  letter-spacing: 0;
}
.product-page .init-3 .container .content ul li {
  padding: 0 22px;
  margin-top: 90px;
}
.product-page .init-3 .container .content ul li .box {
  cursor: pointer;
}
.product-page .init-3 .container .content ul li .box .img {
  display: block;
  border: solid 1px #dadada;
}
.product-page .init-3 .container .content ul li .box .img img {
  width: 100%;
}
.product-page .init-3 .container .content ul li .box .title {
  margin-top: 20px;
  font-weight: 600;
  
  line-height: 1.8;
  min-height: 4em;
}
.product-page .init-3 .container .content ul li .box .title:hover{
  color: var(--color);
}
.product-page .init-3 .container .content ul li .box .title2{
  color: #5f5f5f;
  margin-top: 10px;
  font-weight: 500;
  line-height: 2;
  overflow-y: auto;
  max-height: 172px;
  padding-right: 4px;
}
.product-page .init-3 .container .content ul li .box .slick-track{
  margin-left: 0;
}
.product-page .init-3 .container .content ul li .box .smallImg{
  margin-top: 10px;
}
.product-page .init-3 .container .content ul li .box .smallImg .grid-box{
  margin: 0 -5px;
}
.product-page .init-3 .container .content ul li .box .smallImg .imgl{
  padding: 0 5px;
}
.product-page .init-3 .container .content ul li .box .smallImg .imgl .box{
  border: solid 1px #dadada;
}
.product-page .init-3 .container .content ul li .content_cont {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 30;
}
.product-page .init-3 .container .content ul li .content_cont .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.product-page .init-3 .container .content ul li .content_cont .content_c {
  max-width: 100%;
  background-color: #fff;
  position: absolute;
  width: 1580px;
  padding-top: 70px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.product-page .init-3 .container .content ul li .content_cont .content_c .close {
  z-index: 2;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 46px;
  font-weight: bold;
  text-align: center;
  line-height: 46px;
  width: 46px;
  height: 46px;
  cursor: pointer;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .close:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top {
  padding: 0 40px;
  padding-bottom: 50px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img {
  width: 380px;
  height: 388px;
  border: 1px solid #eee;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle {
  position: relative;
  width: 110px;
  padding-left: 10px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper {
  height: 354px;
  width: 100%;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper ul{
  padding: 0;
  margin: 0;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper li {
  padding: 0;
  margin: 0;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper li .box2 a {
  display: block;
  border: 1px solid #eee;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper li .box2 a img {
  background-color: #f5f5f5;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .btn {
  position: absolute;
  bottom: -34px;
  left: 10px;
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  background-color: #f5f5f5;
  cursor: pointer;
  font-size: 16px;
  line-height: 30px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .btn:hover {
  background-color: #212122;
  color: #fff;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .next {
  left: 50px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .right {
  width: -webkit-calc(-390%);
  width: -moz-calc(-390%);
  width: calc(100% - 490px);
  padding-left: 40px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .title {
  font-weight: 600;
  
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .des {
  color: #5f5f5f;
  font-weight: 500;
  margin-top: 20px;
  max-height: 160px;
  overflow-y: auto;
  padding-right: 4px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c {
  margin-top: 20px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c .more {
  margin-top: 10px;
  font-weight: 700;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c .contact {
  margin-left: 14px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .top .right table {
  width: 100% !important;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .bottom {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 30px;
  font-weight: 500;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .bottom a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #212122;
  text-align: center;
  line-height: 30px;
  color: #fff;
  margin-left: 10px;
  border: 1px solid #212122;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .bottom a:hover {
  background-color: #fff;
  color: #212122;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont {
  display: none;
  padding: 20px 30px 30px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .form_list {
  margin-top: 10px;
  position: relative;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .form_list .line {
  position: absolute;
  width: 1px;
  height: 30px;
  background-color: #d9d9d9;
  top: 10px;
  left: 0;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .form_list input {
  width: 100%;
  border: none;
  background-color: #f5f5f5;
  padding: 14px 12px;
  font-size: 14px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .moreC {
  width: 190px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 10px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  margin-left: 30px;
  justify-content: center;
  color: #fff;
  line-height: 1.3;
  padding: 11px 24px;
  
  background-color: var(--color);
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn .img{
    width: 14px;
    height: 14px;
    margin-left: 12px;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn:hover {
  background-color: #000;
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn:hover .img{
  transform: rotate(45deg);
}
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .name,
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .mail {
  width: 390px;
}

@media (max-width: 1500px) {
  .product-page .init-3 .container .des table tr td{
    min-width: 120px;
  }
  .product-page .init-3 .container .des table tbody>tr>td:first-child{
    min-width: 120px;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img {
    height: 300px;
    width: 300px;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .top .right {
    width: 540px;
  }
}
@media (max-width: 1250px) {
  .product-page .init-3 .container .content ul li .content_cont .content_c .phone_cont {
    overflow-y: auto;
    max-height: 500px;
    padding-right: 10px;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c {
    width: 970px;
    padding-top: 40px;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .btn {
    display: none !important;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .top {
    text-align: center;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img {
    width: 340px;
    height: 340px;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .top .right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .bottom {
    display: none;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .top .right .des {
    max-height: 200px;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .name,
  .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .mail {
    width: 50%;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn {
    margin-left: 0;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .moreC {
    width: auto;
  }
}
@media (max-width: 1000px) {
  .product-page .init-3 .container .content ul li .content_cont .content_c {
    width: 700px;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .slick {
    height: 354px;
  }
  .product-page .init-1 {
    display: none;
  }
  .product-page .init-2 {
    display: none;
  }
}
@media (max-width: 700px) {
  .product-page .init-3 .container .content ul li .content_cont .content_c {
    width: 96%;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img {
    width: -webkit-calc(-10%);
    width: -moz-calc(-10%);
    width: calc(100% - 110px);
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c {
    padding-right: 10px;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .top {
    padding: 20px 0 20px 20px;
  }
}
@media (max-width: 500px) {
  .product-page .init-3 .container .content {
    margin-top: 0;
  }
  .product-page .init-3 .container .content ul{
    margin: 0;
  }
  .product-page .init-3 .container .content ul li {
    padding: 0;
    margin-top: 30px;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c .more {
    text-align: center;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c .contact {
    margin-left: 0;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont {
    padding: 20px 0 20px 16px;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .name,
  .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .mail {
    width: 100%;
  }
  .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .form_list .line {
    display: none;
  }
}
.gallery-page .init-1 .container .cont{
  border-bottom: 1px solid #d2d2d2;
}
.gallery-page .init-1 .container .cont li {
  margin-right: 40px;
}
.gallery-page .init-1 .container .cont li:last-child{
  margin-right: 0;
}
.gallery-page .init-1 .container .cont li .box a {
  padding: 8px 20px;
  
  font-size: 20px;
  display: block;
  position: relative;
  font-weight: 600;
}
.gallery-page .init-1 .container .cont li .box a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--color);
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
}
.gallery-page .init-1 .container .cont li .box a.active::before,
.gallery-page .init-1 .container .cont li .box a:hover::before {
  opacity: 1;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}
.gallery-page .init-2 {
  padding-top: 30px;
}
.gallery-page .init-2 .container ul {
  margin: 0 -25px;
}
.gallery-page .init-2 .container ul > p{
  font-size: 16px;
  letter-spacing: 0;
  margin: 20px;
  line-height: 30px;
}
.gallery-page .init-2 .container ul li {
  margin-top: 50px;
  padding: 0 25px;
}
.gallery-page .init-2 .container ul li .box video{
  display: block;
  width: 100%;
}
.gallery-page .init-2 .container ul li .box .title{
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
  
}
.gallery-page .init-2 .container ul li .box .img {
  position: relative;
  display: block;
}
.gallery-page .init-2 .container ul li .box .img img {
  width: 100%;
}
.gallery-page .init-2 .container ul li .box .img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.gallery-page .init-2 .container ul li .box:hover .img::before {
  -webkit-animation: circle 0.75s;
  -moz-animation: circle 0.75s;
  -o-animation: circle 0.75s;
  animation: circle 0.75s;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3sease;
  -o-transition: all 0.3sease;
  -moz-transition: all 0.3sease;
  transition: all 0.3sease;
}
@media (max-width: 1000px) {
  .gallery-page .init-1 {
    display: none;
  }
  .gallery-page .init-2 {
    padding-top: 0;
  }
}
@media (max-width: 500px) {
  .gallery-page .init-2 .container ul li {
    margin-top: 20px;
  }
}
.faq-page .init-1 .container .tipsTitleCont {
  max-width: 630px;
}
.faq-page .init-1 .container .content {
  padding: 0 120px;
  margin-top: 50px;
}
.faq-page .init-1 .container .content ul li .box {
  cursor: pointer;
  padding: 20px 0;
  border-top: 1px solid #d2d2d2;
}
.faq-page .init-1 .container .content ul li .box .titleC {
  font-weight: 700;
}
.faq-page .init-1 .container .content ul li .box .titleC .num {
  width: 70px;
  color: var(--color);
}
.faq-page .init-1 .container .content ul li .box .titleC .title {
  padding-right: 10px;
  width: -webkit-calc(-80%);
  width: -moz-calc(-80%);
  width: calc(100% - 180px);
}
.faq-page .init-1 .container .content ul li .box .titleC .right {
  margin-top: 4px;
  margin-left: 80px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #000;
}
.faq-page .init-1 .container .content ul li .box .titleC .right .img {
  width: 14px;
  height: 14px;
}
.faq-page .init-1 .container .content ul li .box .des {
  padding-left: 70px;
  margin-top: 20px;
  max-width: -webkit-calc(-10%);
  max-width: -moz-calc(-10%);
  max-width: calc(100% - 110px);
  color: rgba(0, 0, 0, 0.5);
  display: none;
}
.faq-page .init-1 .container .content ul li .box.active .titleC .right {
  background-color: var(--color);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.faq-page .init-1 .container .content ul li:last-child .box {
  border-bottom: 1px solid #d2d2d2;
}
@media (max-width: 1250px) {
  .faq-page .init-1 .container .content {
    padding: 0;
  }
}
@media (max-width: 700px) {
  .faq-page .init-1 .container .content ul li .box .titleC .num {
    width: 100%;
  }
  .faq-page .init-1 .container .content ul li .box .titleC .title {
    width: -webkit-calc(60%);
    width: -moz-calc(60%);
    width: calc(100% - 40px);
  }
  .faq-page .init-1 .container .content ul li .box .titleC .right {
    margin-left: 10px;
  }
  .faq-page .init-1 .container .content ul li .box .des {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }
}
.news-page .sidebar-box .sidebar-left {
  width: 28%;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  padding-right: 45px;
}
.news-page .sidebar-box .sidebar-left .inner {
  max-width: 375px;
}
.news-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: 600;
}
.news-page .sidebar-box .sidebar-left .inner .inner-search {
  margin-bottom: 40px;
}
.news-page .sidebar-box .sidebar-left .inner .inner-search form {
  width: 100%;
  position: relative;
}
.news-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;
}
.news-page .sidebar-box .sidebar-left .inner .inner-search form input[type="submit"] {
  position: absolute;
  width: 43px;
  height: 43px;
  border: none;
  background: url(../images/search.png) no-repeat center center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.news-page .sidebar-box .sidebar-left .inner .inner-cat {
  margin-bottom: 40px;
  padding-right: 5px;
}
.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li {
  position: relative;
}
.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a {
  display: block;
  padding: 8px 0;
  line-height: 30px;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  line-height: 2;
  word-break: break-word;
  position: relative;
}
.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a i {
  position: absolute;
  font-size: 18px;
  right: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  text-align: center;
}
.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a i.active {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a span {
  color: #aaa;
}
.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a:hover {
  color: var(--color);
}
.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a.active {
  color: var(--color);
}
.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active > a {
  color: var(--color);
}
.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active > ol {
  display: block;
}
.news-page .sidebar-box .sidebar-left .inner .inner-cat ul > li > ol > li {
  margin-left: 10px;
  color: #7b7b7b;
}
.news-page .sidebar-box .sidebar-left .inner .inner-cat ul > li > ol > li a {
  font-size: 16px;
  line-height: 40px;
}
.news-page .sidebar-box .sidebar-left .inner .inner-recent {
  margin-bottom: 40px;
}
.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li {
  padding: 15px 0;
}
.news-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;
}
.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img {
  margin-right: 20px;
}
.news-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;
}
.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text span {
  color: #aaa;
  display: block;
  font-size: 14px;
  line-height: 2;
}
.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p {
  color: #000;
  font-weight: 600;
  
  font-size: 14px;
  line-height: 28px;
  display: -webkit-box;
  margin-bottom: 8px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
  color: var(--color);
}
.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li:first-child {
  padding-top: 0;
}
.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li:last-child {
  padding-bottom: 0;
}
.news-page .sidebar-box .sidebar-left .inner .inner-contact {
  background: url(../images/ny-bg.jpg) no-repeat center center;
  padding: 215px 30px 30px;
}
.news-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;
}
.news-page .sidebar-box .sidebar-left .inner .inner-contact h6 {
  font-size: 18px;
  
  font-weight: 600;
  line-height: 32px;
  color: #fff;
  margin-bottom: 20px;
}
.news-page .sidebar-box .sidebar-left .inner .inner-contact .more2{
  font-weight: 700;
  
  cursor: pointer;
  color: #fff;
  line-height: 1.3;
  padding: 12px 24px;
  background-color: var(--color);
}
.news-page .sidebar-box .sidebar-left .inner .inner-contact .more2 .img{
    width: 14px;
    height: 14px;
    margin-left: 12px;
}
.news-page .sidebar-box .sidebar-left .inner .inner-contact .more2:hover{
  background: #000;
}
.news-page .sidebar-box .sidebar-left .inner .inner-contact .more2:hover .img{
  transform: rotate(45deg);
}
.news-page .sidebar-box .sidebar-left .inner .inner-contact h6 span {
  display: block;
}
.news-page .sidebar-box .sidebar-left .inner .inner-contact .more {
  color: #fff;
}
.news-page .sidebar-box .sidebar-left .inner .inner-contact .more:hover {
  color: var(--color);
}
.news-page .sidebar-box .sidebar-right {
  width: 72%;
}
.news-page .news-list ul {
  margin: -30px -15px 0;
}
.news-page .news-list ul > p {
  font-size: 20px;
  margin: 20px;
  letter-spacing: 0;
}
.news-page .news-list ul li {
  padding: 0 15px;
  margin-top: 30px;
}
.news-page .news-list ul li .box .img img {
  width: 100%;
}
.news-page .news-list ul li .box .content .cat_name {
  background-color: #000000;
  text-transform: uppercase;
  display: inline-block;
  color: #fff;
  padding: 5px 15px;
  margin-top: 20px;
  
  line-height: 2;
}
.news-page .news-list ul li .box .content .title {
  font-weight: 600;
  
  margin-top: 20px;
  font-size: 24px;
}
.news-page .news-list ul li .box .content .title:hover {
  color: var(--color);
}
.news-page .news-list ul li .box .content .time {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: var(--color);
  display: inline-block;
  margin-top: 5px;
}
.news-page .news-list ul li .box .content .des {
  font-size: 16px;
  font-weight: 500;
  color:rgba(0,0,0,.5);
  margin-top: 6px;
  line-height: 30px;
}
.newdet-page {
  padding: 0 0 150px;
}
.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;
  line-height: 30px;
  
  background: var(--color);
  padding: 5px 15px;
  text-transform: uppercase;
}
.newdet-page .header h1 {
  font-size: 30px;
  line-height: 1.6;
  margin: 20px 71px 0;
  
}
.newdet-page .header .post_meta {
  margin-top: 26px;
  font-weight: 500;
}
.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: 30px;
}
.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;
  line-height: 30px;
}
.newdet-page .header .post_meta .post_date::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  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-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(0,0,0,.5);
}
.newdet-page .content h2{
  font-size: 24px;
  line-height: 1.8;
  padding: 10px 0;
  font-weight: 800;
  color: var(--color);
}
.newdet-page .content h3{
  font-size: 18px;
  line-height: 1.8;
  padding: 5px 0;
  font-weight: 700;
}
.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 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.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 {
  margin: 40px auto 0;
}
.newdet-page .m-link a {
  display: inline-block;
  vertical-align: top;
  width: 49%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.newdet-page .m-link a em {
  display: block;
  font-weight: 500;
  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: 600;
  
}
.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-page .prodet-2 .ret .slide .con .right {
  padding: 0;
}
.newdet-page .prodet-3 {
  margin: 0 auto;
}
.releted-product .tipsTitle {
  font-weight: 700;
  text-align: center;
  
}
.releted-product .content ul {
  margin: 0 -15px;
}
.releted-product .content ul li {
  padding: 0 15px;
}
.releted-product .content ul li .img a {
  border: 1px solid #dadada;
  background: #fff;
}
.releted-product .content ul li .img a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.releted-product .content ul li .text {
  margin-top: 20px;
  font-weight: 600;
  line-height: 1.8;
  color: #000;
}
.releted-product .content ul li .text:hover {
  color: var(--color);
}
@media (max-width: 1250px) {
  .releted-product .content ul li .img a{
    height: auto;
  }
}
@media (max-width: 1250px) {
  .news-page .sidebar-box .sidebar-left {
    display: none;
  }
  .news-page .sidebar-box .sidebar-right {
    width: 100%;
  }
  .newdet-page .header h1 {
    font-size: 50px;
    margin: 20px 40px 0;
  }
}
@media (max-width: 1000px) {
  .newdet-page {
    padding: 60px 0;
  }
  .newdet-page .header h1 {
    font-size: 40px;
    margin: 20px 27px 0;
  }
}
@media (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;
    line-height: 30px;
  }
}
@media (max-width: 500px) {
  .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;
  }
}
.contact-page {
  padding-top: 40px;
}
.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 {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 0 13px 25px;
  font-size: 16px;
  line-height: 30px;
  color: rgba(0,0,0,.5);
}
.contact-page .contact-1 .left form ul li .box input::-webkit-input-placeholder {
  color: #83827f;
}
.contact-page .contact-1 .left form ul li .box input:-moz-placeholder {
  color: #83827f;
}
.contact-page .contact-1 .left form ul li .box input::-moz-placeholder {
  color: #83827f;
}
.contact-page .contact-1 .left form ul li .box input:-ms-input-placeholder {
  color: #83827f;
}
.contact-page .contact-1 .left form ul li .box input::-ms-input-placeholder {
  color: #83827f;
}
.contact-page .contact-1 .left form ul li .box input::placeholder {
  color: #83827f;
}
.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 textarea::-webkit-input-placeholder {
  color: #83827f;
}
.contact-page .contact-1 .left form ul li .box textarea:-moz-placeholder {
  color: #83827f;
}
.contact-page .contact-1 .left form ul li .box textarea::-moz-placeholder {
  color: #83827f;
}
.contact-page .contact-1 .left form ul li .box textarea:-ms-input-placeholder {
  color: #83827f;
}
.contact-page .contact-1 .left form ul li .box textarea::-ms-input-placeholder {
  color: #83827f;
}
.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: 15px;
  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: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.contact-page .contact-1 .left form ul li .more {
  cursor: pointer;
  background: var(--color);
  color: #fff;
}
.contact-page .contact-1 .left form ul li .moreCont2 .moreCir{
  background: #fff;
  color: var(--color);
}
.contact-page .contact-1 .left form ul li .more:hover{
  background: #000;
}
.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 {
  width: 100%;
}
.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;
  font-weight: 500;
  color: #83827f;
  margin-top: 7px;
}
.contact-page .contact-1 .right .list {
  margin-top: 22px;
}
.contact-page .contact-1 .right .list ul li {
  color: rgba(0,0,0,.5);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 10px;
}
.contact-page .contact-1 .right .list ul li i {
  display: inline-block;
  vertical-align: top;
  color: var(--color);
  font-size: 20px;
  width: 20px;
  text-align: center;
  margin-top: 5px;
}
.contact-page .contact-1 .right .list ul li span {
  display: inline-block;
  vertical-align: top;
  width: 90%;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  padding-left: 10px;
}
.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;
}
.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;
}
@media (max-width: 1250px) {
  .contact-page .contact-1 .right {
    padding-left: 5.65%;
  }
}
@media (max-width: 1000px) {
  .contact-page {
    padding-top: 30px;
  }
  .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 (max-width: 500px) {
  .contact-page .contact-1 .left form ul li p {
    display: block;
  }
  .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;
  }
}

.knowledge-page{
  background: #F2F2F2;
}
.knowledge-page .list ul li{
  width: 25%;
}
.knowledge-page .list ul li .box{
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}
.knowledge-page .list ul li .box .imgC img{
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}
.knowledge-page .list ul li .box .imgC span{
    width: 50px;
    height: 50px;
    display: block;
    text-align: center;
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    line-height: 50px;
    background: #fff;
    font-size: 24px;
    font-weight: bold;
    color: var(--color);
    opacity: 0;
    border-radius: 100%;
}
.knowledge-page .list ul li .box .imgC .shadow{
  width: 100%;
    opacity: 0;
  height: 100%;
  background: rgba(208, 34, 39, .1);
  top: 0;
  left: 0;
  z-index: 2;
}
.knowledge-page .list ul li .box:hover .imgC span,
.knowledge-page .list ul li .box:hover .imgC .shadow{
  opacity: 1;
}

@media screen and (max-width: 1000px) {
  .knowledge-page .list ul li{
    width: 33.33%;
  }
}

@media screen and (max-width: 700px) {
  .knowledge-page .list ul li{
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .knowledge-page .list ul li{
    width: 100%;
  }
}


.prodet-page .pro_init_1 {
  padding-top: 90px;
}

.prodet-page .pro_init_1 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.prodet-page .pro_init_1 .container .left {
  width: 49%;
  overflow: hidden;
}

.prodet-page .pro_init_1 .container .left .smallImg {
    width: 13%;
    float: left;
}
.prodet-page .pro_init_1 .container .left .smallImg ul {
    margin: -10px;
}
.prodet-page .pro_init_1 .container .left .smallImg ul li {
    padding: 10px;
}
.prodet-page .pro_init_1 .container .left .smallImg ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.prodet-page .pro_init_1 .container .left .smallImg ul li a img {
    display: block;
    border: 1px solid #dcdcdc;
}
.prodet-page .pro_init_1 .container .left .bigImg {
    width: 79%;
    padding-left: 4%;
    display: inline-block;
}
.prodet-page .pro_init_1 .container .left .bigImg ul li{
  padding: 1px;

}
.prodet-page .pro_init_1 .container .left .bigImg ul li a{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.prodet-page .pro_init_1 .container .left .bigImg img{
    border: 1px solid #dcdcdc;
}
.prodet-page .pro_init_1 .container .left .bigImg .slick-arrow {
    width: 40px;
    height: 40px;
    background: #fffef9;
    color: transparent;
    font-size: 0;
    border: none;
    opacity: .8;
    cursor: pointer;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.prodet-page .pro_init_1 .container .left .bigImg .slick-arrow:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-filter: brightness(0);
    filter: brightness(0);
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center center;
}
.prodet-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-prev {
    left: 12px;
}
.prodet-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-prev:after {
    background-image: url("../images/banner-btn-l.png");
}
.prodet-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-next {
    right: 12px;
}
.prodet-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-next:after {
    background-image: url("../images/banner-btn-r.png");
}
.prodet-page .pro_init_1 .container .left .bigImg .slick-arrow:hover {
    background: var(--color);
}
.prodet-page .pro_init_1 .container .left .bigImg .slick-arrow:hover::after{
    -webkit-filter: brightness(1);
    filter: brightness(1);
}

.prodet-page .pro_init_1 .container .left .big_img {
  width: 100%;
  display: block;
}

.prodet-page .pro_init_1 .container .left .big_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.prodet-page .pro_init_1 .container .right .share ul li {
  width: 45px;
    text-align: center;
    margin-right: 10px;
    background: white;
    color: black;
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.prodet-page .pro_init_1 .container .right .share ul li a {
    display: block;
}
.prodet-page .pro_init_1 .container .right .share ul li:hover {
    background: var(--color);
}

.prodet-page .pro_init_1 .container .shangxia{
  width: 100%;
  justify-content: space-between;
}

.prodet-page .pro_init_1 .container .shangxia a{
  display: block;
  padding-right: 10px;
  margin-top: 10px;
}



.prodet-page .pro_init_1 .container .left .swiper {
  margin-top: 20px;
}

.prodet-page .pro_init_1 .container .left .swiper .swiper-wrapper .swiper-slide {
  height: 115px;
  display: block;
}

.prodet-page .pro_init_1 .container .left .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.prodet-page .pro_init_1 .container .right {
  width: 43%;
}

.prodet-page .pro_init_1 .container .right .sub_img {
  width: 36px;
  margin-bottom: 15px;
}

.prodet-page .pro_init_1 .container .right .text_1 {
  margin-top: 30px;
  font-size: 18px;
  line-height: 32px;
  color: #a8a8a8;
  font-weight:500;
}

.prodet-page .pro_init_1 .container .right .text_2 {
  font-size: 30px;
  line-height: 1.6;
  color: #4a4a4a;
  font-weight: bold;
  justify-content: space-between;
}
.prodet-page .pro_init_1 .container .right .text_2 .text1{
  margin-top: 10px;
  width: calc(100% - 160px);
}
.prodet-page .pro_init_1 .container .right .text_2 .img2{
  width: 150px;
  margin-left: 10px;
  margin-top: 10px;
}
.prodet-page .pro_init_1 .container .right .shangxia a{
  display: block;
}

.prodet-page .pro_init_1 .container .right .cont_list .list {
  position: relative;
}

.prodet-page .pro_init_1 .container .right .cont_list .list .title {
  font-size: 18px;
  padding: 25px 0;
  padding-right: 30px;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  cursor: pointer;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.prodet-page .pro_init_1 .container .right .cont_list .list .title span {
  color: #4a4a4a;
  font-weight:bold;
  text-transform: uppercase;
}

.prodet-page .pro_init_1 .container .right .cont_list .list .title i {
  width: 20px;
  position: absolute;
  top: 22px;
  right: 0;
  font-size: 30px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.prodet-page .pro_init_1 .container .right .cont_list .list .content {
  /*padding: 40px 0 0;*/
  font-size: 16px;
  color: #3f3f3f;
  line-height: 2;
  /*display: none;*/
  max-height: 510px;
  overflow: auto;
  padding-right: 10px;
  margin-top: 10px;
}
.prodet-page .pro_init_1 .container .right .cont_list .list .content table{
  width: 100% !important;
}
.prodet-page .pro_init_1 .container .right .cont_list .list .content table::-webkit-scrollbar {
  background: var(--color);
  height: 2px;
  width: 2px;
}
.prodet-page .pro_init_1 .container .right .cont_list .list .content table::-webkit-scrollbar-thumb{
  background: var(--color);
  height: 2px;
}
.prodet-page .pro_init_1 .container .right .cont_list .list .content::-webkit-scrollbar-thumb{
  background: var(--color);
  height: 2px;
}

.prodet-page .pro_init_1 .container .right .cont_list .list.active .title {
  border-bottom: 1px solid #d6d6d6;
}

.prodet-page .pro_init_1 .container .right .cont_list .list.active .title i {
  transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}

.prodet-page .pro_init_1 .container .right .cont_list .list:last-child .title {
  border-bottom: 1px solid #d6d6d6;
}

.prodet-page .pro_init_1 .container .right .cont_list .list .content ul li{
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #eee;
  background: #f8f8f8;
  margin-left: -20px;
}
.prodet-page .pro_init_1 .container .right .cont_list .list .content ul li h4{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.prodet-page .pro_init_1 .container .right .cont_list .list .content ul li .con{
  padding-top: 10px;
  border-top: 1px solid #eee;
  font-size: 17px;
  line-height: 1.6;
}
.prodet-page .pro_init_1 .container .right .cont_list .list .content ul li:last-child{
  margin-bottom: 0;
}
.prodet-page .pro_init_1 .container .right .btn{
  min-width: 210px;
  text-align: center;
  background: var(--color);
  display: inline-block;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 10px;
  transition: all .5s;
}
.prodet-page .pro_init_1 .container .right .btn:hover{
  border-radius: 10px;
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
.prodet-page .pro_init_1 .container .right .more{
  margin-top: 30px;
}

.prodet-page .pro_init_1 .container .right .more_cont {
  margin-top: 55px;
  border-color: #000;
  color: #000;
}
.prodet-page .pro_init_1 .container .right .editCont{
  justify-content: space-between;
}
.prodet-page .pro_init_1 .container .right .editCont .list{
  margin-top: 20px;
  cursor: pointer;
}
.prodet-page .pro_init_1 .container .right .editCont .list .img{
  width: 30px;
  height: 30px;
  filter: grayscale(1);
  transition: all .5s;
}
.prodet-page .pro_init_1 .container .right .editCont .list .text{
  width: calc(100% - 30px);
  padding-left: 10px;
  font-size: 18px;
  line-height: 32px;
}
.prodet-page .pro_init_1 .container .right .editCont .list .text span{
  border-bottom: 1px solid rgba(235,99, 12, 0);
  transition: all .5s;
}
.prodet-page .pro_init_1 .container .right .editCont .list:hover .img{
  filter: grayscale(0);
}
.prodet-page .pro_init_1 .container .right .editCont .list:hover .text span{
  border-bottom: 1px solid rgba(235,99, 12, 1);
  color:  rgba(235,99, 12, 1);
}
.prodet-page .pro_init_1 .container .left .colorCont{
  text-align: left;
}
.prodet-page .pro_init_1 .container .left .colorCont .tips{
  font-weight: bold;
}
.prodet-page .pro_init_1 .container .left .colorCont ul{
  margin: 0 -8px;
}
.prodet-page .pro_init_1 .container .left .colorCont ul li{
  padding: 0 8px;
  margin-top: 10px;
}
.prodet-page .pro_init_1 .container .left .colorCont ul li .box .img{
  height: 60px;
  background-size: cover;
}
.prodet-page .pro_init_1 .container .left .colorCont ul li .box .text{
  text-align: center;
  margin-top: 10px;
}

.prodet-page .prodet-2 {
    padding: 90px 0;
}
.prodet-page .prodet-2 .options ul {
    border-bottom: 1px solid #d2d2d2;
}
.prodet-page .prodet-2 .options ul li {
    margin-right: 30px;
    font-size: 24px;
    color: #b7b7b7;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0 10px 10px;
    cursor: pointer;
    line-height: 44px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.prodet-page .prodet-2 .options ul li:after {
    content: '';
    height: 3px;
    width: 0;
    position: absolute;
    left: 0;
    bottom: -1px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    background: var(--color);
}
.prodet-page .prodet-2 .options ul li:hover,
.prodet-page .prodet-2 .options ul li.active {
    color: #373330;
}
.prodet-page .prodet-2 .options ul li:hover:after,
.prodet-page .prodet-2 .options ul li.active:after {
    width: 100%;
}
.prodet-page .prodet-2 .ret {
    margin-top: 50px;
}
.prodet-page .prodet-2 .ret .content {
    font-size: 16px;
    line-height: 30px;
}
.prodet-page .prodet-2 .ret .content table{
  word-break: keep-all;
  width: auto !important;
}
.prodet-page .prodet-2 .ret .content table tbody{
   width: auto !important;
}
.prodet-page .prodet-2 .ret .content dl dd {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    background: #f8f8f8;
}
.prodet-page .prodet-2 .ret .content dl dd h4 {
    font-size: 20px;
    line-height: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}
.prodet-page .prodet-2 .ret .content dl dd .con {
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 18px;
    line-height: 1.8;
}


.prodet-page .form ul {
    margin: -17px;
}
.prodet-page .form ul li {
    padding: 17px;
}
.prodet-page .form ul li input,
.prodet-page .form ul li textarea {
    width: 100%;
    line-height: 32px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #d2d2d2;
    font-size: 18px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    text-align: left;
}
.prodet-page .form ul li input:focus,
.prodet-page .form ul li textarea:focus {
    border-color: var(--color);
    background: rgba(130, 216, 205, 0.03);
}
.prodet-page .form ul li input::-webkit-input-placeholder, .prodet-page .form ul li textarea::-webkit-input-placeholder {
    color: #898989;
}
.prodet-page .form ul li input:-moz-placeholder, .prodet-page .form ul li textarea:-moz-placeholder {
    color: #898989;
}
.prodet-page .form ul li input::-moz-placeholder, .prodet-page .form ul li textarea::-moz-placeholder {
    color: #898989;
}
.prodet-page .form ul li input:-ms-input-placeholder, .prodet-page .form ul li textarea:-ms-input-placeholder {
    color: #898989;
}
.prodet-page .form ul li input::placeholder,
.prodet-page .form ul li textarea::placeholder {
    color: #898989;
}
.prodet-page .form ul li.wid-100 {
    width: 100%;
}
.prodet-page .form ul li textarea {
    height: 210px;
}
.prodet-page .form ul li input[type="submit"] {
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 5px;
    background: #000;
    background: var(--color);
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    width: auto;
    border: none;
}
.prodet-page .form ul li input[type="submit"]:hover {
    opacity: .7;
}



@media screen and (max-width: 1800px) {
    .prodet-page .form ul li input,
    .prodet-page .form ul li textarea {
        padding: 15px;
    }
}
@media screen and (max-width: 1500px) {
  .prodet-page .pro_init_1 .container .right .share ul li {
      width: 35px;
      height: 35px;
      line-height: 36px;
  }
    .prodet-page .prodet-2 {
        padding: 70px 0;
    }
    .prodet-page .prodet-2 .options ul li {
        font-size: 20px;
    }
     .prodet-page .form ul li input,
    .prodet-page .form ul li textarea {
        font-size: 16px;
    }
}

@media screen and (max-width: 1250px) {
  .prodet-page .pro_init_1 .container .left .bigImg {
        padding-left: 2.5%;
  }
  .prodet-page .form ul li {
        padding: 10px;
    }
    .prodet-page .form ul {
        margin: -10px;
    }
}

@media screen and (max-width: 1000px) {
  .prodet-page .pro_init_1 .container .left .bigImg {
        padding-left: 4%;
  }
  .prodet-page .pro_init_1 .container .left .bigImg {
        padding-left: 2%;
  }
  .prodet-page .pro_init_1 .container .left .smallImg {
        display: none;
    }
   .prodet-page .pro_init_1 .container .left .bigImg {
        width: 100%;
        padding-left: 0;
  }

    .prodet-page .pro_init_1 .container .left {
    width: 100%;
  }

  .prodet-page .pro_init_1 .container .right {
    width: 100%;
  }

  .prodet-page .pro_init_1 .container .right {
    text-align: left;
  }

  .prodet-page .pro_init_1 .container .right .sub_img {
    display: block;
    margin: auto;
  }

  .prodet-page .pro_init_1 .container .right .more {
    margin: auto;
    margin-top: 40px;
  }

  
  .prodet-page .pro_init_1 {
    margin-top: 40px;
    padding-top: 40px;
  }

  .prodet-page .pro_init_1 .container .left .swiper .swiper-wrapper .swiper-slide {
    height: 90vw;
  }

  .prodet-page .pro_init_1 .container .right .text_1 {
    margin-top: 10px;
    font-size: 16px;
  }

  .prodet-page .pro_init_1 .container .right .text_2 {
    font-size: 22px;
    line-height: 40px;
    margin-top: 10px;
  }

  .prodet-page .pro_init_1 .container .right .cont_list .list .title {
    padding: 15px 0;
    font-size: 18px;
    padding-right: 25px;
    padding-bottom: 5px;
  }

  .prodet-page .pro_init_1 .container .right .cont_list .list .title i {
    top: 16px;
    font-size: 24px;
  }

  .prodet-page .pro_init_1 .container .right .cont_list .list .content {
    padding: 20px 0;
    padding-top: 0;
  }

    .prodet-page .prodet-2 .options ul li {
        margin-right: 25px;
    }
    .prodet-page .prodet-2 .options {
        display: none;
    }
    .prodet-page .prodet-2 .ret .slide {
        display: block;
        margin-top: 30px;
    }
    .prodet-page .prodet-2 {
        padding-top: 0;
    }
    .prodet-page .prodet-2 .ret .content {
        font-size: 14px;
        line-height: 2;
        margin-top: 20px;
    }
    .prodet-page .prodet-2 .ret .det {
      overflow-x: auto;
    }
    .prodet-page .prodet-2 .ret .det table{
      table-layout: auto;
    }
    .prodet-page .prodet-2 .ret .det table td{
      min-width: 200px;
      width: auto;
      font-size: 14px;
line-height: 28px;

    }

    .prodet-page .form ul li input,
    .prodet-page .form ul li textarea {
        padding: 10px;
    }
    .prodet-page .form ul li input[type="submit"] {
        padding-left: 25px;
        padding-right: 25px;
        font-size: 16px;
    }
}


@media screen and (max-width: 1000px) {
  .prodet-page .pro_init_1 .container .left .colorCont ul li{
    width: 20%;
  }
}

@media (max-width: 700px) {
  .prodet-page .pro_init_1 .container .right .text_2 .text1{
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .prodet-page .pro_init_1 .container .left .colorCont ul li{
    width: 50%;
  }
  .prodet-page .prodet-2 .ret {
        margin-top: 0;
    }
    .prodet-page .prodet-2 .ret .slide:first-child {
        margin-top: 0;
    }
}

.about-page .tag{
      font-size: 14px;
    display: inline-block;
    border: 1px solid var(--color);
    border-radius: 18px;
    padding: 3px 15px;
}
.about-page .about-1 .left .text{
  max-height: 624px;
  overflow: auto;
  padding-right: 10px;
  line-height: 1.8;
}
.about-page .about-1 span.h6 {
  line-height: 1.2;
}
.about-page .about-1 .text em {
  color: var(--color);
}
.about-page .about-1 .bottom {
  margin-top: -7%;
}
.about-page .about-1 .bottom img {
  z-index: -1;
  position: relative;
}
.about-page .about-1 .bottom .pos {
  bottom: 13%;
  width: 100%;
}
.about-page .about-1 .bottom .pos .play-btn {
  position: relative;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  transform: unset;
  margin-left: auto;
  font-size: inherit;
  left: auto;
}
.about-page .about-2 {
  position: relative;
}
.about-page .about-2:before {
  content: '';
  width: 100%;
  height: 20%;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 0;
}
.about-page .about-2 .list ul li .box {
  padding: 8%;
  background-color: white;
  -webkit-box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  position: relative;
  background-repeat: no-repeat;
  background-position: center right -10%;
  background-size: 35% auto;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  height: 100%;
}
.about-page .about-2 .list ul li .box:before,
.about-page .about-2 .list ul li .box:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: inherit;
  z-index: -1;
}
.about-page .about-2 .list ul li .box:before {
  background-image: unset;
}
.about-page .about-2 .list ul li .box:after {
  opacity: 0;
  background-color: transparent;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.about-page .about-2 .list ul li .box i.icon {
  position: relative;
  z-index: 1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-2 .list ul li .box i.icon:before,
.about-page .about-2 .list ul li .box i.icon:after {
  content: '';
  width: 2em;
  height: 2em;
  border-radius: 100%;
  position: absolute;
  background-color: var(--color);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-2 .list ul li .box i.icon:before {
  width: .5em;
  height: .5em;
  left: -0.25em;
  bottom: -0.25em;
}
.about-page .about-2 .list ul li .box i.icon:after {
  right: -0.5em;
  top: -0.5em;
}
.about-page .about-2 .list ul li .box .content {
  margin-left: auto;
}
.about-page .about-2 .list ul li .box .content span.h6 {
  line-height: 1;
}
.about-page .about-2 .list ul li .box .content span.h6 sub {
  vertical-align: bottom;
  line-height: .8;
  display: inline-block;
}
.about-page .about-2 .list ul li .box .content hr {
  margin: .2em 0;
  opacity: .3;
}
.about-page .about-2 .list ul li .box:hover {
  color: white;
  background-color: var(--color);
}
.about-page .about-2 .list ul li .box:hover:after {
  opacity: .2;
}
.about-page .about-2 .list ul li .box:hover i.icon {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.about-page .about-2 .list ul li .box:hover i.icon:before {
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.about-page .about-2 .list ul li .box:hover i.icon:after {
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.about-page .about-3 {
  position: relative;
}
.about-page .about-3:after,
.about-page .about-3:before {
  content: '';
  width: 100%;
  height: 25vh;
  margin-left: auto;
  display: block;
  /*position: -webkit-sticky;
  position: sticky;*/
}
.about-page .about-3:before {
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(white));
  background-image: -webkit-linear-gradient(bottom, transparent, white);
  background-image: -moz-linear-gradient(bottom, transparent, white);
  background-image: linear-gradient(to top, transparent, white);
  top: 0;
}
.about-page .about-3:after {
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(white));
  background-image: -webkit-linear-gradient(top, transparent, white);
  background-image: -moz-linear-gradient(top, transparent, white);
  background-image: linear-gradient(to bottom, transparent, white);
}
.about-page .about-3 .img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  padding-top: 10%;
}
.about-page .about-3 .img img {
  position: -webkit-sticky;
  position: sticky;
  bottom: -15%;
  max-width: 61.09375%;
}
.about-page .about-3 .box .left {
  top: 8%;
  position: -webkit-sticky;
  position: sticky;
  /*padding-bottom: 25%;*/ 
}
.about-page .about-3 .box .right {
  position: relative;
}
.about-page .about-3 .box .right .year {
  line-height: .8;
  position: -webkit-sticky;
  position: sticky;
  top: 40%;
  color: var(--color); 
  font-size: 124px;
  width: 240px;
}
.about-page .about-3 .box .right .year svg {
  position: absolute;
  left: 1.2em;
  top: 60%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  z-index: -1;
}
.about-page .about-3 .box .right .year svg .circle1 {
  stroke: var(--color);
  stroke-dasharray: 566;
  stroke-dashoffset: 566;
}
.about-page .about-3 .box .right .list{
  width: calc(100% - 240px);
}
.about-page .about-3 .box .right .list li {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-3 .box .right .list li .year {
  margin-right: 20px;
  color: #ddd;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  width: 290px;
}
.about-page .about-3 .box .right .list li .content {
  padding: 7% 0;
  border-top: 2px solid #666;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  max-width: 320px;
}
.about-page .about-3 .box .right .list li .content .text{
  max-height: 111px;
  overflow: auto;
}
.about-page .about-3 .box .right .list li.active {
  opacity: 1;
}
.about-page .about-3 .box .right .list li.active .year {
  color: var(--color);
}
.about-page .about-3 .box .right .list li.active .content {
  border-top-color: var(--color);
}
/*.about-page .about-4 .list ul:last-child {
  direction: rtl;
}*/
.about-page .about-4-2{
  background: #f2f2f2;
}
.about-page .about-5 {
  background-repeat: no-repeat;
  background-position: center top 33%;
  background-size: contain;
}
.about-page .about-5 .list ul {
  -webkit-filter: drop-shadow(0 3px 24px rgba(0, 0, 0, 0.13));
  filter: drop-shadow(0 3px 24px rgba(0, 0, 0, 0.13));
}
.about-page .about-5 .list ul li,
.about-page .about-5 .list ul .box {
  height: 100%;
}
.about-page .about-5 .list ul .box {
  background-color: white;
  overflow: hidden;
}
.about-page .about-5 .list ul .content {
  padding: 8%;
}
.about-page .about-5 .list ul .content a.link i {
  color: var(--color);
}
@media screen and (max-width: 1450px){
  .about-page .about-3 .box .right .year{
    font-size: 80px;
    width: 160px;
  }
  .about-page .about-3 .box .right .list{
    width: calc(100% - 160px);
  }
  .about-page .about-3 .box .right .year svg{
    transform: translateY(-50%) translateX(-47px) rotate(-90deg) scale(0.6);
  }
  .about-page .about-3 .box .right .list li .year{
    width: 170px;
  }
}
@media screen and (max-width: 1250px){
  .about-page .about-3{
    padding: 30px 0;
  }
  .about-page .about-3:before{
    display: none;
  }
  .about-page .about-3 .box{
    flex-wrap: wrap;
  }
  .about-page .about-3 .box .left{
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
  }
  
  .about-page .about-3 .box .right .list{
    width: 100%;
  }
  .about-page .about-3 .box .right .list li{
    opacity: 1;
  }
  .about-page .about-3 .box .right .year{
    display: none;
  }
  .about-page .about-3 .img{
    display: none;
  }
  .about-page .about-3:after{
    display: none;
  }
  .about-page .about-3 .box .right .list li .content{
    max-width: 100%;
  }
  .about-page .about-3 .box .right{
    width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1000px){
  .about-page .about-3 .box .left {
    position: static;
  }
  .about-page .about-3 .box .right .year svg {
    width: 30vw;
  }

}
@media screen and (max-width: 700px){
   .about-page .about-2 .list ul li .box i.icon {
    zoom: .7;
  }
   .about-page .about-3 .box .right .year em {
    font-size: 1em;
  }
  .about-page .about-3 .box .right .year svg {
    width: 20vw;
  }
  .about-page .about-3 .img img {
    max-width: 120%;
  }
  .about-page .about-3 .box .right .list li .year {
    width: 1.5em;
  }
  .about-page .about-3 .box {
    margin-bottom: 10px;
  }
  .about-page .about-3 .box .right .year {
    margin-bottom: 15%;
  }
}


.onestop-page .onestop-1 .box .left {
  position: relative;
  z-index: 1;
}
.onestop-page .onestop-1 .slick-list{
  overflow: unset;
}
.onestop-page .onestop-1 .slick-list .slick-slide{
  opacity: 0;
  transition: all .5s;
}
.onestop-page .onestop-1 .slick-list .slick-slide.slick-current{
  opacity: 1;
}
.onestop-page .onestop-1 .box .left:before {
  content: '';
  width: 150%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -10%;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 0 70px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.09);
  border-radius: inherit;
}
.onestop-page .onestop-1 .box .right {
  width: 70%;
  margin-right: -20%;
}
.onestop-page .onestop-2 {
  padding-bottom: 26.04166667%;
  position: relative;
  z-index: 1;
}
.onestop-page .onestop-2 .desC{
  max-width: 1000px;
  margin: auto;
}
.onestop-page .onestop-2 .list li {
  max-width: 275px;
  width: 100%;
  position: relative;
  cursor: pointer;
  cursor: hand;
}
.onestop-page .onestop-2 .list li.icon {
  width: auto;
}
.onestop-page .onestop-2 .list li span.border {
  padding-top: 100%;
  display: block;
  width: 100%;
  border-radius: 100%;
  position: relative;
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.onestop-page .onestop-2 .list li span.border:after {
  content: '';
  width: 100%;
  height: 100%;
  border: .4em solid black;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: inherit;
}
.onestop-page .onestop-2 .list li span.border:before {
  content: '';
  width: 70%;
  height: 70%;
  left: 15%;
  top: 15%;
  border: 1px solid black;
  z-index: -1;
  position: absolute;
  border-radius: inherit;
}
.onestop-page .onestop-2 .list li span.bl {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 70%;
  height: 70%;
  border-radius: 100%;
  background-color: var(--color);
  z-index: -1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.onestop-page .onestop-2 .list li span.bl:after,
.onestop-page .onestop-2 .list li span.bl:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: inherit;
  border-radius: inherit;
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  zoom: .5;
}
.onestop-page .onestop-2 .list li span.bl:after {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  animation-delay: .6s;
}
.onestop-page .onestop-2 .list li .box i {
  height: 0;
  overflow: hidden;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.onestop-page .onestop-2 .list li .box i img {
  max-height: 100%;
}
.onestop-page .onestop-2 .list li .box span.h6 {
  line-height: 1.2;
}
.onestop-page .onestop-2 .list li .content {
  position: absolute;
  top: 100%;
  margin-top: 2em;
  background-color: var(--color);
  color: white;
  width: 45.83333333vw;
  border-radius: 0.5em;
  text-align: left;
  padding: 1.2em;
  left: 0;
  display: none;
}
.onestop-page .onestop-2 .list li .content span.line {
  border-bottom: 0.375em solid var(--color);
  border-left: 0.25em solid transparent;
  border-right: 0.25em solid transparent;
  position: absolute;
  bottom: 100%;
}
.onestop-page .onestop-2 .list li .content span.line:before {
  content: '';
  height: 1em;
  width: 2px;
  background-color: var(--color);
  bottom: .3em;
  left: 50%;
  margin-left: -1px;
  position: absolute;
}
.onestop-page .onestop-2 .list li .content span.h6 {
  line-height: 1.2;
}
.onestop-page .onestop-2 .list li .content .text {
  color: inherit;
}
.onestop-page .onestop-2 .list li:nth-child(1) span.line {
  left: 17%;
}
.onestop-page .onestop-2 .list li:nth-child(3) .content {
  left: -10%;
}
.onestop-page .onestop-2 .list li:nth-child(3) .content span.line {
  left: 20.5%;
}
.onestop-page .onestop-2 .list li:nth-child(5) .content {
  left: -20%;
}
.onestop-page .onestop-2 .list li:nth-child(5) .content span.line {
  left: 24%;
}
.onestop-page .onestop-2 .list li:nth-child(7) .content {
  left: auto;
  right: -20%;
}
.onestop-page .onestop-2 .list li:nth-child(7) .content span.line {
  left: auto;
  right: 24%;
}
.onestop-page .onestop-2 .list li:nth-child(9) .content {
  left: auto;
  right: -10%;
}
.onestop-page .onestop-2 .list li:nth-child(9) .content span.line {
  left: auto;
  right: 12.5%;
}
.onestop-page .onestop-2 .list li:nth-child(11) .content {
  left: auto;
  right: 0;
}
.onestop-page .onestop-2 .list li:nth-child(11) .content span.line {
  left: auto;
  right: 10%;
}
.onestop-page .onestop-2 .list li.active span.border {
  opacity: 0;
}
.onestop-page .onestop-2 .list li.active span.bl {
  opacity: 1;
}
.onestop-page .onestop-2 .list li.active .box {
  color: white;
}
.onestop-page .onestop-2 .list li.active .box i {
  height: 1em;
}
.onestop-page .onestop-2 .list li.active .content {
  display: block;
}

@media screen and (max-width: 1450px) {
  
  .onestop-page .onestop-2 .list li {
    max-width: 150px;
  }

  .onestop-page .onestop-2 .list li:nth-child(1) span.line {
    left: 11%;
  }
  .onestop-page .onestop-2 .list li:nth-child(3) .content span.line {
    left: 12.5%;
  }
  .onestop-page .onestop-2 .list li:nth-child(5) .content span.line {
    left: 15%;
  }
  .onestop-page .onestop-2 .list li:nth-child(7) .content span.line {
    left: auto;
    right: 14%;
  }

}


@media screen and (max-width: 1250px){
  .onestop-page .onestop-2{
    padding-bottom: 40px;
  }
  .onestop-page .onestop-2 .list li.active span.border{
    display: none;
  }
  .onestop-page .onestop-2 .list li .box{
    display: none;
  }
  .onestop-page .onestop-2 .list li span.border{
    display: none;
  }
  .onestop-page .onestop-2 .list li span.bl{
    display: none;
  }
  .onestop-page .onestop-2 .list li span.border:before{
    display: none;
  }
   .onestop-page .onestop-2 .list li .content {
    display: block;
    position: static;
    width: 100%;
    margin-top: 0;
  }
  .onestop-page .onestop-2 .list li .content span.line {
    display: none;
  }
  .onestop-page .onestop-2 .list li {
    width: 46%;
    max-width: none;
  }
  .onestop-page .onestop-2 .list li .box,
  .onestop-page .onestop-2 .list li .bl,
  .onestop-page .onestop-2 .list li span.border {
    /*display: none;*/
  }
  .onestop-page .onestop-2 .list li.icon {
    display: none;
  }
  .onestop-page .onestop-2 .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
  /*.onestop-page .onestop-2 {
    padding-bottom: 15%;
  }*/
}


@media screen and (max-width:1000px){
  .onestop-page .onestop-1 .box .right {
    margin-right: 0;
  }
  .onestop-page .onestop-1 .box .left:before {
    display: none;
  }
} 

@media screen and (max-width: 700px){
  .onestop-page .onestop-2{
    background: #eee !important;
  }
  .onestop-page .onestop-2 .list ul{
    display: block;
  }
  .onestop-page .onestop-2 .list li{
    width: 100%;
    max-width: 320px;
    margin: 20px auto;
  }
  .onestop-page .onestop-2 .list li.active .box i{
    height: 30px;
  }
}


.service-page {
       background-color: #faf9f9;
}
.service-page .swrvice-pro ul li .img{
  border: solid 1px #dadada;
  display: block;
}
.service-page .service-1 .top .left {
    width: 73%;
}
.service-page .service-1 .top .left .title {
    line-height: 1.4;
    font-weight: bold;
    color: #030303;
    text-transform: uppercase;
}
.service-page .service-1 .top .right {
    width: 53%;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.65);
    vertical-align: bottom;
    margin-bottom: 10px;
}
.service-page .service-1 .bottom {
    padding:  0% 0px 0  0;
}
.service-page .service-1 .bottom .grid-box {
        /*width: 1590px;*/
        padding-top: 50px;
        max-width: 100%;
}
.service-page .service-1 .bottom ul li {
    /*border-right: 1px solid #dcdcdc;*/
    /*text-align: center;*/
    padding-right: 60px;
    width: 16.6666%;
}
.service-page .service-1 .bottom ul li .ig{
    position: relative;
    padding: 15px 20px 0px 0;
}
.service-page .service-1 .bottom ul li .ig::after{
    content: '';
    display: block;
    height: 100%;
    width: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #dcdcdc;
}
.service-page .service-1 .bottom ul li i{
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.service-page .service-1 .bottom ul li p {
    font-size: 20px;
    line-height: 1.8;
        font-weight: 600;
    color: #030303;
    width: 78%;
    margin-top: 18px;
    text-align: left;
}
.service-page .service-1 .bottom ul li .content {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #faf9f9;
    width: 100%;
    height: 100%;
    padding: inherit;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}
.service-page .service-1 .bottom ul li:hover .content {
    opacity: 1;
}
.service-page .service-1 .bottom ul li .text p {
    font-size: inherit;
    width: 100%;
    margin: 0;
}
.service-page .service-1 .bottom ul li .mores {
    display: block;
    margin-top: 38px;
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    width: auto;
    z-index: 1;
    font-size: 15px;
}
.service-page .service-1 .bottom ul li .mores .link_text {
    position: relative;
    margin-right: 0;
    display: inline-block;
    vertical-align: middle;
    text-indent: -110px;
    visibility: hidden;
    white-space: nowrap;
    opacity: 0;
    margin-top: -10px;
    -webkit-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
    -ms-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
    transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
}
.service-page .service-1 .bottom ul li .mores .link_icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    width: 1.4em;
    height: 1.4em;
    line-height: 1.4em;
    text-align: center;
}
.service-page .service-1 .bottom ul li .mores:hover .link_text{
    opacity: 1;
    text-indent: 0;
    margin-right: 6px;
    visibility: visible;
}
.service-page .service-1 .bottom ul li:last-child{
    padding-right: 0;
    width: 16%;
}
.service-page .service-1 .bottom ul li:last-child .ig::after {
    display: none;
}
.service-page .service-1 .bottom ul li:hover i{
    filter: brightness(0);
}
.service-page .service-2 {
    position: relative;
    padding: 87px 0 79px;
    z-index: 1;
}
.service-page .service-2 .left {
    width: 53.646%;
}
.service-page .service-2 .right {
    width: 46.354%;
    color: #fff;
    padding: 38px 20px 0 0;
}
.service-page .service-2 .right .ig {
    max-width: 706px;
    padding-left: 57px;
}
.service-page .service-2 .right .header {
    text-align: right;
}
.service-page .service-2 .right .header .tag {
    color: #fff;
    padding-right: 138px;
}
.service-page .service-2 .right .header .tag::before {
    background: #fff;
    top: 8px;
}
.service-page .service-2 .right .header .title {
    /*text-align: center;*/
    font-size: 60px;
    line-height: 1.2;
    font-weight: bold;
    margin-top: 6px;
    margin-left: -132px;
}
.service-page .service-2 .right .header .con {
    font-size: 18px;
    line-height: 1.8;
    opacity: .65;
    text-align: left;
}
.service-page .service-2 .right .list {
    margin-top: 75px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.service-page .service-2 .right .list ul li {
    padding: 19px 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.service-page .service-2 .right .list ul li .tit {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 26px;
    line-height: 1.6;
}
.service-page .service-2 .right .list ul li .tit em {
    width: 90%;
}
.service-page .service-2 .right .list ul li .tit i {
    position: relative;
    width: 14px;
    height: 14px;
}
.service-page .service-2 .right .list ul li .tit i::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    left: 0;
    top: 6px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.service-page .service-2 .right .list ul li .tit i::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background: #fff;
    top: 0;
    left: 6px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.service-page .service-2 .right .list ul li .con {
    font-size: 18px;
    line-height: 1.8;
    opacity: .65;
    display: none;
    padding: 20px 0;
}
.service-page .service-2 .right .list ul li.active .tit i::after {
    opacity: 0;
}
.service-page .service-2::after {
    content: '';
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    width: 54.115%;
    height: 100%;
    background: url(/template/en/images/about2-bg.jpg) no-repeat center ;
}
.service-page .service-3 {
    padding-top: 7.2%;
    padding-bottom: 100px;
}
.service-page .service-3 .header {
    text-align:left;
}
.service-page .service-3 .header .title {
    color: #030303;
    font-weight: bold;
    margin-top: 5px;
}
.service-page .service-3 .content {
    margin-top: 65px;
}
.service-page .service-3 .content ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -20px;
}
.service-page .service-3 .content ul li {
    padding-right: 20px;
    width: 25%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    cursor: pointer;
    height: auto;
}
.service-page .service-3 .content ul li .ig {
    border: solid 1px var(--color);
    border-radius: 20px;
    padding: 55px 35px 30px 37px;

}
.service-page .service-3 .content ul li .ig .ig2{
    height: 400px;
}
.service-page .service-3 .content ul li .ig i{
    display: block;
}
.service-page .service-3 .content ul li .ig .tit {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.6;
    margin-top: 20px;
    padding-bottom: 20px;
}
.service-page .service-3 .content ul li .ig .num2{
      font-size: 26px;
    font-weight: bold;
    color: var(--color);
}
.service-page .service-3 .content ul li .ig .con {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0;
    -webkit-transition: opacity 0.1s ease-out, -webkit-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
    transition: opacity 0.1s ease-out, -webkit-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
    -moz-transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96), -moz-transform 0.4s ease-out;
    transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
    transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96), -webkit-transform 0.4s ease-out, -moz-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
    transition: opacity 0.1s ease-out, transform 0.4s ease-out, clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96), -webkit-transform 0.4s ease-out, -webkit-clip-path 0.6s cubic-bezier(0.25, 0.59, 0.29, 0.96);
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
}
.service-page .service-3 .content ul li .ig .num {
    position: absolute;
    bottom: 30px;
    right: 35px;
    font-size: 16px;
    color: #030303;
    font-weight: bold;
}
.service-page .service-3 .content ul li.active {
    width: 50%;
}
.service-page .service-3 .content ul li.active .con {
    opacity: .65;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    transition-delay: 0.4s;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}
.service-page .service-4 {
    padding: 5% 0 0 0;
    overflow: hidden;
}
.service-page .service-4 .header .title {
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    margin-top: 22px;
}
.service-page .service-4 .content {
    margin-top: 51px;
}
.service-page .service-4 .content ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -18px;
}
.service-page .service-4 .content ul li {
    padding-right: 18px;
    width: 20%;
    -webkit-transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    -moz-transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    overflow: hidden;
}
.service-page .service-4 .content ul li .ig {
    position: relative;
    height: 559px;
}
.service-page .service-4 .content ul li .ig .img {
    margin: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    -moz-transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.service-page .service-4 .content ul li .ig .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scale(1.06) translateZ(0);
    -moz-transform: scale(1.06) translateZ(0);
    transform: scale(1.06) translateZ(0);
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    transition: -webkit-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    -moz-transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), -moz-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), -webkit-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1), -moz-transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}
.service-page .service-4 .content ul li .ig .text {
    background-image: linear-gradient(135deg, var(--color), var(--color2));
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 34px 15px 51px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
    color: #fff;
}
.service-page .service-4 .content ul li .ig .text .tit {
    font-size: 40px;
    line-height: 1.4;
    font-weight: bold;
    width: 54%;
    color: #fff;
}
.service-page .service-4 .content ul li .ig .text .mores {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
    text-transform: uppercase;
    padding: 25px 0 19px 38px;
    position: relative;
    z-index: 1;
    color: #fff;
    flex-shrink: 0;
    margin-left: 1em;
}
.service-page .service-4 .content ul li .ig .text .mores img {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.service-page .service-4 .content ul li .ig .text .mores em {
    margin-left: 28px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.service-page .service-4 .content ul li .ig .text .mores::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 08px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: solid 1px #fff;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;

}
.service-page .service-4 .content ul li .ig .text .mores:hover em {
    -webkit-transform: translateX(-86px);
    -moz-transform: translateX(-86px);
    -ms-transform: translateX(-86px);
    transform: translateX(-86px);
}
.service-page .service-4 .content ul li .ig .text .mores:hover img {
    -webkit-transform: translateX(150px);
    -moz-transform: translateX(150px);
    -ms-transform: translateX(150px);
    transform: translateX(150px);
}
.service-page .service-4 .content ul li.active {
    width: 60%;
}
.service-page .service-4 .content ul li.active .ig .img {
    height: 425px;
}
.service-page .service-4 .content ul li.active .ig .img img {
    -webkit-transform: scale(1) translateZ(0);
    -moz-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
}
.service-page .service-4 .content ul li.active .text {
    opacity: 1;
}
@media screen and (max-width: 1680px) {
    .service-page .service-1 .bottom ul li{
        padding-right: 40px;
    }
    .service-page .service-4 .content ul li.active .text{
        display: block;
    }
    .service-page .service-4 .content ul li .ig .text .tit{
        font-size: 36px;
        width: 100%;
    }
    .service-page .service-4 .content ul li.active .text .mores{
        margin-top: 20px;
    }
}

@media screen and (max-width: 1450px) {
    .service-page .service-1 .bottom ul li p {
        font-size: 20px;
    }
    .service-page .service-2 .right .header .title {
        font-size: 54px;
        margin-bottom: .5em;
    }
    .service-page .service-2 .right .header .con {
        font-size: 16px;
    }
    .service-page .service-2 .right .list ul li .tit {
        font-size: 20px;
    }
    .service-page .service-3 .content ul li .ig .tit,
    .service-page .service-3 .content ul li .ig .num2 {
        font-size: 20px;
    }
    .service-page .service-4 .content ul li .ig .text .tit {
        font-size: 24px;
    }
    .custom-page .custom-2 .right ul li .item span {
        font-size: 60px;
    }
    .service-page .service-1 .bottom ul li {
        padding-right: 15px;
    }
}
@media screen and (max-width: 1440px) {
    .service-page .service-1 .bottom ul li p{
        width: 90%;
    }
    .service-page .service-2 .right .header .title{
        font-size: 78px;
        margin-left: -90px;
    }
    .service-page .service-3 .content ul li .ig{
        padding: 40px 30px 30px;
    }
}
@media screen and (max-width: 1280px) {
    .service-page .service-1 .bottom{
        padding-left: 0;
    }
    .service-page .service-1 .bottom ul li p {
        width: 100%;
    }
    .service-page .service-2{
        padding: 50px 0;
    }
    .service-page .service-2 .left,
    .service-page .service-2 .right{
        vertical-align: middle;
    }
    .service-page .service-2 .right{
        padding-top: 0;
    }
    .service-page .service-2 .right .ig{
        padding-left: 30px;
    }
    .service-page .service-2 .right .header .title {
        font-size: 62px;
        margin-left: 0px;
    }
    .service-page .service-3 .content ul li .ig {
        padding: 40px 20px 30px;
    }
}
@media screen and (max-width: 1250px) {

    .service-page .service-2 .right .header .title {
        font-size: 42px;
    }
    .service-page .service-2 .right .header .con {
        font-size: 14px;
        line-height: 28px;
    }
    .service-page .service-2 .right .list ul li .tit {
        font-size: 18px;
    }
    .service-page .service-2 .right .list ul li .con {
        font-size: 16px;
    }
    .service-page .service-2 .right .list {
        margin-top: 30px;
    }
    .service-page .service-3 .content ul li .ig .tit,
    .service-page .service-3 .content ul li .ig .num2 {
        font-size: 20px;
    }
    .service-page .service-3 .content ul li .ig .con {
        font-size: 16px;
    }
    .service-page .service-1 .bottom ul li p {
        font-size: 16px;
    }
    .service-page .service-1 .bottom ul li i img {
        max-height: 50px;
    }
}
@media screen and (max-width: 1100px) {

    .service-page .service-1 .bottom ul li p{
        font-size: 21px;
    }
    .service-page .service-2 .right .header .title{
        font-size: 53px;
    }
    .service-page .service-2 .right .list{
        margin-top: 40px;
    }
    .service-page .service-3 .content ul li .ig .tit,
    .service-page .service-3 .content ul li .ig .num2 {
        font-size: 20px;
    }
    .service-page .service-4 .content ul li .ig{
        height: 400px;
    }
    .service-page .service-4 .content ul li.active .ig .img{
        height: 300px;
    }
    .service-page .service-4 .content ul li .ig .text{
        padding: 15px 8px 20px;
    }
    .service-page .service-4 .content ul li .ig .text .tit{
        font-size: 30px;
    }
}
@media screen and (max-width: 1000px) {
    .service-page .service-1 .top .left,
    .service-page .service-1 .top .right{
        width: 100%;
    }
    .service-page .service-1 .top .right{
        margin-top: 20px;
    }
    .service-page .service-1 .bottom ul{
        margin-bottom: -20px;
    }
    .service-page .service-1 .bottom ul li:last-child{
        width: 33.3333%;
    }
    .service-page .service-1 .bottom ul li{
        width: 33.3333%;
        margin-bottom: 20px;
    }
    .service-page .service-2 .left{
        display: none;
    }
    .service-page .service-2 .right{
        width: 100%;
    }
    .service-page .service-2::after{
        width: 100%;
    }
    .service-page .service-3 .content ul{
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: -10px;
    }
    .service-page .service-3 .content ul li{
        width: 50%;
        margin-bottom: 10px;
    }
    .service-page .service-3 .content ul li.active{
        width: 50%;
    }
    .service-page .service-3 .content ul li .ig .con{
        opacity: .65;
        -webkit-clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
        clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
        -webkit-transition-delay: .4s;
        -moz-transition-delay: .4s;
        transition-delay: .4s;
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        transform: translate(0);
    }
    .service-page .service-3 .content ul li .ig {
        padding: 30px 20px 20px;
    }
    .service-page .service-3 .content ul li .ig .con{
        font-size: 17px;
    }
    .service-page .service-4 .header .title{
        font-size: 66px;
    }
    .service-page .service-4 .content ul{
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: -10px;
    }
    .service-page .service-4 .content ul li{
        width: 50%;
        margin-bottom: 10px;
    }
    .service-page .service-4 .content ul li.active{
        width: 50%;
    }
    .service-page .service-4 .content ul li:last-child{
        width: 100%;
    }
    .service-page .service-4 .content ul li:last-child.active{
        width: 100%;
    }

    .service-page .service-2 .right .header .title {
        font-size: 36px;
    }
    .service-page .service-3 .content ul li .ig .tit,
    .service-page .service-3 .content ul li .ig .num2 {
        font-size: 20px;
    }
        .service-page .service-1 .bottom ul li p {
        font-size: 14px;
    }
    .service-page .service-4 .content ul li .ig .text {
        position: static;
        opacity: 1;
    }
    .service-page .service-4 .content ul li .ig .img {
        position: static;
        height: auto !important;
    }
    .service-page .service-4 .content ul li .ig {
        height: auto;
    }
    .service-page .service-4 .content ul li .ig .img img {
        transform: scale(1);
    }
    .service-page .service-4 .content ul li .ig .text {
        flex-wrap: wrap;
    }
    .service-page .service-4 .content ul li .ig .text>div {
        width: 100%;
    }
    .service-page .service-4 .content ul li .text .mores {
        margin-left: 0;
        zoom: .7;
    }
}
@media screen and (max-width: 700px) {
    .service-page .service-1 .bottom ul li{
        width: 50%;
        padding-right: 20px;
    }
    .service-page .service-1 .bottom ul li:last-child{
        width: 50%;
    }
    .service-page .service-1 .bottom ul li:nth-child(even){
        padding-right: 0;
    }
    .service-page .service-2 .right .list ul li .tit{
        font-size: 22px;
    }
    .service-page .service-3 .content{
        margin-top: 20px;
    }
    .service-page .service-3 .content ul li .ig i{
        zoom: .7;
    }
    .service-page .service-3 .content ul li .ig{
        padding: 10px;
    }
    .service-page .service-3 .content ul li .ig .tit,
    .service-page .service-3 .content ul li .ig .num2{
        font-size: 20px;
        margin-top: 0;
    }
    .service-page .service-3 .content ul li .ig .num{
        bottom: 0;
    }
    .service-page .service-4 .header .title {
        font-size: 50px;
    }
    .service-page .service-4 .content{
        margin-top: 20px;
    }
    .service-page .service-4 .content ul li .ig .text .tit {
        font-size: 24px;
        line-height: 40px;
    }
    .service-page .service-4 .content ul li.active .text .mores{
        zoom: .7;
    }
    .service-page .service-4 .content ul li .ig{
        height: 300px;
    }

    .sus-page .sus-2 .box ul li .ig .left em {
        font-size: 20px;
        line-height: 36px;
    }
    .service-page .service-2 .right .header .title {
        font-size: 28px;
        line-height: 1.6;
    }
    .service-page .service-3 .content ul li .ig .tit,
    .service-page .service-3 .content ul li .ig .num2 {
        font-size: 18px;
        line-height: 32px;
    }
}
@media screen and (max-width: 500px) {

    .service-page .service-1 .top .right{
        font-size: 16px;
        line-height: 1.8;
    }
    .service-page .service-1 .bottom ul li{
        width: 100%;
        padding-right: 0;
    }
    .service-page .service-1 .bottom ul li:last-child{
        width: 100%;
    }
    .service-page .service-1 .bottom ul li .ig{
        padding: 0;
    }
    .service-page .service-1 .bottom ul li .ig::after{
        display: none;
    }
    .service-page .service-2 .right{
        padding: 0 15px;
    }
    .service-page .service-2 .right .ig{
        padding-left: 0;
    }
    .service-page .service-2 .right .header .title {
        font-size: 40px;
    }
    .service-page .service-2 .right .header .con{
        font-size: 16px;
        line-height: 1.8;
    }
    .service-page .service-2 .right .list ul li .tit {
        font-size: 20px;
        line-height: 1.4;
    }
    .service-page .service-3 .content ul li,
    .service-page .service-3 .content ul li.active{
        width: 100%;
    }
    .service-page .service-3 .content ul li .ig{
        height: auto;
        padding: 20px 15px;
    }
    .service-page .service-3 .content ul li .ig .ig2{
      height: auto;
    }
    .service-page .service-3 .content ul li .ig .tit,
    .service-page .service-3 .content ul li .ig .num2{
        line-height: 1.5;
    }
    .service-page .service-3 .content ul li .ig .con{
        font-size: 16px;
        line-height: 1.8;
    }
    .service-page .service-4 .header .title {
        font-size: 33px;
    }
    .service-page .service-4 .content ul li,
    .service-page .service-4 .content ul li.active{
        width: 100%;
    }
    .service-page .service-4 .content ul li.active .text .mores{
        zoom: 1;
    }
    .service-page .service-4 .content ul li .ig .text .tit{
        line-height: 1.5;
    }
    .service-page .service-4 .content ul li .ig .text{
        opacity: 1;
        display: block;
    }
}

.seoPublic .Auxil-about .box .right .text,
.seoPublic .Auxil-news .list ul li .content p{
  line-height: 30px;
}
.seoPublic .Auxil-news .list ul li .content time{
  line-height: 2;
}

.seoPublic .seoIndustry .text{
  max-height: 500px;
overflow-y: scroll;
 line-height: 30px;

}


.seoPublic .seoIndustry .text h3{
  font-size: 24px;
  line-height: 1.8;
  padding: 10px 0;
  font-weight: 800;
  color: var(--color);
}
.seoPublic .seoIndustry .text h4{
  font-size: 18px;
  line-height: 1.8;
  padding: 5px 0;
  font-weight: 600;
}

#footer .copyright .container a.foot-link{
  white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 400px;
    display: inline-block;
}

.seoPublic .text a{
  color: unset;
}

#index-body .init-3 .container .left .des h1{
  display: inline;
}
h1.product{
  font-size: 30px;
    line-height: 1.6;
}

.productdes{
    font-size: 14px;
    line-height: 2;
}

.lang.sub-menu{
  max-height: 810px;
    overflow-y: scroll;
}