@charset "utf-8";
* {
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
	outline: 0;
}
@keyframes setAnim1 {
	0% {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

@keyframes down1 {
	0% {
		transform: scale3d(.5, .5, .5) ;
	}
	60% {
		transform: scale3d(1, 1, 1);
	}
}

.down1{
	animation-duration: 0.3s;
	animation-name: down1;
}

@keyframes setAnim2 {
	40% {
		opacity: 1;
		transform: scale3d(.8, .8, .8);
		animation-timing-function: linear
	}
	100% {
		opacity: 0;
		transform: scale3d(.2, .2, .2);
		transform-origin: center center;
		animation-timing-function: linear
	}
}

.animWay {
	animation-duration: 0.5s;
	animation-fill-mode: both
}

.setAnim1 {
	animation-name: setAnim1
}

.setAnim2.animWay {
	animation-duration: 0.3s;
	animation-name: setAnim2
}
@keyframes anShake {
	0%, 100% {transform: translate3d(0, 0, 0)}
	10%, 30%, 50%, 70%, 90% {transform: translate3d(-10px, 0, 0)}
	20%, 40%, 60%, 80% {transform: translate3d(10px, 0, 0)}
}

.anShake {
	animation-name: anShake;
}

.self-jumpOut,
.jumpOut-layer,.self-msg,.self-confirm,.confirm-layer {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	font-size: 15px;
	line-height: 1.4;
}
.jumpOut-shade,.confirm-shade{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgb(0, 0, 0);
	opacity: 0.3;
	z-index: 10;
}

.jumpOut-layer {
	width: 400px;
	height: 360px;
	z-index: 12;
	margin: auto;
	min-width: 150px;
	min-height: 50px;
	box-shadow: 1px 1px 50px rgba(0, 0, 0, .3);
	overflow: hidden;
	background-color: #ffffff;
}

.jumpOut-top,.confirm-top{
	height: 44px;
	line-height: 44px;
	background-color: #17A4B0;
	color: #FFFFFF;
	font-size: 18px;
	padding-left: 20px;
	position: relative;
}

.jumpOut-title,.confirm-title{
	margin-right: 100px;
}

.jumpOut-close,.confirm-close {
	top:0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 44px;
	height: 44px;
	position: absolute;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.jumpOut-close:hover,.confirm-close:hover {
	opacity: 0.7;
}

.jumpOut-close:before,.confirm-close:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	width: 20px;
	height: 20px;
	background: url(//image.haocew.com/bai/img/img_16.svg) -53px 0/1000% 100% no-repeat;
}


.jumpOut-center {
	overflow: auto;
}

.jumpOut-bottom,.confirm-bottom {
	height: 52px;
	padding: 10px 20px;
	box-sizing: border-box;
	border-top: #efefef 1px solid;
	text-align: center;
}

.jumpOut-bottom input,.confirm-bottom input {
    min-width: 60px;
    padding: 0 10px;
    border-radius: 2px;
    text-align: center;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
    box-sizing: content-box;
}
.jumpOut-bottom input+input,.confirm-bottom input+input{
	margin-right: 15px;
}
.jumpOut-bottom input.jumpOut-bottom-btn0,.confirm-bottom input.confirm-bottom-btn0{
	height: 32px;
	line-height: 32px;
	border: 0;
	background-color: #17a4b0;
	color: #FFFFFF;	
}
.confirm-bottom input.confirm-bottom-btn0{
	margin-right: 16px;
}
.jumpOut-bottom input:not(.jumpOut-bottom-btn0),.confirm-bottom input:not(.confirm-bottom-btn0){
        height: 30px;
        line-height: 30px;
        border: #17a4b0 1px solid;
        background-color: #FFFFFF;
        color: #17a4b0;
}
.jumpOut-bottom input.jumpOut-bottom-btn0:hover,.confirm-bottom input.confirm-bottom-btn0:hover{
	background-color: rgba(23, 164, 176, 0.8);
}
.jumpOut-bottom input:not(.jumpOut-bottom-btn0):hover,.confirm-bottom input:not(.confirm-bottom-btn0):hover {
        background-color: #FFFFFF;
        color: #17a4b0;
}
.self-msg .jumpOut-layer{
	top: 45%;
	border: 1px solid #D3D4D3;
	height: 24px;
	line-height: 24px;
    padding:20px 20px 20px 62px;
    word-break: break-all;
    overflow: hidden;
    font-size: 16px;
    text-align: left;
    margin: 0 auto;
    max-width: 260px;
	box-shadow: 0 0 6px 0 rgba(160,160,160,0.72);
	border-radius: 4px;
	background-color: #fff;
	box-sizing: content-box;
	min-height: 0;
	min-width: 0;
}
.self-msg .jumpOut-layer:before,.confirm-center-box:before{
    content: "";
    position: absolute;
    top: 16px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: url(//image.haocew.com/bai/img/img_23.png?0) 0 0 no-repeat;
}
/*成功*/
.msg_success_icon{
	color: #0ba21a;
}
.msg_success_icon .jumpOut-layer:before,.msg_success_icon.confirm-center-box:before{
	background-position: 0 0;
}
/*错误*/
.msg_error_icon{
	color: #e70505;
}
.msg_error_icon .jumpOut-layer:before,.msg_error_icon.confirm-center-box:before{
	background-position: -32px 0;
}
/*提示*/
.msg_tips_icon{
	color: #35aeb6;
}
.msg_tips_icon .jumpOut-layer:before,.msg_tips_icon.confirm-center-box:before{
	background-position: -63px 0;
}
/*警告*/
.msg_warn_icon{
	color: #e74b3b;
}
.msg_warn_icon .jumpOut-layer:before,.msg_warn_icon.confirm-center-box:before{
	background-position: -125px 0;
}
@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/*正在加载*/
.msg_loading_icon .jumpOut-layer:before{
	animation: rotation 0.7s linear infinite;
	background: url("//image.haocew.com/bai/img/img_191.svg") center center/cover no-repeat;
}
body .msg_loading_icon .jumpOut-layer p{
	font-size: 14px;
	font-weight: bold;
	white-space: nowrap;
}
.msg_loading_icon span{
	height: 16px;
	width: 24px;
	display: inline-block;
	background: url(//image.haocew.com/image/img_1001.gif) center center no-repeat;
	vertical-align: middle;
	margin-top: 2px;
}

.confirm-layer {
	z-index: 12;
	margin: auto;
	box-shadow: 1px 1px 50px rgba(0, 0, 0, .3);
	overflow: hidden;
    height: 160px;
    width: 260px;
	background-color: #ffffff;
}
.confirm-center-box{
	max-width: 400px;
	line-height: 24px;
    padding:20px 20px 20px 62px;
    word-break: break-all;
    font-size: 16px;
    text-align: left;	
    position: relative;
    color: #333333 !important;
}
.jumpOut-photos .jumpOut-layer{
	box-shadow: none;
}
.jumpOut-photos .jumpOut-center{
	position: relative;
	height: 100%;
	overflow: hidden;
}
.jumpOut-photos .jumpOut-shade{
	opacity: 0.8;
}
.jumpOut-photos .jumpOut-photoing{
	background-size: contain;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
.jumpOut-photos .jumpOut-slick-prev,.jumpOut-photos .jumpOut-slick-next{
	position: absolute;
	top:50%;
	background: url(//image.haocew.com/bai/img/icon-ext.png) no-repeat;
	width: 27px;
	height: 44px;
	margin-top: -22px;
	outline: 0;
	transition: all 0.2s;
}
.jumpOut-photos .jumpOut-center .jumpOut-slick-prev{
	left: -40px;
	background-position: -3px -5px;
}
.jumpOut-photos .jumpOut-center .jumpOut-slick-next{
	right: -40px;
	background-position: -3px -50px;
}

.jumpOut-photos .jumpOut-center:hover .jumpOut-slick-prev{
	left: 10px;
}
.jumpOut-photos .jumpOut-center:hover .jumpOut-slick-next{
	right: 10px;
}