/* header*/
.header {
  width: 100%;
  padding: 0 0;
  height: 80px;
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: all 0.6s ease;
}
.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.header .logo {
  display: inline-block;
  width: 220px;
  height: 50px;
  margin: 15px 0;
  background: url(../images/logo_img1.png) center left no-repeat;
  background-size: 220px 50px;
}
.header .navBox {
  width: calc(100% - 490px);
  margin: 5px 0;
}
.header .navBox .nLi {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-left: 40px;
}
.header .navBox .nLi h3 a {
  display: block;
  line-height: 30px;
  font-size: 16px;
  color: #fff;
  font-weight: normal;
  padding: 20px 0;
  transition: all 0.6s ease;
}
.header .navBox .nLi:first-child {
  margin-left: 0;
}
.header .navBox .nLi:hover h3 a {
  color: #4977ec;
}
.header .navBox .nLi.on h3 a {
  color: #4977ec;
}
.header .navBox .nLi .sub {
  display: none;
  width: 140px;
  position: absolute;
  top: 60px;
  transform: translateX(-50%);
  left: 50%;
  z-index: 3;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}
.header .navBox .nLi .sub > li {
  border-bottom: 1px solid #eee;
}
.header .navBox .nLi .sub > li:last-child {
  border-bottom: none;
}
.header .navBox .nLi .sub > li > a {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  color: #333;
  padding: 12px 8px;
  box-sizing: border-box;
  transition: all 0.6s ease;
}
.header .navBox .nLi .sub > li > a:hover,
.navBox .nLi .sub > li > a.on {
  color: #fff;
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
}
.header .box {
  display: block;
  width: 110px;
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  color: #fff;
  line-height: 40px;
  border-radius: 20px;
  height: 40px;
  margin: 20px 0;
  font-size: 14px;
  text-align: center;
}
.is-fixed {
  background-color: #fff;
}
.is-fixed .navBox .nLi h3 a {
  color: #333;
}
.is-fixed .logo {
  background: url(../images/logo_img.png) center left no-repeat;
}
/* indexBanner */
.indexBanner {
  width: 100%;
  height: 100vh;
}
.indexBanner .swiper-slide a {
  width: 100%;
  height: 100vh;
  display: block;
  background-size: cover !important;
}
.indexBanner .swiper-pagination {
  width: 100%;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 30px !important;
}
.indexBanner .swiper-pagination .swiper-pagination-bullet {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 0;
  background-color: #fff;
  opacity: 0.5;
  margin: 0 10px !important;
  cursor: pointer;
  transition: all 0.6s ease;
}
.indexBanner .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
/* indexTitle */
.indexTitle {
  width: 100%;
  position: relative;
  z-index: 3;
  transition: all 0.8s ease;
}
.indexTitle .icon {
  width: 159px;
  height: 29px;
}
.indexTitle .icon1 {
  background: url(../images/icon_title01.png) center no-repeat;
  background-size: 159px 30px;
}
.indexTitle .icon2 {
  background: url(../images/icon_title02.png) center no-repeat;
  background-size: 159px 30px;
}
.indexTitle .icon3 {
  background: url(../images/icon_title03.png) center no-repeat;
  background-size: 159px 30px;
}
.indexTitle .icon4 {
  transform: rotateY(180deg);
  background: url(../images/icon_title03.png) center no-repeat;
  background-size: 159px 30px;
}
.indexTitle p {
  display: inline-block;
  font-weight: bold;
  font-size: 48px;
  color: #333;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: #01a8a6;
  opacity: 0.05;
}
.indexTitle h2 {
  font-size: 44px;
  line-height: 48px;
  margin: 0 25px;
  color: #5fb4c6;
}
.indexTitle h2 span {
  background-image: -webkit-linear-gradient(left, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.indexTitle h6 {
  font-size: 24px;
  line-height: 28px;
  color: #5fb4c6;
  text-align: center;
  margin-top: 18px;
}
.indexTitle h6 span {
  background-image: -webkit-linear-gradient(left, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* indexAbility */
.indexAbility {
  width: 100%;
  padding: 130px 0 100px;
  position: relative;
  background-color: #eaf4fe;
  overflow: hidden;
}
.indexAbility .img {
  width: 100%;
  margin-top: 50px;
  box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  -webkit-box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  -moz-box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
}
.indexAbility .img img {
  width: 100%;
  display: block;
}
/* indexWork */
.indexWork {
  width: 100%;
  background: url(../images/bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 115px 0;
  position: relative;
  overflow: hidden;
}
.indexWork .indexTitle h2 {
  color: #fff;
}
.indexWork .indexTitle h2 span {
  background-image: -webkit-linear-gradient(left, #fff 0%, #fff 60%, #fff 100%);
}
.indexWork .cont {
  width: 68%;
  margin-top: 88px;
}
.indexWork .cont .tit {
  font-size: 30px;
  font-weight: bold;
  line-height: 48px;
  color: #ffffff;
  margin-bottom: 50px;
}
.indexWork .cont .txt {
  font-size: 18px;
  line-height: 36px;
  color: #ffffff;
  align-items: center;
  margin-bottom: 40px;
}
.indexWork .cont .txt span {
  font-weight: bold;
}
.indexWork .cont .txt .img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  margin-right: 16px;
}
.indexWork .cont .txt .img img {
  width: 100%;
  display: block;
}
.indexWork .cont .txt .p {
  width: calc(100% - 76px);
}
.indexWork .cont ul {
  width: 100%;
  margin-top: 70px;
}
.indexWork .cont ul li {
  height: 64px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  border: solid 1px rgba(255, 255, 255, 0.4);
  box-sizing: border-box;
  font-size: 18px;
  font-weight: bold;
  line-height: 64px;
  color: #ffffff;
  padding: 0 25px;
  margin-right: 20px;
}
.indexWork .cont ul li:nth-child(3n) {
  margin-right: 0;
}
/* indexUnit */
.indexUnit {
  width: 100%;
  background-color: #eaf4fe;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.indexUnit .contBox {
  width: 100%;
  background: #ffffff url(../images/ais_bg.jpg) center center no-repeat;
  background-size: cover;
  border-radius: 8px;
  margin-top: 50px;
  overflow: hidden;
  box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  -webkit-box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  -moz-box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  padding: 0 20px 40px;
  box-sizing: border-box;
}
.indexUnit .contBox .box {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px 0;
}
.indexUnit .contBox .box:first-child {
  border-top: none;
}
.indexUnit .contBox .box .tit {
  width: 130px;
  background-color: #edf3fc;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  color: #518cdf;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 15px;
  box-sizing: border-box;
  text-align: center;
}
.indexUnit .contBox .box .tit::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 7px solid #edf3fc;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  position: absolute;
  top: 26px;
  right: -6px;
}
.indexUnit .contBox .box ul {
  width: calc(100% - 130px);
}
.indexUnit .contBox .box ul li {
  width: 190px;
  margin-left: 16px;
  margin-top: 16px;
  box-sizing: border-box;
}
.indexUnit .contBox .box ul li a {
  width: 100%;
  height: 70px;
  display: block;
  border: solid 1px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  background-color: #ffffff;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.6s ease;
}
.indexUnit .contBox .box ul li img {
  width: 100%;
  display: block;
}
.indexUnit .contBox .box ul li:nth-child(-n+5) {
  margin-top: 0px;
}
.indexUnit .contBox .box ul li .t {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0;
}
.indexUnit .contBox .box ul li:hover a {
  border: none;
  transform: rotateY(180deg);
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
}
.indexUnit .contBox .box ul li:hover img {
  opacity: 0;
}
.indexUnit .contBox .box ul li:hover .t {
  opacity: 1;
  transform: translateY(-50%) rotateY(180deg);
}
.indexUnit .contBox .txt {
  font-size: 24px;
  line-height: 28px;
  color: #518cdf;
  text-align: center;
  margin-top: 10px;
}
/* indexFooter */
.indexFooter {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #191d32;
}
.indexFooter .box {
  width: 100%;
  padding: 60px 0;
}
.indexFooter .box dl {
  max-width: 720px;
}
.indexFooter .box dl dt {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
}
.indexFooter .box dl dd {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.indexFooter .box dl dd a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 50px 10px 0;
}
.indexFooter .box dl dd a:hover {
  color: #098bf8;
}
.indexFooter .copy {
  padding: 15px 0;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.indexFooter .copy p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 20px;
}
.indexFooter .copy p a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.2);
  margin-right: 10px;
}
.indexFooter .copy p a:hover {
  color: #098bf8;
}
.indexFooter .copy p img {
  display: inline-block;
  width: 14px;
  vertical-align: middle;
  margin-right: 5px;
}
/* pageBanner */
.pageBanner {
  width: 100%;
  position: relative;
}
.pageBanner img {
  width: 100%;
  display: block;
}
.pageBanner h2 {
  font-size: 36px;
  color: #fff;
  position: absolute;
  bottom: 40%;
  left: 0;
  width: 100%;
  text-align: center;
}
/* pageTitle */
.pageTitle {
  width: 100%;
  text-align: center;
}
.pageTitle h2 {
  font-size: 36px;
  line-height: 40px;
  color: #5fb4c6;
}
.pageTitle h2 span {
  background-image: -webkit-linear-gradient(left, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* pageReference */
.pageReference {
  width: 100%;
  padding: 70px 0;
  position: relative;
  background-color: #f5faff;
  overflow: hidden;
}
.pageReference .c1200 {
  width: 1260px;
}
.pageReference .img {
  width: 100%;
  margin-top: 20px;
}
.pageReference .img img {
  width: 100%;
  display: block;
}
/* pageAbout */
.pageAbout {
  width: 100%;
  padding: 70px 0 100px;
  position: relative;
  background-color: #f5faff;
  overflow: hidden;
}
.pageAbout .box {
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
.pageAbout .box .img {
  width: 600px;
}
.pageAbout .box .img img {
  width: 100%;
  display: block;
}
.pageAbout .box .text {
  width: 600px;
  box-sizing: border-box;
  padding: 30px;
  font-size: 16px;
  color: #333;
  line-height: 40px;
}
/* pageWork */
.pageWork {
  width: 100%;
  background-color: #f5faff;
  padding: 110px 0 100px;
  overflow: hidden;
}
.pageWork .title {
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  line-height: 36px;
  font-weight: bold;
  display: inline-block;
  margin-left: 50%;
  transform: translateX(-50%);
}
.pageWork .txt {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  -webkit-box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  -moz-box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  border-radius: 8px;
  padding: 50px 40px;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 40px;
  color: #37393b;
  margin-top: 50px;
}
/* pageIntroduce */
.pageIntroduce {
  width: 100%;
  background: url(../images/workBg_01.jpg) center bottom no-repeat;
  background-size: cover;
  padding: 165px 0;
  overflow: hidden;
}
.pageIntroduce .cont {
  float: left;
  width: 540px;
}
.pageIntroduce .cont .title {
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  line-height: 36px;
  font-weight: bold;
  display: inline-block;
}
.pageIntroduce .cont .txt {
  font-size: 18px;
  line-height: 40px;
  color: #fff;
  margin-top: 50px;
}
.pageIntroduce .img {
  float: right;
  margin-top: 40px;
  width: 600px;
  box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  -webkit-box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  -moz-box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  border-radius: 8px;
}
.pageIntroduce .img img {
  width: 100%;
  display: block;
}
/* pageContact */
.pageContact {
  width: 100%;
  background-color: #f5faff;
  padding: 120px 0 70px;
  overflow: hidden;
}
.pageContact .title {
  position: relative;
  text-align: center;
}
.pageContact .title .t1 {
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  line-height: 36px;
  font-weight: bold;
  display: inline-block;
}
.pageContact .title .t2 {
  font-size: 72px;
  font-weight: bold;
  line-height: 50px;
  color: #333333;
  opacity: 0.04;
  margin-top: -15px;
}
.pageContact .txt {
  font-size: 18px;
  line-height: 40px;
  color: #333333;
  margin-top: 30px;
  text-align: center;
}
.pageContact .email {
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
  color: #66d3b9;
  text-align: center;
  margin-top: 12px;
}
.pageContact .email i {
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  display: inline-block;
  margin: 0 15px 0 0;
  transform: translateY(3px);
}
/* pageCompany */
.pageCompany {
  width: 100%;
  border-top: 1px solid #eee;
  background: #f5faff url(../images/partnerBg.png) center bottom 12px no-repeat;
  background-size: auto;
  padding: 84px 0 100px;
  overflow: hidden;
}
.pageCompany .title {
  position: relative;
  text-align: center;
}
.pageCompany .title .t1 {
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  line-height: 36px;
  font-weight: bold;
  display: inline-block;
}
.pageCompany .title .t2 {
  font-size: 16px;
  line-height: 36px;
  color: #999999;
  margin-top: 10px;
}
.pageCompany .list {
  width: 100%;
  margin-top: 40px;
}
.pageCompany .list li {
  float: left;
  width: 230px;
  box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  -webkit-box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  -moz-box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  border-radius: 8px;
  overflow: hidden;
  margin-right: 12.5px;
  margin-bottom: 12.5px;
  position: relative;
}
.pageCompany .list li:nth-child(5) {
  margin-right: 0;
}
.pageCompany .list li:nth-child(6) {
  margin-left: 120px;
}
.pageCompany .list li:nth-child(10) {
  margin-left: 240px;
}
.pageCompany .list li a {
  border-radius: 8px;
  background-color: #ffffff;
  display: block;
  transition: all 0.6s ease;
}
.pageCompany .list li img {
  width: 100%;
  display: block;
}
.pageCompany .list li .tit {
  color: #fff;
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.pageCompany .list li:hover a {
  transform: rotateY(180deg);
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
}
.pageCompany .list li:hover img {
  opacity: 0;
}
.pageCompany .list li:hover .tit {
  opacity: 1;
  transform: translate(-50%, -50%) rotateY(180deg);
}
/* pageCooperation */
.pageCooperation {
  width: 100%;
  background-color: #f5faff;
  padding: 110px 0 80px;
  overflow: hidden;
}
.pageCooperation .title {
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  line-height: 36px;
  font-weight: bold;
  display: inline-block;
  margin-left: 50%;
  transform: translateX(-50%);
}
.pageCooperation .text {
  width: 100%;
  height: 320px;
  background: url(../images/cooperationBg_01.jpg) right center no-repeat;
  background-size: cover;
  box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  -webkit-box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  -moz-box-shadow: 0px 12px 40px 0px rgba(21, 26, 71, 0.06);
  border-radius: 8px;
  padding: 90px 50px 0;
  box-sizing: border-box;
  margin-top: 50px;
}
.pageCooperation .text .t {
  width: 590px;
  font-size: 18px;
  line-height: 32px;
  color: #37393b;
  background: url(../images/icon_sanjiao.png) left top 7px no-repeat;
  background-size: 13px 19px;
  padding-left: 30px;
  margin-bottom: 40px;
}
/* pageService */
.pageService {
  width: 100%;
  background: url(../images/cooperationBg_02.jpg) center bottom no-repeat;
  background-size: cover;
  padding: 120px 0 154px;
  overflow: hidden;
}
.pageService .box {
  width: 590px;
  height: 400px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}
.pageService .box .tit {
  width: 100%;
  height: 100px;
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  font-size: 30px;
  font-weight: bold;
  line-height: 100px;
  color: #ffffff;
  text-align: center;
}
.pageService .box .txt {
  font-size: 16px;
  line-height: 30px;
  color: #333333;
  padding: 0 28px;
  margin-top: 34px;
}
.pageService .box .email {
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  padding: 0 30px;
  margin-top: 45px;
}
.pageService .box .email span {
  color: #66d3b9;
  font-weight: bold;
}
.pageService .box .email i {
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  display: inline-block;
  font-weight: bold;
  margin: 0 10px;
  transform: translateY(1px);
}
.pageService .box .t1 {
  text-align: center;
}
.pageService .box .t1 i {
  margin: 0 10px 0 0;
}
.pageService .box .btn {
  width: 530px;
  height: 48px;
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  border-radius: 8px;
  font-size: 16px;
  line-height: 48px;
  color: #ffffff;
  text-align: center;
  display: block;
  margin: 30px auto 0;
}
/* pageCrumbs */
.pageCrumbs {
  width: 100%;
  padding: 15px 0 0;
  position: relative;
  overflow: hidden;
}
.pageCrumbs .box {
  position: relative;
  box-sizing: border-box;
  padding-left: 20px;
  line-height: 20px;
}
.pageCrumbs .box .iconfont {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 20px;
  font-size: 16px;
  color: #999;
}
.pageCrumbs .box a {
  font-size: 14px;
  color: #999;
}
.pageCrumbs .box a:hover,
.pageCrumbs .box a:last-child {
  color: #4977ec;
}
.pageCrumbs .box span {
  font-size: 14px;
  color: #999;
  margin: 0 5px;
}
/* pageNews */
.pageNews {
  width: 100%;
  padding: 70px 0 110px;
  position: relative;
  overflow: hidden;
}
.pageNews .list {
  width: 100%;
  display: table;
  font-size: 0;
  text-align: left;
  margin-bottom: 50px;
}
.pageNews .list li {
  display: inline-block;
  visibility: top;
  width: 380px;
  margin: 0 30px 30px 0;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  position: relative;
}
.pageNews .list li:nth-child(3n) {
  margin: 0 0 30px 0;
}
.pageNews .list li a .img {
  width: 100%;
  overflow: hidden;
}
.pageNews .list li a .img img {
  width: 100%;
  display: block;
  transition: all 0.6s ease;
}
.pageNews .list li a .tit {
  font-size: 20px;
  line-height: 30px;
  color: #333;
  margin: 24px 0 0;
  padding: 0 20px;
  box-sizing: border-box;
  transition: all 0.6s ease;
}
.pageNews .list li a .txt {
  font-size: 16px;
  color: #999;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 8px 0 0;
  transition: all 0.6s ease;
  line-height: 30px;
  height: 90px;
}
.pageNews .list li a .time {
  padding: 0 20px 38px;
  box-sizing: border-box;
  display: inline-block;
  font-size: 16px;
  line-height: 18px;
  margin-top: 14px;
  font-weight: bold;
  background-image: -webkit-linear-gradient(left, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pageNews .list li:hover .tit {
  color: #4977ec;
}
.pageNews .list li:hover img {
  transform: scale(1.1);
}
/* pageNewsD */
.pageNewsD {
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.pageNewsD .tit {
  font-size: 26px;
  color: #333;
  text-align: center;
}
.pageNewsD .info {
  width: 100%;
  padding: 20px 0;
  border-bottom: solid 1px #eee;
  text-align: center;
}
.pageNewsD .info span {
  font-size: 14px;
  color: #999;
  display: inline-block;
  margin: 0 15px;
}
.pageNewsD .text {
  font-size: 16px;
  color: #333;
  line-height: 42px;
  padding: 40px 0;
}
.pageNewsD .text img {
  max-width: 100%;
  height: auto !important;
}
.Plink {
  width: 100%;
  padding-top: 40px;
  border-top: solid 1px #eee;
}
.Plink a {
  display: inline-block;
  max-width: 48%;
  font-size: 14px;
  color: #333;
}
.Plink a:hover {
  color: #4977ec;
  text-decoration: underline;
}
/* pageNomore */
.pageNomore {
  width: 100%;
  overflow: hidden;
  padding: 260px 0;
  text-align: center;
}
.pageNomore h2 {
  display: inline-block;
  font-size: 60px;
  background-image: -webkit-linear-gradient(left, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* pageLaboratory */
.pageLaboratory {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-width: 1200px;
}
.pageLaboratory img {
  width: 100%;
  display: block;
}
.pagePlan {
  width: 100%;
  background-color: #f5faff;
  padding-top: 120px;
  overflow: hidden;
}
.pagePlan .title {
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  line-height: 36px;
  font-weight: bold;
  display: inline-block;
  margin-left: 50%;
  transform: translateX(-50%);
}
.pagePlan .caseBox {
  width: 100%;
  margin-top: 50px;
}
.pagePlan .caseBox .parHd {
  width: 100%;
}
.pagePlan .caseBox .parHd ul {
  width: 100%;
  display: table;
  font-size: 0;
  text-align: center;
}
.pagePlan .caseBox .parHd ul li {
  display: inline-block;
  vertical-align: top;
  width: 240px;
  height: 48px;
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  border-radius: 8px;
  font-size: 18px;
  line-height: 48px;
  color: #ffffff;
  text-align: center;
  margin: 0 15px;
  position: relative;
}
.pagePlan .caseBox .parHd ul li::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 8px solid #5fb4c6;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.6s ease;
}
.pagePlan .caseBox .parHd ul li.on::after {
  opacity: 1;
}
.pagePlan .caseBox .parBd {
  width: 100% !important;
  height: 334px !important;
  margin-top: 40px;
}
.pagePlan .caseBox .parBd .slideBox {
  position: relative;
}
.pagePlan .caseBox .parBd .slideBox .icon-xiazai6 {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 40px;
  height: 40px;
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  color: #fff;
  font-size: 16px;
}
.pagePlan .caseBox .parBd .slideBox .sPrev {
  left: -40px;
  transform: translate(-50%);
}
.pagePlan .caseBox .parBd .slideBox .sNext {
  right: -40px;
  transform: rotate(180deg) translate(-50%);
}
.pagePlan .caseBox .parBd ul li {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
}
.pagePlan .caseBox .parBd ul li .img {
  float: left;
  width: 500px;
  background-color: #000000;
  border-radius: 8px;
  overflow: hidden;
}
.pagePlan .caseBox .parBd ul li .img img {
  width: 100%;
  display: block;
}
.pagePlan .caseBox .parBd ul li .cont {
  float: right;
  width: 590px;
}
.pagePlan .caseBox .parBd ul li .cont .tit {
  font-size: 20px;
  line-height: 30px;
  color: #333333;
  margin-top: 10px;
}
.pagePlan .caseBox .parBd ul li .cont .txt {
  font-size: 16px;
  line-height: 30px;
  color: #999999;
  margin-top: 16px;
}
.pagePlan .caseBox .parBd ul li .cont .more {
  display: block;
  width: 180px;
  height: 48px;
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  border-radius: 8px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  margin-top: 32px;
}
.pageCase {
  width: 100%;
  background-color: #f5faff;
  padding: 100px 0 120px;
  overflow: hidden;
}
.pageCase .title {
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  line-height: 36px;
  font-weight: bold;
  display: inline-block;
  margin-left: 50%;
  transform: translateX(-50%);
}
.pageCase .sortBox {
  width: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  border: solid 1px rgba(0, 0, 0, 0.08);
  margin-top: 50px;
  overflow: hidden;
}
.pageCase .sortBox .sort {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}
.pageCase .sortBox .sort:last-child {
  border-bottom: none;
}
.pageCase .sortBox .sort .p {
  width: 150px;
  height: 70px;
  text-align: right;
  background-color: rgba(78, 132, 227, 0.11);
  float: left;
  padding-right: 15px;
  box-sizing: border-box;
}
.pageCase .sortBox .sort .p p {
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  line-height: 70px;
  display: inline-block;
}
.pageCase .sortBox .sort ul {
  width: 1048px;
  float: left;
  padding-left: 18px;
  box-sizing: border-box;
}
.pageCase .sortBox .sort ul li {
  float: left;
  margin-top: 19px;
  margin-right: 18px;
}
.pageCase .sortBox .sort ul li a {
  display: block;
  font-size: 16px;
  height: 32px;
  line-height: 32px;
  color: #333333;
  border-radius: 4px;
  padding: 0 12px;
}
.pageCase .sortBox .sort ul li.on a,
.pageCase .sortBox .sort ul li:hover a {
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  color: #fff;
}
.pageCase .list {
  width: 100%;
  display: table;
  font-size: 0;
  text-align: left;
  margin-top: 35px;
  margin-bottom: 60px;
}
.pageCase .list li {
  display: inline-block;
  vertical-align: top;
  width: 590px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 20px 20px 0;
}
.pageCase .list li:nth-child(2n) {
  margin: 0 0 20px 0;
}
.pageCase .list li .tit {
  padding: 20px 30px;
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
}
.pageCase .list li .tit .t1 {
  width: 290px;
  float: left;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin-top: 10px;
}
.pageCase .list li .tit .img {
  float: right;
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}
.pageCase .list li .tit .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.pageCase .list li .txt {
  font-size: 16px;
  line-height: 30px;
  color: #999999;
  padding: 0 30px;
  margin-top: 23px;
}
.pageCase .list li .more {
  display: block;
  width: 530px;
  height: 48px;
  border-radius: 8px;
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  position: relative;
  margin: 33px auto 40px;
}
.pageCase .list li .more span {
  background-image: linear-gradient(90deg, #4977ec 0%, #5fb4c6 60%, #69e7b3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  line-height: 48px;
  display: inline-block;
  margin-left: 50%;
  transform: translateX(-50%);
  position: relative;
  z-index: 2;
  transition: all 0.6s ease;
}
.pageCase .list li .more::after {
  content: '';
  width: 528px;
  height: 46px;
  background-color: #fff;
  border-radius: 8px;
  position: absolute;
  top: 1px;
  left: 1px;
  transition: all 0.6s ease;
}
.pageCase .list li .more:hover::after {
  background-color: rgba(0, 0, 0, 0);
}
.pageCase .list li .more:hover span {
  background-image: linear-gradient(90deg, #fff 0%, #fff 60%, #fff 100%);
}
