
.ft-20 {
    font-size: .21rem;
}

.ft-25 {
    font-size: .22rem;
}

.ft-30 {
    font-size: .24rem;
}

.ft-35 {
    font-size: .28rem;
}

.ft-40 {
    font-size: .32rem;
}

.c-fff {
    color: #fff;
}

.c-eee {
    color: #eee;
}

.c-999 {
    color: #999;
}

.c-666 {
    color: #666;
}

.c-4c5253 {
    color: #4c5253;
}

.c-333 {
    color: #333;
}

.c-078dff {
    color: #078dff;
}

.c-00568b {
    color: #00568b;
}

.c-ffc664 {
    color: #ffc664;
}

.c-fb6500 {
    color: #fb6500;
}

.w-100 {
    width: 100%;
}

.w-1em {
    width: 1.2em;
    margin-bottom: -.2em;
}

.bg-fff {
    background-color: #fff;
}

.bg-f6f6f6 {
    background-color: #f6f6f6;
}

.bg-2f9eff {
    background-color: #2f9eff;
}

.bg-1389f8 {
    background-color: #1389f8;
}


.bg-fef3ef {
    background-color: #fef3ef;
}

.bg-eaf7ff {
    background-color: #eaf7ff;
}

.bg-f8f8f8 {
    background-color: #f8f8f8;
}

.bg-e7f5fb {
    background-color: #e7f5fb;
}


.flex-justify-center {
    display: flex;
    justify-content: center;
}

.flex-justify-start {
    display: flex;
    justify-content: flex-start;
}

.flex-justify-between {
    display: flex;
    justify-content: space-between;
}

.flex-justify-around {
    display: flex;
    justify-content: space-around;
}

.flex-justify-end {
    display: flex;
    justify-content: flex-start;
}

.flex-column {
    display: flex;
    flex-flow: column nowrap;
}

.flex-row {
    display: flex;
    flex-flow: row nowrap;
}

.flex-row-wrap {
    display: flex;
    flex-flow: row wrap;
}

.flex-column-wrap {
    display: flex;
    flex-flow: column wrap;
}

.flex-align-center {
    display: flex;
    align-items: center;
}

.mt-30 {
    margin-top: .3rem;
}

.mb-30 {
    margin-bottom: .3rem;
}

.ml-30 {
    margin-left: .3rem;
}

.mr-30 {
    margin-right: .3rem;
}

.m-30 {
    margin: .3rem;
}

.mt-20 {
    margin-top: .2rem;
}

.mb-20 {
    margin-bottom: .2rem;
}

.ml-20 {
    margin-left: .2rem;
}

.mr-20 {
    margin-right: .2rem;
}

.m-20 {
    margin: .2rem;
}

.mt-20 {
    margin-top: .2rem;
}

.mb-100 {
    margin-bottom: 1rem;
}

.ml-100 {
    margin-left: 1rem;
}

.mr-100 {
    margin-right: 1rem;
}

.m-100 {
    margin: 1rem;
}

.pt-30 {
    padding-top: .3rem;
}

.pb-30 {
    padding-bottom: .3rem;
}

.pl-30 {
    padding-left: .3rem;
}

.pr-30 {
    padding-right: .3rem;
}

.p-30 {
    padding: .2rem;
}

.pt-20 {
    padding-top: .2rem;
}

.pb-20 {
    padding-bottom: .2rem;
}

.pl-20 {
    padding-left: .2rem;
}

.pr-20 {
    padding-right: .2rem;
}

.p-10 {
    padding: .1rem;
}

.pt-10 {
    padding-top: .1rem;
}

.pb-10 {
    padding-bottom: .1rem;
}

.pl-10 {
    padding-left: .1rem;
}

.pr-10 {
    padding-right: .1rem;
}

.p-10 {
    padding: .1rem;
}


.pt-30 {
    padding-top: .3rem;
}

.pb-100 {
    padding-bottom: 1rem;
}

.fb {
    font-weight: bolder;
}

.pl-100 {
    padding-left: 1rem;
}

.pr-100 {
    padding-right: 1rem;
}

.b-r-30 {
    border-radius: .3rem;
}

.b-r-20 {
    border-radius: .2rem;
}

.bb-s-eee {
    border-bottom: .5px solid #eee;
}

.lh-150 {
    line-height: 1.5em;
}

.lh-185 {
    line-height: 1.85em;
}

.lh-250 {
    line-height: 1.85em;
}

.uio-init {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999999;
}

.uio-init-cover {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.uio-init-text {
    font-size: .4rem;
    margin-top: .2rem;
    color: #000;
}


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

.uio-modal {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    z-index: 6000;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 900ms 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes enlarge {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.uio-modal .uio-modal-cover {
    background: rgba(0, 0, 0, .66);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 6000;
}

.uio-modal .uio-modal-content {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 6001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uio-container {
    background: #fff;
    font-size: .2rem;
    width: 100vw;
}

.uio-container img {
    max-width: 100%;
}

.uio-btn {
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 10px;
}

.uio-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.uio-icon-close {
    right: 5px;
    top: 5px;
    font-size: 2.4rem;
    border: 1px solid #999;
    border-radius: 50%;
    width: 1em;
    height: 1em;
    position: relative;
}

.uio-icon-close:after,
.uio-icon-close:before {
    content: '';
    width: 0.8em;
    height: 0.1em;
    border-radius: 5px;
    background: #999;
    position: absolute;
    top: 0.45em;
    left: 0.1em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.uio-icon-close:before {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.uio-icon-copy {
    display: inline-block;
    position: relative;
    font-size: 1rem;
    width: 1em;
    height: 1em;
}

.uio-icon-copy:after,
.uio-icon-copy:before {
    position: absolute;
    content: '';
    border: 1px solid #2E7EFF;
    width: 0.6em;
    height: 0.6em;
    background: #fff;
    border-radius: 0.1em;
}

.uio-icon-copy:after {
    right: 0;
    top: 0;
}

.uio-icon-copy:before {
    bottom: 0;
    left: 0;
}

.uio-icon-right {
    display: inline-block;
    position: relative;
    font-size: 1rem;
    width: 1em;
    height: 1em;
}

.uio-icon-right:after,
.uio-icon-right:before {
    content: '';
    width: 0.9em;
    height: 0.1em;
    border-radius: 5px;
    background: #fff;
    position: absolute;
    top: 0.15em;
    left: 0.1em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.uio-icon-right:before {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 0.75em;
}

.uio-icon-server {
    display: inline-block;
    position: relative;
    font-size: 1rem;
    width: 1em;
    height: 1em;

}

.uio-icon-server:after {
    position: absolute;
    content: '';
    width: 1em;
    height: 1em;
    top: 0.2em;
    left: 0;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAilBMVEUAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////2N2iNAAAALXRSTlMAwOOyOvnt9vLWzl1EPhLmpKEYC9zJLyH7m5eIaDUcCQa6kI15dG9gV8NKKqbUUl3xAAABsElEQVRIx9VVV6KDIBBEjC1qYoklsaT3x/2v9xBBIq7R38yfs7PIsrOAfgKre6A5tu1owX01Q/7QctIh1x4Tcm9JFCy9L/JDyFU40fUE84/wMKaPEibQyqz9zkqNEUkE62vM5P4n57MUXEP6uNm+cVXpq9EUEgMJOg3YiyG/sGlAH/IupS0fAfAtGnJVdo8FC6+F9wp5kf+Fd3tRuDUtuB5LqGnha6UyukaARhHQcP88ziozXO/cYxxCTPQFJiFOj6And/yWcKRn3huBppuFN+rhonHB53CkrevGEp4snErioDPGiGF9bLCwLm2+Iy1ecMKLh3eCqAjHCU44iXjFia0gHDjBEfEtJzZEIAIHsQtvuiYIuLBZBayujQIhlBDyoDSgpjKqkTm6Rt1Ih/dQ/5bRUk6bwG2YcJM1x517DcHp4LhRKDfEYt01U0Lpkln17HJNrNz5q0CvhuwYH2g2fFMZYBgrcbHcmwrx1FNRUr88myojVgPOYJlieMNLTzY70Cm9L06SdxgypXrrSJgumoQu5biY8zIWQh74aBbSnL+IaC4u7e5TNBve0cRhhn4C/2VMViJlHFX8AAAAAElFTkSuQmCC");
    background-size: 100% 100%;
}


/* 支付确认框 */
.uio-modal-pay {
    width: calc(100% - 1rem);
    background: #fff;
    font-size: .3rem;
    border-radius: .1rem;
}

.pay-modal-tit {
    color: #333;
    font-weight: 800;
    padding: .4rem .2rem .2rem .2rem;
    border-top-left-radius: .2rem;
    border-top-right-radius: .2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - .4rem);
    border-bottom: 1px solid #eee;
}

.pay-modal-tit span {
    font-size: .4rem;
}

.pay-modal-content {
    text-align: center;
    color: #333;
    line-height: 1.85em;
    font-size: .8rem;
    min-height: 2.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uio-modal-pay-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
}

.pay-modal-btn {
    width: calc(100% - .9rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: .3rem;
    margin-bottom: .3rem;
}

.pay-modal-btn button {
    width: 48%;
    border-radius: .1rem;
    font-size: .35rem;
    border: none;
    background-image: linear-gradient(to bottom, #b61919, #b61919);
    color: #fff;
    height: 6em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pay-modal-btn button:nth-child(1) {
    background-image: linear-gradient(#ffffff, #ffffff);
    border: 1px solid #b61919;
    color: #b61919;
}

/*支付确认框结束*/

/* 支付挽留功能1开始 */
.uio-modal-retain {
    width: calc(100% - 30px);
    background: #fff;
    font-size: 14px;
    border-radius: .5em;
}

.pay-modal-retain-tit {
    color: #333;
    font-weight: 800;
    padding: 20px 24px 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    width: calc(100% - 30px);
}

.uio-modal-retain-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
}

.pay-modal-retain-content {
    text-align: center;
    color: #808080;
    line-height: 1.85em;
    font-size: 16px;
    min-height: 2.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pay-modal-retain-btn {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
}

.pay-modal-retain-btn div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - .5px);
    border-top: 1px solid #D5D5D6;
}

.pay-modal-retain-btn div:nth-child(1) {
    border-right: 1px solid #D5D5D6;
}

.pay-modal-retain-btn > div button {
    width: 85%;
    border-radius: .1rem;
    font-size: 18px;
    border: none;
    background-image: linear-gradient(#ffffff, #ffffff);
    color: #888;
    height: 3em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pay-modal-retain-btn > div:nth-child(2) button {
    background-image: linear-gradient(#ffffff, #ffffff);
    color: rgb(60, 197, 31);
}

/* 支付挽留功能1结束 */

.fixedBar .b3 {
    display: none;
}

@media screen and (min-width: 501px) {
    .uio-modal .uio-modal-content {
        width: 500px;
    }
}
