.op-payment-widget-container{
    width: 100%;
    height: 500px;
    overflow: hidden;
}
@media (min-width: 768px){

    .op-payment-widget-container{
        width: 100%;
        height: 700px;
    }
}

.misha-iframe-head{
    border: 1px solid #cacaca;
    border-radius: 3px;
    padding: 0 14px;
}

.misha-iframe-head > div{
    padding: 15px 0;
}

.misha-iframe-head > div:first-child{
    border-bottom: 1px solid #ccc;
}

.misha-iframe-head > div:nth-child(2){
    display: flex;
    align-items: center;
}

.misha-iframe-head span{
    display: inline-block;
    min-width: 80px;
}
.misha-iframe-head a{
    color:#888;
    text-align: right;
    flex:1;
    cursor: pointer;
}

.misha-iframe-head a:hover{
    color:#000
}


/*加载动画*/
.ajaxloading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
}

.ajaxloading svg {
    width: 60px;
    height: 60px;
    fill: #000;
    -webkit-animation: rotate 0.7s linear infinite;
    animation: rotate 0.7s linear infinite;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


