/* 弹窗默认隐藏 */
.ios-wrapper{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: none; /* 默认隐藏 */
  justify-content: center;
  align-items: center;
  font-size: 16px;
  z-index: 9999;
}
  /* 弹窗样式 */
  .ios-pop {
  width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
  background-color: #fff;
}
.ios-top{
  height: 160px;
  background-color: #41B4FF;
  border-radius: 5px 5px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ios-top-img{
  width: 52px;
  height: 52px;
  margin-right: 20px;
}
.ios-bottom{
  position: relative;
  padding: 20px 10px;
  border-radius: 0 0 5px 5px;
  background-color: #fff;
  display: flex;
}
.ios-bottom-info{
    flex: 1;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding-left: 5px;
    background-color: #F1F5F8;
    border-radius: 20px;
    white-space: nowrap;
    overflow: hidden;
}
.ios-bottom-copy{
    position: absolute;
    right: 0;
    width: 80px;
    margin-right: 10px;
    height: 40px;
    background-color: #41B4FF;
    border-radius: 0 20px 20px 0;
    border: 0;
    color: #fff;
}

