@charset "UTF-8";

/**
 *
 * @authors Your Name (you@example.org)
 * @date    2017-10-18 08:57:34
 * @version $Id$
 */
@font-face {
  font-family: "dbold";
  src: url("../font/din-bold_.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

.wrap {
  position: relative;
  overflow: hidden;
}

/* header */
header {
  width: 100%;
  z-index: 22;
  position: absolute;
  top: 0px;
  left: 0px;
}

.header-main {
  position: relative;
}

.logo {
  width: 154px;
  display: block;
  position: absolute;
  height: 43px;
  left: 50%;
  top: 27px;
  transform: translateX(-50%);
}

.logo img {
  display: block;
  width: 100%;
  transition: all 0.5s;
}

.nav-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 21px;
}

.nav-ul {
  display: flex;
  align-items: center;
}

.nav-ul:last-child {
  justify-content: flex-end;
}

.nav-ul li {
  position: relative;
  margin-right: 70px;
}

.nav-ul li:last-child {
  margin-right: 0px;
}

.nav-ul li > a {
  display: block;
  font-size: 18px;
  text-align: center;
  color: #fff;
  position: relative;
  line-height: 56px;
  border-bottom: 2px solid transparent;
}

.nav-ul li:hover a {
  border-bottom-color: #44cef6;
}

.nav-ul li.on a {
  border-bottom-color: #44cef6;
}

@media (max-width: 1600px) {
  .nav-ul li {
    margin-right: 50px;
  }
}

@media (max-width: 1400px) {
  .nav-ul li {
    margin-right: 30px;
  }
}

@media (max-width: 1200px) {
  .nav-ul li > a {
    font-size: 16px;
    line-height: 48px;
  }

  .nav-ul li {
    margin-right: 20px;
  }
}

@media (max-width: 991px) {
  .header {
    position: relative;
    height: auto;
    background-color: #44cef6;
  }

  .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  .logo {
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0px, 0px);
  }

  .nav-wrap {
    display: none;
  }

  #navToggle {
    display: block;
  }

  .nav-ul {
    display: none;
  }
}

/* 底部 */
#footer {
  overflow: hidden;
  width: 100%;
  background: #1b1b1b;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  padding-top: 46px;
  padding-bottom: 42px;
}

.footer-left {
  width: 24%;
  color: #fff;
}

.hotline {
  margin-bottom: 60px;
}

.hotline-title {
  align-items: center;
  display: flex;
  margin-bottom: 10px;
}

.hotline-title h3 {
  font-size: 16px;
  margin-left: 8px;
}

.hotline p {
  font-size: 30px;
  line-height: 30px;
  font-family: "dbold";
}

.hotline-add {
  font-size: 14px;
  color: #808080;
  line-height: 30px;
}

.footer-ul {
  display: flex;
  width: 76%;
  justify-content: flex-end;
}

.footer-ul li {
  margin-right: 160px;
}

.footer-ul li:last-child {
  margin-right: 0px;
}

.footer-ul li h3 {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 17px;
}

.footer-ul li dl dd > a {
  line-height: 30px;
  display: block;
  color: #808080;
  font-size: 14px;
}

.code-wrap {
  display: flex;
}

.code-item {
  text-align: center;
  width: 122px;
  margin-right: 20px;
}

.code-item:last-child {
  margin-right: 0px;
}

.code-item p {
  color: #808080;
  line-height: 24px;
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
}

.copy {
  color: #adadad;
  background-color: #0d0d0d;
}

.copy-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
 /* justify-content: space-between;*/
  height: 80px;
  color: #808080;
}

.copy-main p {
  font-size: 16px;
  line-height: 30px;
}

.links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.links-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.links-list a {
  margin-right: 20px;
  color: #808080;
}

.links-list a:last-child {
  margin-right: 0px;
}

@media (max-width: 1700px) {
  .footer-ul li {
    margin-right: 100px;
  }
}

@media (max-width: 1600px) {
  .footer-ul li {
    margin-right: 80px;
  }
}

@media (max-width: 1400px) {
  .footer-ul li {
    margin-right: 60px;
  }
}

@media (max-width: 1200px) {
  .footer-ul li {
    margin-right: 40px;
  }

  .hotline-title span {
    font-size: 28px;
    line-height: 28px;
  }

  .footer-contact li span {
    font-size: 14px;
    margin-left: 10px;
  }

  .code-item {
    width: 100px;
    margin-right: 16px;
  }

  .footer-ul li dl dd > a {
    font-size: 14px;
    line-height: 28px;
  }

  .copy-main p {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .footer-main {
    flex-wrap: wrap;
    padding-bottom: 10px;
    padding-top: 30px;
  }

  .footer-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hotline {
    margin-bottom: 10px;
  }

  .copy-main {
    height: auto;
    padding: 15px 0px;
  }

  .footer-ul {
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 0px;
    padding-top: 12px;
  }

  .footer-ul li {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    margin-right: 0px;
  }

  .footer-ul li h3 {
    margin-bottom: 0px;
  }

  .footer-ul li dl {
    text-align: center;
  }

  .footer-ul li dl dd {
    display: inline-block;
    margin: 0 4px;
  }

  .code-wrap {
    justify-content: center;
  }

  .copy-main p {
    line-height: 26px;
    margin-bottom: 5px;
  }
}

/* 关于元金 */
.home-about {
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}

.habout-main {
  display: flex;
  flex-wrap: wrap;
}

.habout-left {
  width: 50%;
}

.habout-left h3 {
  font-size: 50px;
  line-height: 50px;
  color: #000;
  margin-bottom: 44px;
}

.habout-subtitle {
  font-size: 24px;
  color: #000;
  line-height: 24px;
}

.habout-txt {
  font-size: 16px;
  color: #444;
  line-height: 32px;
  margin-top: 40px;
}

.habout-list {
  margin-top: 70px;
}

.habout-list li {
  margin-top: 20px;
  cursor: pointer;
}

.habout-list li h3 {
  font-size: 30px;
  line-height: 30px;
  color: #111;
  margin-bottom: 14px;
}

.habout-list li p {
  font-size: 16px;
  line-height: 24px;
  min-height: 48px;
  color: #444;
}

.habout-list li:hover h3 {
  color: #44cef6;
}

.habout-right {
  width: 50%;
  padding-left: 100px;
}

.habout-img {
  width: 100%;
  overflow: hidden;
}

.habout-img img {
  width: 100%;
  transition: all 0.5s;
}

.habout-right:hover img {
  transform: scale(1.1);
}

@media (max-width: 1700px) {
  .habout-txt {
    line-height: 30px;
    margin-top: 25px;
  }

  .habout-left h3 {
    margin-bottom: 24px;
  }

  .habout-list {
    margin-top: 40px;
  }

  .habout-list li {
    margin-top: 10px;
  }
}

@media (max-width: 1600px) {
  .habout-right {
    padding-left: 60px;
  }
}

@media (max-width: 1400px) {
  .habout-left h3 {
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 12px;
  }

  .habout-txt {
    margin-top: 18px;
    font-size: 14px;
    line-height: 24px;
  }

  .habout-right {
    padding-left: 60px;
  }

  .habout-list {
    margin-top: 25px;
  }

  .habout-list li h3 {
    font-size: 24px;
    line-height: 24px;
  }

  .habout-list li {
    margin-top: 0px;
  }
}

@media (max-width: 1200px) {
  .habout-left {
    width: 100%;
  }

  .home-about {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .habout-right {
    width: 100%;
    padding-left: 0px;
  }
}

@media (max-width: 991px) {
  .habout-left h3 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 8px;
  }

  .habout-left {
    margin-bottom: 20px;
  }

  .habout-subtitle {
    font-size: 18px;
  }

  .habout-txt {
    margin-top: 10px;
  }

  .home-about {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .habout-list li {
    margin-top: 18px;
  }

  .habout-list li h3 {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 8px;
  }

  .habout-right {
    width: 100%;
    padding-left: 0px;
  }

  .habout-list li p {
    min-height: 24px;
  }
}

.vedio-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.vedio-wrap img {
  width: 100%;
  transition: all 0.5s;
}

.play {
  position: absolute;
  width: 90px;
  height: 90px;
  background: url(../img/play-icon.png) no-repeat center;
  background-size: 100% 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

@media (max-width: 1200px) {
  .play {
    width: 50px;
    height: 50px;
  }
}

/* 产品中心 */
.hpro-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.hpro-title h3 {
  font-size: 50px;
  color: #333;
  line-height: 50px;
}

.hpro-btn {
  width: 102px;
  position: relative;
  height: 46px;
}

.hpro-btn .swiper-button-next,
.hpro-btn .swiper-button-prev {
  width: 46px;
  height: 46px;
  margin-top: 0px;
  top: 0px;
  background-color: #f0f0f4;
  background-size: 10px 18px;
  opacity: 1;
}

.hpro-btn .swiper-button-next:hover,
.hpro-btn .swiper-button-prev:hover {
  background-color: #44cef6;
}

.hpro-btn .swiper-button-prev {
  background-image: url("../img/hpro-prev.png");
  left: 0px;
}

.hpro-btn .swiper-button-prev:hover {
  background-image: url(../img/hpro-prev-on.png);
}

.hpro-btn .swiper-button-next {
  background-image: url("../img/hpro-next.png");
  right: 0px;
}

.hpro-btn .swiper-button-next:hover {
  background-image: url(../img/hpro-next-on.png);
}

.hpro-item {
  display: block;
  margin-bottom: 26px;
  overflow: hidden;
  position: relative;
}

.hpro-item img {
  width: 100%;
  transition: all 0.5s;
}

.hpro-item:hover img {
  transform: scale(1.1);
}

.hpro-item p {
  position: absolute;
  color: #000;
  text-align: center;
  bottom: 48px;
  line-height: 24px;
  font-size: 18px;
  left: 0px;
  width: 100%;
}

.hpro-item:hover p {
  color: #44cef6;
}

.homepro-swiper .swiper-slide .hpro-item:last-child {
  margin-bottom: 0px;
}

@media (max-width: 1600px) {
  .hpro-item p {
    bottom: 28px;
  }
}

@media (max-width: 991px) {
  .hpro-title {
    margin-bottom: 28px;
  }

  .hpro-title h3 {
    font-size: 30px;
    line-height: 30px;
  }

  .hpro-item p {
    bottom: 28px;
  }
}

.home-case {
  width: 100%;
  overflow: hidden;
  height: 800px;
  background: url(../img/hcase-bg.jpg) no-repeat center;
}

.hcase-list {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.hcase-list li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 0 88px;
  transition: all 0.5s;
}

.hcase-list li:last-child {
  border-right: none;
}

.hcase-list li strong {
  font-family: "dbold";
  font-size: 90px;
  line-height: 90px;
  margin-bottom: 38px;
  color: #44cef6;
}

.hcase-list li h3 {
  font-size: 30px;
  text-align: center;
  line-height: 30px;
  margin-bottom: 22px;
}

.hcase-list li p {
  font-size: 16px;
  line-height: 30px;
  min-height: 60px;
  text-align: center;
}

.hcase-list li:hover {
  background-color: #44cef6;
}

.hcase-list li:hover strong {
  color: #fff;
}

@media (max-width: 1600px) {
  .hcase-list li {
    padding: 0 28px;
  }

  .home-case {
    height: 680px;
  }
}

@media (max-width: 1200px) {
  .hcase-list li {
    padding: 0 10px;
  }

  .home-case {
    height: 480px;
  }

  .hcase-list li p {
    min-height: 90px;
  }
}

@media (max-width: 991px) {
  .hcase-list li {
    padding: 0 10px;
    flex: none;
    width: 50%;
    height: 240px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .hcase-list li:nth-child(3),
  .hcase-list li:nth-child(4) {
    border-bottom: none;
  }

  .hcase-list li strong {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 12px;
  }

  .hcase-list li h3 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 8px;
  }

  .home-case {
    height: 480px;
  }

  .hcase-list li p {
    min-height: 90px;
  }

  .hcase-list li p {
    min-height: 48px;
    line-height: 24px;
  }
}

@media (max-width: 599px) {
  .hcase-list li {
    padding: 20px 10px;
    width: 100%;
    height: auto;
    border-right: none;
  }

  .hcase-list li:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .hcase-list li p {
    min-height: 24px;
  }

  .home-case {
    height: auto;
  }
}

/* 新闻中心 */
.hnews-more {
  display: block;
  width: 150px;
  height: 46px;
  background-color: #44cef6;
  color: #fff;
  text-align: center;
  line-height: 46px;
}

.hnews-main {
  display: flex;
  flex-wrap: wrap;
}

.hnews-left {
  width: 50%;
  padding-right: 40px;
}

.hnews-img {
  width: 100%;
  overflow: hidden;
}

.hnews-img img {
  width: 100%;
  transition: all 0.5s;
}

.hnews-left:hover .hnews-img img {
  transform: scale(1.1);
}

.hnews-info {
  padding: 40px 40px 34px;
  background-color: #f0f0f4;
}

.hnews-info h3 a {
  font-size: 24px;
  line-height: 24px;
  color: #000000;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 20px;
}

.hnews-info p {
  font-size: 16px;
  line-height: 30px;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hnews-left:hover .hnews-info h3 a {
  color: #44cef6;
}

.hnews-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hnews-top {
  display: flex;
}

.hnews-topitem {
  flex: 1;
  margin-right: 40px;
  width: 50%;
}

.hnews-topitem:last-child {
  margin-right: 0px;
}

.hnews-topitem p {
  color: #000;
  font-size: 18px;
  line-height: 24px;
  margin-top: 17px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 80%;
}

.hnews-list {
  display: flex;
  flex-direction: column;
}

.hnews-list li {
  width: 100%;
  border-top: 1px solid #e6e6e6;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: #444;
  font-size: 18px;
}

.hnews-list li:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.hnews-list li span {
  width: 100px;
}

.hnews-list li h3 {
  flex: 1;
}

.hnews-list li h3 a {
  color: #444;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hnews-list li:hover {
  color: #44cef6;
}

.hnews-list li:hover h3 a {
  color: #44cef6;
}

@media (max-width: 1600px) {
  .hnews-list li {
    height: 48px;
  }
}

@media (max-width: 1400px) {
  .hnews-list li {
    height: 48px;
  }
}

@media (max-width: 1200px) {
  .hnews-left {
    width: 100%;
    margin-bottom: 25px;
    padding-right: 0px;
  }

  .hnews-right {
    width: 100%;
  }

  .hnews-list li {
    height: 56px;
  }

  .hnews-list {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .hnews-more {
    width: 130px;
    height: 40px;
    line-height: 40px;
  }

  .hnews-info {
    padding: 25px 25px 20px;
  }

  .hnews-info h3 a {
    margin-bottom: 12px;
  }

  .hnews-list li {
    font-size: 16px;
    height: 46px;
  }

  .hnews-top {
    flex-wrap: wrap;
  }

  .hnews-topitem {
    width: 100%;
    flex: none;
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .hnews-topitem p {
    margin-top: 10px;
    font-size: 16px;
  }

  .hnews-list {
    margin-top: 0px;
  }

  .hnews-list li h3 {
    width: calc(100% - 90px);
    flex: none;
  }

  .hnews-list li span {
    width: 90px;
    text-align: right;
  }
}

@media (max-width: 559px) {
  .hnews-info {
    padding: 15px 15px 10px;
  }

  .hnews-info h3 a {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.home-partner {
  height: 700px;
  overflow: hidden;
  width: 100%;
  background: url(../img/partner-bg.jpg) no-repeat center;
}

.hpartner-title {
  text-align: center;
  color: #fff;
  margin-top: 125px;
}

.hpartner-title h3 {
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 15px;
}

.hpartner-title p {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  min-height: 48px;
  margin-bottom: 24px;
}

.partner-img {
  margin-bottom: 8px;
  border: 4px solid #fff;
  overflow: hidden;
  transition: all 0.5s;
}

.partner-img img {
  width: 100%;
}

.partner-img:hover {
  border-color: #44cef6;
}

.partner-swiper .swiper-slide .partner-img:last-child {
  margin-bottom: 0px;
}

.partner-swiper {
  padding-bottom: 60px;
}

.partner-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%px;
  opacity: 1;
  position: relative;
  background-color: #fff;
}

.partner-swiper .swiper-pagination-bullet-active {
  background-color: #44cef6 !important;
}

.partner-swiper > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
}

.partner-swiper > .swiper-pagination-bullets {
  bottom: 0px;
}

@media (max-width: 1200px) {
  .home-partner {
    height: 600px;
  }

  .hpartner-title {
    margin-top: 90px;
  }

  .hpartner-title h3 {
    font-size: 42px;
    line-height: 42px;
  }
}

@media (max-width: 991px) {
  .home-partner {
    height: 480px;
  }

  .hpartner-title {
    margin-top: 40px;
  }

  .hpartner-title h3 {
    font-size: 30px;
    line-height: 30px;
  }

  .hpartner-title p {
    font-size: 16px;
    min-height: 24px;
  }

  .partner-swiper {
    padding-bottom: 50px;
  }
}

@media (max-width: 559px) {
  .home-partner {
    height: 440px;
  }
}

/*发展历程*/
.inside-nav {
  height: 70px;
  border: 1px solid #eeeeee;
}

.inside-box {
  display: flex;
  justify-content: space-between;
  line-height: 70px;
}

.inside-navl {
  width: 43%;
}

.devcourse-swiper .swiper-slide a {
  color: #444444;
}

.inside-navr a {
  color: #999999;
}

.inside-navr span a:hover {
  color: #44cef6;
}

.devcourse-swiper .swiper-slide.on a {
  color: #44cef6;
  display: inline-block;
  position: relative;
}

.devcourse-swiper .swiper-slide.on a::after {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #44cef6;
  content: "";
  left: 0;
  bottom: 2px;
  z-index: 66;
}

.devcourse-swiper .swiper-slide:hover a {
  color: #44cef6;
  display: inline-block;
  position: relative;
}

.devcourse-swiper .swiper-slide:hover a::after {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #44cef6;
  content: "";
  left: 0;
  bottom: 2px;
  z-index: 66;
}

.devcourse-tit h3 {
  font-size: 50px;
  text-align: center;
}

.devcourse {
  padding: 80px 0 100px;
}

.dev-box {
  margin-top: 50px;
  padding: 0 240px;
}

.dev-boximg img {
  border-radius: 50%;
}

.dev-box ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 500px;
}

.dev-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.dev-box ul li {
  margin-bottom: 24px;
  position: relative;
}

.dev-box {
  position: relative;
}

.dev-line {
  width: 1px;
  background: #d1d1d1;
  height: 100%;
  top: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.dev-line::before {
  position: absolute;
  content: " ";
  width: 18px;
  height: 18px;
  border: 1px solid #d1d1d1;
  border-radius: 50%;
  left: -9px;
  z-index: 66;
  background: #fff;
}

.dev-box ul li {
  /*	margin-bottom: 50px;*/
}

.dev-box ul li:nth-of-type(2n) {
  margin-top: 180px;
}

.dev-circle {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid #44cef6;
  border-radius: 50%;
  right: -68px;
  background: #fff;
}

.dev-box ul li:nth-of-type(2n) .dev-circle {
  left: -68px;
}

.dev-boxtxt h3 {
  font-size: 30px;
  text-align: right;
  color: #111111;
  margin-bottom: 20px;
}

.dev-box ul li:nth-of-type(2n) .dev-boxtxt h3 {
  text-align: left;
}

.dev-circle span {
  display: block;
  width: 9px;
  height: 9px;
  background: #44cef6;
  border-radius: 50%;
  margin: 3.6px auto 0;
}

.dev-boxtxt {
  overflow: hidden;
}

.dev-boxtxt h4 {
  line-height: 30px;
}

.dev-box ul li .dev-boxtxt h4 {
  width: 100%;
}

.dev-box ul li:nth-of-type(2n-1) .dev-boxtxt {
  text-align: right;
}

.dev-box ul li:nth-of-type(2n-1) .dev-boxtxt h4 {
  float: right;
}

.dev-more a {
  display: block;
  margin: 0 auto;
  width: 170px;
  height: 48px;
  border: 1px solid #969696;
  text-align: center;
  line-height: 48px;
  color: #969696;
}

@media (max-width: 1700px) {
  .dev-box {
    padding: 0 100px;
  }
  .dev-circle {
    right: -109px;
  }
  .dev-box ul li:nth-of-type(2n) .dev-circle {
    left: -109px;
  }
}

@media (max-width: 1600px) {
  .dev-box {
    padding: 0 100px;
  }
  .dev-box ul li a {
    width: 440px;
  }
}

@media (max-width: 1400px) {
  .dev-box {
    padding: 0 50px;
  }
}

@media (max-width: 1400px) {
  .dev-box ul li a {
    width: 490px;
  }

  .dev-box {
    padding: 0;
  }

  .dev-box ul li .dev-boxtxt h4 {
    width: 95%;
  }
}

@media (max-width: 1200px) {
  .dev-box ul li a {
    width: 385px;
  }
}

@media (max-width: 991px) {
  .dev-box ul {
    display: block;
  }

  .dev-box ul li a {
    width: 100%;
  }

  .dev-line {
    display: none;
  }

  .dev-circle {
    display: none;
  }

  .devcourse-tit h3 {
    font-size: 30px;
  }

  .dev-box ul li {
    padding: 0 15px;
  }

  .dev-box ul li:nth-of-type(2n) {
    margin-top: 0;
  }

  .inside-navr {
    display: none;
  }

  .inside-navl {
    width: 100%;
  }

  .devcourse {
    padding: 40px 0 50px;
  }
}

@media (max-width: 500px) {
  .dev-boxtxt h3 {
    font-size: 22px;
  }
}

/*产品中心*/
.pro {
  overflow: hidden;
  padding-top: 100px;
}

.proul li img {
  width: 100%;
}

.proul li {
  position: relative;
  margin-bottom: 34px;
}

.proul li h3 {
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
  white-space: nowrap;
}

.proimg {
  overflow: hidden;
}

.proimg img {
  transition: all 0.4s;
}

.proul li a:hover .proimg img {
  transform: scale(1.1);
}

.proul li a:hover h3 {
  color: #44cef6;
}

@media (max-width: 1200px) {
  .proul li h3 {
    font-size: 16px;
  }
   .tech li h3 {
    font-size: 16px;
  }

  .pro {
    padding-top: 80px;
  }
}

@media (max-width: 991px) {
  .pro {
    padding-top: 40px;
  }

  .proul li {
    margin-bottom: 20px;
  }
   .tech li {
    margin-bottom: 20px;
  }
}

/*技术实力*/
.tech li img {
  width: 100%;
}

.tech li {
  position: relative;
  margin-bottom: 34px;
}

.tech li h3 {
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/*放大镜*/
.prodbox {
  position: relative;
  padding: 100px 0px;
}

.smallBox {
  position: relative;
  cursor: move;
}

.bigBox {
  width: 50%;
  height: 660px;
  position: absolute;
  top: 0;
  left: 50%;
  overflow: hidden;
  display: none;
}

.smallBox .lay {
  background: #99def2;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  display: none;
  width: 150px;
  height: 150px;
}

.smallBox img {
  width: 100%;
}

.prodbox-m {
  display: flex;
}

.prodbox-l {
  width: 50%;
}

.prodbox-r {
  width: 50%;
  border: 1px solid #f3f3f3;
  padding: 100px 250px 0px 100px;
}

.prodbox-r h3 {
  font-size: 40px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 50px;
}

.prodbox-r h4 {
  line-height: 35px;
  border-bottom: 1px solid #eeeeee;
  padding-top: 30px;
  padding-bottom: 50px;
}

.prod-tel {
  width: 446px;
  height: 95px;
  background: #44cef6;
  margin-top: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding-left: 50px;
}

.prod-tell {
  margin-right: 26px;
}

.prod-telr {
  color: #fff;
}

.prod-telr h5 {
  font-size: 38px;
}

.prod-telr span {
  font-weight: bold;
}

.prod-sou {
  position: absolute;
  right: 25px;
  bottom: 36px;
}

.prod-bot {
  margin-top: 50px;
}

.prod-swiper .swiper-slide a {
  display: block;
  position: relative;
}

.prod-swiper .swiper-slide a h3 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  white-space: nowrap;
}

.prod-bot img {
  width: 100%;
}

.prod-swiper .prod-botimg img {
  transition: all 0.4s;
}

.prod-swiper .prod-botimg:hover img {
  transform: scale(1.1);
}

.prod-swiper .prod-botimg {
  overflow: hidden;
}

.prod-swiper .swiper-slide:hover a h3 {
  color: #44cef6;
}

@media (max-width: 1700px) {
  .bigBox {
    height: 551px;
  }

  .prodbox-r {
    padding: 30px 80px 0px 80px;
  }
}

@media (max-width: 1600px) {
  .bigBox {
    height: 504px;
  }

  .prodbox-r {
    padding: 30px 50px 0px 50px;
  }

  .prodbox-r h4 {
    padding-top: 20px;
    padding-bottom: 35px;
  }
}

@media (max-width: 1400px) {
  .bigBox {
    height: 452px;
  }

  .prodbox-r {
    padding: 30px;
  }

  .prodbox-r h4 {
    padding-top: 20px;
    padding-bottom: 35px;
    line-height: 28px;
  }

  .prodbox-r h3 {
    padding-bottom: 26px;
  }
}

@media (max-width: 1200px) {
  .bigBox {
    height: 370px;
  }

  .prodbox-r {
    padding: 30px;
  }

  .prodbox-r h4 {
    padding-top: 20px;
    padding-bottom: 35px;
    line-height: 28px;
  }

  .prodbox-r h3 {
    padding-bottom: 26px;
    font-size: 24px;
  }

  .prod-telr h5 {
    font-size: 22px;
  }

  .prod-tel {
    width: 80%;
    height: 79px;
    background: #44cef6;
    margin-top: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding-left: 15px;
  }

  .prodbox-r h4 {
    padding-top: 5px;
    padding-bottom: 7px;
    line-height: 28px;
  }

  .prodbox-r {
    padding: 15px;
  }

  .prodbox {
    padding: 80px 0px;
  }
}

@media (max-width: 991px) {
  .prodbox-m {
    display: block;
  }

  .prodbox-r {
    width: 100%;
  }

  .bigBox {
    width: 100%;
    height: 360px;
    position: relative;
    top: 32%;
    left: 50%;
    transform: translateX(-50%);
  }

  .prodbox-l {
    width: 100%;
  }

  .prodbox {
    padding: 40px 0px;
  }

  .prod-bot {
    margin-top: 32px;
  }
}

.about {
  padding: 80px 0;
}

.about-box ul li {
  display: flex;
}

.aboutpaddingleft {
  padding-left: 50px;
}

.aboutpaddingright {
  padding-right: 50px;
}

.about-boxr img {
  width: 100%;
}

.about-boxl {
  width: 50%;
}

.about-boxr {
  width: 50%;
}

.about-boxl h3 {
  font-size: 40px;
}

.about-boxl h4 {
  margin-top: 40px;
  color: #444444;
  line-height: 35px;
}

.about-boxl {
  padding-top: 100px;
}

.about-box li {
  margin-bottom: 50px;
}

@media (max-width: 1700px) {
  .about-boxl {
    padding-top: 30px;
  }
}

@media (max-width: 1400px) {
  .about-boxl {
    padding-top: 20px;
  }

  .about-boxl h3 {
    font-size: 30px;
  }

  .about-boxl h4 {
    line-height: 28px;
    margin-top: 20px;
  }
}

@media (max-width: 1200px) {
  .about-boxl {
    padding-top: 0px;
  }

  .about-boxl h3 {
    font-size: 24px;
  }

  .about-boxl h4 {
    line-height: 26px;
    margin-top: 15px;
  }

  .aboutpaddingright {
    padding-right: 15px;
  }

  .aboutpaddingleft {
    padding-left: 15px;
  }
}

@media (max-width: 991px) {
  .about-box ul li {
    display: block;
  }

  .about-boxl {
    width: 100%;
  }

  .about-boxr {
    width: 100%;
  }

  .aboutpaddingright {
    padding: 0;
  }

  .aboutpaddingleft {
    padding: 0;
  }

  .about-boxr {
    margin-top: 15px;
  }

  .about-box ul li:nth-of-type(2) {
    display: flex;
    flex-direction: column-reverse;
  }

  .about {
    padding: 30px 0 0px;
  }
}

/* 新闻中心 */
.news-wrap {
  padding-top: 100px;
  overflow: hidden;
}

.news-top {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.news-topleft {
  width: 50%;
  overflow: hidden;
}

.news-topleft img {
  transition: all 0.5s;
  width: 100%;
}

.news-topleft:hover img {
  transform: scale(1.1);
}

.news-topright {
  width: 50%;
  border: 1px solid #dcdcdc;
  display: flex;
  padding: 0 75px;
}

.news-slide {
  padding-top: 90px;
}

.news-slide h3 a {
  font-size: 24px;
  line-height: 26px;
  color: #000;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 28px;
}

.time {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.time span {
  color: #999;
  margin-left: 8px;
}

.news-txt {
  font-size: 16px;
  color: #555;
  line-height: 30px;
}

.news-swiper .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  border-radius: 0px;
  opacity: 1;
  position: relative;
  border: 1px solid #44cef6;
  background-color: transparent;
}

.news-swiper .swiper-pagination-bullet-active {
  background-color: #44cef6 !important;
}

.news-swiper > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.news-swiper > .swiper-pagination-bullets {
  bottom: 80px;
}

.news-swiper .swiper-pagination {
  text-align: left;
}

.news-slide:hover h3 a {
  color: #44cef6;
}

.news-list {
  margin-left: -18px;
  margin-right: -18px;
}

.news-list li {
  float: left;
  padding: 0 18px;
  width: 33.33%;
  margin-bottom: 36px;
}

.news-item {
  width: 100%;
}

.news-img {
  width: 100%;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  transition: all 0.5s;
}

.news-info {
  border: 1px solid #dcdcdc;
  padding: 35px;
  transition: all 0.5s;
}

.news-info h3 {
  font-size: 24px;
  line-height: 24px;
  color: #000;
  margin-top: 14px;
  margin-bottom: 30px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.time i {
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/time-icon.png) no-repeat center;
}

.news-info .news-more {
  font-size: 16px;
  color: #999;
  line-height: 20px;
  padding-right: 25px;
  transition: all 0.5s;
  background: url(../img/news-arrow.png) no-repeat right center;
}

.news-item:hover .news-img img {
  transform: scale(1.1);
}

.news-item:hover .news-info {
  background-color: #44cef6;
  border-color: #44cef6;
}

.news-item:hover .news-info h3 {
  color: #fff;
}

.news-item:hover .news-info .time span {
  color: #fff;
}

.news-item:hover .news-info .time i {
  background-image: url(../img/time-icon-on.png);
}

.news-item:hover .news-info .news-more {
  color: #fff;
  background-image: url(../img/news-arrow-on.png);
}

@media (max-width: 1700px) {
  .news-slide {
    padding-top: 50px;
  }

  .news-swiper > .swiper-pagination-bullets {
    bottom: 40px;
  }
}

@media (max-width: 1600px) {
  .news-slide {
    padding-top: 45px;
  }

  .news-topright {
    padding-left: 45px;
    padding-right: 45px;
  }

  .news-swiper > .swiper-pagination-bullets {
    bottom: 20px;
  }

  .news-info {
    padding: 30px;
  }
}

@media (max-width: 1400px) {
  .news-slide h3 a {
    margin-bottom: 20px;
  }

  .time {
    margin-bottom: 12px;
  }

  .news-slide {
    padding-top: 25px;
  }
}

@media (max-width: 1200px) {
  .news-wrap {
    padding-top: 80px;
  }

  .news-topleft {
    width: 100%;
  }

  .news-topright {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .news-slide {
    padding-top: 0px;
  }

  .news-swiper {
    padding-bottom: 30px;
  }

  .news-swiper > .swiper-pagination-bullets {
    bottom: 0px;
  }

  .news-list {
    margin-left: -13px;
    margin-right: -13px;
  }

  .news-list li {
    padding: 0 13px;
  }

  .news-info {
    padding: 25px;
  }
}

@media (max-width: 991px) {
  .news-wrap {
    padding-top: 40px;
  }

  .news-topright {
    padding: 20px;
  }

  .news-slide h3 a {
    margin-bottom: 12px;
  }

  .news-top {
    margin-bottom: 30px;
  }

  .news-list {
    margin-left: 0px;
    margin-right: 0px;
  }

  .news-list li {
    padding: 0px;
    width: 100%;
    float: none;
    margin-bottom: 25px;
  }

  .news-info h3 {
    margin-bottom: 16px;
  }
}

@media (max-width: 559px) {
  .news-slide h3 a {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .news-info {
    padding: 16px;
  }

  .news-info h3 {
    font-size: 20px;
    margin-top: 6px;
    margin-bottom: 10px;
  }
}

/* 人才理念 */
.talent {
  padding-top: 78px;
  overflow: hidden;
  width: 100%;
}

.human-title {
  text-align: center;
  font-size: 50px;
  color: #000;
  line-height: 50px;
  margin-bottom: 40px;
}

.talent-subtitle {
  text-align: center;
  color: #444;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 22px;
}

.talent-list {
  margin-left: -18px;
  margin-right: -18px;
}

.talent-list li {
  padding: 0 18px;
  width: 33.33%;
  float: left;
}

.talent-list li:hover .public-img img {
  transform: scale(1.1);
}

.recruitment {
  padding-top: 100px;
  padding-bottom: 100px;
}

.recruitment-top {
  background-color: #44cef6;
  color: #fff;
  height: 100px;
}

.recruitment-pulic {
  display: flex;
  align-items: center;
  padding-left: 160px;
}

.recruitment-pulic p {
  width: 20%;
  font-size: 24px;
}

.recruitment-pos {
  color: #222;
  height: 80px;
  margin-top: 4px;
  border: 1px solid #dcdcdc;
}

.recruitment-pos p {
  font-size: 16px;
}

.recruitment-arrow {
  height: 30px;
  background: url(../img/talent-more.png) no-repeat left center;
  background-size: 30px 30px;
  cursor: pointer;
}

.recruitment-answer {
  padding-left: 160px;
  border: 1px solid #dcdcdc;
  border-top: none;
  font-size: 16px;
  color: #444;
  padding-top: 28px;
  padding-bottom: 54px;
  display: none;
}

.recruitment-txt {
  margin-top: 6px;
  margin-bottom: 24px;
}

.recruitment-txtbom {
  margin-bottom: 4px;
}

.recruitment-txt p {
  line-height: 36px;
  color: #444;
}

.qq {
  color: #44cef6;
}

.recruitment-list li.on .recruitment-arrow {
  background-image: url(../img/talent-down.png);
}

@media (max-width: 1400px) {
  .recruitment-pulic {
    padding-left: 100px;
  }

  .recruitment-answer {
    padding-left: 100px;
  }
}

@media (max-width: 1200px) {
  .human-title {
    font-size: 42px;
    line-height: 42px;
  }

  .recruitment {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .recruitment-pulic {
    padding-left: 50px;
  }

  .recruitment-answer {
    padding-left: 50px;
  }
}

@media (max-width: 991px) {
  .talent {
    padding-top: 38px;
  }

  .human-title {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .recruitment {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .recruitment-pulic {
    padding-left: 20px;
  }

  .recruitment-answer {
    padding-left: 20px;
  }

  .talent-list {
    margin-left: 0px;
    margin-right: 0px;
  }

  .talent-list li {
    padding: 0px;
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }

  .recruitment-top {
    height: 70px;
  }

  .recruitment-top p {
    font-size: 18px;
    height: 70px;
    display: flex;
    align-items: center;
  }

  .recruitment-pulic {
    justify-content: space-between;
  }

  .recruitment-pulic p:last-child {
    width: 60px;
  }

  .recruitment-pos p {
    height: 52px;
    display: flex;
    align-items: center;
  }

  .recruitment-pos {
    height: 52px;
  }

  .recruitment-answer {
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .recruitment-txt p {
    line-height: 30px;
  }
}

@media (max-width: 599px) {
  .recruitment-pos p {
    font-size: 14px;
  }

  .recruitment-pulic {
    padding-left: 8px;
  }

  .recruitment-answer {
    padding-left: 8px;
  }

  .recruitment-top p {
    font-size: 16px;
  }

  .recruitment-pulic p:last-child {
    width: 40px;
  }
}

/*手机电脑切换*/
.dc-mo {
  display: none;
}

@media (max-width: 991px) {
  .dc-mo {
    display: block;
  }

  .dc-pc {
    display: none;
  }
}

#pbanner .swiper-slide img {
  width: 100%;
  display: block;
}

.message-main {
  width: 1200px;
  padding: 48px 62px;
  min-height: 440px;
  background-color: #fff;
  max-width: 100%;
  position: fixed;
  left: 50%;
  display: none;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  border: 1px solid #dcdfe6;
  -webkit-box-shadow: 0 2px 4px 0 #0000001f, 0 0 6px 0 #0000000a;
  box-shadow: 0 2px 4px 0 #00000024, 0 0 6px 0 #0000000a;
}

.message-main h2 {
  font-size: 34px;
  padding: 20px 0;
}

.message-left-ad h4 {
  font-size: 28px;
  color: #000;
  font-weight: bold;
}

.message-left-ad p {
  line-height: 30px;
}

.home-about-form {
  padding-top: 24px;
}

.message-form-input {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.message-form-input label {
  width: calc(50% - 20px);
  margin-top: 7px;
}

.message-form-input input {
  height: 44px;
}

.message-textarea {
  width: 100%;
  padding-top: 7px;
}

.message-form-but {
  padding-top: 28px;
  text-align: center;
}

.message-form-but a {
  display: inline-block;
  height: 44px;
  width: 160px;
  color: #fff;
  line-height: 44px;
  text-align: center;
  border: 1px solid #44cef6;
  background-color: #44cef6;
}
.inner-main img {
  max-width: 100%;
}

/*联系我们*/

.contact-us {
  display: flex;
  justify-content: space-between;
  background-color: #eee;
}

.contact-us:hover {
  color: #fff;
  background-color: #44cef6;
}

.contact-info {
  width: 550px;
  text-align: center;
  padding: 40px 0 30px;
}

.contact-info h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
  color: #44cef6;
  padding-bottom: 40px;
}

.contact-us:hover h2,
.contact-us:hover p {
  color: #fff;
}

.contact-info div {
  display: inline-block;
  text-align: left;
}

.contact-info p {
  line-height: 32px;
}

.contact-img img,
.contact-map img {
  width: 100%;
}

.contact-img:hover img {
  transform: scale(1.1);
}

.contact-map {
  padding-top: 50px;
}

.contact-map:hover img {
  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .contact-us {
    flex-direction: column;
    background-color: #fff;
  }

  .contact-us:hover {
    background-color: #fff;
  }

  .contact-us:hover .contact-info {
    color: #fff;
    background-color: #44cef6;
  }

  .contact-info {
    width: 100%;
    background-color: #eee;
    margin-bottom: 30px;
  }

  .contact-img img {
    width: 100%;
  }

  .contact-map {
    padding-top: 30px;
  }
}
.inner-content .img img {
  transition: all 0.4s;
}
.inner-content .img {
  overflow: hidden;
}
