/* webkit内核 滚动条*/
::-webkit-scrollbar {
  width: 8px;
  background-color: #006eff;
}
::-webkit-scrollbar-thumb {
  width: 8px;
  background-color: #aeaeae;
}
::-webkit-scrollbar-track-piece {
  width: 8px;
  background-color: #f8f8f8;
}
::-webkit-scrollbar-thumb:hover {
  width: 8px;
  background-color: #006eff;
}
body {
  min-width: 1200px;
}
.pop_consult {
  width: 200px;
  height: 231px;
  position: absolute;
  top: 339px;
  left: 600px;
  display: none;
  object-fit: contain;
}
header {
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
header > .consulting {
  position: absolute;
  left: 400px;
  top: 400px;
  width: 161px;
  height: 51px;
  background: #FFFFFF;
  border-radius: 2px;
  font-size: 24px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #3611CC;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header > .inside {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 19px 0;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
}
header > .inside > img {
  width: 130px;
  height: 38px;
  cursor: pointer;
}
header > .inside > div {
  display: flex;
  align-items: center;
}
header > .inside > div > img {
  width: 35px;
  height: 35px;
  margin-right: 8px;
}
header > .inside > div > div > h4 {
  font-size: 14px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}
header > .inside > div > div > h4::after,
header > .inside > div > div > h4::before {
  content: "";
  display: block;
  width: 20px;
  margin: 0 3px;
  height: 1px;
  background: #FFFFFF;
  opacity: 0.65;
}
header > .inside > div > div > h3 {
  font-size: 18px;
  font-family: DIN;
  font-weight: 500;
  color: #FFFFFF;
  margin-top: 3px;
}
header > .inside > ul {
  display: flex;
  align-items: center;
}
header > .inside > ul > li {
  width: 110px;
  text-align: center;
  padding: 20px 0;
  font-size: 18px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #FFFFFF;
  border-bottom: 1px solid transparent;
  margin: 0 15px;
  cursor: pointer;
  transition: all 0.5s;
  position: relative;
}
header > .inside > ul > li::after {
  display: block;
  content: '';
  width: 0px;
  height: 1px;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 64px;
  transition: all 0.5s;
}
header > .inside > ul > .selected::after {
  width: 110px;
  transition: all 0.5s;
  background-color: #fff;
}
header > .inside > ul > li:hover::after {
  width: 110px;
  transition: all 0.5s;
  background-color: #fff;
}
.container {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container > .icon_hexagon {
  width: 38px;
  height: 43px;
  margin: 40px 0;
}
.can {
  width: 1140px;
  display: flex;
}
.can > li {
  width: 380px;
  height: 169px;
  padding: 30px;
  box-sizing: border-box;
  background: #F1F1F2;
  border: 1px solid #EBEBEC;
  border-radius: 2px 0px 0px 2px;
}
.can > li > h4 {
  font-size: 12px;
  font-family: Arial;
  font-weight: normal;
  color: #000000;
}
.can > li > h3 {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  margin: 10px 0 13px;
}
.can > li > .lines {
  width: 40px;
  height: 1px;
  background: #4A4A4A;
}
.can > li > p {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  line-height: 21px;
  margin-top: 20px;
}
.can > .selected {
  background: #3D11EF;
}
.can > .selected > h4,
.can > .selected > h3,
.can > .selected p {
  color: #FFFFFF;
}
.can > .selected > .lines {
  background-color: #fff;
}
.business_name {
  font-size: 28px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #000000;
  margin: 123px 0 29px;
}
.business_intr {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #010101;
  margin-bottom: 59px;
}
.case {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.case > .name_list {
  display: flex;
  flex-direction: column;
  height: 560px;
  border-right: 2px solid #E2E1E4;
  padding-right: 30px;
  box-sizing: border-box;
  position: relative;
}
.case > .name_list > .case_lines {
  position: absolute;
  right: -3px;
  top: 32px;
  width: 4px;
  height: 50px;
  background: #3D11EF;
  transition: all 0.5s;
}
.case > .name_list > .selected {
  color: #3D11EF;
}
.case > .name_list > li {
  height: 114px;
  font-size: 20px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s;
}
.case > .case_detail {
  flex: 1;
  margin-left: 32px;
}
.case > .case_detail > ul {
  display: flex;
}
.case > .case_detail > ul > li {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-right: 65px;
}
.case > .case_detail > ul > li > img {
  width: 217px;
  height: 217px;
  object-fit: contain;
}
.case > .case_detail > ul > li > span {
  font-size: 12px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #000000;
}
.case > .case_detail > h3 {
  font-size: 36px;
  font-family: Arial;
  font-weight: bold;
  color: #000000;
  margin: 38px 0 29px;
  animation: typing 0.6s steps(37, end);
}
.case > .case_detail > p {
  text-indent: 2em;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  line-height: 23px;
  animation: typing 0.6s steps(37, end);
}
.case > .case_detail > div {
  cursor: pointer;
  width: 110px;
  height: 42px;
  background: #3D11EF;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FEFEFE;
  margin: 30px 0 55px;
}
@keyframes typing {
  from {
    opacity: 0.1;
  }
  to {
    opacity: 1;
  }
}
.success_case_name {
  margin: 142px 0 40px;
  position: relative;
  width: 1000px;
}
.success_case_name > h3 {
  font-size: 28px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #000000;
  position: relative;
  z-index: 1;
  text-align: center;
}
.success_case_name p {
  width: 100%;
  text-align: center;
  font-size: 94px;
  font-family: Arial;
  font-weight: bold;
  color: #F4F4F4;
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}
.case_swiper {
  width: 100%;
  overflow: hidden;
}
.swiper-slide {
  width: auto !important;
}
.case_item {
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  padding: 21px 30px 30px;
  box-sizing: border-box;
}
.case_item > .case_head {
  display: flex;
  align-items: flex-end;
}
.case_item > .case_head > img {
  width: 18px;
  height: 27px;
}
.case_item > .case_head > span {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  margin: 0 10px;
}
.case_item > .case_head > i {
  font-size: 12px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #000000;
}
.case_item > .case_img_list {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.case_item > .case_img_list > img {
  width: 220px;
  height: 220px;
  object-fit: cover;
}
.case_item > .case_img_list > img:nth-child(1) {
  margin-right: 20px;
}
.about {
  width: 100%;
  height: 1139px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.qualifications {
  width: 1200px;
  padding-bottom: 108px;
  margin: -465px auto 105px;
  box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFFFFF;
}
.qualifications > img {
  width: 917px;
  height: 601px;
  margin-top: 36px;
}
.qualifications > .success_case_name {
  width: 1200px;
}
.about_intr {
  width: 1200px;
  display: flex;
  justify-content: space-between;
}
.about_intr > .about_intr_left {
  background-color: rgba(255, 255, 255, 0.6);
  width: 948px;
  height: 644px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 50px;
  box-sizing: border-box;
}
.about_intr > .about_intr_left > img {
  width: 170px;
  height: 51px;
  margin: 103px 0 19px;
}
.about_intr > .about_intr_left > h2 {
  font-size: 28px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #37353A;
  margin-bottom: 46px;
}
.about_intr > .about_intr_left > p {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  line-height: 21px;
  text-indent: 2em;
}
.about_intr > ul {
  width: 220px;
  display: flex;
  flex-direction: column;
}
.about_intr > ul > li {
  width: 220px;
  padding: 0 25px;
  box-sizing: border-box;
  background: #B9B8BB;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 182px;
}
.about_intr > ul > li:last-child {
  margin: 0;
}
.about_intr > ul > li:nth-child(1) {
  height: 240px;
}
.about_intr > ul > li > div {
  display: flex;
  align-items: flex-end;
  margin-bottom: 23px;
}
.about_intr > ul > li > div > img {
  width: 42px;
  height: 42px;
}
.about_intr > ul > li > div > span {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #37353A;
  margin-left: 13px;
}
.about_intr > ul > li > div > p {
  font-size: 12px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #37353A;
  line-height: 21px;
}
.recruit {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 244px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.recruit > h4 {
  font-size: 28px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #000000;
}
.recruit > div {
  width: 152px;
  height: 42px;
  background: #3D11EF;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.recruit > div > span {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #FFFEFE;
  margin-right: 10px;
}
.recruit > div > img {
  width: 21px;
  height: 16px;
}
footer {
  width: 100%;
  background-color: #fff;
}
footer > .with {
  width: 1100px;
  min-height: 409px;
  margin: 0 auto;
  display: flex;
}
footer > .with .foot_left > img {
  width: 172px;
  height: 50px;
  margin: 120px 0 60px;
}
footer > .with .foot_left > .lines {
  width: 110px;
  height: 1px;
  background: #000000;
}
footer > .with .foot_left > p {
  font-size: 12px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  margin: 76px 0 13px;
}
footer > .with .foot_left > div {
  display: flex;
  align-items: center;
}
footer > .with .foot_left > div > img {
  width: 18px;
  height: 18px;
  margin: 0 3px;
}
footer > .with .foot_left > div > a {
  font-size: 12px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  margin: 0 3px;
  cursor: pointer;
}
footer > .with .foot_left > div > a:hover {
  color: #2497F9;
}
footer > .with .foot_right {
  margin-left: 223px;
  display: flex;
  flex-direction: column;
}
footer > .with .foot_right > .infos {
  display: flex;
  flex-direction: column;
  margin: 99px 0 77px 0;
}
footer > .with .foot_right > .infos > li {
  display: flex;
  align-items: flex-end;
  margin-bottom: 40px;
}
footer > .with .foot_right > .infos > li:last-child {
  margin-bottom: 0;
}
footer > .with .foot_right > .infos > li > img {
  width: 20px;
  height: 20px;
}
footer > .with .foot_right > .infos > li > i {
  font-size: 12px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #969696;
  margin: 0 14px 0 10px;
}
footer > .with .foot_right > .infos > li > span {
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #000000;
}
footer > .with .foot_right > .foot_s {
  display: flex;
  align-items: flex-end;
}
footer > .with .foot_right > .foot_s > img {
  width: 52px;
  height: 31px;
}
footer > .with .foot_right > .foot_s > a {
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #000000;
  margin-left: 10px;
  cursor: pointer;
}
footer > .with .foot_right > .foot_s > a:hover {
  color: #006eff;
}
@media (max-width: 759px) {
  body {
    width: 100vw;
    min-width: 100vw;
    overflow: hidden;
  }
  .can {
    width: 100%;
    flex-direction: column;
  }
  header {
    height: 5rem;
    padding: 0;
    width: 100%;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
    box-sizing: border-box;
  }
  header > .inside {
    width: 100%;
  }
  header > .moble_head {
    justify-content: space-between;
    padding: 0.3rem;
    box-sizing: border-box;
  }
  header > .moble_head > .logo {
    width: 1.8rem;
    height: 0.58rem;
  }
  header > .moble_head > .menu,
  header > .moble_head > .close {
    width: 0.55rem;
    height: 0.55rem;
    transition: all 0.3s;
  }
  header > .moble_head > .close {
    display: none;
  }
  header .moble_head_navs {
    flex-direction: column;
    background-color: #fff;
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
  }
  header .moble_head_navs > li {
    height: 0.6rem;
    padding: 0.22rem 0.18rem;
    box-sizing: border-box;
    font-size: 0.28rem;
    color: black;
    font-weight: 500;
  }
  header .moble_head_navs > li > a {
    color: black;
  }
  .container {
    width: 100%;
    padding: 0 0.24rem;
    box-sizing: border-box;
  }
  .about {
    height: auto;
  }
  .about_intr {
    width: 100%;
    flex-direction: column;
  }
  .about_intr > .about_intr_left {
    width: 100%;
    flex-direction: column;
    height: auto;
  }
  .about_intr > ul {
    width: 100%;
    align-items: center;
  }
  .qualifications {
    margin: 0.3rem 0;
  }
  .qualifications > img {
    width: auto;
    height: auto;
  }
  footer > .with {
    width: 100%;
    padding: 0 0.3rem;
    box-sizing: border-box;
    min-height: 11rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  footer > .with > .foot_right {
    padding-bottom: 0.5rem;
    margin: 0;
  }
  footer > .with > .foot_right > .infos {
    margin: 0.5rem 0;
  }
  footer > .with > .foot_right > .infos > li {
    margin-bottom: 0.3rem;
  }
}
