

.g-header ,.g-main,.g-footer {
  min-width: 1200px
}
.content-wrapper{
	position: relative;
	background-color: #fff;
	width: 1200px;
	margin: 16px auto;
	overflow-x: visible;
	box-shadow: 0 0 10px rgba(0,0,0,.1);
	white-space: nowrap;
}
.g-side-left {
    display: inline-block;
    zoom: 1;
    width: 280px;
    border-right: 1px solid #ebebeb;
    vertical-align: top;
    background-color: #fff;
	box-sizing: border-box;
}
.left-title{
	padding: 0 18px;
	margin: 18px 0 10px;
  height: 24px;
  line-height: 24px;
  width: 100%;
	display: block
}
.left-title img{
	width: 25px;
  margin-right: 10px;
  vertical-align: middle;
  margin-top: -2px;
}
.left-title span{
	font-size: 16px;
}
.g-side-left-content li img {
  width: 83px;
  height: 50px;
  transition: .3s all;
}

.g-side-left-content li:hover img{
	width: 90px;
    height: 60px;
	margin-left: -5px;
}
.g-side-left-content li p{
	display: inline-block;
    width: 83px;
    margin-right: 13px;
    vertical-align: middle;
}	
.content-list{
	display: inline-block;
    width: 142px;
    vertical-align: middle;
    zoom: 1;
    font-size: 12px;
}
.content-list span{
	display: block;
}
.g-side-rifht{
	display: inline-block;
    width: 920px;
    height: 100%;
    position: relative;
    left: -4px;
    padding: 18px;
}
.rifht-title p i{
	margin-right: 6px;
	color: #fff;
    background-color: #4c9ce8;
    border-radius: 50%;
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    display: inline-block;
    text-align: center;
    line-height: 24px;
}
.rifht-search{
	margin-top: 13px;
    padding: 15px 15px 7px;
    border: 1px solid #ebebeb;
}
.rifht-search p a{
	padding: 5px 8px;
}
.rifht-search p{
	margin-bottom:8px;
	font-size: 12px;
	padding-bottom: 5px;
}
.rifht-search p a:hover{
	color: #fff;
    background-color: #45aaff;
    border-radius: 2px;
	
}
.rifht-search p .active{
    padding: 5px 8px;
	color: #fff;
    background-color: #45aaff;
    border-radius: 2px;
	cursor: pointer;
}
.rifht-content li >a{
	display: inline-block;
    margin-left: 20px;
}
.rifht-content{
	width:100%;
}
.rifht-content ul{
	margin: 0 -10px;
	overflow: hidden;
}
.rifht-content li{
	margin: 10px;
	border: 1px solid #ebebeb;
	width: 432px;
	transition: all .2s;
	float: left;
}
.rifht-content li:hover{
	transform: scale(1.05);
	cursor: pointer;
}
.rifht-content li >span img{
	width: 138px;
    height: 83px;
    vertical-align: middle;
	
}

.rifht-content-list{
	display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
    padding: 10px 0;
    box-sizing: border-box;
	width: calc(100% - 200px);
}
.rifht-content-list p{
	width: 100%;
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rifht-content-list p:nth-child(2),.rifht-content-list p:nth-child(3){
	font-size: 12px;
}
.rifht-content-list p:nth-child(2) label{
	color:#ff5400;
}
.rifht-content-list p:nth-child(2) i{
	text-decoration: line-through;
	margin-left:5px;
	color: #777;
}
.rifht-content-list p:nth-child(4) button{
	width: 100px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #45aaff;
    color: #45aaff;
    background-color: #fff;
    border-radius: 3px;
	transition: all .3s;
}
.rifht-content-list p:nth-child(4) button:hover{
    color: #fff;
    background-color: #45aaff;
}
.pages{
	text-align:center;
}
.pages li{
	height: 25px;
    padding: 0 8px;
	display: inline-block;
	cursor: default;
    color: #888!important;
    background-color: transparent!important;
    border: 1px solid #888!important;
}
.pages li+li{
	margin-left:5px
}
.pages li:hover{
	color: #fff !important; 
    background-color: #92d5f8 !important; 
    border-color: #92d5f8 !important; 
	cursor: pointer;
}
.p-coupon{
	background: url('../image/poster-about.jpg') no-repeat center;;
	position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
	overflow: hidden;
}
.dynamic-area1{
	position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../image/poster-drop-animate1.png) repeat-x 0px 0px;
    background-size: cover;
    animation: posterDrop1 200s linear infinite; 
}
.dynamic-area2{
	position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../image/poster-drop-animate2.png) repeat-x 0px 0px;
    background-size: cover;
    animation: posterDrop2 400s linear infinite; 
}

@keyframes posterDrop2 {
	0%{
		left:0%;
	}
	50%{
		left:-50%;
	}
	100%{
		left:-100%;
	}
}
@keyframes posterDrop1 {
	0%{
		left:0%;
	}
	50%{
		left:-50%;
	}
	100%{
		left:-100%;
	}
}

@keyframes scrollText1 {
	0%{
		transform: translateY(0px);
	}
	16%{
		transform: translateY(-85px);
	}
	33%{
		transform: translateY(-170px);
	}
	50%{
		transform: translateY(-255px);
	}
	66%{
		transform: translateY(-340px);
	}
	82%{
		transform: translateY(-425px);
	}
	100%{
		transform: translateY(-510px);
	}
}

.box3{
	position: relative;
	width: 280px;
	height: 510px;
	overflow: hidden;
	padding:0 18px 0;
}

.border3{
	top: 0px;
	animation:scrollText1 8s infinite  cubic-bezier(1,0,0.5,0) ; 
}

.border3 ul li{
	cursor: pointer;
	padding: 15px 0;
	height: 85px;
	border-top: 1px dashed #e3eff6;
}

.border3:hover{
	animation-play-state:paused;
}
.m-game-empty {
    padding: 88px 0;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 4px;
    color: #ccc;
}
.m-game-empty i {
    font-size: 64px;
    line-height: 1;
}
