﻿/*  在线客服样式  */
.onlineService {
    display: block;
    position: fixed;
    right: 0.4rem;
    bottom: 2rem;
    width: 1.4rem;
    height: 1.6rem;
    z-index: 99;
}

/*  支付弹窗样式  */
#payPop_msk {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
}

#payPop {
    width: 5rem;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 100;
    border-radius: 0.2rem;
    padding: 0.2rem;
    box-sizing: border-box;
    display: none;
}

.payPop_main {
    text-indent: 1em;
    font-size: 0.25rem;
    padding: 0.2rem;
    box-sizing: border-box;
    border-bottom: 1px solid rgb(190, 202, 209);
    font-size: 0.3rem;
    text-align: justify;
}

.payPop_footer {
    height: 1rem;
    display: flex;
    align-items: center;
}

.payPop_div1,
.payPop_div2 {
    flex: 1;
    height: 1rem;
    line-height: 1rem;
    text-align: center;
    font-size: 0.3rem;
    font-weight: 800;
}

.payPop_div1 {
    border-right: 1px solid rgb(190, 202, 209);
    color: rgb(201, 215, 223);
}

.payPop_div2 {
    color: rgb(11, 88, 230);
}

/*  支付接口提示弹窗样式  */
#showMsgPop_msk {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
}

#showMsgPop_main {
    width: 5rem;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 100;
    border-radius: 0.2rem;
    padding: 0.2rem;
    box-sizing: border-box;
    display: none;
}

.showMsgPop_main {
    text-indent: 1em;
    font-size: 0.25rem;
    padding: 0.2rem;
    box-sizing: border-box;
    border-bottom: 1px solid rgb(190, 202, 209);
    font-size: 0.3rem;
    text-align: justify;
}

.showMsgPop_footer {
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showMsgPop_div {
    flex: 1;
    height: 1rem;
    line-height: 1rem;
    text-align: center;
    font-size: 0.3rem;
    font-weight: 800;
}

.showMsgPop_div1 {
    border-right: 1px solid rgb(190, 202, 209);
}

.showMsgPop_div2 {
    color: #1890FF;
}

/*弹窗遮罩层*/
.model_box_floor {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: #000000;
    background-color: rgba(0,0,0,0.5);
    display: none;
}

/*全屏弹窗提醒样式*/
.t-poput {
    width: 6rem;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 100;
    border-radius: 0.2rem;
    padding: 0.2rem;
    box-sizing: border-box;
}

    .t-poput .title {
        height: 0.6rem;
        line-height: 0.6rem;
        font-size: 0.35rem;
        font-weight: 800;
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
    }

    .t-poput .content {
        max-height: 10rem;
        margin: 10px 0;
        overflow-y: auto;
    }

        .t-poput .content p {
            padding: 3px 0;
        }

    .t-poput .foot {
        height: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .t-poput .foot button {
            height: 0.8rem;
            line-height: 0.8rem;
            min-width: 3rem;
            text-align: center;
            border: none;
            border-radius: 0.2rem;
            color: #fff;
            background: #0094ff;
            font-size: 0.3rem;
            font-weight: 800;
            padding: 0 0.1rem;
        }
