/* 追加样式 用于覆盖重构提供的样式bug */

/* 首屏加载动画 */
@-moz-keyframes wormsPong {
    25% {
        width: 100%;
    }
    50% {
        width: 0;
        left: auto;
        right: 0;
    }
    75% {
        width: 100%;
    }
    100% {
        width: 0;
        right: auto;
        left: 0;
    }
}
@-webkit-keyframes wormsPong {
    25% {
        width: 100%;
    }
    50% {
        width: 0;
        left: auto;
        right: 0;
    }
    75% {
        width: 100%;
    }
    100% {
        width: 0;
        right: auto;
        left: 0;
    }
}
@keyframes wormsPong {
    25% {
        width: 100%;
    }
    50% {
        width: 0;
        left: auto;
        right: 0;
    }
    75% {
        width: 100%;
    }
    100% {
        width: 0;
        right: auto;
        left: 0;
    }
}

/* 360°旋转动画 */
@-webkit-keyframes rotate360 {
    from {-webkit-transform:rotate(0deg);}
    to {-webkit-transform:rotate(360deg);}
}
@-moz-keyframes rotate360 {
    from {-moz-transform:rotate(0deg);}
    to {-moz-transform:rotate(360deg);}
}
@-o-keyframes rotate360 {
    0% {-o-transform:rotate(0deg);}
    100% {
        -o-transform: rotate(360deg);
    }
}
@keyframes rotate360 {
    0% {transform:rotate(0deg);}
    100% {
        transform: rotate(360deg);
    }
}



/* wjc 身份证上传点击input改成透明层的加在顶部 */
.photo-upload-mask{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: .01;
    filter: alpha(opacity=0);
    cursor: pointer;
    z-index: 10;
}

/* wjc覆盖框架遮罩层  */
.shadow_box{
    visibility: hidden;
    transition: all .4s;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0) !important;
    position:fixed;
    top:0;
    bottom:0;
    z-index:2500;
}
.shadow_box.show{
    visibility: visible;
    background:rgba(0,0,0,0.5) !important;
}


/* 等待层 */
.wait-layer{
    display: block;
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: white;
    top: 0;
    left: 0;
    margin: auto;
    z-index: 10000;
}
.wait-layer div{
    margin: 0 auto;
    padding: 5px 0;
    position: relative;
    font: normal 18px/1em Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.wait-layer div:after {
    content: "";
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-animation: wormsPong cubic-bezier(0.77, 0, 0.175, 1) 0.8s infinite;
    -webkit-animation: wormsPong cubic-bezier(0.77, 0, 0.175, 1) 0.8s infinite;
    animation: wormsPong cubic-bezier(0.77, 0, 0.175, 1) 0.8s infinite;
    background-color: #1a9bff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 4px;
}

/* wjc 按钮点击后的loading旋转效果 */
.btn-loading .disc{
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -11px 0 0 -10px;
    border-radius: 20px;
    border: rgba(255, 255, 255, 0.25) 2px solid;
    border-top-color: #fff;
    -webkit-animation: rotate360 750ms linear infinite;
    -moz-animation: rotate360 750ms linear infinite;
    -o-animation: rotate360 750ms linear infinite;
    animation: rotate360 750ms linear infinite;
    z-index: 5;
}
.btn-loading {
    color: transparent !important;
    position: relative;
}

/* wjc内容部分禁止点击透明遮罩 */
article.disable:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 500;
}


/* wjc字体变小的问题 */
.login_tel{
    font-size: 0.14rem;
}

/* wjc 密文 */
input[type='tel'].security{
    -webkit-text-security: disc;
    -moz-text-security: disc;
    text-security: disc;
}

.font_white{
    color: white !important;
}




/* wjc 解决地图图片拉伸 */
.map_box > .map_fixed img {
    display: auto !important;
    width: auto !important;
}

/* wjc 解决地图工具栏定位不正确的问题 */
.map_box > .map_fixed{
    position: relative;
}
/* wjc 地图缩放工具栏样式 */
.map_scale_tools{
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,.3);
    background: white;
    padding: 0 2px;
    z-index: 10001;
}

.map_scale_tools > .zoom_button{
    width: 100%;
    height: 30px;
    display: block;
    padding: 3px 0;
}
.map_scale_tools > .zoom_button:first-child{
    border-bottom: 1px solid #ccc;
}
.map_scale_tools > .zoom_button--up {
    background-image: url(../images/scale.png);
    background-position: center 0;
}
.map_scale_tools > .zoom_button--down {
    background-image: url(../images/scale.png);
    background-position: center 30px;
}


/* 按钮进度条 */
@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}
@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}
.ce_btn > a.btn-progress{
    background-color: rgb(237, 247, 255);
    position: relative;
}
.btn-progress .btn-progress-inner{
    display: block;
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 0%;
    background-color: #1a9bff !important;
    transition: all .3s;

    -webkit-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;

    background-image: -webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}
.btn-progress .btn-progress-text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: black;
    text-align: center;
    z-index: 5;
    font-size: .18rem;
}

/*覆盖框架toast默认样式*/
.toast{
	padding:0 0.16rem;
	border-radius:5px;
}

/*h5双向视频*/
.video_main{
	width: 100%;
	height:100%;
	background:black;
}
.videoHint{
	width:100%;
    position: fixed;
    top: 50%;
    text-align: center;
    color:white;
}
.localVideo{
	position: absolute;
    object-fit: fill;
    width: 100%;
    height: 100%;
}
.remoteVideo{
	position: absolute;
    z-index: 1;
    width: 1.1rem;
    height: 1.1rem;
    right: 0;
    object-fit: fill;
    bottom: 0;
}

/*适当性更新*/

.tip_list{
	padding-left:0.3rem;
	background: #FF6666;
	color:white;
}
.cancelQueue{
	color: white;
    text-align: center;
    width: 0.6rem;
    margin: auto;
    padding-top: 0.7rem;
    background-image: url(../images/cancelApply.png);
    background-size: 0.4rem;
    background-repeat: no-repeat;
    background-position: center;
}
/*h5双向视频*/
.video_main{
	width: 100%;
	height:100%;
	background:black;
}
.videoHint_wp{
    width: 100%;
    position: fixed;
    top: 50%;
    left: 0;
    text-align: center;
    color: #fff;
}
.videoHint{
    display: inline-block;
    padding: 3px 5px;
    background: rgba(0,0,0,0.8);
    border-radius: 3px;
    width: initial;
    position: relative;
}
.commonVideo video{
	position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/video_load.gif);
    background-repeat: no-repeat;
    background-position: center;
}
.smallVideo video{
	position: absolute;
    z-index: 1;
    width: 1.1rem;
    height: 1.1rem;
    right: 0;
    bottom: 0.5rem;
}
.cancelQueue{
	color: white;
    text-align: center;
    width: 0.6rem;
    margin: auto;
    padding-top: 0.7rem;
    background-image: url(../images/cancelApply.png);
    background-size: 0.4rem;
    background-repeat: no-repeat;
    background-position: center;
}
.hangup{
	color: white;
    text-align: center;
    width: 0.6rem;
    margin: auto;
    padding-top: 0.5rem;
    padding-left: 0.05rem;
    background-image: url(../images/cancelApply.png);
    background-size: 0.4rem;
    background-repeat: no-repeat;
    background-position: 0.1rem 0.1rem;
    top: 0;
    position: absolute;
    right: 0;
}
.videoMsgDiv{
	bottom:0;
	color:white;
    position: absolute;
    text-align:left;
    width:100%;
    z-index:100;
    padding-left: 0.1rem;
    padding-right: 1.1rem;
}

.notRead{
  width: 0.08rem;
  height: 0.08rem;
  background: red;
  position: absolute;
  border-radius: 0.04rem;
  top: 50%;
  margin-top: -0.035rem;
}
.mustRead{
  color: red;
  font-size: 10px;
  margin-left: 0.1rem;
  margin-top: 0;
  padding-top: 0;
}
.dialog_btn a.disable{
  background: #999;
  padding: 0 10px;
}
