﻿@charset "UTF-8";
* {
  font-family: "微软雅黑";
}

.hide {
  display: none;
}

.mark-sr {
  height: 100%;
  padding: 0;
  overflow: hidden;
}

.mark {
  display: none;
  height: 100%;
  width: 100%;
  background-color: white;
  z-index: 998;
  position: fixed;
  top: 0;
}

.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

body header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #eee;
}
body header .header-inline {
  max-width: 1200px;
  height: 100%;
  margin: auto;
}
body header .header-inline .logo {
  float: left;
  margin-top: 7px;
  width: 232px;
  height: 66px;
  background-image: url(../img/base-logo.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
body header .header-inline nav.pc {
  float: right;
}
body header .header-inline nav.pc ul {
  display: flex;
  justify-content: space-between;
}
body header .header-inline nav.pc ul li {
  padding: 0 40px;
}
body header .header-inline nav.pc ul li a {
  display: block;
  height: 77px;
  line-height: 77px;
  font-size: 14px;
  color: #373d41;
}
body header .header-inline nav.pc ul li.active a {
  color: #00c1de;
}
body header .header-inline nav.pc ul li.active a:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  border-bottom: 3px solid #00c1de;
}
body header .header-inline nav.pc ul li:hover a {
  color: #00c1de;
}
body header .header-inline nav.pc ul li:hover a:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #00c1de;
  animation: border .4s 1 ease-out;
  margin: auto;
}
@keyframes border {
  0% {
    width: 0px;
  }
  100% {
    width: 100%;
  }
}
body header .header-inline > .icon-caidan {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  font-size: 28px;
  color: #666;
}
body header .header-inline nav.mobile {
  display: none;
  float: right;
  position: absolute;
  left: 0px;
  top: 60px;
  width: 100%;
  background-color: white;
}
body header .header-inline nav.mobile ul li {
  border-bottom: 1px solid #f2f2f2;
}
body header .header-inline nav.mobile ul li a {
  display: flex;
  justify-content: space-between;
  height: 48px;
  line-height: 48px;
  font-size: 14px;
  padding: 0 20px;
  color: #373d41;
}
body header .header-inline nav.mobile ul li a:after {
  content: "\e62b";
}
body header .header-inline nav.mobile ul li.active a {
  color: #00c1de;
}
body > section {
  padding-top: 80px;
}
body .footerpage > footer {
  background-color: #373d41;
}
body .footerpage > footer section {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  background-color: #373d41;
}
body .footerpage > footer section .left {
  width: 50%;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 15px;
}
body .footerpage > footer section .left .logo {
  width: 232px;
  height: 66px;
  background-image: url(../img/base-logo-wb.png);
  margin-bottom: 26px;
}
body .footerpage > footer section .left .address,
body .footerpage > footer section .left .phone,
body .footerpage > footer section .left .email {
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  padding-left: 22px;
  margin-top: 12px;
  background-repeat: no-repeat;
}
body .footerpage > footer section .left .address {
  background-image: url(../img/base-address.png);
}
body .footerpage > footer section .left .phone {
  background-image: url(../img/base-phone.png);
}
body .footerpage > footer section .left .email {
  background-image: url(../img/base-email.png);
}
body .footerpage > footer section .right {
  width: 50%;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .footerpage > footer section .right .code {
  width: 140px;
  padding-top: 150px;
  background-image: url(../img/base-code.png);
  background-repeat: no-repeat;
  font-size: 12px;
  color: #fff;
  text-align: center;
}
body .footerpage > footer section .right aside {
  margin-left: 50px;
  color: #fff;
}
body .footerpage > footer section .right aside .line {
  width: 12px;
  height: 2px;
  margin: 8px;
  background-color: #00C1DE;
}
body .footerpage > footer section .right aside .p1 {
  font-size: 16px;
}
body .footerpage > footer section .right aside .p2 {
  font-size: 12px;
  margin-bottom: 20px;
}
body .footerpage > footer section .right aside .p3 {
  font-size: 20px;
  margin-bottom: 16px;
}
body .footerpage > footer section .right aside .p4 {
  font-size: 14px;
  margin-bottom: 30px;
}
body .footerpage > footer footer {
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  background-color: #22252e;
}

@media (max-width: 1120px) and (min-width: 320px) {
  body header {
    height: 60px;
  }
  body header .header-inline {
    height: 100%;
    padding: 0 20px;
  }
  body header .header-inline .logo {
    width: 144px;
    height: 41px;
    background-size: 100%;
  }
  body header .header-inline > .icon-caidan {
    top: 12px;
  }
  body header .header-inline nav.pc ul li a {
    height: 60px;
    line-height: 57px;
  }
  body header > .icon-caidan {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 32px;
    height: 32px;
    font-size: 28px;
    color: #666;
  }
  body header nav.mobile {
    display: none;
    position: absolute;
    left: 0px;
    top: 60px;
    width: 100%;
    background-color: white;
  }
  body header nav.mobile ul li {
    border-bottom: 1px solid #f2f2f2;
  }
  body header nav.mobile ul li a {
    display: flex;
    justify-content: space-between;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    padding: 0 20px;
    color: #373d41;
  }
  body header nav.mobile ul li a:after {
    content: "\e62b";
  }
  body header nav.mobile ul li.active a {
    color: #00c1de;
  }
  body > section {
    padding-top: 60px;
  }
}
.toTop {
  display: none;
  width: 56px;
  height: 56px;
  position: fixed;
  bottom: 150px;
  right: 50px;
  z-index: 99;
  cursor: pointer;
  background-image: url(../img/toTop.png);
}

@media screen and (max-width: 768px) {
  body .footerpage > footer section {
    display: block;
  }
  body .footerpage > footer section .left {
    width: 100%;
    height: 220px;
    align-items: center;
  }
  body .footerpage > footer section .right {
    width: 100%;
    height: 220px;
  }
  body .footerpage > footer section .right aside {
    margin-left: 20px;
  }
  body .footerpage > footer footer {
    font-size: 12px;
  }
}
