/* 合并的CSS文件 - main.css + verify.css */
/* 保留所有遮罩、进度条和状态控制样式 */

/* ========== main.css 样式开始 ========== */
body{
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    font-size : 24px;
    margin: 0px;
}
input{
    font-size: inherit;
}

.middleFlex{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.widthLabel{
    width: 300px;
    display: inline-block;
    text-align: right;
}
.formELeContainer{
    height: 40px;
    margin: 5px;
    text-align: left;
}

#zimForm{
    width: 900px;
    height: 600px;
    display: flex;
    flex-direction:column;
    align-content: center;
    justify-content: flex-start;
    padding: 10px;
}

/* 重要：遮罩样式 */
#loadingCover{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    z-index: 2;
    transition: opacity 2s;
    font-size: 24px;
    text-align: center;
}

.loading-container{
    width: 100%;
    padding: 2px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    justify-items: center;
}

.loading-container>.title{
    width: 150px;
    font-weight: normal;
    color: #4A4A4A;
}

#waitingResult[state="disActive"]{
    display: none;
    transition: opacity 1s;
}

#waitingResult {
    width: 100%;
    height: 98vh;
    position: absolute;
    top: 2vh;
    left: 0px;
    display: flex;
    align-content: center;
    justify-content: flex-start;
    text-align: center;
    flex-direction: column;
    align-items:center;
    color: #000000;
    opacity: 1;
    transition: opacity 1s;
    top: -50px;
    background: #fff;
    z-index:999
}
.waitingResultTitle{
    width: 100%;
    height: 20%;
}
.waitingResultTitle .titleText{
    width: 100%;
    height: 10vh;
    line-height: 20vh;
    font-size: 17px;
}
.back{
    width:50px;
    height:50px;
    background: #000;
    position: fixed;
    top:5px;
    left:5px;
}
.loaderContent{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.loaderContent .title{
    margin-top: 40px;
    font-size: 20px;
    color:rgba(0,0,0,.8);
}
.loaderMain{
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.loaderMain .title{
    width: 100%;
    height: 30px;
    text-align: center;
}
.bt-spinner {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: transparent;
    border: 4px solid transparent;
    border-top-color: #49a9e9;
    border-right-color: #49a9e9;
    animation: 1s spin linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.inner-progress[state="idle"]{
    width: 0%;
    transition-property: width;
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.32, 0.49, 0.14, 1.03);
    transition-delay: 0s;
}

.inner-progress[state="middle"]{
    width: 80%;
    transition-property: width;
    transition-duration: 10s;
    transition-timing-function: cubic-bezier(0.32, 0.49, 0.14, 1.03);
    transition-delay: 0s;
}

.inner-progress[state="end"]{
    width: 100%;
    transition-property: width;
    transition-duration: 0.1s;
    transition-timing-function: cubic-bezier(0.32, 0.49, 0.14, 1.03);
    transition-delay: 0s;
}

/* 重要：遮罩状态控制 */
#loadingCover[state="disActive"]{
    display: none;
    opacity: 0;
}

#loadingCover[state="active"]{
    opacity: 1;
}

.err-text{
    color: red;
}

.hide{
    display: none;
}

.small-margin-box{
    margin-top: 10px;
    margin-bottom: 10px;
}

.eTopContainer{
    margin: 20px 0 24px;
}

.eTitle{
    font-size: 21px;
    font-weight: 500;
    color: #000000;
}

.eTopTips{
    padding-top: 10px;
    font-size: 14px;
    color: #666;
}

.eImageContainer{
    margin-left: auto;
    margin-right: auto;
    width: 262px;
    height: 262px;
}

img{
    width: 100%;
    height: 100%;
}

.eFootContainer{
    padding: 0 12px;
    position: relative;
}

.eTipsContainer{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 26px 70px 40px;
}
.eTipsItem{
    font-size: 12px;
    color: #333;
}

.eTipsItem>svg{
    margin-bottom: 10px;
}

/* 重要：进度条样式 */
.eProgressBar{
    position: fixed;
    top: 0px;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    text-align: left;
    overflow: hidden;
}

.eProgress{
    width: 0%;
    height: 100%;
    background-color: #1677ff;
    border-radius: 3px;
    transition: width 1s;
}

/* ========== verify.css 样式开始 ========== */
.authenPage {
    height: 100vh;
    width: 100vw;
}
.headerWrap {
    height: 1.28rem;
    display: flex;
    align-items: center;
    padding-left: 0.43rem;
    padding-right: 1.06rem;
}
.returnBtn {
    width: 0.64rem;
    height: 0.64rem;
}
.returnIcon {
    height: 100%;
    width: 100%;
}
.headerTitle {
    font-family: PingFangSC-Medium;
    font-size: 0.48rem;
    color: rgba(0,0,0,0.90);
    text-align: center;
    font-weight: 500;
    flex: 1;
}
.contentWrap {
    padding-top: 0.96rem;
    margin-bottom: 1.28rem;
}
.contentTitle {
    font-family: PingFangSC-Regular;
    font-size: 0.48rem;
    color: rgba(0,0,0,0.90);
    text-align: center;
    font-weight: 400;
}
.userWrap {
    width: 6.56rem;
    height: 6.56rem;
    margin: 0.96rem auto 1.2rem;
}
.userIcon {
    width: 100%;
    height: 100%;
}
.tipWrap {
    display: flex;
    padding: 0 1.95rem;
    justify-content: space-around;
}
.tipItem {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tipIconWrap {
    width: 1.28rem;
    height: 1.28rem;
    margin-bottom: 0.32rem;
}
.tipIcon {
    width: 100%;
    height: 100%;
}
.tipTitle {
    font-family: PingFangSC-Regular;
    font-size: 0.37rem;
    color: rgba(0,0,0,0.90);
    text-align: center;
    font-weight: 400;
}
.verifyTitle {
    width: 100%;
    height: 0.45rem;
    text-align: center;
}
.verifyBtn {
    width: 8.72rem;
    background-color: #00A1E2;
    border-radius: 0.64rem;
    margin: 0 auto 0.43rem;
    font-family: PingFangSC-Medium;
    font-size: 0.43rem;
    color: rgba(255,255,255,0.90);
    text-align: center;
    line-height: 1.06rem;
    font-weight: 500;
}
.checkIcon {
    vertical-align: text-top;
}
.default {
    font-family: PingFangSC-Regular;
    font-size: 0.32rem;
    color: rgba(0,0,0,0.90);
    line-height: 0.45rem;
    font-weight: 400;
}
.blue {
    font-family: PingFangSC-Regular;
    font-size: 0.32rem;
    color: #00A1E2;
    line-height: 0.45rem;
    font-weight: 400;
}

/* 重要：容器状态控制 */
#MainContainer[state="disActive"]{
    opacity: 0;
}

#MainContainer[state="active"]{
    opacity: 1;
}

#waitingResult[state="active"]{
    opacity: 1;
}

#waitingResult[state="disActive"]{
    opacity: 0;
} 