@charset "utf-8";

body {
	position: relative;
}

.guide-hidden {
	overflow: hidden;
}

.guide-all {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1999;
	background: linear-gradient( rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) ), url('bg.jpg');
}

.guide-all .all-layout {
    width: 1065px;
    margin: 0 auto;
    position: relative;
}

.guide-all a {
    display: block;
    height: 729px;
    width: 100%;
    margin: 100px auto;
    background: url(guide_present_all.png) no-repeat center center;
}

.guide-all .guide-all-close {
	width: 70px;
    height: 70px;
    display: block;
    position: absolute;
    right: 48%;
	bottom:0;
    cursor: pointer;
    background: url(close_big.png) no-repeat center center;
	background-size:100% 100%
}

.guide-all .guide-all-close:hover {
}

.guide-bar {
	background: #472273;
    display: none;
}

.guide-bar-layout {
	width: 1000px;
    margin: 0 auto;
    position: relative;
    height: 55px;
}

.guide-bar .guide-bar-close {
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background: url(close_small.png) no-repeat center center;
}
.guide-bar .guide-bar-close:hover {
	background: url(close_small_opa6.png) no-repeat center center;
}
@keyframes mylogo
{
from  {bottom: 5px;}
to  {bottom: -5px;}
}
 
@-moz-keyframes mylogo /* Firefox */
{
from  {bottom: 5px;}
to  {bottom: -5px;}
}
 
@-webkit-keyframes mylogo /* Safari 和 Chrome */
{
from  {bottom: 5px;}
to  {bottom: -5px;}
}
 
@-o-keyframes mylogo /* Opera */
{
from  {bottom: 5px;}
to  {bottom: -5px;}
}
.guide-all-close {
    cursor: pointer;
    animation: mylogo 1s linear 0s infinite alternate;
    /* Firefox: */
    -moz-animation: mylogo 1s linear 0s infinite alternate;
    /* Safari 和 Chrome: */
    -webkit-animation: mylogo 1s linear 0s infinite alternate;
    /* Opera: */
    -o-animation: mylogo 1s linear 0s infinite alternate;
}