/* 下载模态框样式 */
.download-pro-item:hover .popover-other,  
.download-pro-item:hover .item-popover {
  display: block;
  /* opacity: 1; */
  /* visibility: visible; */
}

.download-pro-item:hover .item-card,
.download-pro-item .common-down-popover:hover ~ .item-card {
  background: rgba(0, 0, 0, 0.05) !important;
  box-shadow: none;
}

.download-pro-item .item-popover {
  top: 130px;
  left: 0;
}

.download-pro-item:last-child .item-popover {
  left: auto;
  right: 0;
}

.popover-other::before,
.download-pro-item .item-popover::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 120px;
  height: 10px;
  background: url('../image/shadow-arrow.svg') no-repeat center;
}

.download-pro-item:last-child .item-popover::before {
  left: auto;
  right: 0;
}

.download-pro-item .item-popover .item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.popover-other {
  box-sizing: border-box;
  position: absolute;
  top: 130px;
  left: -50%;
  background: #FFFFFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: none;
}

.popover-other::before {
  left: 25%;
}

.popover-android {
  width: 240px;
  height: 260px;
  text-align: center;
}

.popover-android .title {
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  padding: 20px 0 10px;
}

.popover-ios {
  box-sizing: border-box;
  left: 0;
  width: 440px;
  padding: 30px;
}

.popover-ios::before {
  left: 0;
}

.popover-ios .title {
  width: 100%;
  height: 52px;
  font-size: 14px;
  color: #333333;
  line-height: 52px;
  font-weight: bold;
  text-align: center;
  background: rgba(0, 122, 255, 0.05);
  border-radius: 8px;
}

.popover-ios .desc {
  counter-reset: item;
  font-size: 12px;
  color: #333333;
  line-height: 18px;
  padding: 15px 10px 0;
}

.popover-ios .desc li {
  counter-increment: item;
  padding: 5px 0;
  display: flex;
}

.popover-ios .desc li::before {
  content: counter(item) "、";
  display: block;
}

.popover-ios .tip {
  padding-top: 25px;
}

.popover-ios .tip span {
  font-size: 12px;
  color: #333333;
  padding: 8px 18px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
}