body{
    background: white;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
#downloadButton{
    width: 100%;
    margin-top: 0px;
}
#down{
    position: relative;
}
#downImg{
    position: absolute;
    top: 30%;
    width: 182px;
    left: calc( 50% - 91px );
}
.boxmain{
    /* margin-top: 50px; */
    /*position: fixed;*/
    /*top: 50px;*/
    /*left: 0;*/
    width: 100%;
    /*height: 80%;*/
    /* background: url(/TZdown.png);
    background-size: 100% 100%; */

}
.covercls{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 50;
}
.coverimg{
    position: fixed;
    top: 30px;
    right: 30px;
    width: 224px;
    height: 227px;
    z-index: 80;
}
#EleId{
     display: none; 
}
#Iosshow{
    position: fixed;
    top: 40%;
    left: 10%;
    width: 80%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 20px 0;
    box-sizing: border-box;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    display: none;
    z-index: 30;
}
#coverbox{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(0, 0, 0, 0);
    z-index: 50;
    display: none;
}
.bottomText{
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 1px solid rgba(151, 151, 151, 0.18);
    padding: 0 15px;
    font-family: STSongti-SC, STSongti-SC;
    font-weight: 400;
    color: #999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 13px;
    z-index: 10;
    box-sizing: border-box;
}
.bottomText .top{
    font-size: 9px;
}
.bottomText .bot{
    font-size: 10px;
    display: flex;
    align-items: center;
    margin-top: 11px;
    line-height: 1;
}
.bottomText .bot div{
    color: #1CAFEF;
    padding: 0 6px;
    border-right: 1px solid #EFEFEF;
}
.bottomText .bot div:last-child{
    border-right: 0;
}
.popup #Actionsheet{
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}
.popup .pro_content{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-bottom: 72px;
}
.popup .close{
    width:30px;
    height: 30px;
    position: absolute;
    top: 22px;
    right: 16px;
}
#product .pro_content .content{
    padding: 0 14px;
    box-sizing: border-box;
}
.popup .pro_content .title{
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    font-size: 19px;
    color: #000000;
    padding: 24px 0 38px 0;
}
.popup .pro_content{
    background: white;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
}
#permission .pro_content{
    padding-bottom: 29px;
}
#permission .pro_content .content{
    width: 100%;
}
#permission .pro_content .lists{
    display: flex;
    flex-direction: column;
}
#permission .pro_content .title{
    padding-bottom: 12px;
}
#permission .pro_content .lists .list{
    background: rgba(245,245,245,0.65);
    border-radius: 10px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    margin: 9px;
    padding: 16px 6px 16px 22px;
    margin-top: 0;
}
#permission .pro_content .lists .list .list_content{
    
}
#permission .pro_content .lists .list .list_content img{
    width: 16px;
    height: 16px;
    margin-right: 5px;
}
#permission .pro_content .lists .list .list_content .tit{
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 15px;
    color: #333333;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
@media screen and (min-height: 767px) {

}
*{
    margin: 0;
    padding: 0;
}
.tip-con {
    position: fixed;
    top: 32px;
    z-index: 51;
    left: 32px;
    display: none;
}
.tip-con .title {
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #FFFFFF;
}
.tip-con .title img {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 6px;
}
.breatBtn{
    animation: breathing 1.5s infinite;
}
@keyframes breathing {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* 放大10% */
  }
  100% {
    transform: scale(1);
  }
}
.animate__animated{
    opacity:0;
}
:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}
@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
}

.animate__fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}