Skip to content
update-app.scss 1.58 KiB
Newer Older
wangqinghua's avatar
wangqinghua committed
update-app {
  .cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    z-index: 999;
  }
  .bg-content{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("../assets/imgs/update_tip_bg.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 65%;
    height: 52%;
    border-radius: 10px;
  }
  .update-content{
    position: absolute;
    top: 40%;
    width: 100%;
    height: 60%;
    left: 0;
  }
  .update-title{
    margin: 70px auto;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
  }
  .update-text{
    margin-top: 40px;
    padding: 0 15%;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
  }
  .update-button{
    position: absolute;
    left: 20%;
    bottom: 6%;
    width: 60%;
    height: 4rem;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(242deg, #fff7cb 0%, #ffc92d 100%);
    border-radius: 24px;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 4rem;
    box-shadow: 0px 8px 8px 0px rgba(78,78,78,0.11);
  }
  .icon-close {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%, 4rem);
    color: #fff;
    border: 1px solid #ffffff;
    font-size: 3.5rem;
    height: 3.5rem;
    width: 3.5rem;
    text-align: center;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    ion-icon{
      font-weight: 500;
    }
  }
}