@import url(/css/font.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: '微软雅黑';
}

ul,
ol,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

header {
  height: 100rem;
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 9999;
  top: 0;
  padding-left: 35rem;
}

header .logo {
  width: 150rem;
  height: 56rem;
}

header .logo h1 {
  font-size: 0;
}

header .logo h1 img {
  width: 100%;
  height: 100%;
}

header .open {
  width: 100rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .open img {
  width: 36rem;
  height: 32.5rem;
}

header .open:hover .aside {
  width: 70%;
}

header .mask {
  position: fixed;
  top: 100rem;
  left: 0;
  z-index: 9998;
  width: 0%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease-out;
}

header .content {
  position: fixed;
  top: 100rem;
  right: 0;
  z-index: 9998;
  transition: width 0.3s ease-out;
  background-color: #fff;
  width: 0%;
  height: calc(100vh - 100rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header .content ul {
  display: none;
}

header .content ul li a {
  display: block;
  width: 570rem;
  height: 90rem;
  font-size: 28rem;
  line-height: 90rem;
  padding-left: 30rem;
}

header .content ul li .active {
  background-color: #bbd3ff;
}

header .content .login {
  height: 150rem;
  border-top: 1px solid #f2f2f7;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .content .login a {
  display: none;
  width: 250rem;
  height: 90rem;
  border-radius: 10rem;
  border: 1px solid #0d63ff;
  font-size: 28rem;
  color: #0d63ff;
  font-family: R;
  text-align: center;
  line-height: 90rem;
}

footer {
  height: 520rem;
  background-color: #3c3b42;
  padding-top: 165rem;
}

footer .code {
  margin: 0 auto;
  margin-top: 50rem;
  width: 200rem;
  height: 200rem;
}

footer .code img {
  width: 100%;
}

footer .phone {
  text-align: center;
  font-size: 28rem;
  font-family: R;
  color: #fff;
  margin-top: 12rem;
}

footer .footer-list {
  display: flex;
  padding: 0 30rem;
  justify-content: space-between;
  margin-top: 37rem;
}

footer .footer-list dl dt {
  color: #fff;
  font-size: 24rem;
  font-family: R;
}

footer .footer-list dl dd {
  font-size: 24rem;
  font-family: R;
  color: #89878f;
  margin-top: 30rem;
}

footer .footer-list dl dd a {
  color: #898989;
}

footer .footer-code {
  padding: 0 30rem;
  margin-top: 40rem;
}

footer .footer-code dl dt {
  color: #fff;
  font-size: 24rem;
  font-family: R;
}

footer .footer-code dl div {
  display: flex;
  justify-content: space-between;
  margin-top: 30rem;
}

footer .footer-code dl div dd {
  font-size: 24rem;
  font-family: R;
  color: #89878f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer .footer-code dl div dd div {
  width: 120rem;
  height: 120rem;
  border-radius: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin-top: 0;
}

footer .footer-code dl div dd div img {
  width: 120rem;
  height: 120rem;
}

footer .footer-code dl div dd span {
  margin-top: 15rem;
  font-size: 20rem;
  font-family: R;
  color: #89878f;
}

footer .copyright {
  margin-top: 50rem;
  text-align: center;
}

footer .copyright p {
  font-size: 24rem;
  font-family: R;
  color: #89878f;
}

.head-title {
  padding-top: 50rem;
  text-align: center;
}

.head-title .title {
  font-family: B;
  color: #050505;
  font-size: 48rem;
}

.head-title .info {
  font-family: R;
  color: #999;
  font-size: 28rem;
  margin-top: 10rem;
}

/* Friendly Links Styles */
footer .friendly-links {
  margin-top: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}
footer .friendly-links span {
  font-size: 22rem;
  color: #c9c9c9;
  font-family: AlibabaPuHuiTiR;
  margin-right: 20rem;
}

footer .friendly-links ul {
  flex-wrap: wrap;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

footer .friendly-links ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20rem;
}

footer .friendly-links ul li a {
  font-size: 20rem;
  color: #89878f;
  font-family: AlibabaPuHuiTiR;
  transition: color 0.3s ease;
}

footer .friendly-links ul li a:hover {
  color: #fff;
  text-decoration: underline;
}