/* 应用分发样式 */
.article-banner .banner-img{
  height: 70rem!important;
  object-fit: fill!important;
}
.appdistribution-container{
  background-color: var(--bg-color-1);
}
.distribution-content {
  margin-top: 7.6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
}
.distribution-item {
  border-radius: var(--radius-primary);
  padding: 4.4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f5f5f5;
}
.distribution-item-img {
  width: 8rem;
  height: 7.6rem;
}
.distribution-item-img .distribution-icon{
  width: 8rem;
  height: 7.6rem;
}
.distribution-item-title {
  margin-top: 2.4rem;
  font-size: 2.8rem;
  line-height: 4.4rem;
  color: rgba(29, 29, 31, 0.95);
  font-family: "SourceHanSansCN-Medium"!important;
}

/* 软件商店 */
.section-soft-container{
  padding: 14rem 24rem;
  background-color: var(--black-light-13);
}
.soft-shop-cont{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.banner-link{
  display: block;
  margin: 4rem 0 0 0;
  height: 6rem;
  line-height: 6rem;
  font-family: "SourceHanSansCN-regular"!important;
  padding: 0rem 7.2rem;
}
.soft-shop-itemLeft h1{
  margin-top: 8.4rem;
  font-size: 6rem;
  line-height: 9rem;
  color: rgba(29, 29, 31, 0.95);
  font-family: "SourceHanSansCN-Bold";
}
.soft-shop-itemLeft p{
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 3.4rem;
  color: rgba(98, 98, 98, 0.95);
  font-family: "SourceHanSansCN-Medium";
}
.soft-shop-itemRight{
  width: 66.3rem;
  height: 44.1rem;
}
.soft-shop-itemRight img{
  width: 100%;
  height: 100%;
}

/* 软件仓库 */
.section-warehouse-container{
  padding: 14rem 24rem;
  background-color: var(--bg-color-1);
}
.soft-warehouse-cont{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.soft-warehouse-itemLeft{
  width: 68.8rem;
  height: 42.2rem;
}
.soft-warehouse-itemLeft img{
  width: 100%;
  height: 100%;
}
.soft-warehouse-itemRight h1{
  margin-top: 7.2rem;
  font-size: 6rem;
  line-height: 9rem;
  color: rgba(29, 29, 31, 0.95);
  font-family: "SourceHanSansCN-Bold";
}
.soft-warehouse-itemRight p{
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 3.2rem;
  color: rgba(98, 98, 98, 0.95);
  font-family: "SourceHanSansCN-Medium";
}

@media screen and (max-width: 1280px) {
  /* 软件商店 */
  .section-soft-container, .section-warehouse-container {
    padding: 3rem 6rem;
  }
}

@media screen and (max-width: 768px){
  .article-banner .banner-img{
    height: 12rem!important;
    object-fit: cover!important;
  }
  .banner-link {
    margin: 0.75rem 0 0 0;
    padding: 0.15rem 1.5rem;
    font-size: 0.7rem;
    height: 1.5rem;
    line-height: 1rem;
    border-radius: 2rem;
    width: fit-content;
  }
  .soft-shop-cont, .soft-warehouse-cont {
    display: block;
  }

  .distribution-content{
    margin-top: 0rem;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }
  .distribution-item {
    padding: 1rem 0rem 0rem 0rem;
    border-radius: 1rem;
  }
  .distribution-item-img {
    width: 2.5rem;
    height: 2.3rem;
  }
  .distribution-item-img  .distribution-icon{
    width: 2.5rem;
    height: 2.3rem;
  }
  .distribution-item-title {
    font-size: 0.65rem;
    margin-top: 0.5rem;
    line-height: 2.2rem;
  }
  .section-soft-container{
    padding: 1rem 2.4rem;
  }
  .soft-shop-itemLeft h1{
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1rem;
  }
  .soft-shop-itemLeft p{
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 0.45rem;
    line-height: 1rem;
  }
  .soft-shop-itemRight{
    margin: 0.5rem 0 0 0;
    width: 100%;
    height: auto;
  }
  .soft-shop-itemRight img{
    width: 100%;
    height: auto;
  }
  
  /* 软件仓库 */
  .section-warehouse-container{
    padding: 1rem 2rem;
  }
  .soft-warehouse-itemLeft{
    width: 100%;
    height: auto;
  }
  .soft-warehouse-itemLeft img{
    width: 100%;
    height: auto;
  }
  .soft-warehouse-itemRight h1{
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1rem;
  }
  .soft-warehouse-itemRight p{
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 0.45rem;
    line-height: 1rem;
  }
}