.tUI-container{
    height: 70vh;
    bottom: 0px;
    position: absolute;
    width: 100%;
}
.tUI-pop {
    /* margin:0 auto; */
    position: fixed;
    width: 560px;
    height: 380px;
    top: calc( (100vh - 380px)/2);
    left: calc( (100vw - 560px)/2);
    /* border: 1px solid #000; */
    /* margin: auto auto; */
    align-self: center;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    background-color: #fff;
    z-index: 999;
    /* box-shadow: 1px 1px 50px rgba(0,0,0,.3); */
    /* opacity: 0; */
    display: none; 
}

.tUI-upward {
    /* margin:0 auto; */
    /*position: fixed;*/
    position: absolute;
    width: 560px;
    height: 380px;
    /*top: calc( (100vh - 380px)/2);*/
    /*left: calc( (100vw - 560px)/2);*/
    /* border: 1px solid #000; */
    /* margin: auto auto; */
    left:0px;
    align-self: center;
    border-radius: 10px;
    text-align: center;
    /*padding: 10px;*/
    background-color: #fff;
    z-index: 999;
    /* box-shadow: 1px 1px 50px rgba(0,0,0,.3); */
    /* opacity: 0; */
    display: none; 
}

.tUI-mask{
    position: fixed;
    top:0px;
    left:0px;
    width: 100%;
    height:100%;
    background-color: #000;
    opacity: 0.7;
    z-index: 100;
}

.tUI-popContent {
    width: 100%;
    height: 85%;
    overflow: auto;
}
.tUI-upwardContent {
    width: calc(100% - 20px);
    height: 85%;
    overflow: auto;
    margin:0 auto;
    margin-top:10px;
}

.tUI-popBtn {
    position: absolute;
    width: 50%;
    min-height: 60px;
    line-height:60px;
    bottom: 0px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.tUI-width-100 {
    width: 100%;
}
.tUI-overflow-hidden {
    overflow:hidden;
}


.tUI-popBtn-alert {
    position: absolute;
    width: 100%;
    min-height: 60px;
    line-height: 60px;
    bottom: 0px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}



.tUI-popBtnLeft {
    background-color: #24576a;
    left: 0px;
    border-bottom-left-radius: 8px;
	/* border-bottom-right-radius: 8px; */
    color: #fff;
}

.tUI-popBtnRight {
    background-color: #dcdcdc;
    right: 0px;
    border-bottom-right-radius: 8px;
    color: #7d7d7d;
}

.tUI-popBtn:hover span {
    transform: scale(1.3);
}

.tUI-popBtn:hover {
    cursor: pointer;
}

.tUI-popBtn-alert:hover span {
    transform: scale(1.3);
}

.tUI-popBtn-alert:hover {
    cursor: pointer;
}

/* 动画效果 */

.tUI-flip-animation-start {
    animation: tUI-flipBook 1s forwards;
    -moz-animation: tUI-flipBook 1s forwards;
    /* Firefox */
    -webkit-animation: tUI-flipBook 1s forwards;
    /* Safari and Chrome */
    -o-animation: tUI-flipBook 1s forwards;
    /* Opera */
}

.tUI-pop-animation-start {
    animation: tUI-popWindows 0.1s forwards;
    -moz-animation: tUI-popWindows 0.1s forwards;
    /* Firefox */
    -webkit-animation: tUI-popWindows 0.1s forwards;
    /* Safari and Chrome */
    -o-animation: tUI-popWindows 0.1s forwards;
}

.tUI-pop-animation-end {
    animation: tUI-closeWindows 0.3s forwards;
    -moz-animation: tUI-closeWindows 0.3s forwards;
    /* Firefox */
    -webkit-animation: tUI-closeWindows 0.3s forwards;
    /* Safari and Chrome */
    -o-animation: tUI-closeWindows 0.3s forwards;
}

.tUI-upward-animation-start {
    animation: tUI-upward 0.5s forwards;
    -moz-animation: tUI-upward 0.5s forwards;
    /* Firefox */
    -webkit-animation: tUI-upward 0.5s forwards;
    /* Safari and Chrome */
    -o-animation: tUI-upward 0.5s forwards;
}

.tUI-upward-animation-end {
    animation: tUI-downward 0.5s forwards;
    -moz-animation: tUI-downward 0.5s forwards;
    /* Firefox */
    -webkit-animation: tUI-downward 0.5s forwards;
    /* Safari and Chrome */
    -o-animation: tUI-downward 0.5s forwards;
}


.tUI-flip-animation-end {
    animation: flipBook2 1s forwards;
    -moz-animation: flipBook2 1s forwards;
    /* Firefox */
    -webkit-animation: flipBook2 1s forwards;
    /* Safari and Chrome */
    -o-animation: flipBook2 1s forwards;
    /* Opera */
}

@keyframes tUI-popWindows {
    0% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes tUI-closeWindows {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes tUI-flipBook {
    0% {
        -webkit-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    100% {
        -webkit-transform: rotateY(-160deg);
        -ms-transform: rotateY(-160deg);
        -o-transform: rotateY(-160deg);
        transform: rotateY(-160deg);
        opacity: 0;
    }
}
@keyframes tUI-upward {
    0% {
        height: 0px;
        bottom: 0px;
    }
    100% {
        height: 100%;
        bottom:0px;
    }
}
@keyframes tUI-downward {
    0% {
        height: 100%;
        bottom: 0px
    }
    100% {
        height: 0px;
        bottom: 0px;
    }
}