* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style-type: none;
}
a {
  text-decoration: none;
}
.footer {
  /* max-width: 120rem; */
  width: 100%;
  min-height: 36.25rem;
  background: #343434;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.footer .hr {
  margin-top: 4rem;
  width: 87.5rem;
  height: 0.0625rem;
  background: #ffffff;
  opacity: 0.1;
}
.footer .footer-content {
  width: 87.5rem;
  min-height: 27.1875rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  /* padding: 0rem 16.25rem; */
}
.footer .footer-content .footer-left {
  width: 25rem;
  height: 27.1875rem;
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.1);
}
.footer .footer-content .footer-left .footer-left-logo {
  margin-top: 1.875rem;
  width: 12.5rem;
  height: 4rem;
}
.footer .footer-content .footer-left .footer-left-logo img {
  width: 12.5rem;
  height: 4rem;
}
.footer .footer-content .footer-left .footer-left-text {
  margin-top: 2.375rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8;
  color: #ffffff;
  font-family: Noto Sans SC;
  font-size: 1rem;
  font-size: max(1rem, 14px);
  font-weight: 500;
  line-height: 1.4375rem;
  letter-spacing: 0rem;
  white-space: wrap;
  text-align: left;
}
.footer .footer-content .footer-left .footer-left-text div {
  width: 20.625rem;
  padding-right: 1rem;
}
.footer .footer-content .footer-left .footer-left-code {
  margin-top: 2rem;
  width: 15rem;
  height: 126x;
  display: flex;
  justify-content: space-between;
}
.footer .footer-content .footer-left .footer-left-code img {
  width: 6.25rem;
  height: 6.25rem;
}
.footer .footer-content .footer-left .footer-left-code .code div {
  margin-top: 0.3125rem;
  width: 6.25rem;
  height: 1rem;
  color: #ffffff;
  font-family: OPPO Sans 4;
  font-size: 0.875rem;
  font-size: max(0.875rem, 14px);
  font-weight: 400;
  line-height: 1rem;
  letter-spacing: 0rem;
  text-align: center;
}
.footer .footer-content .footer-right {
  flex: 1;
}
.footer .footer-content .footer-right .footer-right-list {
  width: 57.375rem;
  min-height: 17.75rem;
  display: flex;
  margin-top: 2.5rem;
  margin-left: 5rem;
  color: #ffffff;
  font-family: OPPO Sans 4;
  font-size: 1rem;
  font-size: max(1rem, 14px);
  font-weight: 400;
  line-height: 1.875rem;
  letter-spacing: 0rem;
  text-align: left;
}
.footer .footer-content .footer-right .footer-right-list .accordion-content {
  display: flex;
  flex-direction: column;
}
.footer .footer-content .footer-right .footer-right-list .accordion-content a {
  transition: all .2s;
}
.footer .footer-content .footer-right .footer-right-list .accordion-content a:hover {
  color: var(--color-primary);
}
.footer .footer-content .footer-right .footer-right-list li {
  /* width: 5.25rem;*/
  margin-right: 12.125rem;
  display: flex;
  flex-direction: column;
}
.footer .footer-content .footer-right .footer-right-list li a.title {
  margin-bottom: 1.5rem;
  font-family: OPPO Sans 4;
  font-size: 1rem;
  font-size: max(1rem, 16px);
  font-weight: 500;
  color: #ffffff;
}
.footer .footer-content .footer-right .footer-right-list li a {
  color: #ffffff;
}

.footer .footer-content .footer-right .footer-right-list .accordion-header {
  font-size: 1.0625rem;
  font-size: max(1.0625rem, 16px);
  margin-bottom: 1.5rem;
}

/* 手风琴样式 - 仅在小屏幕上生效 */
@media (max-width: 600px) {
  .footer .footer-content .footer-right .footer-right-list {
    display: flex;
    flex-direction: column;
  }

  .footer .footer-content .footer-right .footer-right-list .accordion-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer .footer-content .footer-right .footer-right-list .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    cursor: pointer;
    font-size: 1.0625rem;
    font-size: max(1.0625rem, 16px);
    margin-bottom: 0;
  }

  .footer .footer-content .footer-right .footer-right-list .accordion-icon {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
  }

  .footer .footer-content .footer-right .footer-right-list .accordion-item.active .accordion-icon {
    transform: rotate(180deg);
  }

  .footer .footer-content .footer-right .footer-right-list .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .footer .footer-content .footer-right .footer-right-list .accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 0.5rem;
  }

  .footer .footer-content .footer-right .footer-right-list .accordion-content a {
    display: block;
    padding: 0.25rem 0;
    color: rgba(255, 255, 255, 0.8);
  }

  .footer .footer-content .footer-right .footer-right-list .accordion-content a:hover {
    color: #ffffff;
  }
}
.footer .footer-content .footer-right .footer-right-link {
  margin-top: 3rem;
  margin-left: 5rem;
  /* width: 52.4375rem; */
  /* height: 1rem; */
}

.footer .footer-content .footer-right .footer-right-link a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-right: 0.5rem;
  line-height: 1.5;
}

.footer .footer-content .footer-right .footer-right-link a:hover {
  color: var(--color-primary);
}

.footer .footer-content .footer-right .footer-right-link {
  color: #ffffff;
  font-family: OPPO Sans 4;
  font-size: 0.875rem;
  font-size: max(0.875rem, 14px);
  font-weight: 400;
  letter-spacing: 0rem;
  text-align: left;
  white-space: wrap;
}
.footer .footer-content .footer-right .footer-right-link span {
  display: inline-block;
  width: 0.625rem;
}
.footer .footer-foot {
  width: 100%;
  min-height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-family: OPPO Sans 4;
  font-size: 0.875rem;
  font-size: max(0.875rem, 14px);
  font-weight: 400;
  line-height: 1.2rem;
  letter-spacing: 0rem;
  text-align: left;
}
.footer .footer-foot span:first-of-type {
  /* width: 18.25rem; */
  display: flex;
  justify-content: space-between;
}
.footer .footer-foot .beian {
  display: flex;
  align-items: center;
}
.footer .footer-foot .mag {
}
.footer .footer-foot img {
  width: 14px;
  height: 14px;
  margin-right: 0.3125rem;
}
.footer .footer-foot .hao {
  margin-right: 10.25rem;
}
.footer .footer-foot span:last-of-type {
  /* width: 22.8125rem; */
  display: flex;
  justify-content: space-evenly;
}

.footer .footer-foot {
  gap: 10px;
}

.footer-foot .shengming {
  display: flex;
  gap: 10px;
}
.footer-foot .banquan {
  display: flex;
  gap: 10px;
}

@media (max-width: 1500px) {
  .footer .hr {
    width: 62.5rem;
  }
  .footer .footer-content {
    width: 62.5rem;
  }
  .footer .footer-content .footer-right .footer-right-list li {
    margin-right: 6.25rem;
  }
  .footer .footer-content .footer-right .footer-right-link {
    width: 37.5rem;
    line-height: 1.25rem;
    margin-top: 3.25rem;
  }
  .footer .footer-foot .hao {
    margin-right: 0.625rem;
  }
}

@media (max-width: 1200px) {
  .footer .footer-foot {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin: 10px 0;
  }
}

/* 1020px */

/* 800px */

@media (max-width: 800px) {
  .footer .hr {
    width: 37.5rem;
  }
  .footer .footer-content {
    width: 37.5rem;
    flex-direction: column;
  }
  .footer .footer-content .footer-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: none;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
  }
  .footer .footer-content .footer-left .footer-left-logo {
    width: 100%;
    padding-left: 1.875rem;
  }
  .footer .footer-content .footer-left .footer-left-text {
    padding-left: 1.875rem;
  }
  .footer .footer-content .footer-left .footer-left-code {
    padding-left: 1.875rem;
  }
  .footer .footer-content .footer-left .footer-left-text div {
    width: 100%;
    text-align: left;
  }
  .footer .footer-content .footer-right {
    padding: 1.25rem 1.875rem;
  }
  .footer .footer-content .footer-right .footer-right-list {
    margin-top: 0rem;
    margin-left: 0rem;
  }
  .footer .footer-content .footer-right .footer-right-list li {
    margin-right: 1rem;
  }
  .footer .footer-content .footer-right .footer-right-list li a.title {
    margin-bottom: 0.625rem;
    font-size: 1rem;
    font-size: max(1rem, 14px);
    font-weight: 500;
  }
  .footer .footer-content .footer-right .footer-right-link {
    width: 31.25rem;
    margin-top: 0.625rem;
    margin-left: 0rem;
    line-height: 1.25rem;
    text-align: center;
  }

  .footer-foot {
    width: 50rem;
    flex-direction: column;
    margin-top: 0.625rem;
  }
  .footer .footer-foot span:first-of-type {
    width: 18.25rem;
    display: flex;
    flex-direction: row;
  }
  .footer .footer-foot .beian {
    display: flex;
    flex-direction: row;
  }
  .footer .footer-foot span:last-of-type {
    flex-direction: row;
  }
}

/* 600px
 */
@media (max-width: 800px) {
  .footer .hr {
    display: none;
  }
  .footer .footer-content {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-left {
    width: 90% !important;
    display: flex;
    justify-content: space-between;
  }
  .footer-right {
    width: 90%;
  }
  .footer-right-list {
    width: initial !important;
    display: flex;
    justify-content: space-between;
  }

  .footer .footer-content .footer-left {
    height: initial;
  }

  .footer .footer-content .footer-left .footer-left-text {
    text-align: center;
    padding-left: 0;
  }
  .footer .footer-content .footer-left .footer-left-logo {
    padding-left: 0;
  }
  .footer .footer-content .footer-left .footer-left-code {
    display: flex;
    width: 100%;
    padding-left: 0;
  }
  .footer .footer-content .footer-left .footer-left-code .code {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
  }
  .footer .footer-content .footer-left .footer-left-code img {
    width: 10rem;
    width: 70% !important;
    height: 70%;
  }
  .footer .footer-content .footer-left .footer-left-code img {
    width: 5rem;
  }
  .footer .footer-content .footer-left .footer-left-code .code div {
    width: initial;
    text-align: center;
    font-size: 14px;
    font-size: max(0.75rem, 14px);
    margin-top: 10px;
    padding-bottom: 10px;
  }
  .footer .footer-content .footer-right {
    padding: 1.875rem 0rem;
  }
  .footer .footer-content .footer-right .footer-right-list {
    margin-top: 0rem;
    margin-left: 0rem;
    width: 25rem;
    flex-wrap: nowrap;
    text-align: left;
    white-space: nowrap;
  }
  .footer .footer-content .footer-right .footer-right-list li a.title {
    margin-bottom: 0.625rem;
    font-size: 1rem;
    font-size: max(1rem, 14px);
    font-weight: 500;
  }
  .footer .footer-content .footer-right .footer-right-link {
    width: 100%;
    margin-top: 1.875rem;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    text-align: center !important;
    /* justify-content: center; */
    line-height: 1.5rem;
  }
  .footer .footer-foot {
    /* width: 100%; */
    /* width: 25rem; */
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-left: 0;
    padding-bottom: 1rem;
    text-align: center;
    gap: 0.5rem;
  }
  .footer .footer-foot span {
    width: 100%;
    gap: 0.5rem;
  }
  .footer .footer-foot span:first-of-type {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .footer .footer-foot .mag {
    width: 100%;
    margin: 0;
  }
  .footer .footer-foot .beian {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0rem;
  }
  .footer .footer-foot span:last-of-type {
    flex-direction: row;
    justify-content: center;
    align-items: start;
    width: 100%;
  }
}
