.webgl-content * {border: 0; margin: 0; padding: 0}
.webgl-content {position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}

#gameContainer{background-image: url('bg.png')!important;background-size:cover!important; width: 1600px;height: 900px;}

/*  进度条  4688d4*/
#progressBox{
    position: absolute; left: 50%; bottom: 0px; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); font-family: "微软雅黑";opacity: 0.9;
}

.progress {
    width: 680px; min-height: 20px;
    overflow: hidden;
    background-color: #ecf3fb; 
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    padding: 0px;
    border: 1px solid #359554;border-radius: 4px;
    font-size: 16px; letter-spacing: 1px;
}

.progress-bar {
    float: left; width: 0; height: 100%;
    line-height: 20px;
    color: #fff; background-color: #359554;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    transition: width .6s ease;
    text-align: right;
    padding-right: 10px; box-sizing: border-box;
}
.progress-striped .progress-bar, .progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}

.progress.active .progress-bar, .active {
    animation: progress-bar-stripes 2s linear infinite;
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
} 

.progress .progress-item { 
    color:#359554;
    padding: 6px 0px 0px 16px;
    background-color: #d5e4f6;
    width: 170px;
    box-sizing: border-box;
    float: left;
}
.progress .progress-item p{
    float: left; margin: 0px;
    line-height: 30px;
}
.progress .progress-item .title{
    margin-right: 13px;
}
.progress .progress-item .title img{
    width:32px;
}

/*  提示框 */
#promptBox{
    width: 634px; height: 193px;position: absolute; top: 61%;right: 39px;
    padding: 20px; color: #FFF;
    font-family: "微软雅黑";font-size: 14px;
}
#promptBox-bg{
    position: absolute;width: 697px; height: 180px;border-radius: 4px;
    opacity: 0.1;background-color: #000;left: -16px;
}
#promptBox h3{
    margin: 6px 0px;
}
#promptBox h3,#promptBox li{
    position: relative;
}