.container {
  padding-inline: 14vw;
  background-color: #fff;
  margin: auto;
  width: unset!important;
}
.footer {
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  padding: 4vw 14vw;
  gap: 40px;
  color: #292b2d;
  margin-inline: -14vw;
}
.footer .model {
  display: flex;
  justify-content: center;
  gap: 6vw;
}

.footer .footer-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .footer-icons img {
  height: 30px;
  border-radius: 4px;
}
.footer h3 {
  font-size: 16px;
  pointer-events: none;
  line-height: 40px;
  font-weight: 600;
}
.footer p,
.footer a {
  font-size: 16px;
  color: #292b2d;
  line-height: 28px;
  display: block;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .model .item h3 i{
  display: none;
}

@media screen and (max-width: 760px) {

  .footer .model .item h3 i{
    display: unset;
  }

  .footer {
    background-color: #efefef;
    display: flex;
    flex-direction: column;
    padding: 20px 5%;
    gap: 40px;
    color: #292b2d;
    margin-inline: -6vw;
  }

  .footer .model {
    flex-direction: column;
    gap: 5px;
  }
  .footer .model .item>h3{
    pointer-events: auto;
    background: #9999991c;
    padding: 10px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer .model .item .item-child{
    display: none;
    padding: 10px;
  }

  .footer .model .item.active h3 .fa-angle-right{
    transform: rotate(90deg); /* 旋转 90 度 */
    transition: transform 0.3s; /* 设置旋转动画持续时间为0.5秒 */
  }

}/*# sourceMappingURL=footer.css.map */

.item-child a{
  cursor: pointer;
}