

/************ 悬浮导航 ************/
.nov-float{
	position: fixed;
	top: 180px;
	left: calc(50% - 740px);
	z-index: 88;
}
.hob-inlet{
	position: relative;
	width: 110px;
	height: 113px;
	top: 0;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: contain;
	 background-image: url(../img/hob-inlet-1.png); 
	z-index: 1;
	cursor: pointer;
}
.hob-inlet-03{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: contain;
	background-image: url(../img/hob-inlet-03-v2.png);
	z-index: 1;
}
.hob-inlet-02{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: contain;
	background-image: url(../img/hob-inlet-02-v2.png);
	z-index: 2;
}
.hob-inlet-01{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: contain;
	background-image: url(../img/hob-inlet-01-v2.png);
	z-index: 3;
}
.hob-inlet:not(.disable) .hob-inlet-02{
	animation: hob_shake 1s infinite
}
.hob-inlet:not(.disable):hover .hob-inlet-02{
	animation: hob 1s 1
}
.for-get-now{
	z-index: 33;
	animation: hob_btn 2.5s infinite
}
@keyframes hob_shake {
    15%, 45%{
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
        transform-origin: 50% 100%; 
    }
    30%{
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg);
        transform-origin: 50% 100%;
    }
    60% ,100%{
    	-webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        transform-origin: 50% 100%;
    }
}
@keyframes hob{
	10%, 30%, 50%{
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    20%, 40% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
    60% ,100%{
    	-webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes hob_btn{
	10%, 30%, 50%, 70%, 90%{
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    20%, 40%, 60%, 80%{
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}


.hob-mb{
	display: none;
}
@media(max-width: 1400px){
	.nov-float{
		left: 0;
		transform: scale(0.7);
	}
}
@media(max-width: 1199px){
	.nov-float{
		display: none;
	}
}
@media(max-width: 768px){
	.mb-nav{
		position: fixed;
		top: 60px;
		left: 0;
		width: 100%;
		font-size: 0;
		text-align: center;
		z-index: 66;
		background-image: linear-gradient(0deg, #FFE6C8 0%, #FEFCF9 100%);
		box-shadow: 6px 2px 9px 0 rgba(110,33,12,0.34);
	}
	.mb-nav a{
		display: inline-block;
		width: 33.333333%;
		padding: 5px 0;
		color: #f66f6a;
		font-size: 14px;
		font-weight: bold;
		line-height: 20px;
	}
	.mb-nav a.active{
		color: #fff;
		background-image: linear-gradient(-13deg, #6A00FF 0%, #ED0F55 100%);
	}
	.hob-mb{
		display: block;
		position: fixed;
		width: 58px;
		height: 67px;
		right: 0;
		top: 30%;
		z-index: 8;
	}
	.hob-mb .hob-inlet{
		display: block;
		width: 58px;
		height: 67px;
		background-repeat: no-repeat;
		background-size: contain;
		background-image: url(../img/hob-inlet-02-v2.png);
	}
	.hob-mb.disable{
		display: none;
	}
}
/************ 悬浮导航 ************/





/************ 红包 ************/
.hongbao-wrapper{
	 display: none; 
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	z-index: 200;
}
.hongbao-wrapper i{
	display: block;
	position: absolute;
	width: 96px;
	height: 131px;
	top: -200px;
	background-repeat: no-repeat;
	background-size: 100%;
	background-image: url(../img/hb.png);
	-webkit-transform: rotate(-15deg);
	-ms-transform: rotate(-15deg);
	-o-transform: rotate(-15deg);
	transform: rotate(-15deg);
	-webkit-transition: 1s transform;
	-moz-transition: 1s transform;
	-ms-transition: 1s transform;
	-o-transition: 1s transform;
	transition: 1s transform;	
}
 .hongbao-wrapper i.rotate{
	-webkit-transform: rotate(7200deg);
	-ms-transform: rotate(7200deg);
	-o-transform: rotate(7200deg);
	transform: rotate(7200deg);
} 
.hob-cd{
	position: absolute;
	color: #fff;
	font-size: 30px;
	top: 100px;
	left: 200px;
}
.hob-close{
	position: absolute;
	width: 40px;
	height: 40px;
	top: 100px;
	right: 200px;
	cursor: pointer;
}
.hob-close::before,
.hob-close::after{
	content: '';
	display: block;
	position: absolute;
	width: 30px;
	height: 2px;
	top: 19px;
	left: 5px;
	background-color: #eee;
	border-radius: 2px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.hob-close::after{
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
[mod-relation="hobCoupon"]{
	text-align: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../img/modal-bg.jpg);
}
[mod-relation="hobCoupon"] h5{
	color: #f66f6a;
	font-size: 30px;
	font-weight: bold;
	line-height: 46px;
	background-repeat: no-repeat;
	background-position: center top;
	background-image: url(../images/modal-title.png);
	background-size: contain;	
}
[mod-relation="hobCoupon"]  p{
	margin-bottom: 20px;
}
.mod-footer{
	background: #feefd7;
}
.hobCoupon-img{
	width: 712px;
	margin: 0 auto;
}


@media(max-width: 1199px){}
@media(max-width: 768px){
	[mod-relation="hobCoupon"] h5{
		font-size: 20px;
	}
	.hobCoupon-img{
		max-width: 100%;
	}
	.hob-cd{
		top: 20px;
		left: 30px;
	}
	.hob-close{
		top: 20px;
		right: 20px;
	}
}
@media(max-width: 720px){}
@media(max-width: 480px){}
@media(max-width: 414px){}
@media(max-width: 375px){}
@media(max-width: 360px){
	[mod-relation="hobCoupon"] h5{
		font-size: 18px;
	}
}
@media(max-width: 320px){
	[mod-relation="hobCoupon"] h5{
		font-size: 16px;
	}
}


/************ 红包 ************/