@font-face {
  font-family: enTel;
  src: url(../fonts/SpaceGrotesk-Medium.ttf);
}
@font-face {
  font-family: enTel-R;
  src: url(../fonts/SpaceGrotesk-Regular.ttf);
}
@font-face {
  font-family: enTel-B;
  src: url(../fonts/SpaceGrotesk-Bold.ttf);
}
.w1600 {
  padding: 0 8.3333333333%;
  margin: 0 auto;
}

.w1400 {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.header .top {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding-left: 4.1666666667%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.header .top .logo {
  height: 42px;
  display: block;
  margin: 15px 0;
}
.header .top .logo img {
  height: 100%;
}
.header .top .topNav {
  padding-left: 0;
  background: #fff;
  position: absolute;
  top: 0;
  left: calc(4.1666666667% + 200px);
  transition: left 0.5s;
}
.header .top .topNav ul {
  display: flex;
  margin-bottom: 0;
}
.header .top .topNav ul li {
  margin-right: 70px;
  position: relative;
}
.header .top .topNav ul li a {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #323232;
  line-height: 72px;
  position: relative;
  font-weight: bold;
}
.header .top .topNav ul li a::after {
  width: 0;
  height: 3px;
  background: #004add;
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
.header .top .topNav ul li a img {
  margin-left: 7px;
  transform: rotate(0);
  transition: all 0.3s;
}
.header .top .topNav ul li a:hover {
  color: #004add;
}
.header .top .topNav ul li a:hover::after {
  width: 100%;
}
.header .top .topNav ul li a.on {
  color: #004add;
}
.header .top .topNav ul li a.on img {
  transform: rotate(135deg);
}
.header .top .topNav ul li a.on::after {
  width: 100%;
}
.header .top .topNav ul li:last-child {
  margin-right: 0;
}
.header .top .topNav ul li .level2 {
  position: absolute;
  display: none;
  background: #fff;
  min-width: 190px;
  margin-left: -20px;
  padding: 20px 0;
  border: 1px solid #e0e0e0;
}
.header .top .topNav ul li .level2 a {
  padding: 0 30px 0 20px;
  white-space: nowrap;
  font-size: 14px;
  color: #666;
  line-height: 2.9;
  font-weight: 400;
}
.header .top .topNav ul li .level2 a:hover {
  color: #004add;
}
.header .top .topNav ul li .level2 a::after {
  display: none;
}
.header .top .right {
  display: flex;
}
.header .top .right .tel {
  border-left: 1px solid #e0e0e0;
  text-align: center;
  font-size: 14px;
  color: #323232;
  line-height: 72px;
  padding: 0 30px;
  margin: 0 !important;
  white-space: nowrap;
  width: auto !important;
  font-family: enTel;
}
.header .top .right .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 98px;
  height: 72px;
  border-left: 1px solid #e0e0e0;
}
.header.noneBg {
  box-shadow: none;
}
.header.noneBg .top {
  background: none;
  border-color: rgba(224, 224, 224, 0.1);
}
.header.noneBg .top .topNav {
  background: none;
}
.header.noneBg .top .topNav ul li a {
  filter: grayscale(100%) brightness(100000%);
}
.header.noneBg .top .topNav ul li .level2 a {
  filter: none;
}
.header.noneBg .top .right .tel {
  color: #fff;
  border-color: rgba(224, 224, 224, 0.1);
}
.header.noneBg .top .right .menu {
  border-color: rgba(224, 224, 224, 0.1);
}
.header.noneBg .top .right .menu img {
  filter: grayscale(0%) brightness(100000%);
}

.title {
  padding-top: 110px;
  padding-bottom: 48px;
}
.title p {
  font-size: 48px;
  color: #161616;
}
.title div {
  font-size: 22px;
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.7);
}

.link {
  display: block;
  line-height: 58px;
  font-size: 14px;
  color: #323232;
  text-align: center;
  font-weight: bold;
  width: 240px;
  background: rgba(230, 230, 230, 0.1);
  border-bottom: 2px solid #e6e6e6;
  position: relative;
  transition: all 0.3s;
}
.link::after {
  display: block;
  content: "";
  width: 2px;
  height: 6px;
  background: #e6e6e6;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s;
}
.link::before {
  display: block;
  content: "";
  width: 2px;
  height: 6px;
  background: #e6e6e6;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
}
.link:hover {
  background: rgba(0, 74, 221, 0.8);
  color: #fff;
  border-color: #004add;
}
.link:hover::after {
  background: #004add;
}
.link:hover::before {
  background: #004add;
}

.footer {
  background: #2d2d2d;
  position: relative;
}
.footer .w1600 {
  padding-top: 90px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 114px;
}
.footer .w1600 .left .footerLogo {
  font-size: 0;
  height: 45px;
  margin-bottom: 27px;
}
.footer .w1600 .left .footerLogo img {
  height: 45px;
  width: auto;
}
.footer .w1600 .left p {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
  line-height: 20px;
}
.footer .w1600 .left p img {
  margin-right: 8px;
}
.footer .w1600 .left p a {
  display: block;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
}
.footer .w1600 .footerNav {
  display: flex;
  justify-content: space-between;
  width: 50%;
}
.footer .w1600 .footerNav ul li {
  font-size: 17px;
  line-height: 2.5882352941;
  color: rgba(255, 255, 255, 0.8);
}
.footer .w1600 .footerNav ul li a {
  display: block;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.5);
}
.footer .w1600 .footerWechat .img {
  background: url(../images/wechatBg.png) no-repeat center/cover;
  padding: 8px;
  width: 143px;
  height: 143px;
  font-size: 0;
}
.footer .w1600 .footerWechat p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
  text-align: center;
  margin-top: 6px;
}
.footer .beian {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.footer .beian .sitemap {
  position: absolute;
  opacity: 0;
  left: 0;
  bottom: 40px;
}
.footer .beian .w1600 {
  padding-top: 0;
  padding-bottom: 0;
  height: 98px;
  display: flex;
  justify-content: space-between;
}
.footer .beian .w1600 .left {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-family: enTel-R;
}
.footer .beian .w1600 .left a {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 5px;
  font-family: enTel-R;
}
.footer .beian .w1600 .right {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-family: enTel-R;
}
.footer .beian .w1600 .right ul {
  display: flex;
  margin-bottom: 0;
  margin-right: 5px;
}
.footer .beian .w1600 .right ul li {
  position: relative;
}
.footer .beian .w1600 .right ul li:first-child a {
  padding-left: 0;
}
.footer .beian .w1600 .right ul li a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  padding: 0 20px;
}
.footer .beian .w1600 .right ul li::after {
  width: 2px;
  height: 16px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: block;
  content: "";
}
.footer .beian .w1600 .right ul li:last-child::after {
  display: none;
}
.footer .beian .w1600 .right a {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 5px;
  font-family: enTel-R;
}
.footer .mobBeian {
  display: none;
}
.footer .mobBeian .sitemap {
  position: absolute;
  opacity: 0;
  right: 0;
  bottom: 0px;
}
.footer .goTop {
  cursor: pointer;
  width: 98px;
  height: 98px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer::after {
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 98px;
  background: rgba(255, 255, 255, 0.1);
  content: "";
  display: block;
}

.menuList {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: none;
}
.menuList .right {
  max-width: 380px;
  width: 100%;
  height: 100vh;
  background: #fff;
  position: absolute;
  top: 0;
  right: -100%;
  padding-top: 60px;
}
.menuList .right .close {
  display: block;
  width: 42px;
  height: 42px;
  position: absolute;
  right: 32px;
  top: 9px;
  background: url(../images/close.png) no-repeat center;
}
.menuList .right ul {
  height: 100%;
  overflow: hidden;
  border-top: 1px solid #777677;
  padding-top: 8px;
}
.menuList .right ul li {
  background: #fff;
  transition: all 0.3s;
}
.menuList .right ul li p {
  display: flex;
  padding: 0 32px;
  margin-bottom: 0;
}
.menuList .right ul li p a {
  display: block;
  width: calc(100% - 40px);
  line-height: 42px;
  font-size: 16px;
  color: #323232;
  max-width: 274px;
}
.menuList .right ul li p i {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.menuList .right ul li p i span:first-child {
  width: 15px;
  height: 2px;
  background: #777677;
  position: absolute;
  display: block;
  content: "";
}
.menuList .right ul li p i span:last-child {
  width: 2px;
  height: 15px;
  background: #777677;
  position: absolute;
  display: block;
  content: "";
}
.menuList .right ul li .level2 {
  height: 0;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.menuList .right ul li .level2 a {
  line-height: 42px;
  margin: 0 32px 0 54px;
  color: #323232;
  position: relative;
}
.menuList .right ul li .level2 a:hover {
  color: #004add;
}
.menuList .right ul li .level2 a:hover::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: #004add;
}
.menuList .right ul li.active {
  background: #004add;
}
.menuList .right ul li.active p a {
  color: #fff;
}
.menuList .right ul li.active p i span {
  background: #fff;
}

.pcCont {
  display: block;
}

.mobCont {
  display: none !important;
}

.webHeight {
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: -1000;
  bottom: 0;
}

.rightBlock {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 4;
}
.rightBlock .list {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-image: -webkit-linear-gradient(135deg, rgb(0, 74, 221) 0%, rgb(27, 103, 255) 100%);
  border-top-left-radius: 15px;
  margin-bottom: 2px;
}
.rightBlock .list:last-child {
  margin-bottom: 0;
}
.rightBlock .list .img {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  font-size: 0;
  width: 34px;
  height: 30px;
  width: 100%;
  line-height: 0;
}
.rightBlock .list p {
  text-align: center;
  font-size: 14px;
  color: #fff;
  margin-top: 2px;
  margin-bottom: 0 !important;
}
.rightBlock .list .rightWechat {
  display: none;
  position: absolute;
  top: 0;
  right: 91px;
  width: 182px;
  height: 168px;
  padding: 12px 0 12px 12px;
  background: url(../images/rightBlockImg4.png) no-repeat left center;
}
.rightBlock .list .rightWechat .content {
  background: url(../images/wechatBg.png) no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 143px;
  height: 143px;
  margin: 0 !important;
}
.rightBlock .list .rightWechat .content img {
  max-width: 128px;
  width: 100%;
}

@media (max-width: 1440px) {
  .footer::after {
    display: none;
  }
}
@media (max-width: 1400px) {
  .header .top .topNav ul li {
    margin-right: 40px;
  }
  .header .navList ul li {
    margin-right: 40px;
  }
}
@media (max-width: 1300px) {
  .footer .beian .w1600 {
    flex-direction: column;
    justify-content: center;
  }
  .footer .beian .w1600 .right {
    margin-top: 8px;
  }
}
@media (max-width: 1200px) {
  .header .top .topNav ul li {
    margin-right: 15px;
  }
  .header .navList ul li {
    margin-right: 15px;
  }
  .footer .w1600 .footerNav {
    display: none;
  }
}
@media (max-width: 996px) {
  .header .top .topNav {
    display: none !important;
  }
  .header .navList {
    display: none;
  }
  .header .right .tel {
    display: none;
  }
  .link {
    width: 160px;
    line-height: 40px;
  }
  .title {
    padding: 40px 0;
  }
  .title p {
    font-size: 4vw;
  }
  .title div {
    font-size: 2vw;
  }
  .footer {
    position: relative;
  }
  .footer .beian .w1600 {
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
  }
  .footer .beian .w1600 .left, .footer .beian .w1600 .right {
    height: 30px;
  }
  .footer .beian .w1600 .right ul {
    display: none;
  }
  .footer .goTop {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 750px) {
  .title {
    padding: 40px 0;
  }
  .title p {
    font-size: 4vw;
  }
  .title div {
    font-size: 3vw;
  }
  .footer .w1600 {
    flex-direction: column;
    text-align: center;
    padding: 60px 0 10px;
  }
  .footer .w1600 .left .footerLogo {
    text-align: left;
    margin: 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    height: auto;
  }
  .footer .w1600 p {
    justify-content: center;
    font-size: 2vw;
    padding: 0 30px;
  }
  .footer .w1600 .footerWechat {
    margin-top: 15px;
  }
  .footer .w1600 .footerWechat .img {
    margin: 0 30px;
  }
  .footer .w1600 .footerWechat p {
    display: none;
  }
  .footer .beian {
    display: none;
  }
  .footer .mobBeian {
    display: block;
    margin: 0 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
  }
  .footer .mobBeian p {
    font-size: 2vw;
    text-align: left;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .footer .mobBeian p a {
    color: #fff;
  }
  .footer .goTop {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 10px;
    bottom: 40px;
    background: #000;
  }
}
@media (max-width: 414px) {
  .title p {
    font-size: 6vw;
  }
  .menuList .right {
    max-width: 80%;
  }
  .menuList .right ul li p a {
    font-size: 4vw;
  }
  .menuList .right ul li .level2 a {
    font-size: 4vw;
  }
  .pcCont {
    display: none !important;
  }
  .mobCont {
    display: block !important;
  }
  .footer .w1600 .left p {
    justify-content: flex-start;
  }
  .footer .w1600 .footerWechat .img {
    width: 120px;
    height: 120px;
  }
  .link {
    font-size: 3vw;
  }
}
@media (max-width: 370px) {
  .footer .w1600 .left p {
    align-items: flex-start;
  }
}/*# sourceMappingURL=currency.css.map */