#footer {
  width: 100%;
  height: 320px;
  background-image: url("/images/main/footer.png");
  background-size: 100% 100%;
  position: relative;
}
@keyframes slow-movement-right {
  from {
    background-position: 0 bottom;
  }
  to {
    background-position: -100% bottom;
  }
}
@keyframes slow-movement-left {
  from {
    background-position: 0 bottom;
  }
  to {
    background-position: 100% bottom;
  }
}
#footer .img-cloud-box {
  width: 100%;
  height: 100px;
  position: absolute;
  top: -96px;
  left: 0;
  overflow: hidden;
}
#footer .img-cloud-box .center-box-1 {
  background-image: url("/images/main/bottom-img-1.png");
  background-size: auto 100%;
  animation: 25s linear infinite slow-movement-right;
  position: relative;
  z-index: 2;
}
#footer .img-cloud-box .center-box-1 img {
  opacity: 0 !important;
  visibility: hidden !important;
}
#footer .img-cloud-box .center-box-2 {
  background-image: url("/images/main/bottom-img-2.png");
  background-size: auto 100%;
  animation: 50s linear infinite slow-movement-left;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#footer .img-cloud-box .center-box-2 img {
  opacity: 0 !important;
  visibility: hidden !important;
}
#footer .inner {
  box-sizing: border-box;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
}
#footer .inner .top-box {
  width: 100%;
  position: relative;
  height: 70px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
}
#footer .inner .top-box:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .inner .top-box .detail {
  display: flex;
}
#footer .inner .top-box .detail .address-box {
  width: 250px;
  display: flex;
  align-items: baseline;
  line-height: 23px;
}
#footer .inner .top-box .detail .address-box img {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
#footer .inner .top-box .detail .info-box {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
#footer .inner .top-box .detail .info-box .item {
  display: flex;
  align-items: center;
}
#footer .inner .top-box .detail .info-box .item img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
#footer .inner .bottom-box {
  width: 100%;
  padding: 26px 0;
  font-size: 14px;
  color: #ffffff;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  gap: 30px 60px !important;
  cursor: pointer;
}
#footer .inner .bottom-box a {
  display: block;
  color: #ffffff;
}
#footer .inner .bottom-box .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.search-box {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
  display: none;
  animation: fadeIn 0.5s forwards;
}
.search-box .search-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
}
.search-box .close-btn {
  position: absolute;
  right: 50px;
  top: 50px;
  width: 40px;
  height: 40px;
  background: url(/images/main/close.png) center center no-repeat;
  background-size: cover;
  z-index: 10;
  cursor: pointer;
}
.search-box .content {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 690px;
  height: 50px;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-box .content .input-el {
  width: 540px;
  height: 42px;
  padding-left: 12px;
}
.search-box .content .submit-btn {
  width: 160px;
  height: 46px;
}
.columns-box {
  position: fixed;
  left: 0;
  top: 46px;
  width: 100%;
  height: calc(100vh - 46px);
  z-index: 1100;
  display: none;
  background: #014a7d;
}
.columns-box .columns-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/main/columns-bg.png");
  background-size: cover;
  z-index: 1;
  pointer-events: none;
  /* ½ûÓÃ½»»¥ */
}
.columns-box .tiled-list {
  padding: 45px 162px 0 162px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0 100px;
}
.columns-box .tiled-list .list-box {
  width: 100px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.columns-box .tiled-list .list-box .current {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 42px;
}
.columns-box .tiled-list .list-box .child-list > :not(:last-child) {
  margin-bottom: 20px;
}
.columns-box .tiled-list .list-box .child-list a {
  display: block;
  color: #fff;
}
/*# sourceMappingURL=footer.css.map */