:root {
  --themeColor: #ec6204;
  --borderColor: #e5e5e5;
  --headerNavColor: #333333;
  --keywordColor: #676767;
}

body {
  overflow-x: hidden;
  font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Tahoma,
    sans-serif;
  min-width: 1200px;
  padding-top: 98px;
}
body.index-body {
  padding-top: 0;
}

.common-page {
  padding-top: 70px;
  padding-bottom: 70px;
}

.centered {
  margin-left: auto;
  margin-right: auto;
}

@font-face {
  font-family: "iconfont";
  src: url("../fonts/iconfont.eot");
  src: url("../fonts/iconfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/iconfont.woff") format("woff"),
    url("../fonts/iconfont.ttf") format("truetype"),
    url("../fonts/iconfont.svg#iconfont") format("svg");
}

.icon {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}

header {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 98px;
  background-color: #fff;
  min-width: 1200px;
  border-bottom: 1px rgba(255, 255, 255, 0.3) solid;
}

p {
  margin-bottom: 0;
  position: relative;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.paginations {
  margin: 35px auto 35px auto;
  text-align: center;
}

.paginations a,
.paginations span {
  margin-left: 10px;
  display: inline-block;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  /*border: 1px solid #e5e5e5;*/
  position: relative;
  top: 0;
}

/* navs*/

.paginations a {
  color: black;
}

.paginations .current {
  color: white;
  /*border-color: var(--themeColor);*/
  background-color: var(--themeColor);
}

.paginations a.page-prev,
.paginations a.page-next {
  color: white;
  background-color: var(--themeColor);
  /*border-color: var(--themeColor);*/
}

.paginations a:first-child:before {
  /*content: "上一页";*/
}

.paginations a:last-child:before {
  /*content: "下一页";*/
}

.paginations a:first-child,
.paginations a:last-child {
  /*border-color: #e5e5e5;*/
  padding-left: 10px;
  padding-right: 10px;
  background-color: #535353;
  color: white;
}

.paginations * {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.paginations a:hover,
.paginations span:hover {
  color: white;
  background-color: var(--themeColor);
  /*border-color: var(--themeColor);*/
}

.transition {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.jumbotron .h1,
.jumbotron h1 {
  text-align: center;
}

.jumbotron p {
  text-align: center;
}

/* navs*/

a:hover {
  text-decoration: none;
  color: var(--themeColor);
}

.page-banner {
  position: relative;
  width: 100%;
  padding-bottom: 23%;
  background-position: 100% !important;
}

.banner-text {
  text-align: center;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
}

.banner-text h2 {
  font-size: 30px;
  margin-bottom: 0;
  color: white;
}

.banner-text span {
  font-size: 48px;
  position: relative;
  color: white;
}

.header-bg-half-white {
  background-color: rgba(255, 255, 255, 0);
}

.header-bg-white {
  background-color: rgba(255, 255, 255, 1);
}

.page-row:after,
.page-row:before {
  content: "";
  display: table;
  clear: both;
}

.background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.modal {
  z-index: 99999;
}

.carousel .carousel-pagination {
  bottom: 30px;
}

.header-container {
  width: 100%;
  max-width: 1780px;
  margin: 0 auto;
  display: flex;
  height: 98px;
  align-items: center;
  justify-content: space-between;
}
.header-container .header-navigations {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header-container .header-navigations li {
  margin: 0 30px;
  position: relative;
}
.header-container .header-navigations li > a {
  color: #333;
  height: 98px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 16px;
}

.header-container .header-navigations li > a::before {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 2px;
  background-color: var(--themeColor);
  transition: 0.5s;
}
.header-container .header-navigations li > a:hover::before {
  left: 0;
  right: 0;
}

header .header-navigations li dl {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 160px;
  transform: translateX(-50%);
  background-color: #fff;
  text-align: center;
  padding: 12px 8px;
  display: none;
}
header .header-navigations li dl a {
  line-height: 30px;
  color: #333;
}
header .header-navigations li dl a:hover {
  color: var(--themeColor);
}
header .header-navigations li:hover dl {
  display: block;
}
header .header-navigation-header-tel {
  display: flex;
  align-items: center;
}
header .header-navigation-header-tel .header-hotline {
  display: flex;
  align-items: center;
}
header .header-navigation-header-tel .icon {
  font-size: 16px;
  color: rgba(51, 51, 51, 0.9);
  margin-right: 6px;
}
header .header-navigation-header-tel h4 {
  color: #333;
  font-size: 16px;
  font-weight: bold;
}
header .header-navigation-header-tel .lang {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  width: 120px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
header .header-navigation-header-tel .lang p {
  color: #333;
}

header .header-navigation-header-tel .lang div {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background-color: #fff;
  display: none;
}
header .header-navigation-header-tel .lang div a {
  font-size: 14px;
  color: #666;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-navigation-header-tel .lang div a:hover {
  color: var(--themeColor);
}
header .header-navigation-header-tel .lang:hover {
  background-color: @theme;
}
header .header-navigation-header-tel .lang:hover .icon {
  color: #fff;
}
header .header-navigation-header-tel .lang:hover p {
  color: #fff;
}
header .header-navigation-header-tel .lang:hover div {
  display: block;
}

.index-header-container {
  background-color: rgba(102, 102, 102, 0.65);
}
.index-header-container .header-navigations li > a {
  color: #fff !important;
}
.index-header-container .header-navigation-header-tel .icon {
  color: rgba(255, 255, 255, 0.9);
}
.index-header-container .header-navigation-header-tel h4 {
  color: #fff !important;
}
.index-header-container .header-navigations li > a {
  color: #fff !important;
}

.index-header-container .header-navigation-header-tel .lang p {
  color: #fff;
}
.index-section1{
    padding: 60px 0;
}
.index-section1 .content{
  display: flex;
  justify-content: space-between;
}
.index-section1 .content .img{
    width: 48%;
}
.index-section1 .content .about-container{
    width: 48%;
}
.index-section1 .content img{
    width: 100%;
    display: block;
}


.index-section1 .text {
  width: 62%;
  padding: 140px 100px 140px 0;
  background: url(../images/index/index-section1-bg.jpg?v=1);
  background-size: cover;
  background-position: bottom right;
}
.index-section1 .text h2 {
  font-size: 48px;
}
.index-section1 .text .desc {
  padding: 5% 0;
  font-size: 16px;
  line-height: 30px;
  color: #666;
}
.index-section1 .text a {
  margin-top: 3%;
  width: 166px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333;
  border-radius: 20px;
  color: #fff;
}
.index-section1 .img ul {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 8%;
}
.index-section1 .img ul li {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index-section1 .img ul li h4 {
  font-size: 48px;
  color: #fff;
  font-weight: bold;
}
.index-section1 .img ul li p {
  font-size: 20px;
  color: #fff;
  margin-top: 10px;
  font-weight: 300;
}

.index-section2 {
  padding: 80px 0;
  background: url(../images/index/index-section2-bg.jpg);
  background-size: cover;
}
.index-section2 .container{
    position: relative;   
}
.index-section2 .product-prev {
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #bbb;
  margin: auto;
  transition: 0.5s;
  z-index: 10;
  cursor: pointer;
}
.index-section2 .product-prev .icon {
  color: #fff;
}
.index-section2 .product-prev:hover {
  background: var(--themeColor);
}

.index-section2 .product-next {
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #bbb;
  margin: auto;
  transition: 0.5s;
  z-index: 10;
  cursor: pointer;
}
.index-section2 .product-next .icon {
  color: #fff;
}
.index-section2 .product-next:hover {
  background: var(--themeColor);
}

.index-section2 h2 {
  color: #333;
  font-size: 48px;
  font-weight: bold;
}
.index-section2 ul li .item {
  display: block;
}
.index-section2 ul li .item .img{
    padding-top: 65%;
    position: relative;
    overflow: hidden;
    background: #fff;
}
.index-section2 ul li .item .img img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    width: auto;
    height: auto;
}
.index-section2 ul li .item h3{
    color: #333;
    text-align: center;
    margin-top: 14px;
    font-size: 16px;
}

.index-section3 {
  padding: 120px 0 0;
  position: relative;
  z-index: 1;
}
.index-section3 .case-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.index-section3 h2 {
  color: #333;
  font-size: 48px;
  font-weight: bold;
}
.index-section3 .btns {
  display: flex;
}
.index-section3 .btns .icon {
  color: #999;
  cursor: pointer;
  font-size: 24px;
  margin-left: 16px;
}
.index-section3 .btns .icon:hover {
  color: var(--themeColor);
}
.index-section3 .case-container {
  margin-top: 50px;
}
.index-section3 ul li .item {
  position: relative;
  display: block;
}
.index-section3 ul li .item .img img {
  width: 100%;
  display: block;
}
.index-section3 ul li .item .text {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.index-section3 ul li .item .text img {
  width: 72px;
}
.index-section3 ul li .item .text h4 {
  color: #fff;
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
}
.index-section3 ul li .item .text:hover {
  background: rgba(236, 98, 4, 0.9);
}

.index-section4 {
  padding: 100px 0 120px;
  position: relative;
}
.index-section4::before {
  content: "";
  position: absolute;
  left: 0;
  top: -120px;
  bottom: 0;
  right: 0;
  background: url(../images/index/index-section4-bg.jpg);
  background-size: cover;
}
.index-section4 .case-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-section4 h2 {
  color: #333;
  font-size: 48px;
  font-weight: bold;
}

.index-section4 .client-container {
  margin-top: 50px;
}
.index-section4 .client-container ul li .img {
  height: 120px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-section4 .client-container ul li .img img {
  max-width: 100%;
  max-height: 100%;
}
.index-section5 {
  padding: 120px 0;
}
.index-section5 .nav {
  display: flex;
  align-items: center;
}
.index-section5 .nav li {
  margin-left: 10px;
}
.index-section5 .nav .active a,
.index-section5 .nav li:hover a {
  background: var(--themeColor);
}
.index-section5 .ho-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-section5 .ho-title h2 {
  font-weight: bold;
  font-size: 48px;
}
.index-section5 .ho-title a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 36px;
  background: #333;
  border-radius: 20px;
  transition: 0.5s;
  color: #fff;
}
.index-section5 .content {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.index-section5 .content .new {
  width: 48%;
}
.index-section5 .content .new .img {
  padding-top: 60%;
  position: relative;
  margin-bottom: 20px;
}
.index-section5 .content .new .img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: auto;
  min-height: auto;
  width: 100%;
  height: 100%;
  transform: none;
  transition: transform 0.5s ease;
  object-fit: cover;
  max-height: 100%;
}
.index-section5 .content ul {
  width: 48%;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}
.index-section5 .content ul li {
  height: auto;
  width: 100%;
}
.index-section5 .content .time {
  display: flex;
  color: #999;
  font-size: 14px;
  font-weight: bold;
  align-items: flex-end;
  margin-bottom: 20px;
}
.index-section5 .content .time span {
  font-size: 42px;
  line-height: 36px;
  font-weight: bold;
  margin-right: 4px;
  color: #333;
}
.index-section5 .content h3 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 36px;
  height: 36px;
  display: -webkit-box;
  white-space: normal;
  overflow: hidden;
}
.index-section5 .content .desc {
  font-size: 16px;
  font-weight: bold;
  color: #999;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 28px;
  height: 56px;
  display: -webkit-box;
  white-space: normal;
  overflow: hidden;
}
.index-section5 .content a:hover h3 {
  color: var(--themeColor);
}

.naved > a {
  color: var(--themeColor) !important;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 800px;
    top: calc((100% - 600px) / 2);
  }
}

.icons {
  background-repeat: no-repeat;
  background-image: url(../images/icons.png);
}

.carousel-pagination .swiper-pagination-bullet {
  background-color: white;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid white;
}

.carousel .swiper-pagination-bullet-active {
  background-color: transparent;
}

/*index page css*/

.keywords-search-container {
  background-color: #eeeeee;
  padding-top: 18px;
  padding-bottom: 14px;
  height: 72px;
  width: 100%;
}

.keywords-search-container .box {
  width: 1185px;
}

.formsearch {
  background-color: white;
  width: 250px;
  height: 40px;
  float: left;
  overflow: hidden;
  border-radius: 5px;
}

.formsearch input,
.formsearch .search-btn {
  border: none;
  outline: none;
}

.formsearch .search-btn {
  position: relative;
  float: right;
  width: 60px;
  height: 100%;
  background-color: var(--themeColor);
  background-position: -82px 0;
}

.formsearch input {
  background-color: transparent;
  line-height: 40px;
  padding-left: 15px;
}

.keywords li {
  float: left;
  animation-name: bounceInUp;
  margin-right: 20px;
  line-height: 42px;
}

.keywords * {
  color: var(--keywordColor);
  font-size: 15px;
}

.index-product-container {
  padding-top: 80px;
}

.content-title {
  text-align: center;
}

.content-title h3 {
  font-size: 36px;
}

.bold-title h3 {
  font-weight: bold;
}

.black-color-title h3 {
  color: #333333;
}

.gray-color-title p {
  color: #787878;
}

.white-color-title h3,
.white-color-title p {
  color: white;
}

.content-title p {
  font-size: 16px;
}

.index-product-container .content-title {
  margin-bottom: 55px;
}

.index-product-container .content-title h3 {
  margin-bottom: 10px;
}

.index-product-container .product-categories li {
  position: relative;
}

.index-product-container .product-categories li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #333333;
  font-size: 16px;
  background-color: #eeeeee;
}

.index-product-container .product-categories li a:hover {
  background-color: var(--themeColor);
  color: white;
}

.index-product-container .product-categories li .link-icon {
  --cc: #888888;
  position: absolute;
  border: 1px solid var(--cc);
  color: var(--cc);
  width: 15px;
  height: 15px;
  border-radius: 60%;
  line-height: 12px;
  padding-left: 1px;
  text-align: center;
  font-size: 12px;
}

.index-product-container .product-categories li:hover .link-icon {
  border-color: white;
  color: white;
}

@media (min-width: 992px) {
  .index-product-container .product-categories {
    width: 280px;
  }
  .index-product- .product-categories li {
    height: 48px;
    margin-bottom: 1px;
  }
  .index-product-container .product-categories li a {
    line-height: 48px;
    padding-left: 75px;
  }
  .product-cans {
    width: 855px;
  }
}

@media (min-width: 1500px) {
  .index-product-container .product-categories {
    width: 317px;
  }
  .index-product-container .product-categories li {
    height: 60px;
    margin-bottom: 1px;
  }
  .index-product-container .product-categories li a {
    line-height: 60px;
    padding-left: 75px;
  }
  .index-product-container .product-categories li .link-icon {
    right: 50px;
    top: calc((100% - 15px) / 2);
  }
  .product-cans {
    width: 1070px;
  }
}

.index-product-container .product-categories li .link-icon {
  right: 50px;
  top: calc((100% - 15px) / 2);
}

.index-product-container {
  padding-bottom: 90px;
}

.index-product-container .main-product {
  margin-bottom: 10px;
}

.index-product-container .product-cans {
  float: right;
}

.index-product-container .product-cans a {
  position: relative;
  display: block;
  overflow: hidden;
}

.index-product-container .product-cans h5 {
  width: 100%;
  height: 46px;
  text-align: center;
  line-height: 46px;
  background-color: transparent;
  position: absolute;
  bottom: -46px;
  left: 0;
  right: 0;
  color: transparent;
}

.index-product-container .product-cans a:hover h5 {
  bottom: 0;
  background-color: var(--themeColor);
  color: white;
}

.index-product-container .main-product-lists {
  margin-left: -5px;
  margin-right: -5px;
}

.index-product-container .main-product-lists li {
  width: 33.333333%;
  padding-left: 5px;
  padding-right: 5px;
  float: left;
}

/*index page css*/

/*index case css*/

.index-case-container {
  padding-top: 90px;
  margin-bottom: 130px;
  background-color: #f7f7f7;
}

.index-case-container .content-title h3 {
  margin-bottom: 20px;
}

.index-case-container .content-title {
  margin-bottom: 30px;
}

.index-case-container .index-case-types {
  margin-bottom: 30px;
}

.index-case-container .index-case-types li {
  width: 16.6666666%;
  float: left;
  height: 127px;
  position: relative;
}

.index-case-container .index-case-types li .imgs {
  position: relative;
  width: 42px;
  height: 42px;
}

.index-case-container .index-case-types li .imgs img {
  position: absolute;
  width: auto;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.index-case-container .index-case-types li .case-type-box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
}

@media (min-width: 992px) {
  .index-case-container .index-case-types li .case-type-box {
    padding-left: 5px;
    padding-top: 40px;
  }
  .index-case-container .index-case-types li .caption h5 {
    font-size: 14px;
  }
  .index-case-container .index-case-types li .caption p {
    font-size: 12px;
  }
}

@media (min-width: 1500px) {
  .index-case-container .index-case-types li .case-type-box {
    padding-left: 10px;
    padding-top: 40px;
  }
  .index-case-container .index-case-types li .caption h5 {
    font-size: 20px;
  }
  .index-case-container .index-case-types li .caption p {
    font-size: 14px;
  }
}

.index-case-container .index-case-types li .caption h5,
.index-case-container .index-case-types li .caption p {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.index-case-container .index-case-types li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background-color: var(--themeColor);
  z-index: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.index-case-container .index-case-types li:hover:after {
  width: 100%;
}

.index-case-container .index-case-types li .caption {
  padding-left: 10px;
}

.index-case-container .index-case-types li .caption h5 {
  margin-bottom: 10px;
}

.index-case-container .index-case-types li .caption h5 a {
  color: #333333;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.index-case-container .index-case-types li .caption p {
  color: #666666;
}

.index-case-container .index-case-types li .imgs img:first-child {
  z-index: 5;
}

.index-case-container .index-case-types li .imgs img:last-child {
  z-index: 4;
}

.index-case-container .index-case-types li:hover img:first-child {
  opacity: 0;
}

.index-case-container .index-case-types li:hover .caption h5 a {
  color: white;
}

.index-case-container .index-case-types li:hover .caption p {
  color: white;
}

.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.caseslide {
  padding-left: 35px;
  padding-right: 35px;
}

.fullSlide {
  position: relative;
  width: 100%;
}

.fullSlide .hd li {
  float: left;
  text-align: center;
}

.fullSlide ul.slides {
  position: relative;
  z-index: 10;
}

.index-caseslide ul.slides li {
  width: 33.3333333%;
}

.index-caseslide ul.slides li a {
  display: block;
  overflow: hidden;
}

.fullSlide .slide-btns {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  height: 55px;
  z-index: 20;
}

.caseslide .slide-btns .slide-btn {
  width: 50px;
  height: 55px;
  background-color: #454545;
}

.caseslide .slide-btns .slide-btn {
  width: 50px;
  height: 55px;
  background-color: #454545;
  color: white;
  font-size: 24px;
  cursor: pointer;
  line-height: 55px;
  position: absolute;
}

.fullSlide .slide-btns .slide-btn {
  text-align: center;
  cursor: pointer;
}

.fullSlide .slide-btns .slide-btn:hover {
  background-color: var(--themeColor);
}

.fullSlide .slide-btns .prev {
  left: 12px;
  top: 0;
}

.fullSlide .slide-btns .next {
  right: 12px;
  top: 0;
}

.cc-container {
  padding-top: 110px;
  width: 100%;
  height: 720px;
  background-image: url(../images/cc.jpg);
}

.cc-container .cc-title {
  text-align: center;
  margin-bottom: 70px;
}

.cc-container .cc-title * {
  color: white;
}

.cc-container .cc-title .cc-header-title {
  margin-bottom: 40px;
}

.cc-container .cc-title .cc-header-title h3 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.cc-container .cc-title p {
  font-size: 14px;
  line-height: 32px;
}

.cc-container ul {
  width: 1200px;
  margin-bottom: 55px;
}

.cc-container ul li {
  margin-right: 32px;
  width: 144px;
  height: 144px;
  float: left;
  border-radius: 60%;
  border: 6px solid #dcdcdc;
  background-color: white;
  line-height: 140px;
  text-align: center;
}

.cc-container ul li:last-child {
  margin-right: 0;
}

.cc-container ul li p {
  color: #333333;
  font-size: 20px;
}

.cc-container .cc-more {
  text-align: center;
  width: 162px;
  height: 45px;
  background-color: white;
  line-height: 45px;
  color: #333333;
  font-size: 14px;
  display: block;
}

.cc-container .cc-more:hover {
  background-color: var(--themeColor);
  color: white;
}

.index-solution-container {
  padding-top: 110px;
  background-color: #f4f4f4;
  padding-bottom: 110px;
}

.index-solution-container .content-title {
  margin-bottom: 55px;
}

.index-solution-container .content-title h3 {
  margin-bottom: 10px;
}

.index-solution-container ul li {
  padding-left: 5px;
  padding-right: 5px;
  width: 25%;
  float: left;
  height: 510px;
}

.index-solution-container ul li .caption-box {
  background-color: white;
  position: relative;
  height: 100%;
}

.index-solution-container ul li .caption-box img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}

@media (min-width: 992px) {
  .index-solution-container ul li .caption {
    padding: 30px 10px 0 10px;
  }
}

@media (min-width: 1500px) {
  .index-solution-container ul li .caption {
    padding: 30px 30px 0 30px;
  }
}

.index-solution-container ul li .caption h5 {
  font-size: 22px;
  color: #333333;
  margin-bottom: 25px;
  text-align: center;
}

.index-solution-container ul li .caption p {
  font-size: 14px;
  color: #787878;
}

.index-about-container ul.page-row li.info-box {
  width: 50%;
  position: relative;
  float: left;
}

.index-about-container ul li {
}

/*index case css*/

.video-btn {
  position: absolute;
  top: calc((100% - 50px) / 2);
  left: calc((100% - 91px) / 2);
  width: 91px;
  height: 130px;
  cursor: pointer;
}

.video-btn span {
  width: 91px;
  height: 91px;
  display: block;
  margin-bottom: 20px;
  background-position: -119px -42px;
}

.video-btn h5 {
  font-size: 16px;
  color: white;
  text-align: center;
}

@media (min-width: 992px) {
  .index-about-container .index-about-info {
    padding-top: 20px;
    padding-left: 50px;
    padding-right: 180px;
  }
  .index-about-container .index-about-info p {
    margin-bottom: 15px;
  }
  .index-about-container .index-about-info .index-about-title-content {
    margin-bottom: 30px;
  }
  .index-about-container .some-info {
    height: 90px;
    width: 850px;
  }
}

@media (min-width: 1500px) {
  .index-about-container .index-about-info {
    padding-top: 100px;
    padding-left: 100px;
    padding-right: 260px;
  }
  .index-about-container .index-about-info p {
    margin-bottom: 30px;
  }
  .index-about-container .index-about-info .index-about-title-content {
    margin-bottom: 30px;
  }
  .index-about-container .some-info {
    height: 196px;
    width: 1150px;
  }
}

.index-about-container ul.info-lists {
  position: relative;
}

.index-about-container .index-about-info .index-about-title {
  font-size: 36px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 10px;
}

.index-about-container .index-about-info .index-about-subtitle {
  font-size: 18px;
  color: #333333;
}

.index-about-container .index-about-info p {
  font-size: 14px;
  color: #666666;
  line-height: 27px;
}

.index-about-container .index-about-info p:last-child {
  margin-bottom: 0;
}

.index-about-container .some-info {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--themeColor);
}

.index-about-container .some-info * {
  color: white;
}

.index-about-container .some-info a {
  display: block;
  text-align: center;
}

@media (min-width: 992px) {
  .index-about-container .some-info li:first-child a {
    padding-top: 20px;
  }
  .index-about-container .some-info li {
    padding-top: 0;
  }
  .index-about-container .some-info li:first-child p {
    margin-top: 30px;
  }
  .index-about-container .some-info li:first-child .icons {
    top: 27px;
  }
  .index-about-container .some-info li:first-child {
    margin-right: 77px;
  }
  .index-about-container .some-info li + li {
    margin-right: 20px;
  }
}

@media (min-width: 1500px) {
  .index-about-container .some-info li:first-child a {
    padding-top: 0;
  }
  .index-about-container .some-info li {
    padding-top: 70px;
  }
  .index-about-container .some-info li:first-child p {
    margin-top: 55px;
  }
  .index-about-container .some-info li:first-child .icons {
    top: -35px;
  }
  .index-about-container .some-info li:first-child {
    margin-right: 95px;
  }
  .index-about-container .some-info li + li {
    margin-right: 78px;
  }
}

.index-about-container .some-info li:first-child {
  width: 200px;
  height: 100%;
}

.index-about-container .some-info li:first-child a {
  position: relative;
}

.index-about-container .some-info li:first-child .icons {
  width: 72px;
  height: 8px;
  background-position: -206px -18px;
  display: block;
  margin: 0 auto 10px auto;
  position: absolute;
  left: calc((193px - 72px) / 2);
}

.index-about-container .some-info li {
  float: left;
}

.index-about-container .some-info li + li {
  text-align: center;
}

.index-about-container .some-info li + li span.num {
  font-size: 36px;
}

.index-about-container .some-info li + li p {
  font-size: 18px;
  margin-top: 10px;
}

.index-about-container .some-info li:last-child {
  margin-right: 0;
}

.left-content-title {
  text-align: center;
}

.left-content-title h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333333;
}

.index-news-container {
  padding-top: 115px;
  padding-bottom: 65px;
  background-color: #f7f7f7;
}

.index-news-container .box-title-content {
  margin-bottom: 60px;
  text-align: center;
}

.index-news-container .left-content-title p {
  font-size: 22px;
  color: #999999;
}

.index-news-container .right-index-newscates {
  display: inline-block;
  margin-top: 20px;
  text-align: center;
}

.index-news-container .right-index-newscates li {
  float: left;
  margin-right: 45px;
}

.index-news-container .right-index-newscates li:last-child {
  margin-right: 0;
}

.index-news-container .right-index-newscates li a {
  padding: 10px 15px;
  color: black;
}

.index-news-container .right-index-newscates li a:hover {
  background-color: var(--themeColor);
  color: white;
}

.index-news-container .main-news {
  width: 475px;
  float: left;
}

.index-news-container .main-news .caption {
  margin-top: 33px;
}

.index-news-container .main-news .caption .main-news-date,
.index-news-container .index-news-date {
  padding-right: 20px;
  border-right: 1px solid #bfbfbf;
}

.index-news-container .main-news .caption .main-news-date * {
  color: #454545;
}

.index-news-container .main-news .caption .main-news-date h1,
.index-news-container .index-news-date h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.index-news-container .main-news .caption .main-news-date p,
.index-news-container .index-news-date p {
  font-size: 14px;
}

.index-news-container .main-news .caption .main-news-content {
  width: 380px;
}

.index-news-container .main-news .caption .main-news-content h5 {
  font-size: 16px;
  margin-bottom: 15px;
}

.index-news-container .main-news .caption .main-news-content h5 a {
  color: black;
}

.index-news-container .main-news .caption .main-news-content h5 a:hover {
  color: var(--themeColor);
}

.index-news-container .main-news .caption .main-news-content p {
  font-size: 14px;
}

.index-news-container .main-news .caption .main-news-content p {
  line-height: 32px;
  color: #666666;
}

@media (min-width: 992px) {
  .index-news-container .index-news-lists li {
    width: 648px;
  }
  .index-news-container .index-news-lists li .index-news-content {
    width: 468px;
  }
}

@media (min-width: 1500px) {
  .index-news-container .index-news-lists li {
    width: 848px;
  }
  .index-news-container .index-news-lists li .index-news-content {
    width: 668px;
  }
}

.index-news-container .index-news-lists li {
  height: 138px;
  border: 1px solid #eeeeee;
  padding: 27px 20px 29px 50px;
  background-color: white;
  margin-bottom: 20px;
}

.index-news-container .index-news-lists li .index-news-content h5 {
  font-size: 18px;
  margin-bottom: 15px;
}

.index-news-container .index-news-lists li .index-news-content h5 a {
  color: #333333;
}

.index-news-container .index-news-lists li .index-news-content h5 a:hover {
  color: var(--themeColor);
}

.index-news-container .index-news-lists li .index-news-content p {
  font-size: 14px;
  color: #999999;
  line-height: 24px;
}

.index-coop-container {
  padding-top: 95px;
  padding-bottom: 95px;
}

.index-coop-container .swiper {
  position: relative;
}

.index-coop-container .box-title-content {
  margin-bottom: 70px;
  text-align: center;
}

.index-coop-container .box-title-content h3 {
  margin-bottom: 10px;
}

.index-coop-container .box-title-content p {
  font-size: 16px;
  color: #787878;
}

.index-coop-container .box-title-content a {
  display: inline-block;
  text-align: center;
  color: #333333;
  font-size: 16px;
  float: none !important;
  margin-top: 20px;
}

.coop1-swiper .swiper-slide {
  border: 1px solid #e5e5e5;
}

.coop1-swiper .swiper-slide h5 {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(236, 94, 4, 0.8);
  opacity: 0;
}

.coop1-swiper .swiper-slide h5 span {
  position: absolute;
  top: calc(90% / 2);
  left: calc((100% - 60px) / 2);
  color: white;
  font-size: 14px;
}

.coop1-swiper .swiper-slide:hover h5 {
  opacity: 1;
}

.index-coop-container .swiper-button-prev {
  left: -50px;
}

.index-coop-container .swiper-button-next {
  right: -50px;
}

/*index page css */

/*product list page css*/

.product-category-container {
  width: 100%;
  height: 60px;
  background-color: #eeeeee;
}

.product-category-container .product-category-lists {
  text-align: center;
}

.product-category-container .product-category-lists li {
  line-height: 60px;
  display: inline-block;
  position: relative;
}

.product-category-container .product-category-lists li a {
  color: #666666;
  font-size: 14px;
  position: relative;
}

.product-category-container .product-category-lists li a:after {
  content: "";
  position: absolute;
  top: 4px;
  width: 1px;
  height: 12px;
  background-color: #666666;
}

.product-category-container .product-category-lists li:last-child {
  margin-right: 0;
}

.product-category-container .product-category-lists li:last-child a:after {
  background-color: transparent;
}

@media (min-width: 992px) {
  .product-category-container .product-category-lists li {
    margin-right: 15px;
  }
  .product-category-container .product-category-lists li a:after {
    right: -7px;
  }
}

@media (min-width: 1500px) {
  .product-category-container .product-category-lists li {
    margin-right: 30px;
  }
  .product-category-container .product-category-lists li a:after {
    right: -15px;
  }
}

.product-category-container .product-category-lists li a:hover {
  color: var(--themeColor);
}

.location-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

.theme-locations {
  height: 70px;
  background-color: var(--themeColor);
}

.theme-locations ul li {
  line-height: 70px;
}

.default-locations {
  height: 60px;
  margin: 20px 0;
}

.locations ul {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.locations ul li {
  float: left;
  position: relative;
}

.locations ul li a {
  font-size: 16px;
}

.locations ul li a:hover {
  text-decoration: underline;
}

.default-locations ul li {
  line-height: 60px;
}

.default-locations ul li a {
  color: #333333;
}

.theme-locations ul li a {
  color: white;
}

.default-locations ul li .icons {
  background-position: -12px -145px;
  left: 0;
  top: 20px;
}

.theme-locations ul li .icons {
  background-position: -40px -145px;
  left: 0;
  top: 26px;
}

.locations ul li .icons {
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
}

.locations ul li:first-child {
  margin-right: 10px;
}

.locations ul li + li {
  margin-right: 18px;
}

.default-locations ul li + li:after {
  color: #333333;
}

.theme-locations ul li + li:after {
  color: white;
}

.locations ul li + li:after {
  content: ">";
  position: absolute;
  top: 0;
  right: -15px;
}

.locations ul li:last-child:after {
  color: transparent;
}

.product-lists {
  margin-left: -5px;
  margin-right: -5px;
}

.product-lists li {
  float: left;
  width: 25%;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
}

.product-lists li .product-box {
  position: relative;
  overflow: hidden;
}

.product-lists li .product-box a{
    height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-lists li .product-box a img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.scale img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.scale:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.index-caseslide-slides-imgdiv {
  width: 100%;
  max-width: 100%;
  height: auto;
  overflow: hidden;
}

.index-caseslide ul.slides li a p {
  text-align: center;
  color: #666666;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.product-lists li .product-box h5 {
  padding-left: 20px;
  width: 100%;
  height: 45px;
  color: white;
  line-height: 45px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.product-lists li .product-box:hover h5 {
  background-color: var(--themeColor);
}

/*product list page css*/

/*product page css*/

.pc-active a {
  color: var(--themeColor);
}

@media (min-width: 992px) {
  .product-page .header-product-infos .product-album-lists,
  .header-product-infos .product-info {
    width: 50%;
  }
  .header-product-infos .product-info {
    padding-top: 20px;
    padding-left: 50px;
  }
  .header-product-infos .product-info h2 {
    margin-bottom: 10px;
  }
  .header-product-infos .product-info p.product-desc {
    margin-bottom: 60px;
  }
}

@media (min-width: 1500px) {
  .product-page .header-product-infos .product-album-lists {
    width: 700px;
  }
  .header-product-infos .product-info {
    width: 565px;
    padding-top: 40px;
  }
  .header-product-infos .product-info h2 {
    margin-bottom: 25px;
  }
  .header-product-infos .product-info p.product-desc {
    margin-bottom: 150px;
  }
}

.product-album-lists .swiper-pagination-bullet {
  width: 11px;
  height: 10px;
  border-radius: 60%;
  background-color: var(--themeColor);
}

.product-album-lists .swiper-pagination-bullet-active {
  background-color: var(--themeColor);
}

.header-product-infos {
  background-color: #f7f7f7;
  padding-top: 50px;
  padding-bottom: 45px;
}

.header-product-infos .product-info {
  float: right;
}

.header-product-infos .product-info h2 {
  padding: 20px 0;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  font-size: 28px;
  color: #333333;
}

.header-product-infos .product-info p.product-desc {
  color: #787878;
  font-size: 14px;
  line-height: 24px;
}

.header-product-infos .contact-content a,
.header-product-infos .contact-content p {
  display: inline-block;
}

.header-product-infos .contact-content a {
  width: 180px;
  height: 45px;
  background-color: var(--themeColor);
  color: white;
  position: relative;
  text-align: center;
  line-height: 45px;
  font-size: 14px;
}

.header-product-infos .contact-content a .icons {
  background-position: -76px -141px;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 30px;
  top: 12px;
}

.header-product-infos .contact-content p {
  padding-left: 50px;
  font-size: 30px;
  font-family: Arial;
  bottom: -5px;
}

.header-product-infos .contact-content p .icons {
  background-position: -6px -179px;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 10px;
  top: 0;
}

.product-page .product-body {
  padding-top: 80px;
}

.product-page .product-body .details-title {
  height: 65px;
  width: 100%;
  background-color: #f7f7f7;
  margin-bottom: 35px;
}

.product-page .product-body .details-title h3 {
  width: 180px;
  height: 100%;
  line-height: 65px;
  text-align: center;
  font-size: 24px;
  color: white;
  background-color: var(--themeColor);
}

.product-page .product-body .product-details {
  margin-bottom: 70px;
}

.product-page .product-body .product-details img {
  width: auto;
}

.product-page .product-body .product-details p {
  line-height: 25px;
}

.related-container {
  padding-bottom: 50px;
}

.related-container h3 {
  margin-bottom: 35px;
  font-size: 24px;
  color: black;
  text-align: center;
}

.commonslide .slide-btns .slide-btn {
  width: 53px;
  height: 53px;
  line-height: 53px;
  color: white;
  display: block;
  position: absolute;
  background-color: #d2d2d2;
  border-radius: 60%;
  font-size: 18px;
}

.commonslide .slide-btns .prev {
  left: -80px;
}

.commonslide .slide-btns .next {
  right: -80px;
}

/*product page css*/

/*quality page css*/

.quality-container {
  padding-top: 80px;
}

.quality-container .quality-lists-container li {
  position: relative;
  margin-bottom: 160px;
}

.quality-container li .quality-box,
.quality-container li .quality-img-box {
  width: 50%;
  float: left;
  position: relative;
}

.quality-container li img {
  width: auto;
}

.quality-container li .quality-title .number {
  font-size: 48px;
  width: 60px;
  border-bottom: 7px solid var(--themeColor);
  color: #999999;
  text-align: center;
}

.quality-container li .quality-title .caption-title {
  font-size: 32px;
  color: #333333;
  margin-bottom: 5px;
}

.quality-container li .quality-title .caption-subtitle {
  font-size: 18px;
  color: #666666;
}

@media (min-width: 992px) {
  .quality-container li .quality-title .caption {
    padding-left: 10px;
  }
  .quality-container li .quality-title {
    margin-bottom: 20px;
  }
  .quality-container li:nth-of-type(odd) .quality-box {
    padding-right: 20px;
  }
  .quality-container li .quality-box {
    padding-top: 20px;
  }
}

@media (min-width: 1500px) {
  .quality-container li .quality-title .caption {
    padding-left: 30px;
  }
  .quality-container li .quality-title {
    margin-bottom: 70px;
  }
  .quality-container li:nth-of-type(odd) .quality-box {
    padding-right: 80px;
  }
  .quality-container li .quality-box {
    padding-top: 65px;
  }
}

.quality-container li .quality-box p {
  font-size: 14px;
  color: #666666;
  line-height: 24px;
}

.quality-container li .quality-img-box .quality-img {
  width: 617px;
  text-align: center;
  position: relative;
}

.quality-container li:nth-of-type(odd) .quality-img-box .quality-img {
  margin-left: auto;
}

.quality-container li:nth-of-type(even) .quality-img-box .quality-img {
  margin-right: auto;
}

.quality-container li:nth-of-type(even) .quality-box {
  left: 50%;
}

.quality-container li:nth-of-type(even) .quality-img-box {
  right: 50%;
}

.quality-container li .quality-img-box .quality-img img {
  position: relative;
  z-index: 3;
}

.quality-container li .quality-img-box .quality-img:after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  width: 100%;
  height: 196px;
  background-color: var(--themeColor);
  z-index: 1;
}

.qualified-container {
  padding-top: 130px;
  padding-bottom: 75px;
  background-color: #f7f7f7;
}

.qualified-container .quality-title {
  text-align: center;
  margin-bottom: 50px;
}

.qualified-container .quality-title h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.qualified-container .quality-title h3,
.qualified-container .quality-title p {
  color: #333333;
}

.qualified-container .quality-title p {
  font-size: 14px;
}

.quality-lists ul li {
  width: 20%;
}

/*quality page css*/

/*case page css*/

.case-cates {
  background-color: #eeeeee;
  width: 100%;
  height: 70px;
}

.case-cates .case-cate-lists {
  text-align: center;
}

.case-cates .case-cate-lists li {
  float: left;
  width: 16.6666666%;
  line-height: 70px;
}

.case-cates .case-cate-lists li a {
  display: block;
  position: relative;
  font-size: 16px;
  color: #333333;
}

.case-cates .case-cate-lists li a:hover {
  color: white;
  background-color: var(--themeColor);
}

.case-cates .case-cate-lists li .case-icons {
  position: absolute;
  left: 12px;
  top: 0;
  width: 30px;
  height: 30px;
}

.case-icons {
  background-image: url(../images/case-icons.png);
  background-repeat: no-repeat;
}

.case-cates .case-cate-lists li:hover .c1 {
  background-position: -10px -47px;
}

@media (min-width: 992px) {
  .case-cates .case-cate-lists li .c2 {
    left: 10px;
  }
  .case-cates .case-cate-lists li .c3 {
    left: 10px;
  }
  .case-cates .case-cate-lists li .c4 {
    left: 10px;
  }
  .case-cates .case-cate-lists li .c5 {
    left: -2px;
  }
  .case-cates .case-cate-l.index-caseslide ul.slides liists li .c6 {
    left: 15px;
  }
  .case-cates .case-cate-lists li .c1 {
    left: 25px;
  }
}

@media (min-width: 1500px) {
  .case-cates .case-cate-lists li .c2 {
    left: 30px;
  }
  .case-cates .case-cate-lists li .c3 {
    left: 30px;
  }
  .case-cates .case-cate-lists li .c4 {
    left: 30px;
  }
  .case-cates .case-cate-lists li .c5 {
    left: 15px;
  }
  .case-cates .case-cate-lists li .c6 {
    left: 35px;
  }
  .case-cates .case-cate-lists li .c1 {
    left: 40px;
  }
}

.case-cates .case-cate-lists li .c1 {
  top: 20px;
  background-position: -10px -10px;
}

.case-cates .case-cate-lists li .c2 {
  top: 20px;
  background-position: -47px -10px;
}

.case-cates .case-cate-lists li:hover .c2 {
  background-position: -47px -45px;
}

.case-cates .case-cate-lists li .c3 {
  top: 20px;
  background-position: -80px -10px;
}

.case-cates .case-cate-lists li:hover .c3 {
  background-position: -80px -48px;
}

.case-cates .case-cate-lists li .c4 {
  top: 20px;
  background-position: -112px -10px;
}

.case-cates .case-cate-lists li:hover .c4 {
  background-position: -112px -46px;
}

.case-cates .case-cate-lists li .c5 {
  top: 20px;
  background-position: -144px -10px;
}

.case-cates .case-cate-lists li:hover .c5 {
  background-position: -144px -45px;
}

.case-cates .case-cate-lists li .c6 {
  top: 20px;
  background-position: -178px -10px;
}

.case-cates .case-cate-lists li:hover .c6 {
  background-position: -178px -45px;
}

.case-page {
  padding-top: 75px;
}

.case-page h3 {
  text-align: center;
  margin-bottom: 55px;
}

.case-page h3 span {
  font-size: 36px;
  color: #333333;
}

.case-lists {
  margin-left: -10px;
  margin-right: -10px;
}

.case-lists li {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 10px;
  width: 33.3333333%;
  float: left;
  text-align: center;
}

.case-lists li h5 {
  width: 100%;
  height: 55px;
  line-height: 55px;
}

.case-lists li .case-box h5 {
  font-size: 16px;
}

.case-lists li .case-box h5 a {
  color: #333333;
}

.case-lists li .case-box:hover h5 a {
  color: var(--themeColor);
}

.return-btn {
  color: white;
  cursor: pointer;
  line-height: 70px;
}

.return-btn:hover {
  color: white;
  text-decoration: underline;
}

.case-album-bg {
  background-image: url(../images/case-album-bg.jpg);
  background-repeat: repeat-x;
  background-size: cover;
}

.case-album-switch .slide-btn {
  background-image: none;
  background-color: white;
  width: 66px;
  height: 66px;
  line-height: 66px;
  color: black;
  text-align: center;
  font-size: 20px;
  border-radius: 60%;
  position: absolute;
}

.case-album-switch .slide-btn:hover {
  background-color: var(--themeColor);
  color: white;
}

.case-album-list li {
  width: 100%;
}

.case-album-switch .prev {
  left: -35px !important;
}

.case-album-switch .next {
  right: -35px !important;
}

.case-page-container {
  padding-bottom: 55px;
}

.case-page-container .case-head {
  height: 209px;
  border-bottom: 1px solid #e5e5e5;
}

.case-page-container .case-head h3 {
  font-size: 24px;
  color: #333333;
  padding-top: 80px;
}

.case-page-container .case-head p {
  font-size: 14px;
  color: #666666;
  line-height: 2;
  padding-top: 70px;
}

@media (min-width: 992px) {
  .case-page-container .case-head .case-desc {
    width: 64%;
  }
}

@media (min-width: 1500px) {
  .case-page-container .case-head .case-desc {
    width: 64%;
  }
}

.links {
  padding-top: 15px;
  padding-bottom: 95px;
}

.links a {
  color: #454545;
  font-size: 14px;
}

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

.case-page-title {
  font-size: 24px;
  color: #333333;
  text-align: center;
  margin-bottom: 35px;
}

.case-relations .tempWrap {
  position: relative;
  z-index: 25;
}

.case-relations ul.slides {
}

.case-relation-lists {
  text-align: center;
  position: relative;
}

@media (min-width: 992px) {
  .common-swiper {
    width: 90%;
  }
  .case-relation-lists .swiper-btns .case-relations-next {
    right: -35px;
  }
  .case-relation-lists .swiper-btns .case-relations-prev {
    left: -35px;
  }
}

@media (min-width: 1500px) {
  .common-swiper {
    width: 100%;
  }
  .case-relation-lists .swiper-btns .swiper-button-next {
    right: -80px;
  }
  .case-relation-lists .swiper-btns .swiper-button-prev {
    left: -80px;
  }
}

.swiper-relations h5 {
  color: #333333;
  margin-top: 10px;
}

.swiper-relations h5 a {
  color: #333333;
}

.swiper-relations h5 a:hover {
  color: var(--themeColor);
}

/*.case-relation-lists */

.case-relation-lists .swiper-btns {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
}

.swiper-btns .swiper-btn {
  opacity: 1;
  width: 61px;
  height: 61px;
  line-height: 61px;
  color: white;
  background-color: #d2d2d2;
  background-image: none;
  text-align: center;
  position: absolute;
  -webkit-border-radius: 60%;
  -moz-border-radius: 60%;
  border-radius: 60%;
}

.swiper-btns .swiper-btn:hover {
  background-color: var(--themeColor);
}

.fullSlide-container {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .fullSlide-container {
    padding-left: 70px;
    padding-right: 70px;
    width: 1200px;
  }
}

@media (min-width: 1500px) {
  .fullSlide-container {
    padding-left: 0;
    padding-right: 0;
    width: 1500px;
  }
}

/*case page css*/

/*service page css*/

.service-container .service-head {
  padding-top: 65px;
  padding-bottom: 45px;
}

.service-container .service-head-title {
  margin-bottom: 55px;
  text-align: center;
}

.service-container .service-head-title h3 {
  font-size: 32px;
  color: #333333;
  margin-bottom: 5px;
}

.service-container .service-head-title p {
  font-size: 14px;
  color: #666666;
}

.service-icon-lists {
  width: 1160px;
  margin: auto;
}

.service-icon-lists li {
  width: 16.6666667%;
  float: left;
  text-align: center;
}

.service-icon-lists li img {
  width: auto;
}

.service-icon-lists li h5 {
  margin-top: 25px;
  font-size: 16px;
  color: #333333;
}

.service-color img {
  width: 100%;
  height: 346px;
}

.service-color .swiper-button-next,
.service-color .swiper-container-rtl .swiper-button-prev {
  opacity: 1;
  width: 40px;
  height: 65px;
  background-color: #aaa;
  background-image: url(../images/arrow_right_color01.png);
  -webkit-background-size: auto;
  background-size: auto;
  right: -50px;
}

.service-color .swiper-button-prev,
.service-color .swiper-container-rtl .swiper-button-next {
  opacity: 1;
  width: 40px;
  height: 65px;
  background-color: #aaa;
  background-image: url(../images/arrow_left_color01.png);
  -webkit-background-size: auto;
  background-size: auto;
  left: -50px;
}

.service-color .swiper-button-next:hover,
.service-color .swiper-button-prev:hover {
  background-color: #ec6204;
}

.service-color .container {
  position: relative;
}

.service-body {
  background-color: #f7f7f7;
  padding: 70px 0;
}

@media (min-width: 992px) {
  .service-body ul li {
    height: 290px;
  }
  .service-body ul li:nth-child(1),
  .service-body ul li:nth-child(2),
  .service-body ul li:nth-child(3),
  .service-body ul li:nth-child(4) {
    padding-top: 25px;
    padding-left: 25px;
    padding-right: 15px;
  }
  .service-body ul li:nth-child(2) {
    top: 290px;
  }
  .service-body ul li:nth-child(5) {
    bottom: 290px;
  }
  .service-body ul li:nth-child(4) {
    top: 290px;
  }
  .service-body ul li:nth-child(6) {
    right: 66.6666666%;
  }
  .service-body ul li:nth-child(7) {
    top: -290px;
    left: 66.6666666%;
  }
}

@media (min-width: 1500px) {
  .service-body ul li {
    height: 350px;
  }
  .service-body ul li:nth-child(1),
  .service-body ul li:nth-child(2),
  .service-body ul li:nth-child(3),
  .service-body ul li:nth-child(4) {
    padding-top: 45px;
    padding-left: 45px;
    padding-right: 35px;
  }
  .service-body ul li:nth-child(2) {
    top: 350px;
  }
  .service-body ul li:nth-child(5) {
    bottom: 350px;
  }
  .service-body ul li:nth-child(4) {
    top: 350px;
  }
  .service-body ul li:nth-child(6) {
    right: 66.6666666%;
  }
  .service-body ul li:nth-child(7) {
    top: -350px;
    left: 66.6666666%;
  }
}

.service-body ul li {
  width: 33.3333333%;
  float: left;
  position: relative;
}

.service-body ul {
  position: relative;
}

.service-body ul li:last-child {
  width: 66.6666666%;
}

.service-body ul li h3 {
  color: #333333;
  font-size: 24px;
}

@media (min-width: 992px) {
  .service-body ul li h3 {
    margin-bottom: 15px;
  }
}

@media (min-width: 1500px) {
  .service-body ul li h3 {
    margin-bottom: 30px;
  }
  .service-body ul li {
  }
}

.service-body ul li p {
  font-size: 14px;
  color: #666666;
  line-height: 24px;
}

/*service page css*/

/*platform page css*/

.platform-content-title {
  margin-bottom: 35px;
  text-align: center;
}

.platform-content-title h3 {
  color: #333333;
  margin-bottom: 5px;
}

.platform-content-title h3 span {
  font-size: 28px;
}

.platform-content-title p {
  font-size: 14px;
  color: #666666;
}

.platform-head {
  padding-top: 70px;
  padding-bottom: 60px;
  background-color: #f7f7f7;
}

.platform-head ul {
  background-color: white;
}

@media (min-width: 992px) {
  .platform-head .platform-head-text {
    padding: 25px 30px 0 30px;
  }
}

@media (min-width: 1500px) {
  .platform-head .platform-head-text {
    padding: 50px 60px 0 60px;
  }
}

.platform-head .platform-head-text h4 {
  color: #333333;
  font-size: 20px;
  margin-bottom: 30px;
}

.platform-head .platform-head-text p {
  color: #666666;
  font-size: 14px;
  line-height: 27px;
}

.ul-li-five-percent li {
  width: 50%;
  float: left;
}

.platform-neck {
  padding: 60px 0 70px 0;
}

.platform-neck ul.ul-li-five-percent {
  background-color: #eeeeee;
  margin-bottom: 65px;
}

.platform-neck .comapny-logos img {
  display: inline-block;
  width: 24%;
  margin-right: 5px;
}

@media (min-width: 992px) {
  .platform-neck .comapny-logos {
    padding-top: 45px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1500px) {
  .platform-neck .comapny-logos {
    padding-top: 55px;
    padding-left: 35px;
    padding-right: 35px;
  }
}

.rz-icons-lists li {
  width: 16.66666667%;
  float: left;
  text-align: center;
}

.rz-icons-lists li img {
  width: auto;
}

.rz-icons-lists li h5 {
  font-size: 14px;
  color: #333333;
  margin-top: 25px;
  line-height: 27px;
}

.platform-leg {
  padding-top: 70px;
  padding-bottom: 100px;
  background-color: #f7f7f7;
}

.platform-leg ul {
  margin-left: -10px;
  margin-right: -10px;
}

.platform-leg ul li {
  width: 25%;
  float: left;
  padding-left: 10px;
  padding-right: 10px;
  height: 555px;
  position: relative;
}

.platform-leg ul li .leg-box {
  width: 100%;
  height: 100%;
  background-color: white;
}

.platform-leg ul li:hover .leg-box {
  background-color: var(--themeColor);
}

.platform-leg ul li h5 {
  color: #333333;
  font-size: 22px;
  padding-bottom: 30px;
  margin-top: 35px;
  margin-bottom: 20px;
  text-align: center;
}

.platform-leg ul li h5:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  top: 50px;
  left: calc((100% - 40px) / 2);
  background-color: #999999;
}

.platform-leg ul li:hover .leg-box * {
  color: white;
}

.platform-leg ul li .leg-box {
  padding: 75px 35px 45px 35px;
}

.platform-leg ul li .leg-box p {
  color: #787878;
  font-size: 12px;
  line-height: 28px;
}

.leg-icons {
  width: 80px;
  height: 80px;
  display: block;
  margin: auto;
  background-repeat: no-repeat;
  background-image: url(../images/coop-icons.png);
}

.leg-icons-coop {
  width: 260px;
  height: 90px;
  display: block;
  position: absolute;
  bottom: 25px;
  left: calc((100% - 260px) / 2);
  background-repeat: no-repeat;
  background-image: url(../images/cooper-info-icons.png);
}

.platform-leg ul li:hover .leg-box h5:after {
  background-color: white;
}

/*1*/

.platform-leg ul li .join-agent {
  background-position: -36px -17px;
}

.platform-leg ul li:hover .join-agent {
  background-position: -36px -99px;
}

.platform-leg ul li .join-agent-coop-icon {
  background-position: -33px -39px;
}

.platform-leg ul li:hover .join-agent-coop-icon {
  background-position: -33px -157px;
}

/*2*/

.platform-leg ul li .cooperation {
  background-position: -133px -17px;
}

.platform-leg ul li:hover .cooperation {
  background-position: -133px -100px;
}

.platform-leg ul li .cooperation-coop-icon {
  background-position: -316px -39px;
}

.platform-leg ul li:hover .cooperation-coop-icon {
  background-position: -315px -157px;
}

/*3*/

.platform-leg ul li .construction {
  background-position: -231px -17px;
}

.platform-leg ul li:hover .construction {
  background-position: -231px -102px;
}

.platform-leg ul li .construction-coop-icon {
  background-position: -625px -39px;
}

.platform-leg ul li:hover .construction-coop-icon {
  background-position: -625px -157px;
}

/*4*/

.platform-leg ul li .produce {
  background-position: -327px -17px;
}

.platform-leg ul li:hover .produce {
  background-position: -327px -102px;
}

.platform-leg ul li .produce-coop-icon {
  background-position: -895px -39px;
}

.platform-leg ul li:hover .produce-coop-icon {
  background-position: -895px -155px;
}

.platform-foot {
  background-color: #f7f7f7;
  padding-bottom: 68px;
}

.platform-foot ul {
  position: relative;
  margin-top: -203px;
  background-color: white;
}

.platform-foot ul li {
}

.platform-foot ul li .platform-foot-box h3 {
  color: #333333;
}

.platform-foot ul li .platform-foot-box h3:after {
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  left: -65px;
  top: calc((100% - 2px) / 2);
  background-color: var(--themeColor);
}

.platform-foot ul li .platform-foot-box p {
  color: #666666;
  font-size: 14px;
  line-height: 30px;
}

.platform-foot ul li img,
.platform-foot ul li .platform-foot-box {
  width: 50%;
  float: left;
  position: relative;
}

.platform-foot ul li:nth-of-type(even) img {
  left: 50%;
}

.platform-foot ul li:nth-of-type(even) .platform-foot-box {
  right: 50%;
}

@media (min-width: 992px) {
  .platform-foot ul li .platform-foot-box {
    padding: 25px 15px 0 65px;
  }
  .platform-foot ul li .platform-foot-box h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .platform-foot ul li {
    height: 431px;
  }
}

@media (min-width: 1500px) {
  .platform-foot ul li .platform-foot-box {
    padding: 65px 55px 0 65px;
  }
  .platform-foot ul li .platform-foot-box h3 {
    font-size: 32px;
    margin-bottom: 50px;
  }
  .platform-foot ul li {
    height: 515px;
  }
}

.platform-message {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url(../images/message-bg.jpg);
}

.message-container .platform-content-title h3 {
  color: white;
}

.message-container .forms-group .input-form .input-box {
  height: 50px;
  line-height: 50px;
  padding-left: 75px;
  position: relative;
}

.message-container .forms-group .input-form .input-box,
.message-container .textarea-form {
  background-color: rgba(255, 255, 255, 0.9);
}

.message-container .forms-group {
  margin-left: -5px;
  margin-right: -5px;
}

.message-container .forms-group .input-form {
  width: 50%;
  float: left;
  margin-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

.message-container input,
.message-container textarea,
.btns button {
  border: 0;
  outline: 0;
}

.message-container input,
.message-container textarea {
  background-color: transparent;
  width: 100%;
}

.message-container textarea {
  padding: 25px;
}

.message-container .forms-group .input-form .icons {
  width: 30px;
  height: 20px;
  top: calc((100% - 20px) / 2);
  left: 25px;
  position: absolute;
  border-right: 2px solid #73787b;
}

.message-container .forms-group .input-form .name-icon {
  background-position: -69px -187px;
}

.message-container .forms-group .input-form .phone-icon {
  background-position: -109px -188px;
}

.message-container .btns {
  margin-top: 35px;
  text-align: center;
}

.message-container .btns button {
  width: 109px;
  height: 37px;
  text-align: center;
  line-height: 37px;
  font-size: 14px;
  margin-right: 20px;
}

.message-container .btns .btn-submint {
  background-color: rgba(236, 98, 4, 0.9);
  color: white;
}

.message-container .btns .btn-reset {
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
}

/*platform page css*/

/*news list page css*/

.news-cates-container {
  background-color: #eeeeee;
  height: 60px;
  line-height: 60px;
}

.news-cate-lists {
  text-align: center;
}

.news-cate-lists li {
  display: inline-block;
}

.news-cate-lists li a {
  display: block;
  padding: 0 34px;
  font-size: 14px;
  color: black;
  text-align: center;
}

.news-cate-lists li a:hover {
  color: white;
  background-color: var(--themeColor);
}

.news-cate-lists li.nav-selected a {
  background-color: var(--themeColor);
  color: white;
}

.news-lists {
  margin-top: 80px;
}

.news-lists li {
  /*padding-bottom: 40px;*/
  margin-bottom: 40px;
  border-bottom: 1px solid var(--borderColor);
}

.news-lists li .image-link {
  width: 275px;
  height: 196px;
  display: block;
  float: left;
}

@media (min-width: 992px) {
  .news-lists li .news-content {
    width: 890px;
  }
}

@media (min-width: 1500px) {
  .news-lists li .news-content {
    width: 1000px;
  }
}

.news-lists li .news-content {
  float: left;
  padding-top: 15px;
  padding-left: 55px;
}

.news-lists li img {
  width: 299px;
}

.news-lists li .news-content h5 {
  font-size: 18px;
  margin-bottom: 30px;
}

.news-lists li .news-content h5 .news-date {
  color: var(--themeColor);
  margin-right: 15px;
}

.news-lists li .news-content h5 .news-title a {
  color: #333333;
}

.news-lists li .news-content a:hover {
  color: var(--themeColor) !important;
  overflow: hidden;
}

.news-lists li .news-content .news-desc {
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
}

.news-lists li .news-content .news-link {
  color: #333333;
  font-size: 14px;
  border-bottom: 1px solid var(--borderColor);
  padding-bottom: 10px;
}

.news-container {
  padding-top: 70px;
  padding-bottom: 70px;
}

/*news list page css*/

/*about page css*/

.about-title {
  text-align: center;
  color: #333333;
}

.about-title span {
  font-size: 32px;
}

.aboutinfo-page {
  background-color: #f7f7f7;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-image: url(../images/2333.png);
  padding-top: 80px;
  height: 4000px;
  padding-bottom: 447px;
}

.aboutinfo-page .about-title {
  margin-bottom: 160px;
}

.about-cates-container {
  height: 60px;
  text-align: center;
}

.about-cate-lists li {
  line-height: 60px;
  display: inline-block;
  position: relative;
}

.about-cate-lists li:last-child:after {
  background-color: transparent;
}

.about-cate-lists li a {
  padding: 0 20px;
  font-size: 14px;
  color: #666666;
}

.about-cate-lists li:after {
  content: "";
  position: absolute;
  right: 0;
  top: 25px;
  width: 1px;
  height: 12px;
  background-color: #666666;
}

.about-cate-lists li:last-child {
  background-color: transparent;
}

.about-cate-lists li:last-child a {
  border: none;
}

.about-cate-lists li a:hover {
  color: var(--themeColor);
}

.about-cate-lists li.nav-selected a {
  color: var(--themeColor);
}

.about-info-photo-text li {
  width: 50%;
  float: left;
}

.about-info-photo-text li .aboutinfo-text {
  background-color: white;
  position: relative;
}

.about-info-photo-text li .aboutinfo-text h2 {
  color: black;
}

.about-info-photo-text li .aboutinfo-text p {
  line-height: 27px;
  color: #666666;
}

@media (min-width: 992px) {
  .about-info-photo-text li .aboutinfo-text {
    height: 610px;
    top: -65px;
    padding: 25px 30px 0 30px;
  }
  .about-info-photo-text li .aboutinfo-text h2 {
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 33px;
  }
  .aboutinfo-page .otherinfo li .a {
    font-size: 50px;
  }
  .about-info-photo-text li .aboutinfo-text p {
    font-size: 12px;
  }
}

@media (min-width: 1500px) {
  .about-info-photo-text li .aboutinfo-text {
    height: 810px;
    top: -65px;
    padding: 110px 90px 0 100px;
  }
  .about-info-photo-text li .aboutinfo-text h2 {
    margin-bottom: 70px;
    font-size: 32px;
    line-height: 53px;
  }
  .aboutinfo-page .otherinfo li .a {
    font-size: 60px;
  }
  .about-info-photo-text li .aboutinfo-text p {
    font-size: 14px;
  }
}

.aboutinfo-page .otherinfo {
  margin-bottom: 120px;
}

.aboutinfo-page .otherinfo li {
  width: 16.6666666%;
  float: left;
  text-align: center;
}

.aboutinfo-page .otherinfo li p {
  color: var(--themeColor);
}

.aboutinfo-page .otherinfo li:nth-child(1) .b {
  font-size: 24px;
}

.aboutinfo-page .otherinfo li h3 {
  color: #333333;
  font-size: 18px;
}

.aboutinfo-page .otherinfo li:nth-child(2) .b {
  font-size: 22px;
}

.aboutinfo-page .otherinfo li:nth-child(3) .b {
  font-size: 36px;
}

.aboutinfo-page .otherinfo li:nth-child(4) .b,
.aboutinfo-page .otherinfo li:nth-child(5) .b,
.aboutinfo-page .otherinfo li:nth-child(6) .b {
  font-size: 22px;
}

@media (min-width: 992px) {
  .some-infos li:nth-child(1) {
    width: 650px;
  }
  .some-infos li:nth-child(2) {
    width: 680px;
  }
  .some-infos {
    width: 100%;
  }
}

@media (min-width: 1500px) {
  .some-infos li:nth-child(1) {
    width: 960px;
  }
  .some-infos li:nth-child(2) {
    width: 960px;
  }
  .some-infos {
    width: 1920px;
  }
}

.some-infos li {
  height: 2200px;
}

.some-infos li:nth-child(2) {
  float: right;
  padding-top: 100px;
}

.some-infos li:nth-child(2) img {
  margin-bottom: 120px;
}

.some-infos li:nth-child(1) {
  float: left;
  /*background-image: url(../images/some-text-bg.png);*/
  background-color: white;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}

@media (min-width: 992px) {
  .some-infos li:nth-child(1) {
    padding-left: 90px;
    padding-right: 40px;
    padding-top: 150px;
  }
  .some-infos li:nth-child(1) h2.some-text-head {
    margin-bottom: 360px;
  }
  .some-infos li:nth-child(1) h2.some-text-head:nth-child(2),
  .some-infos li:nth-child(1) h2.some-text-head:nth-child(3) {
    margin-bottom: 480px;
  }
  .some-infos li:nth-child(1) h2.some-text-body {
    margin-bottom: 480px;
  }
}

@media (min-width: 1500px) {
  .some-infos li:nth-child(1) {
    padding-left: 180px;
    padding-right: 80px;
    padding-top: 160px;
  }
  .some-infos li:nth-child(1) h2.some-text-head {
    margin-bottom: 420px;
  }
  .some-infos li:nth-child(1) h2.some-text-head:nth-child(2),
  .some-infos li:nth-child(1) h2.some-text-head:nth-child(3) {
    margin-bottom: 480px;
  }
  .some-infos li:nth-child(1) h2.some-text-body {
    margin-bottom: 460px;
  }
}

.some-infos li:nth-child(1) h2 {
  color: #333333;
  font-size: 24px;
}

.some-infos li:nth-child(1) h2 p {
  margin-top: 30px;
  line-height: 40px;
  color: #333;
  font-size: 18px;
}

.some-infos li:nth-child(1) h2:after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: #333333;
}

.some-infos li:nth-child(2) img {
  width: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ryzz-page {
  padding-top: 50px;
}

.ryzz-page .about-title {
  margin-bottom: 45px;
}

.ryzz-page .ryzs-lists {
  margin-left: -10px;
  margin-right: -10px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .ryzz-page .ryzs-lists {
    height: 250px;
  }
}

@media (min-width: 1500px) {
  .ryzz-page .ryzs-lists {
    height: 300px;
  }
}

.ryzz-page .ryzs-lists li {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 50px;
}

.ryzz-page .ryzz-head {
  padding-bottom: 40px;
}

.about-common-lists li {
  width: 25%;
  float: left;
}

.ryzz-page .ryzz-cover {
  margin-bottom: 35px;
}

.ryzz-page .view-more {
  cursor: pointer;
  width: 100%;
  height: 68px;
  background-color: var(--themeColor);
  text-align: center;
  line-height: 68px;
  color: white;
}

.ryzz-page .view-more .view-more-text {
  position: relative;
}

.ryzz-page .view-more .view-more-icons {
  background-position: -116px -141px;
  position: absolute;
  top: -3px;
  left: -43px;
  width: 30px;
  height: 27px;
}

.rzzs-container {
  background-image: url(../images/zzzs-bg.jpg);
  padding-top: 65px;
  padding-bottom: 35px;
}

.zlzs-swiper {
  text-align: center;
}

.zlzs-swiper .rzzs-box {
  background-color: #eeeeee;
  padding: 10px;
}

.zlzs-swiper h5 {
  font-size: 14px;
  margin-top: 10px;
  color: #333333;
}

.history-page,
.cpc-page,
.figure-page {
  padding-top: 65px;
  padding-bottom: 140px;
}

.history-page {
  background-image: url(../images/history-bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
}

.history-page .about-title,
.cpc-page .about-title,
.figure-page .about-title {
  margin-bottom: 40px;
}

.history-page .history-line {
  padding-top: 60px;
  width: 1140px;
  margin: auto;
  position: relative;
}

.history-page .history-line:before,
.history-page .history-line:after,
.history-page .history-line .history-box:after {
  content: "";
  position: absolute;
  background-color: #bfbfbf;
}

.history-page .history-line:before,
.history-page .history-line:after {
  top: 0;
}

.history-page .history-line:before {
  width: 25px;
  height: 25px;
  border-radius: 60%;
  left: calc((100% - 25px) / 2);
}

.history-page .history-line:after {
  left: 50%;
  width: 1px;
  height: 100%;
}

.history-page .history-line li {
  margin-bottom: 20px;
}

.history-page .history-line .history-box {
  width: 50%;
}

.history-page .history-line li .history-box .caption {
  width: 250px;
  padding-top: 20px;
}

.history-page .history-line .history-box,
.history-page .history-line .history-img-box,
.history-page .history-line .caption {
  position: relative;
}

.history-page .history-line .history-img-box,
.history-page .history-line .caption {
  float: left;
}

.history-page .history-line li .history-box .caption h3,
.history-page .history-line li .history-box .caption h4 {
  color: #333333;
}

.history-page .history-line li .history-box .caption h3 {
  font-size: 48px;
  margin-bottom: 20px;
}

.history-page .history-line li .history-box .caption h4 {
  font-size: 16px;
}

.history-page .history-line .history-box:after {
  top: 30px;
  width: 58px;
  height: 1px;
}

.history-page .history-line .history-img-box {
  width: 240px;
  height: 160px;
  padding: 5px;
  background-color: #e5e5e5;
}

.history-page .history-line li:nth-of-type(odd) .history-box {
  left: 55%;
}

.history-page .history-line li:nth-of-type(odd) .history-box:after {
  left: -57px;
}

.history-page .history-line li:nth-of-type(even) .history-box:after {
  right: 0;
}

.history-page .history-line li:nth-of-type(odd) .history-box .caption {
  padding-left: 45px;
}

.history-page .history-line li:nth-of-type(even) .history-box .caption {
  padding-right: 45px;
  right: 40%;
}

.history-page .history-line li:nth-of-type(even) .history-box .history-img-box {
  left: 48%;
}

.cpc-page {
  background-color: #f7f7f7;
}

.cpc-page .company-cultrual li {
  background-color: white;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.cpc-page .company-cultrual li img,
.cpc-page .company-cultrual li .caption {
  float: left;
}

.cpc-page .company-cultrual li .caption {
  position: relative;
}

@media (min-width: 992px) {
  .cpc-page .company-cultrual li .caption {
    width: 40%;
    padding-top: 40px;
    padding-left: 25px;
  }
  .cpc-page .company-cultrual li img {
    width: 60%;
  }
  .cpc-page .company-cultrual li .caption h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}

@media (min-width: 1500px) {
  .cpc-page .company-cultrual li .caption {
    width: 574px;
    padding-top: 80px;
    padding-left: 50px;
  }
  .cpc-page .company-cultrual li img {
    width: 826px;
  }
  .cpc-page .company-cultrual li .caption h3 {
    font-size: 36px;
    margin-bottom: 35px;
  }
}

.cpc-page .company-cultrual li .caption h3 {
  color: #333333;
}

.cpc-page .company-cultrual li .caption p {
  font-size: 14px;
  color: #666666;
}

.cpc-page .company-cultrual li span {
  position: absolute;
  bottom: -90px;
  font-size: 162px;
  left: 45px;
  color: rgba(153, 153, 153, 0.2);
}

.video {
  position: relative;
  margin-bottom: 65px;
}

.video .video-btn-container {
  position: absolute;
  width: 100px;
  left: calc((100% - 100px) / 2);
  top: calc((100% - 100px) / 2);
}

.video .video-btn-container span {
  display: block;
  width: 100px;
  height: 100px;
  background-position: -118px -42px;
  cursor: pointer;
}

.video .video-btn-container h5 {
  font-size: 18px;
  color: #333333;
  text-align: center;
  margin-top: 10px;
}

.office-swiper-container,
.factory-swiper-container,
.team-swiper-container {
  margin-bottom: 35px;
  position: relative;
}

.swiper-box .swiper-box-title {
  margin-bottom: 38px;
}

.swiper-box .swiper-box-title .swiper-title {
  color: #333333;
  font-size: 24px;
}

.swiper-box .swiper-box-title .swiper-subtitle {
  padding-left: 15px;
  color: #999999;
  font-size: 16px;
}

.standard-btns .cp-btn {
  background-image: none;
  width: 32px;
  height: 44px;
  background-color: #898989;
  line-height: 44px;
  color: white;
  font-size: 18px;
  text-align: center;
}

.standard-btns .swiper-btn-next {
  right: -50px;
}

.standard-btns .swiper-btn-prev {
  left: -50px;
}

.standard-btns .cp-btn:hover {
  background-color: var(--themeColor);
}

/*about page css*/

/*contact page css*/

.contact-page {
  padding-top: 85px;
}

.contact-page .contact-title {
  margin-bottom: 55px;
  font-size: 32px;
  color: #333333;
  text-align: center;
}

.contact-page .contact-lists .contact-box {
  background-color: #f7f7f7;
  height: 134px;
  position: relative;
  padding-top: 40px;
  padding-right: 35px;
}

.contact-page .contact-lists .contact-box h3,
.contact-page .contact-lists .contact-box p {
  color: #666666;
}

.contact-page .contact-lists .contact-box h3 {
  font-size: 18px;
}

.contact-page .contact-lists .contact-box p {
  font-size: 14px;
  line-height: 26px;
}

@media (min-width: 992px) {
  .contact-page .contact-lists .contact-box {
    padding-left: 70px;
  }
}

@media (min-width: 1500px) {
  .contact-page .contact-lists .contact-box {
    padding-left: 80px;
  }
}

.contact-page .contact-lists {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 70px;
}

.contact-page .contact-lists li {
  width: 25%;
  float: left;
  padding-left: 10px;
  padding-right: 10px;
}

.contact-page .contact-lists .icons {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 18px;
  top: calc((100% - 60px) / 2);
}

.contact-page .contact-lists .address-icon {
  background-position: -246px -44px;
}

.contact-page .contact-lists .tel-icon {
  background-position: -312px -44px;
}

.contact-page .contact-lists .email-icon {
  background-position: -246px -44px;
}

.contact-page .message-can {
  position: relative;
  margin-top: -230px;
  margin-bottom: 75px;
  background-color: rgba(194, 194, 194, 0.8);
  padding: 45px 95px 40px 95px;
}

.contact-page .message-can h3 {
  font-size: 28px;
  margin-bottom: 45px;
}

.contact-page .message-can h3 * {
  color: #333333;
}

.contact-page .message-can h3 span {
  padding-right: 10px;
}

.contact-page .map {
  width: 100%;
  height: 550px;
}

/*contact page css*/

/*footer css*/

footer {
  background-color: #333333;
  padding-top: 55px;
}

footer img {
  width: auto;
}

footer .footer-logo-numbers-address img {
  float: left;
  max-height: 100%;
}

footer .footer-logo-numbers-address .page-row {
  height: 90px;
}

footer .footer-numbers {
  position: relative;
  padding-left: 90px;
  margin-left: 35px;
}

footer .footer-numbers .footer-tel {
  font-size: 32px;
  color: #b4b4b4;
}

footer .footer-numbers .footer-hotline {
  font-size: 36px;
  font-weight: bold;
  color: var(--themeColor);
}

footer .footer-numbers span {
  position: absolute;
  left: 0;
  top: 0;
  background-position: -9px -46px;
  width: 80px;
  height: 80px;
}

footer .footer-address p {
  font-size: 14px;
  color: #b4b4b4;
  margin-bottom: 5px;
}

footer .footer-address p,
footer .footer-address a {
  color: #b4b4b4;
}

footer .footer-address {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  footer .footer-links ul {
    margin-right: 20px;
  }
}

@media (min-width: 1500px) {
  footer .footer-links ul {
    margin-right: 60px;
  }
}

footer .footer-links ul {
  float: left;
}

footer .footer-links ul li {
  display: block !important;
}

footer .footer-links ul li + li {
  margin-bottom: 15px;
}

footer .footer-links h5 {
  font-size: 20px;
  color: white;
  padding-bottom: 50px;
}

footer .footer-links h5:after {
  content: "";
  position: absolute;
  left: 0;
  top: 45px;
  width: 19px;
  height: 1px;
  background-color: rgba(180, 180, 180, 0.2);
}

footer .footer-links a {
  color: #b4b4b4;
  font-size: 14px;
}

footer .footer-head {
  margin-bottom: 120px;
  display: flex;
  justify-content: space-between;
}
footer .footer-head ul {
  display: flex;
  flex: 1;
}
footer .footer-head ul li {
  margin-right: 10%;
}
footer .footer-head ul li h5 {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
footer .footer-head ul li a {
  display: block;
  line-height: 30px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}
footer .footer-head ul li a:hover {
  color: #fff;
}
footer .foot-contact .foot-contact-info {
  display: flex;
}
footer .foot-contact h5 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-bottom: 6px;
}
footer .foot-contact .footer-info-address {
  padding-left: 16px;
  border-left: 1px rgba(255, 255, 255, 0.2) solid;
}
footer .foot-contact .qrcode {
  width: 118px;
  margin-right: 16px;
}

footer .foot-contact img {
  width: 100%;
  display: block;
}
footer .foot-contact .qrcode p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 6px;
}
footer .foot-contact h6 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 6px;
  text-align: left;
}
footer .foot-contact h3 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  line-height: 24px;
}
footer .foot-contact p,
footer .foot-contact a {
  line-height: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

footer .fl {
  margin-bottom: 20px;
}

footer .fl li {
  float: left;
}

footer .fl li + li {
  margin-right: 15px;
}

footer .fl li * {
  color: #b4b4b4;
  font-size: 14px;
}

footer .icp {
  line-height: 58px;
  width: 100%;
  height: 58px;
  border-top: 1px solid #394356;
}

footer .icp * {
  color: #b4b4b4;
  font-size: 14px;
}

footer a:hover {
  color: var(--themeColor);
}

.search-results .search-result {
  margin-bottom: 15px;
  text-align: center;
}

/*footer css*/

@media (max-width: 1440px) {
  header .logo-text .header-logo-text {
    display: none;
  }
}

@media (min-width: 992px) {
  .container {
    width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 1500px) {
  .location-container {
    width: 1200px;
    padding-left: 20px;
  }
  .index-solution-container ul li {
    height: 460px;
  }
  .header-container .header-navigations li {
    margin: 0 20px;
  }
}
@media (max-width: 1350px) {
  .header-navigation-header-tel .header-hotline {
    display: none;
  }

  .header-container .header-navigations li {
    margin: 0 10px;
  }
}

@media (min-width: 1500px) {
  .container {
    width: 1400px;
    padding: 0;
  }
}

.procce {
  display: none;
}

.procce.on {
  display: block;
}

.index-news-container .right-index-newscates li.on a {
  background-color: var(--themeColor);
  color: white;
}

.index-container {
  position: relative;
}
.index-container iframe {
  object-fit: cover;
  width: 100%;
}

.index-container .index-prev {
  position: absolute;
  left: 2%;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #bbb;
  margin: auto;
  transition: 0.5s;
  z-index: 10;
  cursor: pointer;
}
.index-container .index-prev .icon {
  color: #fff;
}
.index-container .index-prev:hover {
  background: var(--themeColor);
}

.index-container .index-next {
  position: absolute;
  right: 2%;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #bbb;
  margin: auto;
  transition: 0.5s;
  z-index: 10;
  cursor: pointer;
}
.index-container .index-next .icon {
  color: #fff;
}
.index-container .index-next:hover {
  background: var(--themeColor);
}

#open-code{
    margin-top: 20px;  
    color: var(--themeColor);
    cursor: pointer;
}

.codeImg{
    position: fixed;
    top: 0;
    right: 0;
    background: 0;
    left: 0;
    bottom: 0;
    background: rgba(0,0,0,.7);
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
}
.codeImg.active{
    display: flex;
}
.codeImg img{
width: 240px;
}
.pro-son-nav{
    margin-top: 20px;
}
.pro-son-nav .content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.pro-son-nav .content a{
    color: #666;
    margin-right: 20px;
}
.pro-son-nav .content a:hover,.pro-son-nav .content .on{
    color: var(--themeColor);
}