.allBg {
  width: 100%;
  background: url("../imgs/newBgl1.png") 0 0 no-repeat,
    url("../imgs/newBgl2.png") 0 700px no-repeat,
    url("../imgs/newBgr2.png") right 230px no-repeat,
    url("../imgs/newBgr1.png") right top no-repeat;
  padding-top: 150rem;
}

.contentBox {
  background: #FFFFFF;
  border-radius: 59px 59px 59px 59px;
  border: 5px solid #B754FD;
  padding: 45px 60px 66px 74px;

}

.breadcrumbBox .breadcrumb-f,
.breadcrumbBox .breadcrumb-t {
  text-transform: Capitalize;
  font-family: 'Cherry Cream Soda';
  font-size: 16px;
  color: #999;
}

.breadcrumbBox .breadcrumb-t {
  cursor: default;
  color: #333;
}

.contentBox-tit {
  text-transform: Capitalize;
  font-size: 40px;
  color: #B754FD;
  margin: 29px 0 34px;
}

.downLoadList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 每行3列 */
  gap: 25px;
}

.downLoadList-item {
  width: 100%;
  background: #F9F9F9;
  border-radius: 20rem;
  border: 1px solid #999999;
  flex-direction: column;
  align-items: center;
  padding: 39rem 0 35rem;
  transition: transform 0.3s ease;
}

.downLoadList-item:hover .itemName {
  color: #B754FD;
  font-family: 'Cherry Bomb One';
}

.downLoadList-item:hover {
  background: #FFFFFF;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #B754FD;
}

.itemName {
  font-family: 'Cherry Cream Soda';
  font-size: 24rem;
  color: #333333;
  text-align: center;
  transition: transform 0.3s ease;
}

.downloadBtn {
  width: 156rem;
  height: 46rem;
  background: #B754FD;
  border-radius: 13rem;
  margin-top: 40rem;
}

.downloadBtn p {
  font-size: 16rem;
  font-family: 'Cherry Cream Soda';
  color: #FFFFFF;
  margin-left: 11rem;
}

.downloadBtn img {
  width: 18rem;
  height: 18rem;
}

.diaLog {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  position: fixed;
  display: none;
}

.diaLogBox {
  width: 580px;
  height: 390px;
  background: #FFFFFF;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
}

.diaLogBox p {
  font-size: 24px;
  color: #333333;
  margin-bottom: 43px;
}

.diaLogBox .password {
  width: 100%;
  outline: none;
  border: none;
  background: #F9F9F9;
  height: 83px;
  color: #999999 !important;
  border-radius: 10px 10px 10px 10px;
  margin-bottom: 50px;
  padding-left: 35px;
}

.subBtn {
  width: 181px;
  height: 66px;
  background: #B754FD;
  border-radius: 19px;
  font-size: 16px;
  color: #FFFFFF;
}

.diaLogBox .password::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
  font-size: 16px;
}



@media screen and (max-width: 1200px) {
  .downLoadList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 每行3列 */
    gap: 25rem;
  }
}

@media screen and (max-width: 750px) {
  .downLoadList {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* 每行3列 */
    gap: 25rem;
  }

  .contentBox {
    background: #FFFFFF;
    border-radius: 59rem;
    border: 5px solid #B754FD;
    padding: 45rem 30rem 66rem 30rem;
  }

  .contentBox-tit {
    font-size: 40rem;
  }


  .diaLogBox {
    width: 580rem;
    height: 390rem;
    border-radius: 20rem;
    padding: 0 26rem;
  }

  .diaLogBox p {
    font-size: 30rem;
    margin-bottom: 43rem;
  }

  .diaLogBox .password {
    height: 83rem;
    border-radius: 10rem;
    margin-bottom: 50rem;
    padding-left: 35rem;
  }

  .subBtn {
    width: 181rem;
    height: 66rem;
    border-radius: 19rem;
    font-size: 24rem;
  }

  .diaLogBox .password::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: #999;
    font-size: 24rem;
  }
}