/* 未清除margin值时，升级条从中间向两边增加 */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: '微软雅黑';
}

/* 全尺寸黑色透明遮罩 S */
#download {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    letter-spacing: 2px;
}
/* 全尺寸黑色透明遮罩 E  */

/* 升级容器样式布局 S  */
#download .loading-page {
    background: #fff;
    width: 5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    margin: auto;
    left:0;
    right:0;
    top:4rem;
    border-radius: .2rem;
    -webkit-border-radius: .2rem;
    -moz-border-radius: .2rem;
    -ms-border-radius: .2rem;
    -o-border-radius: .2rem;
    /* box-shadow: 0 0 5px 1px #888; */
    margin: 0 auto;
    z-index: 99999;
    padding: .5rem;
}
/* 升级容器样式布局 E  */

/* 升级窗口样式 S  */
#download .loading-page .counter {
    text-align: center;
    width: 100%;
}
/* 升级窗口样式 E  */

/* 升级标题 S  */
#download .loading-page .counter .title {
    color: #333;
    font-size: 0.35rem;
    font-weight: 700;
}
/* 升级标题 E  */

/* 升级副标题 S  */
#download .loading-page .counter .text {
    color: #333;
    font-size: 0.28rem;
    margin: .3rem 0;
}
/* 升级副标题 E  */

/* 下载百分比样式 S  */

/* 文字 */
#download .loading-page .counter .progress  {
    color: #f8a830;
    font-size: .28rem;
    margin: .3rem 0;
}
/* 进度条 */
#download .loading-page .counter .bar {
    width: 90%;
    margin: .5rem auto;
    border: 1px solid #f8a930;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

#download .loading-page .counter hr {
    background-image: linear-gradient(to right,#f8a930, #fb581d);
    border: none;
    height: 0.2rem;
    border-radius: .1rem;
    width: 0;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
}
/* 下载百分比样式 E  */

/* 按钮样式 S  */
#download .loading-page .btn{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#download .loading-page button {
    width: 2.2rem;
    color: #666;
    background-color: #fff;
    height: .75rem;
    border: 0.02rem solid #999;
    border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    -moz-border-radius: 0.1rem;
    -ms-border-radius: 0.1rem;
    -o-border-radius: 0.1rem;
    font-size: .24rem;
    outline: none;
}
/* 确认按钮  */
#download .loading-page .determine {
    background-color: #f8a830;
    color: #fff;
    border: none;
}

#download .loading-page .determines {
    background-color: #f8a830;
    color: #fff;
    border: none;
}
/* 按钮样式 E  */