body {
  margin: 0;
  font-family: "PingFang SC", sans-serif;
  color: #333;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
p {
  margin: 0;
}
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1400px) {
  .logo {
    display: none;
  }
}

.product {
  position: relative;
}
.product-dropdown {
  position: absolute;
  top: 76px;
  left: calc(50% - 180px);
  display: none;
  z-index: 100;
  width: 360px;
  height: 522px;
  background: #ffffff;
  border-radius: 8px;
  transition: all 0.3s;
  .title {
    margin: 36px 30px 30px 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
    font-weight: 500;
    font-size: 24px;
    color: #217eff;
    line-height: 24px;
  }
  ul {
    box-sizing: border-box;
    height: 77%;
    padding: 0 20px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  li {
    display: flex;
    align-items: flex-start;
    padding-left: 0px;
    img {
      width: 64px;
      height: 64px;
    }
    h6 {
      font-weight: 500;
      font-size: 24px;
      color: #333333;
      line-height: 24px;
      margin-bottom: 16px;
    }
    span {
      display: inline-block;
      font-weight: 400;
      font-size: 20px;
      color: #666666;
      line-height: 20px;
      & + span {
        margin-top: 8px;
      }
    }
  }

  &.is-show {
    display: block;
  }
}

.footer {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 130px;
  background-color: #1E293B;
  color: #fff;
  text-align: center;
  height: 540px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-right img {
  margin-bottom: 18px;
  width: 100px;
  height: 100px;
}

.footer-right span {
  font-weight: 400;
  font-size: 14px;
  color: #adadad;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #adadad;
}

.footer-left p {
  margin: 10px 0;
  display: flex;
  align-items: center;
}
a {
  color: #adadad;
}

.footer-left img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
