html, body {
  margin: 0;
  padding: 0;
}
.footerContent {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: var(--pi-color);;
}
.footerContent .titleContent {
  width: 1200px;
  height: 30px;
  font-size: 26px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 30px;
  margin-left: calc(50% - 600px);
  margin-top: 40px;
}
.footerContent .mainContent {
  margin-top: 34px;
  margin-left: calc(50% - 600px);
  width: 1200px;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footerContent .mainContent .leftContent {
  width: 45%;
  height: auto;
}
.footerContent .mainContent .middleContent {
  width: 35%;
  height: auto;
}
.footerContent .mainContent .rightContent {
  width: 14%;
  height: auto;
}
.footerContent .linkTitle {
  width: fit-content;
  height: 24px;
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 24px;
}
.footerContent .linkLine {
  width: 52px;
  height: 1px;
  background: #FFFFFF;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  margin-top: 11px;
  margin-bottom: 10px;
}
.footerContent .imgLinkLine {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
}
.footerContent .imgLinkLine:nth-child(1) {
  margin-top: 30px;
}
.footerContent .imgLinkLine img {
  width: 13px;
  height: 13px;
  margin-top: 2.5px;
  margin-right: 9px;
}
.footerContent .imgLinkLine .imgLinkLineText {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 18px;
  white-space: normal;
  cursor: default;
}
.footerContent .imgLinkLine .imgLinkLineText1 {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 18px;
  white-space: normal;
  cursor: pointer;
}
.footerContent .imgLinkLine .imgLinkLineText1:hover {
  font-weight: bold;
}
.footerContent .rightContent .mediaContent {
  margin-top: 20px;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footerContent .rightContent .mediaContent .mediaBox {
  width: 30px;
  height: 30px;
  margin-right: 13px;
  cursor: pointer;
  position: relative;
}
.footerContent .rightContent .mediaContent .mediaBox .mediaImg {
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 5px 5px;
}
.footerContent .rightContent .mediaContent .codeImg {
  position: absolute;
  left: -35px;
  top: 45px;
  z-index: 10;
  width: 100px;
  height: 100px;
}
.footerContent .rightContent .mediaContent .codeImg:after {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #FFFFFF;
  position: absolute;
  left: 50%;
  bottom: 100px;
  margin-left: -10px;
}
.footerContent .bottomContent {
  width: 100%;
  height: 40px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #B1C3DB;
  box-sizing: border-box;
}
.footerContent .bottomContent .bottomText {
  width: fit-content;
  height: 22px;
  font-size: 14px;
  font-weight: 400;
  color: #B1C3DB;
  line-height: 22px;
  margin: 0 15px;
}

@media screen and (max-width: 1200px) {
  .footerContent{
    padding: 0 20px;
    box-sizing: border-box;
  }
  .footerContent .titleContent{
    width: 100%;
    margin-left:0;
    display: none;
  }
  .footerContent .mainContent{
    width: 100%;
    flex-direction: column;
    margin-left: 0;
  }
  .footerContent .mainContent .leftContent{
    width: 100%;
    margin-top: 10px;
    display: none;
  }
  .footerContent .mainContent .middleContent{
    width: 100%;
    margin-top: 10px;
  }
  .footerContent .mainContent .rightContent{
    width: 100%;
    margin-top: 10px;
  }
  .footerContent .bottomContent{
    height: auto;
    flex-wrap: wrap;
    /*flex-direction: column;*/
  }
  .footerContent .bottomContent .bottomText{
    height: auto;
    font-size: 12px;
    text-align: center;
  }
  .footerContent .bottomContent .bottomText:nth-child(3), .footerContent .bottomContent .bottomText:nth-child(4){
    width: 100%;
  }
  }