.container{
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 10px;
}
.head{
  display: flex;
  box-sizing: border-box;
  padding: 10px;
}
.pg {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  min-width: 80px;
  min-height: 80px;
  margin-right: 8px;
}
.pg img {
  width: 100%;
  height: 100%;
}
.title{
  font-size: 20px;
  font-weight: bold;
  box-sizing: border-box;
  padding: 12px 0 20px 0;
}
.verson{
  width: 100%;
  box-sizing: border-box;
  padding: 0 15px;
  font-size: 17px;
}
.verson .title{
  font-size: 20px;
  font-weight: bold;
  box-sizing: border-box;
  padding: 0px 0 10px 0;
}
.verson .pic{
  margin: 10px auto;
  width: 80%;
  border-radius: 10px;
  overflow: hidden;
}
img{
  width: 100%;
  height: 100%;
}
.tips{
  font-size: 15px;
  font-weight: normal;
  margin-top: 6px;
}
.btn-box{
  height: 65px;
  display: flex;
  align-items: center;
}
.dow-btn{
  color: #ffffff;
  background-color: #ea445a;
  font-size: 19px;
  font-weight: bold;
  width: 85%;
  height: 50px;
  line-height: 50px;
  border-radius: 20px;
  margin: 15px auto;
  text-align: center;
  animation: grow .5s infinite alternate;
}

#download2{
  background-color: #00c260;
}

#download3{
  background-color: #7983fd;
}

@keyframes grow {
  from { width: 85%; height: 50px; line-height: 50px; font-size: 19px; }
  to { width: 82%; height: 45px; line-height: 45px; font-size: 18px; }
}
.pt {
  width: 90%;
  height: 37px;
  margin: 0 auto;
}
img{
  width: 100%;
  height: 100%;
}
.details{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 15px;
  box-sizing: border-box;
  padding: 0 0 15px 15px;
}
.link{
  display: flex;
  align-items: center;
  color: #2879ff;
  margin-top: 10px;
}
.link-item{
  width: 70px;
  text-align: center;
  border-right: 1px solid #cccccc;
}
.link-item:nth-child(3){
  border-right: 0;
}

.jumpTo-box{
  height: 60px;
}
.jumpTo-dow-btn{
  background-color: #57bf6a;
  color: #ffffff;
  font-size: 19px;
  font-weight: bold;
  width: 85%;
  height: 50px;
  line-height: 50px;
  border-radius: 20px;
  margin: 15px auto;
  text-align: center;
  animation: grow .5s infinite alternate;
}
.wrapper{
  width: 323px;
  height: 574px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
}
.line{
  width: 85%;
  border-bottom: 1px solid #cccccc;
  margin: 20px auto;
}
.about{
  box-sizing: border-box;
  padding: 5px 15px;
  line-height: 22px;
  font-size: 16px;
}
.ab-title{
  font-size: 17px;
  font-weight: bold;
}
.blue{
  color: #2879ff;
}
.txt{
  box-sizing: border-box;
  line-height: 25px;
}
.line2{
  width: 85%;
  border-bottom: 1px solid #cccccc;
  margin: 15px auto;
}
.line3{
  width:95%;
  border-bottom: 1px solid #cccccc;
  margin: 10px auto;
}
.message-item{
  width: 95%;
  height: 25px;
  line-height: 25px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.company{
  width: 100%;
  text-align: center;
  color: #4f4f4f;
  margin-top: 20px;
  margin-bottom: 45px;
}

/* 弹框样式 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.modal-content {
  background-color: white;
  border-radius: 8px;
  padding: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
}

.modal-image {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 4px;
}

.modal-confirm-btn {
  background-color: #409EFF;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

.modal-confirm-btn:hover {
  background-color: #66b1ff;
}