/*页面设计原则 z-index 取值范围 页面级的 1-99 内容级的100 - 999  全局级的 1000- 9999*/

div {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; /* Chrome 和 Safari */
    -moz-backface-visibility: hidden; /* Firefox */
    -ms-backface-visibility: hidden; /* Internet Explorer */
}

.border {
    /*border: 1px solid blue;*/
}

#app-loading {
    position: absolute;
    width: 640px;
    height: 1008px;
    overflow: hidden;
    display: block;
    background-color: #fff;
    z-index: 999;
}

#app-loading .spin-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    margin-left: -24px;
    margin-top: -48px;
    display: block;
    opacity: 1;
    color: #000000;
    z-index: 999;
}

#app-loading .loading-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 420px;
    margin-left: -50px;
    margin-top: 20px;
    display: block;
    opacity: 1;
    color: #000;
    text-align: center;
    font-size: 20px;
}

#data-loading {
    position: absolute;
    width: 640px;
    height: 1008px;
    overflow: hidden;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#data-loading .spin-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    margin-left: -24px;
    margin-top: -24px;
    display: block;
    opacity: 1;
    color: #ffffff;
}

@-webkit-keyframes music-animate {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.music-icon {
    position: absolute;
    top: 35px;
    right: 30px;
    width: 57px;
    height: 56px;
    z-index: 9;
    display: block;
}

.music-icon i {
    position: absolute;
    top: 0;
    left: 0;
    width: 54px;
    height: 54px;
    background: url(../img/units-icons.png);
    background-repeat: no-repeat;
    display: block;
}

.music-icon.music-on i {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: music-animate 1.5s linear infinite;
    -ms-animation: music-animate 1.5s linear infinite;
    animation: music-animate 1.5s linear infinite;
}

.arrow-up {
    position: absolute;
    /* bottom: 20px; */
	
	top:920px;
    left: 50%;
    margin-left: -18px;
    width: 36px;
    height: 17px;
    background-image: url(../img/pages/page-home/arrow-up.png);
    background-repeat: no-repeat;
    z-index: 9;
    display: block;
}

body {
    background: #1f61a4;
	position: fixed;
    top: 0;
    left: 0;
}

.app {
    background: #1f61a4;
    /*border: none;*/
}

.app-page {
    width: 640px;
    height: 1009px;
}

.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 640px;
    height: 83px;
    background-color: #1B5FA7;
    z-index: 9;
}

.top-bar .logo-box {
    position: relative;
    margin-top: 15px;
    width: 640px;
    height: 68px;
    background-color: #c4c4c4;
}

.top-bar .logo-box .com-logo {
    position: absolute;
    top: 5px;
    left: 0;
    width: 189px;
    height: 68px;
    /*background-image: url(../img/pages/share/com-logo.png);*/
    /*background-repeat: no-repeat;*/
}

.top-bar .logo-box .net-logo {
    position: absolute;
    top: 5px;
    right: 0;
    width: 147px;
    height: 68px;
    /*background-image: url(../img/pages/share/net-logo.png);*/
    /*background-repeat: no-repeat;*/
}

.top-bar .search-box {
    position: relative;
    width: 640px;
    height: 88px;
    background-color: #1B5FA7;
    background-image: url(../img/pages/share/search-box.png);
    background-repeat: no-repeat;
}

.top-bar .search-box input {
    position: absolute;
    left: 48px;
    top: 23px;
    width: 265px;
    height: 39px;
    line-height: 39px;
    background-color: transparent;
    border: none;
    font-size: 20px;
    color: #99999B;
    font-weight: bold;
    padding: 0;
    margin: 0;
}

.top-bar .search-box .btn-search {
    position: absolute;
    left: 444px;
    top: 13px;
    width: 176px;
    height: 59px;
    line-height: 59px;
    border: none;
}