/* 浮动 */
.floatLeft {
    float: left;
}
.floatRight {
    float: right;
}
/* 清除浮动 */
.clearfloat {
    zoom: 1;
}
.clearfloat:after {
    display: block;
    height: 0;
    content: "";
    clear: both;
    visibility: hidden;
}

/* 颜色 */
.blueColor {color:#0491FF;}
.grayColor {color:rgb(179, 177, 177);}

/* 解决苹果手机输入框按钮样式覆盖input-button */
input,textarea {
    border: 0;
    -webkit-appearance: none;
}

/* a标签还原 */

a:link {
    color: rgb(32, 160, 245);
    text-decoration: none !important;
}

a:visited {
    color: rgb(32, 160, 245);
    text-decoration: none !important;
}

a:hover {
    color: rgb(53, 105, 250);
    text-decoration: none !important;
}

a:active {
    color: #0491FF;
    text-decoration: none !important;
}

/* 没有数据返回时的提示 */
.noTataOne,.noTataTwo {
    width: 80%;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    margin: 0.4rem auto;
    color: rgb(146, 145, 145);
    background-color: #fff;
    border-radius:6px;  
    display:none;
    /* 字间距 */
    /* letter-spacing:2px; */
}

/* 底部-按钮样式 */
.footer-but>span:nth-child(1) {
    background-color: #fff;
    color: rgb(32, 160, 245);
}
.footer-but>span:nth-child(2) {
    background-color: #35D9F8;
    color: #fff;
}
.footer-but>span:nth-child(3) {
    background-color: rgb(19, 146, 230);
    color: #fff;
}


.weui-dialog .weui-dialog__btn.default{
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 100;
    top: -4.2rem;
    right: -2.7rem;
    padding: 0 0;
    margin: 0 0;
    overflow: hidden;
    opacity: 0;
    /* background: #4BC6F7; */
}

/* ===========单个确定弹框样式更改======== */

.weui-dialog.weui-dialog--visible,
.weui-dialog.weui-toast--visible {
    background: url(../images/background/confirm-back.jpg);
    background-size: 100% 100%;
    border-radius: 0.15rem;
}

/* 错误提示框样式 */

.weui-toast.weui-dialog--visible,
.weui-toast.weui-toast--visible {
    width: 40% ;
    opacity: 1;
}

/* 弹框 */
/* .weui-dialog.weui-dialog--visible,
.weui-toast.weui-dialog--visible,
.weui-dialog.weui-toast--visible,
.weui-toast.weui-toast--visible {
    width: 70% !important;
    opacity: 0.5;
} */

/* 隐藏弹框标题-有默认值 */

.weui-dialog__hd {
    display: none;
}

/* 中间内容 */

.weui-dialog {
    width: 100%;
    max-width: 9rem;
}

.weui-dialog__bd {
    width: 96%;
    height: 4rem;
    margin: 0.16rem auto;
    background-color: #fff;
    padding: 0 0;
    border: none;
    text-align: left;
}

/* 隐藏线条 */

.weui-dialog__ft:after {
    border: none;
}

/* 隐藏取消按钮 */

/* .weui-dialog .weui-dialog__btn.default,
.weui-toast .weui-dialog__btn.default {
    display: none;
} */

/* 按钮样式 */

.weui-dialog__ft {
    font-size: 18px;
    width: 36%;
    height: 0.9rem;
    line-height: 0.9rem;
    margin: 0.2rem auto;
    border-radius: 0.5rem;
}

.weui-dialog .weui-dialog__btn+.weui-dialog__btn {
    position: relative;
    padding: 0 0;
    border-radius: 0.5rem;
    background: url(../images/background/confirm-but.png);
    background-size: 100% 100%;
    color: #fff;
    overflow: hidden;   
}

/* 弹框内容拼接代码样式代码 */

.cont-box {
    width: 90%;
    padding-top: 0.3rem;
    margin: auto;
    /* 右上角关闭按钮定位 */
    position: relative;
}

.cont-box>ul>li {
    height: 1.2rem;
    line-height: 1.2rem;
}

.border-but {
    border-bottom: 1px solid rgba(187, 189, 190, 0.3);
    width: 90%;
    margin: 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.comfirm-leftColor {
    color: rgb(187, 189, 190);
    font-size: 0.35rem;
}

.comfirm-rightColor {
    font-size: 0.4rem;
    color: #20A0F5;
}

.prompt-p {
    font-size: 0.35rem;
    color: #000;
    line-height: 0.6rem !important;
    padding: 0.1rem 0;
    /* 超出部分隐藏 */
    overflow: hidden;
}

/* 右侧关闭按钮 */

.right-close {
    position: absolute;
    top: 0;
    right: -0.42rem;
    width: 0.8rem;
    height: 0.8rem;
    border: 0.1rem solid #4BC6F7;
    border-radius: 50%;
    overflow: hidden;
}

.right-close>img {
    width: 100%;
    height: 100%;
    background-color: #fff;
}

/* ===========单个确定弹框样式更改======== */