/**{touch-action: none;}*/
.mui-input-row > select{
    font-size: 14px;
}

.mui-input-row label {
    font-size: 14px;
    color: #666;
    font-family: "微软雅黑";
    font-weight: normal;
}
.alert-danger{
    padding: 10px 15px !important;
    margin-bottom: 10px;
}
::-webkit-input-placeholder { /* WebKit browsers */
    font-size:14px;
    color: #454545;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    font-size:14px;
    color: #454545;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    font-size:14px;
    color: #454545;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    font-size:14px;
    color: #454545;
}

.bar-select{
    border: 0;
    height: 29px;
    margin: 6px 0;
    background-color: rgba(0,0,0,.1);
    padding: 0 15px;
    text-align: center;
    border-radius: 6px;
}
.bar-select:focus{
    text-align: left;
}

/*设置readonly 项的样式*/
.input-readonly{
    color: #454545 !important;
}

/*信息分块的头部标题样式*/
.info-title{
    width: 100%;
    background-color: gainsboro;
    padding: 1px 0px 1px 1px;
    border: 1px solid black;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
}

/*温馨提示的样式*/
.warning{
    font-size: 12px;
    margin: 10px;
    padding: 5px;
    border: solid 1px gray;
    border-radius: 6px;
}


/*----------------mui.showLoading-start---------------*/
.mui-show-loading {
    position: fixed;
    padding: 5px;
    width: 120px;
    min-height: 120px;
    top: 45%;
    left: 50%;
    margin-left: -60px;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    border-radius: 5px;
    color: #FFFFFF;
    visibility: hidden;
    margin: 0;
    z-index: 2000;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    opacity: 0;
    -webkit-transform: scale(0.9) translate(-50%, -50%);
    transform: scale(0.9) translate(-50%, -50%);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}
.mui-show-loading.loading-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
}
.mui-show-loading .mui-spinner{
    margin-top: 24px;
    width: 36px;
    height: 36px;
}
.mui-show-loading .text {
    line-height: 1.6;
    font-family: -apple-system-font,"Helvetica Neue",sans-serif;
    font-size: 14px;
    margin: 10px 0 0;
    color: #fff;
}
.mui-show-loading-mask {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.mui-show-loading-mask-hidden{
    display: none !important;
}
/*----------------mui.showLoading-end---------------*/


/******************************表单验证的样式*/
/*bootstrap验证的样式*/
.form-control-feedback{
    margin-top:-2rem;!important;
}
.form-group {
     margin-bottom: 0!important;
}
/*mui input、select空出验证图标的位置*/
.mui-input-row > input{
    font-size: 14px;
    color: #666;
    font-family: "微软雅黑";
    padding-right:25px;
}
.mui-input-row > select{
    font-size: 14px;
    color: #666;
    font-family: "微软雅黑";
    border:none;
    /*direction: rtl;*/
    padding-right:25px;

}
.address-span{
    white-space: nowrap;
    font-size: 14px;
    padding: 10px 15px;
}
.mui-input-row  select{
    font-size: 14px;
    color: #666;
    font-family: "微软雅黑";
    border:none;
}
/*必填时候的红色‘*’*/
.form-required{

}
.mustRequire{
    color: red;
}
/*带清除样式的input,清除图标距右15px，给验证图标空出位置*/
.mui-input-row .mui-input-clear~.mui-icon-clear, .mui-input-row .mui-input-password~.mui-icon-eye, .mui-input-row .mui-input-speech~.mui-icon-speech{
    margin-right: 15px;
}


.row-height-auto{
    height: auto!important;
}

.checkbox-title{
    font-size: 14px;
    color: #666;
}
.checkbox-container{
    padding: 10px 15px;
}
.checkbox-item{
    padding: 5px 0;
}
.check-input{
    width:15px!important;
    height:15px!important;
}
.check-input-span{
    font-size:14px!important;
    margin:0px 10px 0px 2px!important;
}

/*图片上传*/
.container{
    background: #fff;
    padding-top: 0.2rem;
    /*border-top: 1px solid #ccc;*/
    border-bottom: 1px solid #ccc;
}
.container > p{
    padding-top: 10px;
    /*padding: 0.2rem;*/
    font-size: 14px;
    color: #666;
    font-family: "微软雅黑";
    font-weight: normal;
}

.top-flex-div{
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.flex-around-div{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.flex-right-div{
    display: flex;
    flex-direction: row;
    justify-content: right;
}
.flex-right-div > button + button{
    margin-left: 10px;
}
.flex-row-div{
    display: flex;
    flex-direction: row;
}
.flex-row-div > label{
    white-space: nowrap;
    font-size: 14px;
    line-height: 41px;
    font-weight: normal;
}
.flex-row-div-warp{
    flex-wrap: wrap;
}
.flex-row-div > .item{
    margin-bottom: 10px;
}
.margin-left-item{
    margin-left: 10px;
}
.flex-col-div{
    display: flex;
    flex-direction: column;
}
.center-content{
    align-items: center;
    justify-content: center;
}
.viewThumbMarginTop{
    margin-top: 20px;
}
/*小微/非小微协议*/
#conBtn {
    margin: 0 auto;
    display: block;
    width: 200px;
    background-color: lightblue;
    border-radius: 20px;
}

#ctBtn {
    margin: 0 auto;
    display: block;
    width: 70%;
    font-size: 14px;
    text-align: center;
}

/* 商户信息修改列表页 */
.search-input-div{
    text-align: center;
    margin-top: 50px;
}
.card-ul{
    list-style: none;
}
.card-ul>li{
    color: rgb(128, 127, 127);
    font-family: PingFangSC;
    list-style-type: none;
    line-height: 25px;
    font-size: 14px;
}
.care-opre-div{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.care-opre-div>a{
    border: solid 1px rgb(103,94,58);
    border-radius: 20px ;
    text-align: center;
    flex-grow: 1;
    font-size: 14px;
}

/* 证件更新 */
.ot-form-label{
    width: 40%!important;
}
.ot-form-input{
    width: 60%!important;
}
.ot-form-select{
    width: 40%!important;
}

/*隐私协议样式*/
.policy-fieldset{
    margin: 10px;
    height: 80vh;
    overflow: hidden;
}
.protocol-title{
    margin-bottom: 20px;
    font-size: 14px;
}
.protocol-container{
    margin: 10px;
    border: solid 1px lightgrey;
    background-color: white;
    padding: 10px;
    height: 100%;
    overflow: auto;
}
.protocol-content-item{
    padding: 5px;
    font-size: 14px;
    text-indent: 4ch;
}
.protocol-content-item-title{
    font-weight: bold;
}
.protocol-content-item-img{
    padding: 5px;
    font-size: 14px;
}
.protocol-content-item-img>img{
    width: 100%;
    height: 100%;
}

/**********************门店***********************/
.store-title-font{
    font-family:PingFangSC;
}
.store-content{
    color: rgb(128, 127, 127);
    list-style-type: none;
    line-height: 25px;
    font-size:14px;
    padding: 10px;
}
.btn-border-radius{
    border-radius: 15px;
}


/*图片放大查看*/
.pre-img{
    z-index: 10000;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pre-img-container{
    width: 95%;
    /*background-color: white;*/
    text-align: center;
    overflow: auto;
}
/*各种图片反显*/
.img-container{
    display: inline-block;
    position: relative;
    width: 45%;
}
.img-container > img{
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    z-index: 10;
}
.img-container > .clearImg{
    padding: 2px;
    /* float: right; */
    position: absolute;
    right: 0;
    z-index: 20;
}

/*身份证盒子的样式*/
.idcards{
    margin-bottom: 20px;
    height: 104px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
/*身份证图片*/
.id-card-container{
    display: flex;
    width: 100%;
    height: 100px;
    border: solid 1px gray;
    position: relative;
}
.id-card-container > img{
    width: 100% !important;
    height: 100% !important;
}

/*营业执照图片*/
/*.license-container{*/
/*    display: flex;*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    border: solid 1px gray;*/
/*}*/
/*.license-container > img{*/
/*    width: 100% !important;*/
/*    height: 100% !important;*/
/*}*/
.select-i{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
}

.mui-popup-title+.mui-popup-text {
    word-wrap: break-word!important;
}

