@charset "utf-8";

/* CSS Document */

*,
body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-style: normal;
}

html,
body,
ul,
li,
dl,
dd {
  margin: 0;
  padding: 0;
  font-family: "Microsoft yahei", "微软雅黑", "tahoma";
  font-size: 12px;
  color: #666;
  line-height: 30px;
  list-style: none;
}

a:hover {
  /* color: #f1433c; */
}

a {
  list-style: none;
  border: none;
  text-decoration: none;
}

img {
  border: none;
  padding: 0;
  margin: 0;
}

.left {
  float: left;
}

.right {
  float: right;
}

.middle {
  margin: 0 auto;
}

.clear {
  clear: both;
}

#header {
  position: fixed;
  color: #ccc;
  z-index: 999;
  height: auto;
  overflow: hidden;
}

#header,
section {
  width: 100%;
}

#header .logo {
  width: 300px;
  margin: 15px 0px 0px 50px;
  float: left;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

#header .logo img {
  max-width: 100%;
}

#header nav.menu {
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  float: left;
  padding-right: 250px;
}

#header nav.menu ul li {
  margin: 0 0px;
  font-size: 20px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  padding-top: 30px;
  float: left;
  padding-left: 16px;
  padding-right: 16px;
}

#header nav.menu ul li:hover {
  border-top: 2px solid #00dfb9;
}

#header nav.menu ul li.active {
  border-top: 2px solid #00dfb9;
}

#header nav.menu ul li.active a {
  color: #00dfb9;
}

.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

#header nav.menu ul li a {
  color: #ccc;
  letter-spacing: 2px;
  cursor: pointer;
}

#header .hotline {
  position: fixed;
  top: 32px;
  right: 35px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

#header .hotline a {
  color: #00dfb9;
}

#header .hotline span {
  color: #00dfb9;
  font-family: Arial;
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 1px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

#header .hotline u {
  display: inline-block;
  float: left;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  text-decoration: none;
  background: url(../images/icons.png) no-repeat;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

#header.fixed {
  height: 70px;
}

#header.fixed .bg {
  height: 70px;
}

#header .bg {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 0px;
  background: #111;
  -moz-opacity: 0.6;
  opacity: 0.6;
  z-index: -1;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

#header.fixed .logo {
  width: 220px;
  top: 14px;
}

#header.fixed nav.menu ul li {
  margin: 0 0px;
  font-size: 16px;
  padding-top: 18px;
}

#header.fixed .hotline {
  top: 20px;
  right: 55px;
}

#header.fixed .hotline span {
  font-size: 20px;
}

#header.fixed .hotline u {
  top: 20px;
  right: 195px;
}

section,
.fp-tableCell {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.arrowDown {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: 100%;
  text-align: center;
  z-index: 999;

  background-color: #333;
}


.arrowDown i {
  display: inline-block;
  width: 34px;
  height: 20px;
  background: url(../images/arrow-down.png) no-repeat center top;
  -webkit-animation: arrowDown 1s infinite linear;
  cursor: pointer;
}

@-webkit-keyframes arrowDown {
  0% {
    -webkit-transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(0, 6px);
  }
  50% {
    -webkit-transform: translate(0, 0);
  }
  75% {
    -webkit-transform: translate(0, -6px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}

.box_swipe {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.box_swipe ul {
  -webkit-padding-start: 0px;
}

.box_swipe > ol {
  height: 20px;
  position: fixed;
  z-index: 10;
  text-align: center;
  left: 0px;
  right: 0px;
  bottom: 80px;
}

.box_swipe > ol > li {
  display: inline-block;
  margin: 5px 0;
  width: 38px;
  height: 4px;
  background-color: #eee;
  border-radius: 10px;
}

.box_swipe > ol > li.on {
  background-color: #00dfb9;
}

.wp {
  width: 1200px;
  margin: 0px auto;
}

.txtBox {
  padding: 100px 0px 60px;
  width: 100%;
  height: 100vh;
}
.txtBoxs{
  /* padding: 100px 0px 60px; */
  width: 100%;
  height: 100vh;
}

.section.active {
  transition: all 1s;
}

.xhtitle {
  text-align: center;
  padding: 40px 0px 60px;
  width: 100%;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

.xhtitle h2 {
  font-size: 32px;
  color: #333;
  font-weight: normal;
  letter-spacing: 4px;
  padding-bottom: 10px;
}

.xhtitle p {
  font-size: 14px;
  padding-top: 10px;
  text-transform: uppercase;
  color: #999;
}

.xhtitle em {
  width: 60px;
  height: 2px;
  background-color: #999;
  display: inline-block;
}

/*业务范围*/

.scope li {
  width: 380px;
  width: 340px\9;
  float: left;
  padding: 0px 20px 40px;
  margin: 10px;
  padding: 20px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.scope li:nth-child(1) {
  animation: bounceInLeft 1s linear forwards;
  -webkit-animation: bounceInLeft 1s linear forwards;
}

.scope li:nth-child(2) {
  animation: bounceInLeft 1.4s linear forwards;
  -webkit-animation: bounceInLeft 1.4s linear forwards;
}

.scope li:nth-child(3) {
  animation: bounceInLeft 1.8s linear forwards;
  -webkit-animation: bounceInLeft 1.8s linear forwards;
}

.scope li:nth-child(4) {
  animation: bounceInLeft 2.2s linear forwards;
  -webkit-animation: bounceInLeft 2.2s linear forwards;
}

.scope li:nth-child(5) {
  animation: bounceInLeft 2.8s linear forwards;
  -webkit-animation: bounceInLeft 2.48s linear forwards;
}

.scope li:nth-child(6) {
  animation: bounceInLeft 3.2s linear forwards;
  -webkit-animation: bounceInLeft 3.2s linear forwards;
}

.scope li:hover {
  background-color: #f7f7f7;
}

.scope li .pic {
  width: 48px;
  height: 48px;
  float: left;
  margin-right: 20px;
}

.scope li .pic img {
  width: 48px;
  height: 48px;
}

.scope li .txt {
  overflow: hidden;
}

.scope li .txt h3 {
  font-size: 24px;
  color: #333;
  font-weight: normal;
  border-bottom: 1px dashed #e7e7e7;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.scope li .txt h4 {
  font-size: 18px;
  color: #a0a0a0;
  margin-bottom: 10px;
  font-weight: normal;
}

.scope li .txt p {
  font-size: 13px;
  line-height: 28px;
  color: #686868;
  width: 50%;
  display: inline-block;
  float: left;
}

/*产品展示*/

.swiper-container {
  width: 1200px;
  height: 100%;
  overflow: hidden !important;
  padding-bottom: 50px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0px;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #00dfb9 !important;
  opacity: 1;
}

.xh_alzs .swiper-slide {
  float: left;
  width: 240px;
  padding: 0px 30px;
}

.xh_alzs img {
  width: 100%;
}

.about_text {
  color: #323232;
  font-size: 14px;
  overflow-y: scroll;
  max-height: 260px;
  z-index: 9999;
  position: absolute;
  right: 0px;
  width: 640px;
}

.about_text.huang::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

.about_text.huang::-webkit-scrollbar-track,
.about_text.huang::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 5px solid transparent;
}

.about_text.huang::-webkit-scrollbar-track {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2) inset;
}

.about_text.huang::-webkit-scrollbar-thumb {
  min-height: 20px;
  background-clip: content-box;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
}

.about_text.huang::-webkit-scrollbar-corner {
  background: transparent;
}

/*客户*/

.link_dh {
  text-align: center;
  padding-bottom: 30px;
  display: block;
  animation: bounceInUp 2s linear forwards;
  -webkit-animation: bounceInUp 2s linear forwards;
}

.link {
  height: auto;
  overflow: hidden;
  -webkit-animation: bounceIn 2s ease;
  animation: bounceIn 2s ease;
}

.link li {
  float: left;
  margin-bottom: 19px;
}

.link li a {
  display: block;
  margin: 0 5px;
  border: 1px solid #e2e2e2;
  height: 88px;
  width: 161px;
  width: 159px\9;
  position: relative;
  overflow: hidden;
}

.link li a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.link li .img2 {
  opacity: 0;
}

.link li a:hover .img1 {
  opacity: 1;
}

.link li a:hover .img2 {
  opacity: 1;
}

.link li a:hover img {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}

.index_contact {
  width: 480px;
}

.input_from li {
  display: block;
  margin-top: 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.input_from li input,
.input_from li textarea {
  width: 100%;
  padding: 5px 10px;
  background-color: transparent;
  outline: none;
  border: 0px;
  color: #fff;
}

.input_from li input {
  height: 38px;
  line-height: 38px;
}

.txt_contact {
  width: 580px;
  position: absolute;
  left: 0px;
  z-index: 999;
}

.txt_contact a {
  color: #fff;
}

.txt_contact h2 {
  font-size: 18px;
  color: #fff;
  margin-top: 14px;
  border-left: 2px solid #fff;
  padding-left: 15px;
  margin-bottom: 30px;
  font-weight: normal;
}

.txt_contact p {
  margin-bottom: 25px;
  font-size: 22px;
  color: #fff;
  font-weight: normal;
  opacity: 0;
}

.txt_contact p.con_1 {
  animation: bounceInLeft 1.2s linear forwards;
  -webkit-animation: bounceInLeft 1.2s linear forwards;
}

.txt_contact p.con_2 {
  animation: bounceInRight 1.6s linear forwards;
  -webkit-animation: bounceInRight 1.6s linear forwards;
  -webkit-animation-delay: 1s;
}

.txt_contact p.con_3 {
  animation: bounceInUp 1.4s linear forwards;
  -webkit-animation: bounceInUp 1.4s linear forwards;
  -webkit-animation-delay: 1s;
}

.txt_contact p.con_4 {
  animation: bounceInLeft 1s linear forwards;
  -webkit-animation: bounceInLeft 1s linear forwards;
  -webkit-animation-delay: 1s;
}

.txt_contact p.con_5 {
  animation: bounceInLeft 1.6s linear forwards;
  -webkit-animation: bounceInLeft 1.6s linear forwards;
  -webkit-animation-delay: 1.6s;
}

.txt_contact img {
  width: 40px;
  height: 40px;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.txt_contact img,
.txt_contact span {
  display: inline-block;
  vertical-align: middle;
}

.input_btn {
  display: block;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background-color: #333;
  color: #fff;
  font-size: 15px;
  margin-top: 20px;
}

.input_btn:hover {
  color: #fff;
  background-color: #00dfb9;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.foot_bottom {
  text-align: center;
  padding: 10px;
  background-color: rgba(102, 102, 102, 0.1);
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  color: #999;
}

.solutions li {
  float: left;
  width: 20%;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 20px;
}

.solutions li img {
  -webkit-animation: bounceIn 2s ease forwards;
  animation: bounceIn 2s ease forwards;
  -webkit-animation-delay: 1s;
}

.solutions li img {
  width: 55px;
  height: 55px;
}

.solutions li p {
  font-size: 16px;
}

.xhfixed ul {
  opacity: 0;
}

.xhfixed {
  position: fixed;
  right: 50px;
  bottom: 6%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 50px;
  z-index: 9000000;
}

.xhfixed li {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
  position: relative;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.xhfixed li span,
.xhfixed li a {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.xhfixed li.tel {
  overflow: hidden;
}

.xhfixed li.tel {
  background-color: rgba(0, 223, 185, 0.5);
  border-radius: 50%;
}

.xhfixed li.tel span {
  background: url(../images/ico-tel.png) no-repeat center center;
  display: block;
  float: left;
  width: 50px;
  height: 50px;
  -webkit-animation-name: hvr-buzz;
  animation-name: hvr-buzz;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Buzz */

@-webkit-keyframes hvr-buzz {
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
}

@keyframes hvr-buzz {
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
}

.xhfixed li.tel em {
  position: absolute;
  left: 50px;
  top: 0;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  width: 130px;
  white-space: nowrap;
}

.xhfixed li.qq a {
  background: rgba(0, 223, 185, 0.5) url(../images/ico-qq.png) no-repeat center center;
}

.xhfixed li.weixin {
  overflow: hidden;
}

.xhfixed li.weixin span {
  background: rgba(0, 223, 185, 0.5) url(../images/ico-weixin.png) no-repeat center center;
}

.xhfixed li.weixin em {
  position: absolute;
  left: -160px;
  padding-right: 25px;
  top: -70px;
  opacity: 0;
  transform: translateX(25px);
  -webkit-transform: translateX(25px);
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.xhfixed li.weixin em img {
  width: 135px;
  height: 135px;
}

.xhfixed li.weixin:hover {
  overflow: visible;
}

.xhfixed li.weixin:hover em {
  opacity: 1;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
}

.xhfixed li.go-top a {
  background: url(../images/ico-top.png) no-repeat center center;
  background-color: rgba(0, 223, 185, 0.5);
}

.xhfixed li.go-top a:hover {
  background-color: rgba(0, 223, 185, 1);
}

.xhfixed .tel:hover {
  width: 205px;
  background: #00dfb9;
  border-radius: 50px;
  transform: translateX(-155px);
  -webkit-transform: translateX(-155px);
}

.xhfixed li.qq a:hover {
  background-color: rgba(0, 223, 185, 1);
}

.fixed li.weixin:hover span {
  background-color: rgba(0, 223, 185, 1);
}

.xh_qywh {
  font-size: 14px;
}

.xh_qywh strong {
  font-size: 24px;
  padding-bottom: 10px;
  display: block;
}

.xh_qywh strong:after {
  content: "";
  width: 100px;
  height: 2px;
  background-color: #00dfb9;
  display: block;
  margin-top: 20px;
}

.xh_qywh .text {
  font-size: 18px;
  padding-top: 10px;
}

.pic {
  margin: 0px;
  width: 460px;
}

.font {
  color: #666;
  font-size: 15px;
  width: 640px;
}

.wk_about_top img {
  margin-right: 15px;
  margin-bottom: 10px;
}

.about_ul {
  display: block;
  height: auto;
  overflow: hidden;
  margin-bottom: 30px;
  text-align: right;
}

.about_ul li {
  width: 90px;
  height: 46px;
  line-height: 46px;
  margin-left: 1px;
  color: #666;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  text-align: center;
  display: inline-block;
  float: right;
}

.about_ul li.hover {
  background-color: rgba(0, 238, 185, 0.5);
  color: #fff;
}

.col_fourth {
  height: auto;
  overflow: hidden;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding: 20px 0px;
  background-color: rgba(225, 225, 225, 0.28);
}

.col_one_fourth {
  width: 25%;
  display: inline-block;
  float: left;
  text-align: center;
}

.col_one_fourth span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  font-size: 22px;
  -webkit-animation: bounceIn 4s ease;
  animation: bounceIn 4s ease;
}

.col_one_fourth h5 {
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
}

.icon-briefcase img {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.about_bg {
  position: absolute;
  left: 0px;
  top: 0px;
  -webkit-animation: bounceIn 2s ease;
  animation: bounceIn 2s ease;
}

.about_bg img {
  width: 700px;
  opacity: 0.5;
}

.contact_bg {
  position: absolute;
  left: 280px;
  bottom: 0px;
  -webkit-animation: bounceIn 2s ease;
  animation: bounceIn 2s ease;
  z-index: 1;
}

.contact_bg img {
  width: 700px;
  opacity: 0;
  display: none;
}

.text_b1 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 340px;
  text-align: center;
}

.text_b2 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 220px;
  text-align: center;
}

@media screen and (max-width: 1440px) {
  .text_b1 {
    top: 260px;
  }
  .text_b2 {
    top: 120px;
  }
  .txtBox {
    padding: 100px 0px 60px;
  }
  .solutions li img {
    width: 45px;
    height: 45px;
  }
  .xh_alzs .swiper-slide {
    width: 240px !important;
  }
}

.xw_contec .xw_list {
  height: auto;
  overflow: hidden;
  padding: 15px 0px;
  position: relative;
  display: block;
  width: 510px;
  float: right;
  margin-left: 30px;
}

.xw_contec .xw_list .xw_pic {
  border: 1px solid #00dfb9;
  width: 68px;
  float: left;
  margin-right: 10px;
  height: 68px;
}

.xw_contec .xw_list .xw_pic h3 {
  color: #fff;
  font-size: 24px;
  text-align: center;
  background: #00dfb9;
  height: 38px;
  line-height: 38px;
}

.xw_contec .xw_list .xw_pic p {
  color: #999;
  font-size: 12px;
  text-align: center;
  background: #fff;
  height: 28px;
  line-height: 28px;
}

.xw_info {
  overflow: hidden;
  background-color: #fff;
  padding: 10px 15px;
  height: 68px;
}

.xw_info h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 14px;
  color: #333;
}

.xw_info span {
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 12px;
  line-height: 22px;
}
.xh_wdkh {
  display: block;
  position: relative;
}
.xh_wdkh:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.xh_wdkh .swiper-slide {
  padding: 0px;
  width: 300px;
  float: left;
}

.xh_wdkh img {
  width: 100%;
}

.tongzhi {
  height: 98px;
  text-align: left;
}

.scrollNews {
  height: 98px;
  overflow: hidden;
}


