#lottery-wrap {
    width: 100%;
    height: 600px;
    background:url('../images/CPbg.png');
	background-position: center;
}
#lottery-wrap .swiper-container {
	display: flex;
	justify-content: space-between;
	overflow: hidden;
	position: relative;
    width: 1200px;
    height: 350px;
    margin: 0 auto;
    top: 25%;
}
#lottery-wrap .lottery-container li{
	display: inline-block;
    position: relative;
    overflow: hidden;
    width: 290px;
    height: 290px;
    cursor: pointer;
    border-radius: 10px;
}
#lottery-wrap .lottery-img {
    width: 290px;
    height: 290px;
}
#lottery-wrap li:hover .lottery-img img{
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}
#lottery-wrap .lottery-tap {
    position: absolute;
    bottom: -60px;
    width: 290px;
    height: 130px;
    background-color: rgba(0,0,0,.75);
}
#lottery-wrap .lottery-container li:hover .lottery-tap{
   bottom: 0;
}
#lottery-wrap .lottery-tap .lottery-title {
    width: 100%;
    height: 70px;
    padding-top: 10px;
}
#lottery-wrap .lottery-tap .lottery-title h1{
   	font-size: 18px;
   	text-align: center;
    font-weight: inherit;
    margin-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    color: #fff;
    border-left: 4px solid #fff;
}
#lottery-wrap .lottery-tap:hover .lottery-title h1{
   	color: #ff9100;
    border-left: 4px solid #ff9100;
}
#lottery-wrap .lottery-tap .lottery-play:hover span {
    color: #ff9100;
}
#lottery-wrap .lottery-tap .lottery-play{
   	position: relative;
    width: 100%;
    height: 59px;
    border-top: 1px solid rgba(255,255,255,.3);
}
#lottery-wrap .lottery-tap .lottery-play i{
   	position: absolute;
    top: 20px;
    right: 50%;
    display: block;
    width: 20px;
    height: 18px;
    opacity: 0;
    background:url('../images/ply_btn.png');
}
#lottery-wrap .lottery-tap .lottery-play:hover i{
   	right: 57%;
    opacity: 1;
}
#lottery-wrap .lottery-tap .lottery-play span{
   	line-height: 59px;
    position: absolute;
    top: 0;
    left: 0px;
    display: block;
    width: 100%;
    height: 59px;
    text-align: center;
    color: #fff;
}
#lottery-wrap .lottery-tap .lottery-play:hover span{
    left: 15px;
}
#lottery-wrap .lottery-tap .lottery-play span, #lottery-wrap .lottery-tap, #lottery-wrap .lottery-tap .lottery-play i, #lottery-wrap .lottery-img img {
    -webkit-transition: all .4s cubic-bezier(.4, .01, .165, .99);
    -moz-transition: all .4s cubic-bezier(.4, .01, .165, .99);
    -ms-transition: all .4s cubic-bezier(.4, .01, .165, .99);
    -o-transition: all .4s cubic-bezier(.4, .01, .165, .99);
    transition: all .4s cubic-bezier(.4, .01, .165, .99);
}