﻿/*----加载进度动画----*/
.loader {
    position: absolute;
    z-index: 9999;
    overflow: hidden;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #2e3132;
}

.loader-graph, .loader-progress {
    overflow: hidden;
    position: absolute;
    left: 50%;
    bottom: 50%;
    width: 64px;
    height: 64px;
    margin: -16px 0 0 -32px;
    box-sizing: border-box;
}

.loader-graph {
    color: transparent;
    text-align: center;
    border-top: 5px solid rgba(255, 255, 255, .2);
    border-right: 5px solid rgba(255, 255, 255, .2);
    border-bottom: 5px solid rgba(255, 255, 255, .2);
    border-left: 5px solid #fff;
    /*border-radius: 50%;*/
    border-radius: 32px;
    -webkit-animation: rotate .72s linear infinite;
    -o-animation: rotate .72s linear infinite;
    animation: rotate .72s linear infinite;
}

.loader-progress {
    font-size: 14px;
    text-align: center;
    padding: 20px 0;
    line-height: 24px;
}

.loader-text {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    line-height: 24px;
    font-size: 16px;
    top: 50%;
    text-align: center;
    margin-top: 1em;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(360deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.scaleOut {
    opacity: 0;
    -webkit-transform: scale(1.25);
    -webkit-transition: all .8s;
    transform: scale(1.25);
    transition: all .8s;
}




/*-------------------------------*/

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Microsoft YaHei',"Helvetica Neue",Helvetica,STHeiTi,sans-serif;
    background:#e2e2e2;
}

input {
    color: #999;
}

img {
    border: none;
    -webkit-touch-callout: none;
}

img, p {
    margin: 0;
    padding: 0;
}

.page {
    width: 640px;
    height: 1031px;
    position: relative;
    display: none;
    font-size: 26px;
}

.page .content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.page .elm {
    position: absolute;
}


.page .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../Images/bg.jpg) no-repeat;

}

/**----------------------*/
.page1 .elm-1{
    width:634px;
    height:356px;
    left:3px;
    top:417px;
}

.page1 canvas {
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
}
.page1 #loading {
    position:absolute;
    left:50%;
    top:50%;
    margin:-30px -30px 0 0;
    width:160px;
    height:160px;
}