/* 下载页面样式 */
.page_wrap {
  padding-top: 1.06667rem;
  min-height: 100vh;
}
.page_content {
  max-width: 17.06667rem;
  margin: 0 auto;
  padding: 1.06667rem 0.53333rem 1.6rem;
  box-sizing: border-box;
}
.download-title {
  font-size: 0.48rem;
  font-weight: 700;
  color: #09090a;
  text-align: center;
  margin-bottom: 0.26667rem;
}
.download-tips {
  font-size: 0.21333rem;
  color: rgba(47,47,48,.75);
  text-align: center;
  margin-bottom: 0.8rem;
}
.download-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.26667rem;
}
.item-wrapper {
  width: calc(33.333% - 0.26667rem);
  min-width: 2.4rem;
  max-width: 3.2rem;
}
.download-item {
  background: #fff;
  border-radius: 0.10667rem;
  padding: 0.32rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 0.02667rem 0.10667rem rgba(0,0,0,0.08);
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.download-item:hover {
  box-shadow: 0 0.05333rem 0.21333rem rgba(52,133,255,0.2);
  transform: translateY(-0.05333rem);
}

.download-item__img {
  width: 1.06667rem;
  height: 1.06667rem;
  margin-bottom: 0.21333rem;
  position: relative;
}
.download-item__img .mr_icon {
  width: 100%;
  height: 100%;
  fill: #3485ff;
}
.download-item__img .gray_icon {
  fill: #ccc;
}
.download-item__icon--hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3485ff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.download-item:hover .download-item__icon--hover {
  opacity: 1;
}
.download-item__icon {
  width: 0.53333rem;
  height: 0.53333rem;
  fill: #fff;
}
.download-item__content {
  flex-direction: column;
}
.download-item__desc {
  transition: opacity 0.3s ease;
}
.download-item__desc--hover {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.download-item:hover .download-item__desc {
  opacity: 0;
}
.download-item:hover .download-item__desc--hover {
  opacity: 1;
}
.download-item__title {
  font-size: 0.21333rem;
  font-weight: 600;
  color: #09090a;
  margin-bottom: 0.10667rem;
}
.download-item__os {
  font-size: 0.24rem;
}
.download-item__version {
  font-size: 0.16rem;
  color: rgba(47,47,48,.65);
  line-height: 1.5;
}

.download-item__tips {
  color: #3485ff;
}
.download-item__name {
  font-size: 0.18667rem;
  color: #09090a;
  margin-bottom: 0.05333rem;
}
.download-item__date {
  font-size: 0.14667rem;
  color: rgba(47,47,48,.5);
}
.beta {
  position: absolute;
  top: 0.10667rem;
  right: 0.10667rem;
  background: linear-gradient(135deg, #3485ff, #01a4ff);
  color: #fff;
  font-size: 0.14667rem;
  padding: 0.02667rem 0.10667rem;
  border-radius: 0.05333rem;
}
.open-beta .beta {
  background: #f0f0f0;
  color: rgba(47,47,48,.5);
}

/* 响应式 */
@media only screen and (max-width: 992px) {
  .item-wrapper {
    width: calc(50% - 0.26667rem);
  }
}
@media only screen and (max-width: 768px) {
  .page_content {
    padding: 0.8rem 0.21333rem 1.06667rem;
  }
  .download-title {
    font-size: 0.37333rem;
  }
  .item-wrapper {
    width: 100%;
    max-width: none;
  }
  .download-item {
    flex-direction: row;
    text-align: left;
    padding: 0.21333rem;
  }
  .download-item__img {
    width: 0.8rem;
    height: 0.8rem;
    margin-bottom: 0;
    margin-right: 0.21333rem;
  }
}
