@CHARSET "UTF-8";
html, body {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
   	overflow-y: hidden;
}
* {
	z-index: 1;
	margin: 0px;
	padding: 0px;
	border: 0px;
}
div {
	font-family: "黑体";
}
.containerBackground {
	background-repeat: no-repeat;
	background-size: cover;
}
.textBig {
	font-family: "黑体";
	text-align: center;
	font-size: 58px;
	height: 58px;
	color: white;
}
.textNormal {
	font-family: "黑体";
	text-align: center;
	font-size: 35px;
	height: 35px;
	color: white;
}
.textSmall {
	font-family: "黑体";
	text-align: center;
	font-size: 25px;
	height: 25px;
	color: white;
}

.marginTopBig {
	margin-top: 40px;
}
.marginTopNormal {
	margin-top: 20px;
}
.marginTopSmall {
	margin-top: 5px;
}

.inlineBlock {
	display: inline-block;
}
.fullSize, .fullImage {
	width: 100%;
	height: 100%;
}
.animationImage {
	width: 100%;
	height: 100%;
}
.pageItemNeedAnimatable {
	display: none;
}
.pageItemAnimatable {
	display: block;
}
/* 主页面 */
.mainPageContainer {
	position: relative;
	border: 0px;
	display:block;
	width:100%;
	height:100%;
	overflow: hidden;
}
.mainPage, .mainPageNotDynamicPoster {
	width: 100%;
	height: 100%;
	display: block;
	box-sizing: border-box;
	position: absolute;
	border: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 0%;
	
	background-color: white;
}
.mainPage {
	display: none;
}
.eachMainPageContainer, .eachMainPageContainerNotDynamicPoster {
	position: relative;
	overflow: hidden;
	width:100%;
	height:100%;
}

.currentPage {
	z-index: 5;
	display: block;
}
.showingPage {
	z-index: 10;
	display: block;
}

/*底部箭头及其动画*/
.arrowButtonContainer {
	width: 50px;
	height: 29px;
	position: absolute;
	bottom: 0px;
	left: 50%;
	z-index: 5;
	margin-left: -25px;
	margin-bottom: 10px;
}
.arrowButtonImage {
	width: 100%;
	height: 100%;
}
.arrowButtonAnimation {
animation-name: arrowButtonAnimation;
animation: arrowButtonAnimation 2s infinite;
-webkit-animation: arrowButtonAnimation 2s infinite;
-moz-animation: arrowButtonAnimation 2s infinite;
}
@-webkit-keyframes arrowButtonAnimation{
	0%{bottom: 0px;}
	50%{bottom: 10px;}
	100% {opacity: 0;}
}

/*
	一些基本的动画
*/
@-webkit-keyframes zoomIn{
	0%{opacity: 0; transform: scale(0,0); -webkit-transform: scale(0, 0); -ms-transform: scale(0, 0);}
	100% {opacity: 1; transform: scale(1,1); -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1);}
}
@-webkit-keyframes zoomOut{
	0%{opacity: 1; transform: scale(1,1); -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1);}
	100% {opacity: 0;transform: scale(0,0); -webkit-transform: scale(0, 0); -ms-transform: scale(0, 0);}
}
@-webkit-keyframes toggle{
	0%{opacity: 1;}
	50% {opacity: 0.2;}
	100% {opacity: 1;}
}
@-webkit-keyframes opacityIn{
	0%{opacity: 0;}
	100% {opacity: 1;}
}
@-webkit-keyframes opacityOut{
	0%{opacity: 1;}
	100% {opacity: 0;}
}


/*
背景音乐按钮及其动画
*/
.musicButtonContainer {
	position: absolute;
	right: 0rem;
  top: 0rem;
  width: 0.5rem;
  height: 0.5rem;
	z-index: 200;
}
.musicButtonContainer.musicPlaying {
	background-repeat: no-repeat;
	background: url("http://img0.61info.cn/service/common/dynamicPoster/music.gif");
	background-position: center center;
	background-size: 100% 100%;
}
.musicButtonImage {
	position: absolute;
	left: 0rem;
	top: 0.2rem;
	width: 0.3rem;
	height: 0.3rem;
}
.musicButtonImage.musicButtomImageAnimation {
	-webkit-animation: musicButtomAnimation 1.2s linear infinite;
}
@-webkit-keyframes musicButtomAnimation{
	0%{transform: rotate(0deg);-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);}
	100% {transform: rotate(360deg);-webkit-transform: rotate(360deg);-ms-transform: rotate(360deg);}
}

.justAnimationContainer.pageItemAnimatable {
	-webkit-animation: zoomIn 0.1s;
	-ms-animation: zoomIn 0.1s;
}

/*
atlasImages
*/
.atlasImage {
	display: none;
	position: absolute;
	bottom: 20px;
	left: 0%;
	width: 100%;
	height: 40%;
}
.atlasImage.atlasImageAnimationIn {
	display: block;
	-webkit-animation: zoomIn 1s ease 0s 1 both;
	-ms-animation: zoomIn 1s ease 0s 1 both;
}
.atlasImage.atlasImageAnimationOut {
	display: block;
	-webkit-animation: zoomOut 1s ease 0s 1 both;
	-ms-animation: zoomOut 1s ease 0s 1 both;
}

/*
SlideShow
*/
.slideShow {
	position: relative;
}
.slideShowItem {
	display: none;
}
.slideShowItem.slideShowItemAnimation {
	display: block;
	-webkit-animation: zoomIn 1s ease 0s 1 both;
	-ms-animation: zoomIn 1s ease 0s 1 both;
}

@-webkit-keyframes slideUp {
	0%{top: 100%;}
	100% {top: 0%;}
}
@-webkit-keyframes slideDown {
	0%{top: -100%;}
	100% {top: 0%;}
}

/*
	测试时强制关闭动画
*/
/*
.arrowButtonAnimation {
  animation-name: arrowButtonAnimation1;
  animation: arrowButtonAnimation1 2s infinite;
  -webkit-animation: arrowButtonAnimation1 2s infinite;
  -moz-animation: arrowButtonAnimation1 2s infinite;
}
.musicButtonImage.musicButtomImageAnimation {
  -webkit-animation: musicButtomAnimation1 1.2s linear infinite;
}
.musicButtonContainer {
	display: none;
}
*/
