/* ----- css 三角形 ----- */
/* ----- 显示行数 ----- */
/* ----- 文字溢出显示省略号 ----- */
.textover {
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
/* ----- 元素居中 ----- */
.textcenter {
  -webkit-display: flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  -moz-display: flex;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.elcenter {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* ----- 过度时间 ----- */
.block {
  display: block;
}
.none {
  display: none;
}
/* ----- 怪异盒模型 ----- */
.border_box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
/* ----- 弹性盒模型 ----- */
.dpflex {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
}
/* ----- 清除浮动 ----- */
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.clearfix:after {
  clear: both;
}
.user-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.list {
  *zoom: 1;
}
.list:before,
.list:after {
  display: table;
  line-height: 0;
  content: "";
}
.list:after {
  clear: both;
}
.list li {
  float: left;
}
.subnav_list li:nth-child(1){
  margin-left: 31%;
}
/* ----- 图片移入动画 ----- */
.img {
  overflow: hidden;
}
.img img {
  width: 100%;
  max-width: none;
}
.img_hover .img img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.img_hover:hover .img img {
  transform: scale(1.1);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.marginright:nth-last-child(1) {
  margin-right: 0;
}
/* ----- 分页 ----- */
#page {
  text-align: center;
  padding: 40px 0;
}
#page .active {
  background-color: #37a6ed;
  color: #fff;
}
#page a {
  display: inline-block;
  background-color: #f5f5f5;
  border-radius: 5px;
  line-height: 36px;
  min-width: 56px;
  height: 36px;
  margin: 0 3px;
}
#page a:hover {
  color: #fff;
  background-color: #37a6ed;
}
/* ----- 标题 ----- */
.main_tit {
  text-align: center;
  padding: 0 0 50px 0;
}
.main_tit h2 {
  font-size: 36px;
  line-height: 36px;
}
.main_tit p {
  padding: 0 20px;
  font-size: 16px;
  font-family: "arial";
  color: #333333;
  padding-top: 10px;
}
/* ----- 浮窗 ----- */
.side_callem {
  position: fixed;
  width: 78px;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
  z-index: 900;
}
.side_callem ul li {
  text-align: center;
  position: relative;
}
.side_callem ul li .show_con {
  background: #fff;
  border: solid 1px #ddd;
  padding: 20px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  transform: translatex(100%);
  opacity: 0;
  white-space: nowrap;
}
.side_callem ul li .show_con img {
  max-width: none;
}
.side_callem ul li .show_con strong {
  color: #37a6ed;
  font-size: 20px;
}
.side_callem ul li:hover a {
  background: #37a6ed;
}
.side_callem ul li:hover a i {
  color: #fff;
}
.side_callem ul li:hover a span {
  color: #fff;
}
.side_callem ul li:hover .show_con {
  transform: translatex(-100%);
  opacity: 1;
}
.side_callem ul li a {
  display: block;
  width: 78px;
  height: 78px;
  background: #fff;
  position: relative;
  border: 1px solid #e0e0e0;
  margin-top: -1px;
  z-index: 99;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.side_callem ul li i {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 13px 0 5px;
  color: #333;
}
.side_callem ul li span {
  color: #666;
}
/*------line -------------*/
.line::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #37a6ed;
  margin: 30px 0;
}
.w1200 {
  width: 1200px;
  margin: 0 auto;
  *zoom: 1;
}
.w1200:before,
.w1200:after {
  display: table;
  line-height: 0;
  content: "";
}
.w1200:after {
  clear: both;
}
.padding {
  padding-top: 80px;
  padding-bottom: 80px;
}
/* ----- banner ----- */
.banner img {
  width: 100%;
}
.banner .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: solid 1px #ffffff;
}
.banner .swiper-pagination-bullet-active {
  background-color: #ffffff;
}
/* ----- header ----- */
header {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 99999;
}
header .box {
  background: #fff;
  height: 90px;
  overflow: hidden;
}
header .logo {
  padding: 16px 0;
  float: left;
}
header .logo .img {
  float: left;
}
header .logo .text {
  float: left;
  margin-left: 20px;
}
header .logo .text h1 {
  font-size: 16px;
  line-height: 36px;
  color: #37a6ed;
}
header .logo .text p {
  font-size: 14px;
  line-height: 10px;
  color: #37a6ed;
}
header nav {
  float: right;
}
header nav .list>.active {
  background: #37a6ed;
}
header nav .list>.active a {
  color: #fff;
}
header nav .list>li {
  line-height: 90px;
  padding: 0 25px;
  margin-left: 10px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
header nav .list>li:hover {
  background: #37a6ed;
}
header nav .list>li:hover>a {
  color: #fff;
}
header nav .list>li>a {
  display: block;
  font-size: 16px;
  color: #333;
}
footer {
  padding-top: 70px;
  background-color: #1d1d1e;
}
footer .foot_list {
  float: left;
  padding-bottom: 80px;
}
footer .foot_list .box {
  width: 208px;
  float: left;
}
footer .foot_list .box h4 {
  font-size: 16px;
  color: #ffffff;
  padding-bottom: 10px;
}
footer .foot_list .box li {
  line-height: 35px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
footer .foot_list .box li a{
  color: #666;
}
footer .foot_list .box li:hover {
  text-indent: 10px;
}
footer .foot_positi {
  float: right;
}
footer .foot_positi i {
  float: left;
  margin-right: 10px;
}
footer .foot_positi p {
  float: left;
  color: #ffffff;
  opacity: 0.8;
  line-height: 27px;
  width: 300px;
}
footer .foot_positi .tr {
  *zoom: 1;
  padding-bottom: 15px;
}
footer .foot_positi .tr:before,
footer .foot_positi .tr:after {
  display: table;
  line-height: 0;
  content: "";
}
footer .foot_positi .tr:after {
  clear: both;
}
footer .link {
  clear: both;
  *zoom: 1;
  padding: 20px 0;
}
footer .link:before,
footer .link:after {
  display: table;
  line-height: 0;
  content: "";
}
footer .link:after {
  clear: both;
}
footer .link h2 {
  font-size: 24px;
  color: #37a6ed;
}
footer .link li {
  margin-left: 120px;
}
footer .copyright {
  clear: both;
  border-top: solid 1px #313131;
  line-height: 60px;
}
footer .copyright a {
  color: #ffffff;
  opacity: 0.2;
}
.main_idx .idx_one {
  padding-bottom: 130px;
}
.main_idx .idx_one .active {
  top: 0;
}
.main_idx .idx_one .active .text {
  background-color: rgba(55, 167, 237, 0.904);
}
.main_idx .idx_one .active .text h3 {
  margin-top: 125px;
}
.main_idx .idx_one .active .text .act {
  opacity: 1;
}
.main_idx .idx_one .active .text i {
  opacity: 1;
  transform: translatex(0);
}
.main_idx .idx_one li {
  width: 380px;
  height: 479px;
  text-align: center;
  top: 50px;
  float: left;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  margin-right: 30px;
  position: relative;
}
.main_idx .idx_one li:nth-last-child(1) {
  margin-right: 0;
}
.main_idx .idx_one li .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.514);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.main_idx .idx_one li .text h3 {
  font-size: 30px;
  color: #ffffff;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  margin-top: 220px;
}
.main_idx .idx_one li .text .dts {
  font-size: 24px;
  color: #ffffff;
  padding: 15px 0 35px;
}
.main_idx .idx_one li .text .act {
  padding: 0 36px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
}
.main_idx .idx_one li .text .act p {
  color: #ffffff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.main_idx .idx_one li .text i {
  display: inline-block;
  margin-top: 100px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  width: 44px;
  height: 9px;
  transform: translatex(-80px);
  background: url(/uploads/image/phdimages/go.png) center no-repeat;
}
.main_idx .idx_two {
  position: relative;
}
.main_idx .idx_two .main_tit {
  position: absolute;
  z-index: 9;
  width: 100%;
}
.main_idx .idx_two .main_tit h2 {
  color: #fff;
  padding-top: 80px;
}
.main_idx .idx_two .gallery-top .swiper-slide {
  width: 100%;
  height: 700px;
  text-align: center;
}
.main_idx .idx_two .gallery-top .swiper-slide h6 {
  font-size: 30px;
  color: #fefefe;
  padding-bottom: 40px;
  padding-top: 200px;
}
.main_idx .idx_two .gallery-top .swiper-slide .act {
  margin: 0 auto;
  width: 752px;
}
.main_idx .idx_two .gallery-top .swiper-slide .act p {
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
  opacity: 0.76;
}
.main_idx .idx_two .gallery-top .go_show {
  display: inline-block;
  border-radius: 50%;
  margin-top: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(/uploads/image/phdimages/go-show.png);
  width: 50px;
  height: 50px;
  background-color: #37a6ed;
  position: relative;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.main_idx .idx_two .gallery-top .go_show:hover {
  transform: scale(1.1);
}
.main_idx .idx_two .gallery-thumbs {
  position: absolute;
  width: 1200px;
  bottom: -45px;
  height: 161px;
  left: 50%;
  transform: translatex(-50%);
  background-color: #ffffff;
  box-shadow: 0px 6px 9px 0px rgba(140, 140, 140, 0.35);
}
.main_idx .idx_two .gallery-thumbs .swiper-button-prev,
.main_idx .idx_two .gallery-thumbs .swiper-button-next {
  background-size: 16px;
}
.main_idx .idx_two .gallery-thumbs .swiper-slide {
  text-align: center;
  cursor: pointer;
}
.main_idx .idx_two .gallery-thumbs .swiper-slide::after {
  float: right;
  content: "";
  display: block;
  margin-top: -90px;
  width: 1px;
  height: 83px;
  background-color: #dddddd;
}
.main_idx .idx_two .gallery-thumbs .swiper-slide .icon_tab {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 45px;
}
.main_idx .idx_two .gallery-thumbs .swiper-slide .icon_tab .show {
  display: block;
}
.main_idx .idx_two .gallery-thumbs .swiper-slide .icon_tab .hover {
  display: none;
}
.main_idx .idx_two .gallery-thumbs .swiper-slide p {
  padding-top: 15px;
  line-height: 30px;
  font-size: 18px;
}
.main_idx .idx_two .gallery-thumbs .swiper-slide-thumb-active {
  background-color: #37a6ed;
}
.main_idx .idx_two .gallery-thumbs .swiper-slide-thumb-active::after {
  display: none;
}
.main_idx .idx_two .gallery-thumbs .swiper-slide-thumb-active .icon_tab .show {
  display: none;
}
.main_idx .idx_two .gallery-thumbs .swiper-slide-thumb-active .icon_tab .hover {
  display: block;
}
.main_idx .idx_two .gallery-thumbs .swiper-slide-thumb-active p {
  color: #fff;
}
.main_idx .idx_three {
  background-color: #f5f5f5;
  padding: 130px 0 50px 0;
}
.main_idx .idx_three .list {
  padding: 0 70px;
}
.main_idx .idx_three li {
  width: 512px;
  height: 166px;
  border: solid 1px #dddddd;
  margin-bottom: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 45px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.main_idx .idx_three li:hover {
  background-color: #ffffff;
  border: solid 1px #ffffff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
}
.main_idx .idx_three li i {
  float: left;
  width: 80px;
  height: 80px;
  border: solid 1px #dddddd;
  border-radius: 50%;
  margin-top: 40px;
  background-position: center;
  background-repeat: no-repeat;
}
.main_idx .idx_three li .text {
  margin-top: 40px;
  float: left;
  width: 308px;
  margin-left: 20px;
}
.main_idx .idx_three li .text h5 {
  font-size: 18px;
  padding-bottom: 5px;
  color: #0a80c4;
}
.main_idx .idx_three li .text p {
  line-height: 20px;
}
.main_idx .idx_three li:nth-child(even) {
  float: right;
}
.main_idx .idx_four {
  position: relative;
}
.main_idx .idx_four .case_tab {
  max-width: 1920px;
  margin: 0 auto;
}
.main_idx .idx_four .case_tab .swiper-slide {
  height: 700px;
  background-size: cover;
  background-position: center;
}
.main_idx .idx_four .warp_ctrl {
  position: absolute;
  top: 120px;
  width: 100%;
  z-index: 99;
}
.main_idx .idx_four .warp_ctrl .box {
  padding-left: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  float: right;
  width: 576px;
  height: 402px;
  background-color: #ffffff;
}
.main_idx .idx_four .warp_ctrl .box h6 {
  font-size: 24px;
  color: #333333;
  padding: 85px 0 25px;
}
.main_idx .idx_four .warp_ctrl .box .case_tab_ctrl {
  width: 100%;
  margin: 0;
}
.main_idx .idx_four .warp_ctrl .box .case_tab_ctrl .swiper-slide:hover i {
  margin-left: 10px;
}
.main_idx .idx_four .warp_ctrl .box .case_tab_ctrl h3 {
  font-size: 30px;
  color: #37a6ed;
}
.main_idx .idx_four .warp_ctrl .box .case_tab_ctrl .act {
  width: 399px;
  padding: 40px 0 60px;
}
.main_idx .idx_four .warp_ctrl .box .case_tab_ctrl i {
  display: block;
  width: 44px;
  font-size: 12px;
  color: #37a6ed;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.main_idx .idx_four .warp_ctrl .box .case_tab_ctrl .ctrl_box {
  position: absolute;
  right: 10px;
  bottom: 11px;
  width: 80px;
}
.main_idx .idx_four .warp_ctrl .box .case_tab_ctrl .swiper-pagination {
  right: 45px;
  top: 0;
}
.main_idx .idx_four .warp_ctrl .box .case_tab_ctrl .swiper-pagination .lines {
  display: block;
  margin: 5px auto;
  width: 2px;
  height: 30px;
  background-color: #dddddd;
}
.main_idx .idx_four .warp_ctrl .box .case_tab_ctrl .swiper-pagination ul {
  height: 22px;
  overflow: hidden;
}
.main_idx .idx_four .warp_ctrl .box .case_tab_ctrl .swiper-pagination ul li {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "pingfang-sc-regular";
  font-size: 17px;
  line-height: 24px;
  color: #999999;
}
.main_idx .idx_four .warp_ctrl .box .case_tab_ctrl .swiper-pagination .total {
  font-family: "pingfang-sc-regular";
  font-size: 16px;
  line-height: 24px;
  color: #999999;
}
.main_idx .idx_four .warp_ctrl .box .case_tab_ctrl .swiper-button-next,
.main_idx .idx_four .warp_ctrl .box .case_tab_ctrl .swiper-button-prev {
  background-image: none;
  font-size: 26px;
}
.main_idx .idx_four .warp_ctrl .box .case_tab_ctrl .swiper-button-next:hover,
.main_idx .idx_four .warp_ctrl .box .case_tab_ctrl .swiper-button-prev:hover {
  color: #37a6ed;
}
.main_idx .idx_five {
  background-color: #f5f5f5;
}
.main_idx .idx_five .left {
  width: 515px;
  float: left;
}
.main_idx .idx_five .left .img img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.main_idx .idx_five .left:hover .img img {
  transform: scale(1.1);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.main_idx .idx_five .left .text {
  padding: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  *zoom: 1;
  background: #fff;
}
.main_idx .idx_five .left .text:before,
.main_idx .idx_five .left .text:after {
  display: table;
  line-height: 0;
  content: "";
}
.main_idx .idx_five .left .text:after {
  clear: both;
}
.main_idx .idx_five .left .time_box {
  float: left;
  width: 80px;
}
.main_idx .idx_five .left .time_box em {
  font-size: 60px;
  line-height: 60px;
}
.main_idx .idx_five .left .time_box time {
  font-size: 16px;
  color: #999999;
}
.main_idx .idx_five .left .dts {
  float: right;
  width: 326px;
}
.main_idx .idx_five .left .dts .tit {
  *zoom: 1;
  padding-bottom: 15px;
}
.main_idx .idx_five .left .dts .tit:before,
.main_idx .idx_five .left .dts .tit:after {
  display: table;
  line-height: 0;
  content: "";
}
.main_idx .idx_five .left .dts .tit:after {
  clear: both;
}
.main_idx .idx_five .left .dts .tit h3 {
  float: left;
  font-size: 18px;
  color: #37a6ed;
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 70%;
}
.main_idx .idx_five .left .dts .tit i {
  float: right;
  font-size: 12px;
  color: #999;
}
.main_idx .idx_five .left .dts p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.main_idx .idx_five .right {
  width: 555px;
  float: right;
}
.main_idx .idx_five .right li {
  border-bottom: solid 1px #ddd;
  padding: 34px 0;
  *zoom: 1;
}
.main_idx .idx_five .right li:before,
.main_idx .idx_five .right li:after {
  display: table;
  line-height: 0;
  content: "";
}
.main_idx .idx_five .right li:after {
  clear: both;
}
.main_idx .idx_five .right li:hover .but_wrap .but {
  text-indent: 25px;
  border: solid 1px #37a6ed;
  background: #37a6ed;
  color: #fff;
}
.main_idx .idx_five .right li:hover .det h3 {
  color: #37a6ed;
}
.main_idx .idx_five .right li .det {
  width: 355px;
  float: left;
}
.main_idx .idx_five .right li .det h3 {
  font-size: 18px;
  padding-bottom: 10px;
}
.main_idx .idx_five .right li .det p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.main_idx .idx_five .right li .but_wrap {
  float: right;
}
.main_idx .idx_five .right li .but_wrap time {
  display: block;
  text-align: center;
  padding: 0px 0 20px;
  font-size: 24px;
}
.main_idx .idx_five .right li .but_wrap .but {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  display: block;
  text-align: center;
  text-indent: 15px;
  line-height: 35px;
  font-size: 12px;
  width: 117px;
  height: 35px;
  border: solid 1px #999999;
}
.all_scroll .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #333333;
}
.all_scroll .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background-color: #37a6ed;
  transform: translatex(-3px);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 9px 0 !important;
}
.nav_txt {
  line-height: 13px;
  position: absolute;
  right: 24px;
  text-align: right;
  width: 300px;
}
.all_scroll {
  width: 100%;
  height: calc(100vh - 90px);
}
.all_scroll .text_list {
  padding-top: 20px;
}
.all_scroll .text_list li {
  *zoom: 1;
  margin-bottom: 25px;
}
.all_scroll .text_list li:before,
.all_scroll .text_list li:after {
  display: table;
  line-height: 0;
  content: "";
}
.all_scroll .text_list li:after {
  clear: both;
}
.all_scroll .text_list .idx_icon {
  float: left;
  width: 25px;
  height: 25px;
  background-color: #37a6ed;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  color: #fff;
  margin-right: 15px;
}
.all_scroll .text_list .text {
  float: left;
  width: 419px;
}
.all_scroll .text_list .text h4 {
  font-size: 20px;
  padding-bottom: 10px;
}
.all_scroll .swiper-slide {
  overflow: hidden;
}
.all_scroll h3 {
  font-size: 42px;
  line-height: 42px;
  color: #37a6ed;
}
.all_scroll h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #37a6ed;
  margin: 30px 0;
}
.all_scroll .act p {
  font-size: 16px;
}
.all_scroll .list_dp {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  justify-content: space-between;
}
.all_scroll .list_dp li {
  text-align: center;
}
.all_scroll .list_dp li i {
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.all_scroll .img_box {
  text-align: center;
}
.all_scroll .cent_box {
  width: 1200px;
  height: 100%;
  position: relative;
  margin: 0 auto;
}
.all_scroll .bg_img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  visibility: visible !important;
  transform: scale3d(2, 2, 2);
}
.all_scroll .bg_img img {
  width: 100%;
}
.all_scroll .left,
.all_scroll .right {
  float: left;
  width: 50%;
  height: 100%;
  -webkit-display: flex;
  -ms-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  align-items: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.all_scroll .right {
  float: right;
}
.all_scroll .box_wrap {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}
.all_scroll .footer_box {
  height: auto;
}
.all_scroll .md_one {
  background: #f5f5f5;
}
.all_scroll .md_one .right {
  width: 540px;
}
.all_scroll .md_one .right .list_dp {
  margin-top: 50px;
}
.all_scroll .md_one .right li {
  width: 120px;
  height: 120px;
  border-radius: 5px;
  border: solid 1px #999999;
}
.all_scroll .md_one .right li i {
  width: 44px;
  height: 44px;
  margin: 15px auto 10px;
}
.all_scroll .md_one .right li strong {
  display: block;
  font-size: 16px;
  font-weight: normal;
  color: #333333;
}
.all_scroll .md_one .right li p {
  font-size: 12px;
  line-height: 12px;
}
.all_scroll .md_one .right .atc p {
  font-size: 20px;
  line-height: 30px;
  color: #333333;
}
.all_scroll .md_two h3 {
  color: #333;
}
.all_scroll .md_two h3::after {
  background-color: #000000;
  opacity: 0.2;
}
.all_scroll .md_two .right {
  width: 510px;
}
.all_scroll .md_two .right .list_dp {
  margin-top: 50px;
}
.all_scroll .md_two .right .list_dp li i {
  width: 44px;
  height: 44px;
  margin: 15px auto 10px;
}
.all_scroll .md_two .right .list_dp li p {
  font-size: 14px;
  line-height: 12px;
  padding-top: 5px;
}
.all_scroll .md_two .right .atc p {
  font-size: 16px;
  line-height: 30px;
  color: #333333;
}
.all_scroll .md_three {
  background: #f5f5f5;
}
.all_scroll .md_three .right {
  width: 391px;
}
.all_scroll .md_three .right h3::after {
  display: none;
}
.all_scroll .md_three .right .list_dp {
  margin-top: 50px;
  flex-wrap: wrap;
}
.all_scroll .md_three .right .list_dp li:nth-child(3n) {
  padding: 0;
}
.all_scroll .md_three .right .list_dp li {
  padding-right: 90px;
  margin-bottom: 30px;
}
.all_scroll .md_three .right .list_dp li i {
  width: 44px;
  height: 44px;
  margin: 15px auto 10px;
}
.all_scroll .md_three .right .list_dp li p {
  font-size: 14px;
  line-height: 12px;
  padding-top: 5px;
}
.all_scroll .md_three .right .atc {
  padding-top: 30px;
}
.all_scroll .md_three .right .atc p {
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  letter-spacing: 1px;
}
.all_scroll .md_four .right {
  width: 100%;
}
.all_scroll .md_four .right .box {
  width: 100%;
}
.all_scroll .md_four .right h3 {
  text-align: center;
}
.all_scroll .md_four .right h3::after {
  display: none;
}
.all_scroll .md_four .right .list_dp {
  margin: 80px 0;
}
.all_scroll .md_four .right .list_dp li {
  margin-bottom: 30px;
}
.all_scroll .md_four .right .list_dp li i {
  width: 26px;
  height: 26px;
  background-color: #37a6ed;
  color: #fff;
  border-radius: 50%;
}
.all_scroll .md_four .right .list_dp li p {
  font-size: 20px;
  padding-top: 5px;
}
.all_scroll .md_four .right .list_dp li p::after {
  content: "";
  display: block;
  margin: 20px auto;
  width: 60px;
  height: 3px;
  background-color: #37a6ed;
}
.all_scroll .md_five {
  background-color: #f5f5f5;
}
.all_scroll .md_five .right {
  width: 100%;
}
.all_scroll .md_five .right .box {
  width: 100%;
}
.all_scroll .md_five .right h3 {
  text-align: center;
}
.all_scroll .md_five .right h3::after {
  margin: 30px auto;
}
.all_scroll .md_five .right .act {
  width: 815px;
  text-align: center;
  margin: 0 auto;
}
.all_scroll .md_five .right .img_box {
  padding-top: 100px;
}
.all_scroll .md_six .left {
  padding-left: 80px;
}
.all_scroll .md_seven {
  background-image: linear-gradient(0deg, #98a6b3 0%, #707c87 100%), linear-gradient(#020202, #020202);
}
.all_scroll .md_seven .right {
  width: 100%;
}
.all_scroll .md_seven .right .box {
  width: 100%;
}
.all_scroll .md_seven .right h3 {
  text-align: center;
  color: #fff;
}
.all_scroll .md_seven .right h3::after {
  margin: 30px auto;
}
.all_scroll .md_seven .right .act {
  width: 815px;
  text-align: center;
  margin: 0 auto;
}
.all_scroll .md_seven .right .act p {
  color: #fff;
}
.all_scroll .md_seven .right .img_box {
  padding-top: 100px;
}
.all_scroll .md_seven_two {
  background-image: none;
}
.all_scroll .md_six_two {
  background-image: linear-gradient(90deg, #ffffff 0%, #e5e5e5 100%), linear-gradient(#ffffff, #ffffff);
}
.all_scroll .md_six_two .left {
  padding-left: 80px;
}
.all_scroll .md_six_two .text_list .idx_icon {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: solid 1px #acb2bc;
  background: transparent;
  font-size: 14px;
  color: #999;
}
.all_scroll .md_six_two .text_list .active {
  background-color: #acb2bc;
  color: #fff;
}
.all_scroll .md_seven_two {
  background: #fff;
}
.all_scroll .md_seven_two .right h3 {
  color: #333;
}
.all_scroll .md_seven_two .right .act p {
  color: #666;
}
.all_scroll .md_seven_two .right .img_box {
  padding-top: 0;
}
.all_scroll .md_seven_two .wx_box {
  padding: 30px 0;
  text-align: center;
}
.all_scroll .md_seven_two .wx_box .box {
  display: inline-block;
  width: auto;
  margin: 0 20px;
}
.all_scroll .md_seven_two .wx_box .box .img {
  display: inline-block;
  width: 130px;
  height: 130px;
}
.all_scroll .md_seven_two .wx_box .box p {
  padding-top: 5px;
}
.all_scroll_two .j_md_one .right {
  position: relative;
}
.all_scroll_two .j_md_one .right img {
  max-width: 640px;
  position: absolute;
  bottom: 0;
  left: 50px;
}
.all_scroll_two .j_md_one h3::after {
  display: none;
}
.all_scroll_two .j_md_one .left h5 {
  font-size: 28px;
  padding-bottom: 15px;
}
.all_scroll_two .j_md_one .left .banner_btn {
  text-align: center;
  line-height: 45px;
  width: 260px;
  height: 45px;
  background-color: #37a6ed;
  border-radius: 30px 0px 30px 0px;
  margin-top: 50px;
}
.all_scroll_two .j_md_one .left .banner_btn span {
  font-size: 22px;
  color: #ffffff;
}
.all_scroll_two .j_md_one .left .list_dp {
  flex-wrap: wrap;
  padding-top: 70px;
  margin-left: -40px;
}
.all_scroll_two .j_md_one .left .list_dp li {
  margin-bottom: 30px;
  width: 33.3%;
}
.all_scroll_two .j_md_one .left .list_dp li p {
  padding-top: 10px;
}
.all_scroll_two .img_vw {
  height: 100%;
  width: 50vw;
  position: absolute;
  left: 0;
  top: 0;
}
.all_scroll_two .j_md_two .right {
  padding-left: 70px;
}
.all_scroll_two .j_md_two .list_dp {
  flex-wrap: wrap;
  padding-top: 70px;
  margin-left: -40px;
}
.all_scroll_two .j_md_two .list_dp li {
  margin-bottom: 30px;
  width: 33.3%;
}
.all_scroll_two .j_md_two .list_dp li p {
  padding-top: 10px;
}
.all_scroll_two .j_md_five {
  background-color: #ffffff;
}
.all_scroll_two .j_md_five .right .img_box {
  padding: 80px 0;
}
.all_scroll_two .j_md_five .llist_dp {
  padding: 30px 0;
}
.all_scroll_two .j_md_five_two .right .img_box {
  padding-top: 80px;
  padding-bottom: 0;
}
.all_scroll_two .j_md_five_two .right .act {
  margin: 30px auto;
}
.all_scroll_two .j_md_six .right img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  max-width: none;
  position: absolute;
  left: 0;
}
.all_scroll_two .j_md_six .left {
  padding-right: 130px;
}
.all_scroll_two .j_md_six .left .list_dp {
  padding-top: 30px;
}
.all_scroll_two .j_md_six .left .list_dp li {
  margin-bottom: 50px;
}
.all_scroll_two .j_md_six h5 {
  line-height: 40px;
}
.all_scroll_two .j_md_six h5::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #37a6ed;
  margin: 30px 0;
}
.all_scroll_two .j_md_five .right .img_box {
  padding: 0;
}
.all_scroll_two .j_md_five .list_dp {
  justify-content: space-evenly;
  padding: 40px 0;
}
.all_scroll_two .j_md_five .list_dp li {
  width: 75px;
}
.all_scroll_two .j_md_five .list_dp li p {
  padding-top: 10px;
  font-size: 18px;
}
.all_scroll_two .j_md_five_ h3 {
  padding-top: 215px;
}
.all_scroll_two .j_md_five_ .list_dp {
  width: 645px;
  margin: 0 auto;
}
.all_scroll_two .j_md_five_ .list_dp li {
  width: 113px;
}
.all_scroll_two .j_md_five_ .img_box {
  margin-top: -215px;
  margin-left: -110px;
}
.all_scroll_two .j_md_seven h3 {
  color: #fff;
}
.all_scroll_two .j_md_seven .list_dp {
  flex-wrap: wrap;
  width: 680px;
  margin: 0 auto;
}
.all_scroll_two .j_md_seven .list_dp li {
  width: 147px;
  margin-bottom: 30px;
}
.all_scroll_two .j_md_seven .list_dp li p {
  color: #fff;
}
.all_scroll_two .j_md_six_two h3::after {
  display: block;
}
.all_scroll_two .j_md_six_two .text_list li {
  margin-bottom: 10px;
}
.all_scroll_two .j_md_six_two .text_list .idx_icon {
  width: 5px;
  height: 5px;
  margin-right: 10px;
  margin-top: 9px;
  background-color: #999;
}
.all_scroll_two .j_md_two .img_bottom {
  position: relative;
  height: 100%;
  width: 100%;
}
.all_scroll_two .j_md_two .img_bottom img {
  position: absolute;
  bottom: 0;
}
.all_scroll_two .j_md_last .right .img_box {
  padding-top: 30px;
}
.all_scroll_two .j_md_last .right .img_box img {
  max-width: 1000px;
}
.all_scroll_two .j_md_last .text_box {
  text-align: center;
}
.all_scroll_two .j_md_last .text_box .tit_ {
  display: inline-block;
  width: 400px;
  height: 60px;
  background-color: #37a6ed;
  border-radius: 15px;
  line-height: 60px;
  font-size: 36px;
  color: #ffffff;
}
.all_scroll_two .j_md_last .text_box h5 {
  font-size: 36px;
  line-height: 36px;
  letter-spacing: 2px;
  padding: 25px 0;
}
.all_scroll_two .j_md_last .text_box p {
  color: #999999;
}
@media all and (max-width: 1366px) {
  .all_scroll h3 {
    font-size: 30px;
    line-height: 30px;
  }
  .all_scroll .md_one .right .atc p {
    font-size: 16px;
    line-height: 24px;
  }
  .all_scroll .md_five .right .img_box {
    padding-top: 30px;
  }
  .all_scroll .img_box img {
    max-width: 650px;
  }
  .all_scroll .md_four .right .list_dp {
    margin: 30px auto;
    width: 1000px;
  }
  .all_scroll .md_four .right .list_dp li p {
    font-size: 18px;
    padding-top: 10px;
  }
  .all_scroll .md_seven_two .wx_box .box .img {
    width: 90px;
    height: 90px;
  }
  .all_scroll .md_seven_two .img_box img {
    max-width: 375px;
  }
  .all_scroll .md_seven .right .img_box {
    padding-top: 60px;
  }
  .all_scroll .md_seven_two .right .img_box {
    padding-top: 0;
  }
  .all_scroll .md_three .right {
    float: left;
    margin-left: 80px;
  }
  .w1366 img {
    display: block;
    left: 30%;
    height: 100%;
    margin: 0 auto;
  }
  .all_scroll_two .j_md_five_ h3 {
    padding-top: 165px;
  }
  .all_scroll_two .j_md_five_ .img_box {
    margin-top: -245px;
    margin-left: -110px;
  }
  .all_scroll_two .j_md_five_ .img_box img {
    max-width: 1000px;
  }
  .all_scroll_two .j_md_last .right .img_box img {
    max-width: 700px;
  }
  .all_scroll_two .j_md_last .text_box h5 {
    font-size: 26px;
    line-height: 0px;
    letter-spacing: 2px;
    padding: 25px 0;
  }
  .all_scroll_two .j_md_last .text_box .tit_ {
    width: 300px;
    height: 50px;
    border-radius: 15px;
    line-height: 50px;
    font-size: 26px;
  }
}
.erweimabox{
	width: 90px;
	text-align: center;
	font-size: 14px;
	margin-bottom: 25px;
}
.erweimabox-img{
	width: 90px;
	height: 90px;
	margin-top: 8px;
}
.erweimabox div{
	color: #fff;
	text-align: left;
	font-size: 16px;
}
/* 新增 */
/*侧边*/
.side_callem {
  position: fixed;
  width: 60px;
  right: 0;
  top: 50%;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
  z-index: 900;
  display: block;
  opacity: 1;
  transition: .3s;
}
.side_callem.on{
  opacity: 1;
}
.side_callem ul li {
  text-align: center;
  position: relative;
  margin-top: -2px;
}
.side_callem ul li .show_con {
  background: #fff;
  border: solid 1px #ddd;
  padding: 25px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s;
  -moz-transit-webkit-transition: all 0.4s;
  -ms-transit-webkit-transition: all 0.4s;
  -o-transit-webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: translatex(100%);
  transform: translatex(100%);
  opacity: 0;
  white-space: nowrap;
}
.side_callem ul li .show_con img {
  width: 107px;
  max-width: none;
}
.side_callem ul li .show_con strong {
  color: ##37a6ed;
  font-size: 20px;
}
.side_callem ul li:hover a {
  background: ##37a6ed;
}
.side_callem ul li:hover a i {
  color: #fff;
}
.side_callem ul li:hover a span {
  color: #fff;
}
.side_callem ul li:hover .show_con {
  -webkit-transform: translatex(-100%);
  transform: translatex(-100%);
  opacity: 1;
}
.side_callem ul li a {
  display: block;
  width: 60px;
  height: 78px;
  background: #fff;
  position: relative;
  border: 1px solid #e0e0e0;
  margin-top: -1px;
  z-index: 99;
  -webkit-transition: all 0.4s;
  -moz-transit-webkit-transition: all 0.4s;
  -ms-transit-webkit-transition: all 0.4s;
  -o-transit-webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.side_callem ul li i {
  display: block;
  font-size: 24px;
  line-height: 24px;
  padding: 13px 0 5px;
  color: #333;
}
.side_callem ul li span {
  color: #666;
  font-size: 12px;
}
/*侧边*/