body{
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    background: #444ac4;

}

.paoma{
    background: #393838;
    height: 25px;
    color: #afacac;
    font-size: 14px;
}


.miandiv{
    position: absolute;
    top:0px;
    overflow-x: hidden;
    left: 0;
    width:100%;
    height:100%;
    z-index:0; /*显示层级*/
    zoom: 1;

    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-position: center 0;
}

.miandas{
    position: absolute;
    top:-10px;
}

@keyframes scaleDraw {
    /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
    0% {
        transform:scale(0.9);
        /*开始为 原始大小*/
    }
    25% {
        transform:scale(1);
        /*放大1.1倍*/
    }
    50% {
        transform:scale(0.9);
    }
    75% {
        transform:scale(1);
    }
    100% {
        transform:scale(0.9);
    }
}.demo {

     -webkit-animation-name:scaleDraw;
     /*关键帧名称*/
     -webkit-animation-timing-function:ease-in-out;
     /*动画的速度曲线*/
     -webkit-animation-iteration-count:infinite;
     /*动画播放的次数*/
     -webkit-animation-duration:3s;
     /*动画所花费的时间*/
 }

.merquee {
    box-sizing: border-box;
    word-break: break-all;
    white-space: nowrap;
    overflow: hidden;
}
.merquee-txt{
    margin-top: 2px;
    display: inline-block;
    padding-left: 100%;  /* 从右至左开始滚动 */
    animation: marqueeTransform 16s linear infinite;
}
@keyframes marqueeTransform {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.lxkf{
    z-index: 9999;
    position: fixed ! important;
    right: 0px;
    top: 200px;
    width:30px;
    float:right;
    text-align: center;
    height: 100px;
    background: #393838;
    border-top-right-radius:0px;
    border-top-left-radius:10px;
    border-bottom-left-radius:10px;
    border-bottom-right-radius:0px;
}

.box {
    display: block;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color:rgba(44,44,44,0.75);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9
}