.footer-container {
  box-sizing: border-box;
  position: relative;
  background-color: #ffffff;
  height: 250px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 46px;
}

.footer-lf-nav {
  display: flex;
  align-items: center;
}
.footer-lf-nav a {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 18px;
  color: #333333;
}
.footer-lf-nav .divider {
  display: block;
  content: "";
  width: 1px;
  height: 14px;
  background: rgba(0, 0, 0, 0.07);
  margin: 0 22px 0 21px;
}
.footer-lf-tel {
  font-size: 12px;
  line-height: 20px;
  color: #0943a1;
  padding-top: 26px;
}
.footer-lf-tel a {
  color: #0943a1;
  text-decoration: underline;
  margin-right: 50px;
}
.footer-lf-copyright {
  display: flex;
  padding-top: 44px;
}
.footer-lf-copyright .copyright-text {
  font-size: 13px;
  line-height: 24px;
  color: #999999;
  padding-left: 24px;
}
.footer-lf-copyright .copyright-text a {
  color: #999999;
}
.footer-lf-copyright .copyright-text .pl-20 {
  padding-left: 20px;
}

/* 下载itunes */
.download-itunes-container {
  box-sizing: border-box;
  position: absolute;
  top: -270px;
  left: 0;
  z-index: 68;
  width: 100%;
  height: 270px;
  background: rgba(255, 255, 255, 0.95);
  border-top: 2px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  /* display: none; */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.download-itunes-container.show {
  /* display: block; */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.download-itunes-container .download-itunes-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 8px;
}
.download-itunes-list li {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 620px;
  height: 110px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 0 40px 0 30px;
  margin-top: 20px;
}
.download-itunes-list li .item-lf {
  display: flex;
  align-items: center;
}
.download-itunes-list li .item-lf-text {
  padding-left: 20px;
}
.download-itunes-list li .item-lf-text span {
  display: block;
}
.download-itunes-list li .item-lf-text span:nth-child(1) {
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: #333333;
}
.download-itunes-list li .item-lf-text span:nth-child(2) {
  font-size: 13px;
  line-height: 20px;
  color: #999999;
  padding-top: 6px;
}

.download-itunes-list li .item-rt {
  position: relative;
  width: 80px;
  height: 32px;
}
.download-itunes-list li .item-rt .item-rt-btn {
  display: block;
  width: 80px;
  height: 32px;
  line-height: 33px;
  text-align: center;
  background: rgba(0, 122, 255, 0.15);
  font-size: 12px;
  color: #236ee7;
  border-radius: 8px;
}
.download-itunes-list li .item-rt .item-rt-btn:hover {
  background: rgba(0, 122, 255, 0.2);
}
.download-itunes-list li .item-rt .item-popover {
  top: 32px;
  right: 0;
}

/* START 下载Popover Hover */
.download-itunes-list li .item-rt:hover .item-popover {
  display: block;
  /* opacity: 1; */
  /* visibility: visible; */
}
.download-itunes-list li .item-rt:hover .item-rt-btn,
.download-itunes-list li .item-rt .common-down-popover:hover ~ .item-rt-btn {
  background: rgba(0, 122, 255, 0.2) !important;
}
/* END 下载Popover Hover */
