

.modal-dialog.fui-center
{
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) !important;
    -webkit-transform:translate(-50%,-50%) !important;
    -moz-transform:translate(-50%,-50%) !important;
    -ms-transform:translate(-50%,-50%) !important;
    -o-transform:translate(-50%,-50%) !important;
    width: 80%;
    margin:0rem;
}

.fui-loading-mask
{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1991;
    background-color: black;
    opacity: 0.70;
    top: 0;
    left: 0;
}

.fui-loading-mask.hidden
{
    display: none;
}

.fui-loading{
    background-color: black;
    height: 3rem;
    position: fixed;
    min-width: 8rem;
    line-height: 3rem;
    top: 50%;
    left: 50%;
    margin-left: -5rem;
    z-index: 1992;
    border-radius: 0.3rem;
    font-size: 0.8rem;
}

.fui-loading .fui-loading-text
{
    text-align: left;
    color: white;
    height: 100%;
    margin-left: 3.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.fui-loading .fui-circle
{
    position: relative;
    width: 2rem;
    height: 2rem;
    border: 0.01rem solid #fcfcfc;
    border-top-color: rgba(0, 0, 0, 0.2);
    border-right-color: rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    animation: fui-keyframes-circle infinite 0.75s linear;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
}

.fui-circle.fui-center
{
    margin-left:auto;
    margin-right: auto;
}

.fui-circle.fui-left
{
    float: left;
}

.fui-loading.fui-loading-shake
{
    animation: shake 300ms ease-in-out;
    animation-duration: .1s;
    animation-iteration-count: 3;
    animation-direction: normal;
    animation-timing-function: linear;
}

.fui-loading.fui-loading-shake .fui-loading-text,
.fui-loading.fui-loading-default .fui-loading-text
{
    margin-left: 0;
    margin-right: 0;
    text-align: center;
}

.fui-loading.fui-transprant
{
    background-color: transparent;
}

.fui-loading .fui-jumping {
    position: relative;
    width: 3rem;
    perspective: 30rem;
    margin-left: auto;
    margin-right: auto;
}

.fui-jumping-text,
.fui-ballfussion-text
{
    color: #cccccc;
    height: 100%;
    text-align: center;
    margin-top: 2rem;
    margin-left: 0;
    font-size: 1rem;
    font-weight: bold;
}
.fui-ballfussion-text
{
    margin-top: 1.5rem;
}

.fui-loading .fui-jumping:before,
.fui-loading .fui-jumping:after {
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    animation: fui-keyframes-jumping 0.5s infinite alternate;
    background: rgba(0, 0, 0, 0);
}

.fui-loading .fui-jumping:before {
    left: 0;
}

.fui-loading .fui-jumping:after {
    right: 0;
    animation-delay: 0.15s;
}


.fui-ballfussion,
.fui-ballfussion > div {
    position: relative;
    box-sizing: border-box;
}

.fui-ballfussion {
    display: block;
    font-size: 0;
    color: #ffffff;
}

.fui-ballfussion > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}

.fui-ballfussion {
    width: 0.5rem;
    height: 0.5rem;
    margin-left: auto;
    margin-right: auto;
}

.fui-ballfussion > div {
    position: absolute;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 100%;
    transform: translate(-50%, -50%);
    animation: fui-keyframes-ball-fussion-ball1 1s 0s ease infinite;
}

.fui-ballfussion > div:nth-child(1) {
    top: 0;
    left: 50%;
    z-index: 1;
}

.fui-ballfussion > div:nth-child(2) {
    top: 50%;
    left: 100%;
    z-index: 2;
    animation-name: fui-keyframes-ball-fussion-ball2;
}

.fui-ballfussion > div:nth-child(3) {
    top: 100%;
    left: 50%;
    z-index: 1;
    animation-name: fui-keyframes-ball-fussion-ball3;
}

.fui-ballfussion > div:nth-child(4) {
    top: 50%;
    left: 0;
    z-index: 2;
    animation-name: fui-keyframes-ball-fussion-ball4;
}

@keyframes fui-keyframes-ball-fussion-ball2 {
    0% {
        opacity: 0.35;
    }

    50% {
        top: 200%;
        left: 200%;
        opacity: 1;
    }

    100% {
        top: 100%;
        left: 50%;
        z-index: 1;
        opacity: 0.35;
    }
}

@keyframes fui-keyframes-ball-fussion-ball1 {
    0% {
        opacity: 0.35;
    }

    50% {
        top: -100%;
        left: 200%;
        opacity: 1;
    }

    100% {
        top: 50%;
        left: 100%;
        z-index: 2;
        opacity: 0.35;
    }
}

@keyframes fui-keyframes-ball-fussion-ball3 {
    0% {
        opacity: 0.35;
    }

    50% {
        top: 200%;
        left: -100%;
        opacity: 1;
    }

    100% {
        top: 50%;
        left: 0;
        z-index: 2;
        opacity: 0.35;
    }
}

@keyframes fui-keyframes-ball-fussion-ball4 {
    0% {
        opacity: 0.35;
    }

    50% {
        top: -100%;
        left: -100%;
        opacity: 1;
    }

    100% {
        top: 0;
        left: 50%;
        z-index: 1;
        opacity: 0.35;
    }
}



@keyframes fui-keyframes-circle {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fui-keyframes-jumping {
    0% {
        transform: scale(1) translateY(0px) rotateX(0deg);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(1.2) translateY(-25px) rotateX(45deg);
        background: #ffffff;
        box-shadow: 0 25px 40px #ffffff;
    }
}

@keyframes shake {
    10%, 90% { transform: translate3d(-4px, 0, 0); }
    20%, 80% { transform: translate3d(+8px, 0, 0); }
    30%, 70% { transform: translate3d(-16px, 0, 0); }
    40%, 60% { transform: translate3d(+16px, 0, 0); }
    50% { transform: translate3d(-16px, 0, 0); }
}

.fui-open-content
{
    overflow-y: auto;
}

.fui-open-content.hide-scrollbar{
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.fui-open-content.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.fui-swiper-container
{
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    background-color: rgb(16 16 16 / 76%);
    height: 100%;
    z-index: 19910306;
}

.fui-swiper-container>.swiper-container
{
    height: 100%;
}

.fui-swiper-close
{
    position: absolute;
    bottom: 5rem;
    width: 4rem;
    height: 4rem;
    text-align: center;
    line-height: 4rem;
    color: #c1bbbb;
    background: rgb(84 84 84 / 75%);
    border-radius: 2rem;
    left: 50%;
    margin-left: -2rem;
    font-size: 2rem;
    cursor:pointer;
    z-index: 19910306;
}

.fui-swiper-close:active
{
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 2.25rem;
    margin-left: -2.25rem;
    background: rgba(140, 140, 140, 0.75);
    color: #cccccc;
}

.fui-imageviewer-image
{
    width: 55%;
}


/*图形验证码弹窗*/
.fui-pic-code
{
    z-index: 2;
    position: fixed;
    width: 30%;
    height: 15rem;
    background-color: white;
    left: 50%;
    margin-left: -15%;
    top: 50%;
    margin-top: -7.5rem;
    text-align: center;
}

.fui-pcode-head
{
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    background-color: #f8f8f8;
    font-size: 1.2rem;
    color: #03a9f4;
}

.fui-pcode-mask
{
    position: fixed;
    z-index: 1;
    background-color: gray;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.45;
}

.fui-pcode-btn-close
{
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    color: #03a9f4;
    cursor: pointer;
}

.fui-pcode-btn-close:hover,
.fui-pcode-btn-close:active
{
    background-color: #03a9f4;
    color: white;
}

.fui-pcode-img
{
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    height: 3rem;
}

.fui-pcode-img img
{
    max-height: 100%;
}

.fui-pcode-input
{
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.fui-pcode-input input
{
    text-align: center;
}

.fui-pcode-btn-submit
{
    margin-top: 1.1rem;
    width: 30%;
}

.fui-theme-primary
{
    background-color: #03a9f4!important;
    border-color: #03a9f4!important;
    color: white!important;
}

body[class^="fui-body-modal"]{
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-right: 0!important;
}
body[class^="fui-body-modal"]::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 900px){
    .fui-imageviewer-image
    {
        width: 100%;
    }

    .fui-pic-code
    {
        width: 80%;
        margin-left: -40%;
    }
}